Magellan Linux

Contents of /trunk/viewvc/magellan-template/roots.ezt

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8 - (show annotations) (download)
Fri May 13 08:48:34 2016 UTC (7 years, 11 months ago) by niro
File size: 1083 byte(s)
-updates magellan-template to match viewvc-1.1.24
1 [# setup page definitions]
2 [define page_title]Repository Listing[end]
3 [define help_href][docroot]/help_rootview.html[end]
4 [# end]
5
6 [include "include/header.ezt" "directory"]
7
8 <table cellspacing="1" cellpadding="2">
9 <thead>
10 <tr>
11 <th class="vc_header_sort">Name</th>
12 [is cfg.options.show_roots_lastmod "1"]
13 <th class="vc_header">Revision</th>
14 <th class="vc_header">Age</th>
15 <th class="vc_header">Author</th>
16 <th class="vc_header">Log</th>
17 [end]
18 </tr>
19 </thead>
20
21 <tbody>
22 [for roots]
23 <tr class="vc_row_[if-index roots even]even[else]odd[end]">
24 <td>
25 <a href="[roots.href]">
26 <img src="[docroot]/images/dir.png" alt="" class="vc_icon" />
27 [roots.name]</a>
28 </td>
29 [is cfg.options.show_roots_lastmod "1"]
30 <td style="width:20">&nbsp;[if-any roots.log_href]<a href="[roots.log_href]">[roots.rev]</a>[else][roots.rev][end]</td>
31 <td style="width:20">&nbsp;[roots.ago]</td>
32 <td style="width:20">&nbsp;[roots.author]</td>
33 <td style="width:20">&nbsp;[roots.short_log]</td>
34 [end]
35 </tr>
36 [end]
37 </tbody>
38
39 </table>
40
41 [include "include/footer.ezt"]