~allison/ubuntu/raring/libsvn-web-perl/fix-for-1106378

« back to all changes in this revision

Viewing changes to template/plain/browse

  • Committer: Package Import Robot
  • Author(s): Hilko Bengen
  • Date: 2012-10-22 21:08:14 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20121022210814-5wru25mlw6dakkr8
Tags: 0.63-1
* New Upstream version
* Updated dependencies
* Switched to Debhelper 8
* Set locale for running tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<div class="title">
 
2
[%|l(path, revision)%]browsing %1 (of revision %2)[%END%]
 
3
<a href="[% script %]/[% repos | uri %]/log[% path | url %]?rev=[% rev %]">[%|l%](history of this directory)[%END%]</a>
 
4
</div>
 
5
[% IF entries.size == 0 %]
 
6
<p>No entries in this directory.</p>
 
7
[% ELSE %]
 
8
<table border=0 width="90%" class="entries" summary="File and directory listing">
 
9
<thead>
 
10
<tr><th>[%|l%]name[%END%]</th><th>[%|l%]revision[%END%]</th><th>[%|l%]age[%END%]</th><th>[%|l%]size[%END%]</th></tr>
 
11
</thead>
 
12
<tbody>
 
13
[% FOREACH entries %]
 
14
<tr>
 
15
<td class="name">
 
16
[% IF isdir %]
 
17
<img alt="[dir]" border="0" src="/icons/dir.gif" />
 
18
<a href="[% script %]/[% repos | uri %]/browse[% path | url %][% name | url %]/?rev=[% rev %]">[% name %]</a>
 
19
[% ELSE %]
 
20
<a href="[% script %]/[% repos | uri %]/checkout[% path | url %][% name | url %]?rev=[% rev %]"><img alt="[file]" border="0" src="/icons/[% type || 'text' %].gif" /></a>
 
21
<a href="[% script %]/[% repos | uri %]/view[% path | url %][% name | url %]?rev=[% rev %]">[% name %]</a>
 
22
[% END %]</td>
 
23
<td class="revision"><a href="[% script %]/[% repos | uri %]/revision?rev=[% rev %]">[% rev %]</a>
 
24
</td>
 
25
<td class="age">Unimpl</td>
 
26
<td class="size">[% size %]</td>
 
27
</tr>
 
28
[% END %]
 
29
</tbody>
 
30
</table>
 
31
[% END %]