Parent: [02797d] (diff)

Child: [e14006] (diff)

Download this file

index.html    46 lines (42 with data), 1.6 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/"
xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="${g.pyforge_templates}/master.html"/>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>n
<title py:if="not repo">Mercurial Repository</title>
<title py:if="repo">Mercurial Repository: ${repo.name}</title>
</head>
<body>
<h1 class="title">Welcome to ForgeHg</h1>
<div class="content">
<div class="row">
<div class="column grid_12">
<h2>Project: $c.project.shortname</h2>
<py:if test="repo">
<dl>
<dt>read access</dt>
<dd>hg clone http://$repo.scm_url_path</dd>
<dt>read/write access</dt>
<dd>hg clone ssh://$repo.scm_url_path</dd>
<dt>status</dt>
<dd>${repo.status}</dd>
</dl>
<form py:if="allow_fork" action="fork" method="GET">
<input type="submit" value="Fork"/>
</form>
</py:if>
<h2>Recent Commits</h2>
<h3 py:if="branch">Branch: $branch</h3>
<h3 py:if="tag">Tag: $tag</h3>
<py:for each="r in revisions">
${c.revision_widget.display(**r)}
</py:for>
<a py:if="next_link" href="$next_link">More</a>
</div>
</div>
</div>
</body>
</html>