1
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" metal:use-macro="macros/main">
2
<html xmlns="http://www.w3.org/1999/xhtml">
4
<title metal:fill-slot="title">
4
<title>loggerhead branches</title>
6
tal:attributes="href python:branch.static_url('/static/css/global.css')" />
11
<h1 metal:fill-slot="heading" style="padding-bottom: 1em">
12
<tal:title condition="title" content="title">
15
<tal:no-title condition="not:title">
16
bazaar branches in loggerhead
20
<div metal:fill-slot="content">
10
<div id="loggerheadCont">
21
12
<div class="browse-project"
22
13
tal:repeat="project projects">
23
<div class="browse-project-name"
24
tal:content="project/friendly_name">
25
${project.friendly_name}
14
<h1 tal:content="project/friendly_name" />
28
15
<div class="browse-project-description"
29
16
tal:condition="python:len(project.long_description) > 0"
30
tal:content="structure project/long_description">
31
${XML(project.long_description)}
17
tal:content="structure project/long_description"></div>
34
<div class="browse-view">
19
<table id="logentries">
20
<tr class="logheader">
21
<th class="summarycell" colspan="2">Name</th>
22
<th class="summarycell">Description</th>
23
<th class="datecell" colspan="2">Last change</th>
48
<tal:block repeat="view project/views">
51
<a tal:attributes="href python:branch.static_url(project.name + '/' + view.name)"
52
tal:content="view/friendly_name">
56
<td class="description"
57
tal:content="view/description">
60
<td class="last-update"
61
tal:content="python:view.history.has_revisions and util._approximatedate(view.last_updated()) or '(no revisions)'"></td>
25
<tal:block repeat="view python:views_by_project[project]">
26
<tr tal:attributes="class string:blueRow1">
28
<img tal:attributes="src python:branch.static_url('/static/images/ico_branch.gif')" alt="Branch" />
31
<a tal:attributes="href python:branch.static_url(project.name + '/' + view.name)"
32
tal:content="view/friendly_name" />
35
tal:content="view/description" />
37
tal:content="python:view.get_history().has_revisions and util._approximatedate(view.last_updated()) or '(no revisions)'" />
63
39
<a tal:attributes="href python:branch.static_url(project.name + '/' + view.name + '/atom')"
65
<img tal:attributes="src python:branch.static_url('/static/images/feed-icon-16x16.gif')"
41
<img tal:attributes="src python:branch.static_url('/static/images/ico_rss.gif')"
70
<tr tal:condition="view/branch_url">
46
<tr tal:condition="view/served_url">
73
49
<td class="description url" colspan="2">
74
<a tal:attributes="href view/branch_url"
75
tal:content="view/branch_url">
50
<a tal:attributes="href view/served_url"
51
tal:content="view/served_url" />