1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml" >
4
<title tal:content="string:Browsing ${name}"></title>
6
tal:attributes="href python:static_url('/static/css/global.css')" />
7
<link rel="shortcut icon"
8
tal:attributes="href python:branch.static_url('/static/images/favicon.ico')" />
11
<div id="loggerheadCont">
14
<span metal:use-macro="breadcrumbs/directory" />
18
<table id="logentries">
19
<tr class="logheader">
20
<th class="summarycell" colspan="2">Filename</th>
21
<th class="datecell">Latest Rev</th>
22
<th class="datecell">Last Changed</th>
25
<tr class="blueRow0" tal:condition="python:name != '/'">
27
<a href="../"><img tal:attributes="src python:static_url('/static/images/ico_folder_up.gif')" /></a>
29
<td class="summcell" colspan="3">
33
<tal:block repeat="dir dirs">
35
<tal:branch-row tal:condition="dir/branch">
36
<tr tal:attributes="class string:blueRow${dir/parity}">
38
<a tal:attributes="href string:${dir/dirname}/files">
39
<img tal:attributes="src python:static_url('/static/images/ico_branch.gif')" alt="Branch" />
43
<a tal:attributes="href string:${dir/dirname}/files" tal:content="dir/dirname" /></td>
45
<a tal:attributes="href string:${dir/dirname}/revision/${dir/branch/revno};
46
title string:Show revision ${dir/branch/revno}"
47
tal:content="dir/branch/revno"></a>
49
<td class="date" tal:content="python:util.date_time(dir.last_change)"></td>
52
<tal:non-branch-row tal:condition="not:dir/branch">
53
<tr tal:attributes="class string:blueRow${dir/parity}">
55
<a tal:attributes="href string:${dir/dirname}/">
56
<img tal:attributes="src python:static_url('/static/images/ico_folder.gif')" alt="Folder" />
60
<a tal:attributes="href string:${dir/dirname}/" tal:content="dir/dirname" /></td>
61
<td class="date"></td>
62
<td class="date" tal:content="dir/last_change"></td>