Show More
@@ -0,0 +1,70 b'' | |||||
|
1 | {header} | |||
|
2 | <title>{repo|escape}: {node|short}</title> | |||
|
3 | </head> | |||
|
4 | <body> | |||
|
5 | <div class="container"> | |||
|
6 | <div class="menu"> | |||
|
7 | <div class="logo"> | |||
|
8 | <a href="http://www.selenic.com/mercurial/"> | |||
|
9 | <img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a> | |||
|
10 | </div> | |||
|
11 | <ul> | |||
|
12 | <li><a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">log</a></li> | |||
|
13 | <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> | |||
|
14 | <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> | |||
|
15 | </ul> | |||
|
16 | <ul> | |||
|
17 | <li class="active">changeset</li> | |||
|
18 | <li><a href="{url}raw-rev/{node|short}{sessionvars%urlparameter}">raw</a></li> | |||
|
19 | <li><a href="{url}file/{node|short}{sessionvars%urlparameter}">browse</a></li> | |||
|
20 | </ul> | |||
|
21 | <ul> | |||
|
22 | {archives%archiveentry} | |||
|
23 | </ul> | |||
|
24 | </div> | |||
|
25 | ||||
|
26 | <div class="main"> | |||
|
27 | ||||
|
28 | <h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a></h2> | |||
|
29 | <h3>changeset {rev}:{node|short} {changesetbranch%changelogbranchname} {changesettag}</h3> | |||
|
30 | ||||
|
31 | <form class="search" action="{url}log"> | |||
|
32 | {sessionvars%hiddenformentry} | |||
|
33 | <p><input name="rev" id="search1" type="text" size="30"></p> | |||
|
34 | <span>find changesets by author, revision, | |||
|
35 | files, or words in the commit message</span> | |||
|
36 | </form> | |||
|
37 | ||||
|
38 | <div class="description">{desc|strip|escape|addbreaks}</div> | |||
|
39 | ||||
|
40 | <table id="changesetEntry"> | |||
|
41 | <tr> | |||
|
42 | <th class="author">author</th> | |||
|
43 | <td class="author">{author|obfuscate}</td> | |||
|
44 | </tr> | |||
|
45 | <tr> | |||
|
46 | <th class="date">date</th> | |||
|
47 | <td class="date">{date|date} ({date|age} ago)</td></tr> | |||
|
48 | <tr> | |||
|
49 | <th class="author">parents</th> | |||
|
50 | <td class="author">{parent%changesetparent}</td> | |||
|
51 | </tr> | |||
|
52 | <tr> | |||
|
53 | <th class="author">children</th> | |||
|
54 | <td class="author">{child%changesetchild}</td> | |||
|
55 | </tr> | |||
|
56 | <tr> | |||
|
57 | <th class="files">files</th> | |||
|
58 | <td class="files">{files}</td> | |||
|
59 | </tr> | |||
|
60 | </table> | |||
|
61 | ||||
|
62 | <div class="overflow"> | |||
|
63 | <div class="sourcefirst"> line diff</div> | |||
|
64 | ||||
|
65 | {diff} | |||
|
66 | </div> | |||
|
67 | ||||
|
68 | </div> | |||
|
69 | </div> | |||
|
70 | {footer} |
@@ -0,0 +1,42 b'' | |||||
|
1 | {header} | |||
|
2 | <title>{repo|escape}: error</title> | |||
|
3 | </head> | |||
|
4 | <body> | |||
|
5 | ||||
|
6 | <div class="container"> | |||
|
7 | <div class="menu"> | |||
|
8 | <div class="logo"> | |||
|
9 | <a href="http://www.selenic.com/mercurial/"> | |||
|
10 | <img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a> | |||
|
11 | </div> | |||
|
12 | <ul> | |||
|
13 | <li><a href="{url}log{sessionvars%urlparameter}">log</a></li> | |||
|
14 | <li><a href="{url}graph{sessionvars%urlparameter}">graph</a></li> | |||
|
15 | <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> | |||
|
16 | </ul> | |||
|
17 | </div> | |||
|
18 | ||||
|
19 | <div class="main"> | |||
|
20 | ||||
|
21 | <h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a></h2> | |||
|
22 | <h3>error</h3> | |||
|
23 | ||||
|
24 | <form class="search" action="{url}log"> | |||
|
25 | {sessionvars%hiddenformentry} | |||
|
26 | <p><input name="rev" id="search1" type="text" size="30"></p> | |||
|
27 | <span>find changesets by author, revision, | |||
|
28 | files, or words in the commit message</span> | |||
|
29 | </form> | |||
|
30 | ||||
|
31 | <div class="description"> | |||
|
32 | <p> | |||
|
33 | An error occurred while processing your request: | |||
|
34 | </p> | |||
|
35 | <p> | |||
|
36 | {error|escape} | |||
|
37 | </p> | |||
|
38 | </div> | |||
|
39 | </div> | |||
|
40 | </div> | |||
|
41 | ||||
|
42 | {footer} |
@@ -0,0 +1,78 b'' | |||||
|
1 | {header} | |||
|
2 | <title>{repo|escape}: {file|escape} annotate</title> | |||
|
3 | </head> | |||
|
4 | <body> | |||
|
5 | ||||
|
6 | <div class="container"> | |||
|
7 | <div class="menu"> | |||
|
8 | <div class="logo"> | |||
|
9 | <a href="http://www.selenic.com/mercurial/"> | |||
|
10 | <img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a> | |||
|
11 | </div> | |||
|
12 | <ul> | |||
|
13 | <li><a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">log</a></li> | |||
|
14 | <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> | |||
|
15 | <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> | |||
|
16 | </ul> | |||
|
17 | ||||
|
18 | <ul> | |||
|
19 | <li><a href="{url}rev/{node|short}{sessionvars%urlparameter}">changeset</a></li> | |||
|
20 | <li><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">browse</a></li> | |||
|
21 | </ul> | |||
|
22 | <ul> | |||
|
23 | <li><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">file</a></li> | |||
|
24 | <li><a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">diff</a></li> | |||
|
25 | <li class="active">annotate</li> | |||
|
26 | <li><a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">file log</a></li> | |||
|
27 | <li><a href="{url}raw-annotate/{node|short}/{file|urlescape}">raw</a></li> | |||
|
28 | </ul> | |||
|
29 | </div> | |||
|
30 | ||||
|
31 | <div class="main"> | |||
|
32 | <h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a></h2> | |||
|
33 | <h3>annotate {file|escape} @ {rev}:{node|short}</h3> | |||
|
34 | ||||
|
35 | <form class="search" action="{url}log"> | |||
|
36 | {sessionvars%hiddenformentry} | |||
|
37 | <p><input name="rev" id="search1" type="text" size="30"></p> | |||
|
38 | <span>find changesets by author, revision, | |||
|
39 | files, or words in the commit message</span> | |||
|
40 | </form> | |||
|
41 | ||||
|
42 | <div class="description">{desc|strip|escape|addbreaks}</div> | |||
|
43 | ||||
|
44 | <table id="changesetEntry"> | |||
|
45 | <tr> | |||
|
46 | <th class="author">author</th> | |||
|
47 | <td class="author">{author|obfuscate}</td> | |||
|
48 | </tr> | |||
|
49 | <tr> | |||
|
50 | <th class="date">date</th> | |||
|
51 | <td class="date">{date|date} ({date|age} ago)</td> | |||
|
52 | </tr> | |||
|
53 | <tr> | |||
|
54 | <th class="author">parents</th> | |||
|
55 | <td class="author">{parent%filerevparent}</td> | |||
|
56 | </tr> | |||
|
57 | <tr> | |||
|
58 | <th class="author">children</th> | |||
|
59 | <td class="author">{child%filerevchild}</td> | |||
|
60 | </tr> | |||
|
61 | {changesettag} | |||
|
62 | </table> | |||
|
63 | ||||
|
64 | <br/> | |||
|
65 | ||||
|
66 | <div class="overflow"> | |||
|
67 | <table class="bigtable"> | |||
|
68 | <tr> | |||
|
69 | <th class="annotate">rev</th> | |||
|
70 | <th class="line"> line source</th> | |||
|
71 | </tr> | |||
|
72 | {annotate%annotateline} | |||
|
73 | </table> | |||
|
74 | </div> | |||
|
75 | </div> | |||
|
76 | </div> | |||
|
77 | ||||
|
78 | {footer} |
@@ -0,0 +1,71 b'' | |||||
|
1 | {header} | |||
|
2 | <title>{repo|escape}: {file|escape} diff</title> | |||
|
3 | </head> | |||
|
4 | <body> | |||
|
5 | ||||
|
6 | <div class="container"> | |||
|
7 | <div class="menu"> | |||
|
8 | <div class="logo"> | |||
|
9 | <a href="http://www.selenic.com/mercurial/"> | |||
|
10 | <img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a> | |||
|
11 | </div> | |||
|
12 | <ul> | |||
|
13 | <li><a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">log</a></li> | |||
|
14 | <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> | |||
|
15 | <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> | |||
|
16 | </ul> | |||
|
17 | <ul> | |||
|
18 | <li><a href="{url}rev/{node|short}{sessionvars%urlparameter}">changeset</a></li> | |||
|
19 | <li><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">browse</a></li> | |||
|
20 | </ul> | |||
|
21 | <ul> | |||
|
22 | <li><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">file</a></li> | |||
|
23 | <li class="active">diff</li> | |||
|
24 | <li><a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">annotate</a></li> | |||
|
25 | <li><a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">file log</a></li> | |||
|
26 | <li><a href="{url}raw-file/{node|short}/{file|urlescape}">raw</a></li> | |||
|
27 | </ul> | |||
|
28 | </div> | |||
|
29 | ||||
|
30 | <div class="main"> | |||
|
31 | <h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a></h2> | |||
|
32 | <h3>diff {file|escape} @ {rev}:{node|short}</h3> | |||
|
33 | ||||
|
34 | <form class="search" action="{url}log"> | |||
|
35 | {sessionvars%hiddenformentry} | |||
|
36 | <p><input name="rev" id="search1" type="text" size="30"></p> | |||
|
37 | <span>find changesets by author, revision, | |||
|
38 | files, or words in the commit message</span> | |||
|
39 | </form> | |||
|
40 | ||||
|
41 | <div class="description">{desc|strip|escape|addbreaks}</div> | |||
|
42 | ||||
|
43 | <table id="changesetEntry"> | |||
|
44 | <tr> | |||
|
45 | <th>author</th> | |||
|
46 | <td>{author|obfuscate}</td> | |||
|
47 | </tr> | |||
|
48 | <tr> | |||
|
49 | <th>date</th> | |||
|
50 | <td>{date|date} ({date|age} ago)</td> | |||
|
51 | </tr> | |||
|
52 | <tr> | |||
|
53 | <th>parents</th> | |||
|
54 | <td>{parent%filerevparent}</td> | |||
|
55 | </tr> | |||
|
56 | <tr> | |||
|
57 | <th>children</th> | |||
|
58 | <td>{child%filerevchild}</td> | |||
|
59 | </tr> | |||
|
60 | {changesettag} | |||
|
61 | </table> | |||
|
62 | ||||
|
63 | <div class="overflow"> | |||
|
64 | <div class="sourcefirst"> line diff</div> | |||
|
65 | ||||
|
66 | {diff} | |||
|
67 | </div> | |||
|
68 | </div> | |||
|
69 | </div> | |||
|
70 | ||||
|
71 | {footer} |
@@ -0,0 +1,59 b'' | |||||
|
1 | {header} | |||
|
2 | <title>{repo|escape}: {file|escape} history</title> | |||
|
3 | <link rel="alternate" type="application/atom+xml" | |||
|
4 | href="{url}atom-log/tip/{file|urlescape}" title="Atom feed for {repo|escape}:{file}"> | |||
|
5 | <link rel="alternate" type="application/rss+xml" | |||
|
6 | href="{url}rss-log/tip/{file|urlescape}" title="RSS feed for {repo|escape}:{file}"> | |||
|
7 | </head> | |||
|
8 | <body> | |||
|
9 | ||||
|
10 | <div class="container"> | |||
|
11 | <div class="menu"> | |||
|
12 | <div class="logo"> | |||
|
13 | <a href="http://www.selenic.com/mercurial/"> | |||
|
14 | <img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a> | |||
|
15 | </div> | |||
|
16 | <ul> | |||
|
17 | <li><a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">log</a></li> | |||
|
18 | <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> | |||
|
19 | <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> | |||
|
20 | </ul> | |||
|
21 | <ul> | |||
|
22 | <li><a href="{url}rev/{node|short}{sessionvars%urlparameter}">changeset</a></li> | |||
|
23 | <li><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">browse</a></li> | |||
|
24 | </ul> | |||
|
25 | <ul> | |||
|
26 | <li><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">file</a></li> | |||
|
27 | <li><a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">diff</a></li> | |||
|
28 | <li><a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">annotate</a></li> | |||
|
29 | <li class="active">file log</li> | |||
|
30 | <li><a href="{url}raw-file/{node|short}/{file|urlescape}">raw</a></li> | |||
|
31 | </ul> | |||
|
32 | </div> | |||
|
33 | ||||
|
34 | <div class="main"> | |||
|
35 | <h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a></h2> | |||
|
36 | <h3>log {file|escape}</h3> | |||
|
37 | ||||
|
38 | <form class="search" action="{url}log"> | |||
|
39 | {sessionvars%hiddenformentry} | |||
|
40 | <p><input name="rev" id="search1" type="text" size="30"></p> | |||
|
41 | <span>find changesets by author, revision, | |||
|
42 | files, or words in the commit message</span> | |||
|
43 | </form> | |||
|
44 | ||||
|
45 | <div class="navigate">{nav%filenaventry}</div> | |||
|
46 | ||||
|
47 | <table class="bigtable"> | |||
|
48 | <tr> | |||
|
49 | <th class="age">age</th> | |||
|
50 | <th class="author">author</th> | |||
|
51 | <th class="description">description</th> | |||
|
52 | </tr> | |||
|
53 | {entries%filelogentry} | |||
|
54 | </table> | |||
|
55 | ||||
|
56 | </div> | |||
|
57 | </div> | |||
|
58 | ||||
|
59 | {footer} |
@@ -0,0 +1,5 b'' | |||||
|
1 | <tr class="parity{parity}"> | |||
|
2 | <td class="age">{date|age}</td> | |||
|
3 | <td class="author">{author|person}</td> | |||
|
4 | <td class="description"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{desc|strip|firstline|escape}</a>{inbranch%changelogbranchname}{branches%changelogbranchhead}{tags%changelogtag}</td> | |||
|
5 | </tr> |
@@ -0,0 +1,71 b'' | |||||
|
1 | {header} | |||
|
2 | <title>{repo|escape}: {node|short} {file|escape}</title> | |||
|
3 | </head> | |||
|
4 | <body> | |||
|
5 | ||||
|
6 | <div class="container"> | |||
|
7 | <div class="menu"> | |||
|
8 | <div class="logo"> | |||
|
9 | <a href="http://www.selenic.com/mercurial/"> | |||
|
10 | <img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a> | |||
|
11 | </div> | |||
|
12 | <ul> | |||
|
13 | <li><a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">log</a></li> | |||
|
14 | <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> | |||
|
15 | <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> | |||
|
16 | </ul> | |||
|
17 | <ul> | |||
|
18 | <li><a href="{url}rev/{node|short}{sessionvars%urlparameter}">changeset</a></li> | |||
|
19 | <li><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">browse</a></li> | |||
|
20 | </ul> | |||
|
21 | <ul> | |||
|
22 | <li class="active">file</li> | |||
|
23 | <li><a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">diff</a></li> | |||
|
24 | <li><a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">annotate</a></li> | |||
|
25 | <li><a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">file log</a></li> | |||
|
26 | <li><a href="{url}raw-file/{node|short}/{file|urlescape}">raw</a></li> | |||
|
27 | </ul> | |||
|
28 | </div> | |||
|
29 | ||||
|
30 | <div class="main"> | |||
|
31 | <h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a></h2> | |||
|
32 | <h3>view {file|escape} @ {rev}:{node|short}</h3> | |||
|
33 | ||||
|
34 | <form class="search" action="{url}log"> | |||
|
35 | {sessionvars%hiddenformentry} | |||
|
36 | <p><input name="rev" id="search1" type="text" size="30"></p> | |||
|
37 | <span>find changesets by author, revision, | |||
|
38 | files, or words in the commit message</span> | |||
|
39 | </form> | |||
|
40 | ||||
|
41 | <div class="description">{desc|strip|escape|addbreaks}</div> | |||
|
42 | ||||
|
43 | <table id="changesetEntry"> | |||
|
44 | <tr> | |||
|
45 | <th class="author">author</th> | |||
|
46 | <td class="author">{author|obfuscate}</td> | |||
|
47 | </tr> | |||
|
48 | <tr> | |||
|
49 | <th class="date">date</th> | |||
|
50 | <td class="date">{date|date} ({date|age} ago)</td> | |||
|
51 | </tr> | |||
|
52 | <tr> | |||
|
53 | <th class="author">parents</th> | |||
|
54 | <td class="author">{parent%filerevparent}</td> | |||
|
55 | </tr> | |||
|
56 | <tr> | |||
|
57 | <th class="author">children</th> | |||
|
58 | <td class="author">{child%filerevchild}</td> | |||
|
59 | </tr> | |||
|
60 | {changesettag} | |||
|
61 | </table> | |||
|
62 | ||||
|
63 | <div class="overflow"> | |||
|
64 | <div class="sourcefirst"> line source</div> | |||
|
65 | {text%fileline} | |||
|
66 | <div class="sourcelast"></div> | |||
|
67 | </div> | |||
|
68 | </div> | |||
|
69 | </div> | |||
|
70 | ||||
|
71 | {footer} |
@@ -0,0 +1,131 b'' | |||||
|
1 | {header} | |||
|
2 | <title>{repo|escape}: revision graph</title> | |||
|
3 | <link rel="alternate" type="application/atom+xml" | |||
|
4 | href="{url}atom-log" title="Atom feed for {repo|escape}: log"> | |||
|
5 | <link rel="alternate" type="application/rss+xml" | |||
|
6 | href="{url}rss-log" title="RSS feed for {repo|escape}: log"> | |||
|
7 | <!--[if IE]><script type="text/javascript" src="{staticurl}excanvas.js"></script><![endif]--> | |||
|
8 | </head> | |||
|
9 | <body> | |||
|
10 | ||||
|
11 | <div class="container"> | |||
|
12 | <div class="menu"> | |||
|
13 | <div class="logo"> | |||
|
14 | <a href="http://www.selenic.com/mercurial/"> | |||
|
15 | <img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a> | |||
|
16 | </div> | |||
|
17 | <ul> | |||
|
18 | <li><a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">log</a></li> | |||
|
19 | <li class="active">graph</li> | |||
|
20 | <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> | |||
|
21 | </ul> | |||
|
22 | <ul> | |||
|
23 | <li><a href="{url}rev/{node|short}{sessionvars%urlparameter}">changeset</a></li> | |||
|
24 | <li><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">browse</a></li> | |||
|
25 | </ul> | |||
|
26 | </div> | |||
|
27 | ||||
|
28 | <div class="main"> | |||
|
29 | <h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a></h2> | |||
|
30 | <h3>graph</h3> | |||
|
31 | ||||
|
32 | <form class="search" action="{url}log"> | |||
|
33 | {sessionvars%hiddenformentry} | |||
|
34 | <p><input name="rev" id="search1" type="text" size="30"></p> | |||
|
35 | <span>find changesets by author, revision, | |||
|
36 | files, or words in the commit message</span> | |||
|
37 | </form> | |||
|
38 | ||||
|
39 | <div class="navigate"> | |||
|
40 | <a href="{url}graph/{rev}{lessvars%urlparameter}">less</a> | |||
|
41 | <a href="{url}graph/{rev}{morevars%urlparameter}">more</a> | |||
|
42 | | rev {rev}: {changenav%navgraphentry} | |||
|
43 | </div> | |||
|
44 | ||||
|
45 | <noscript>The revision graph only works with JavaScript-enabled browsers.</noscript> | |||
|
46 | ||||
|
47 | <div id="wrapper"> | |||
|
48 | <ul id="nodebgs"></ul> | |||
|
49 | <canvas id="graph" width="224" height="{canvasheight}"></canvas> | |||
|
50 | <ul id="graphnodes"></ul> | |||
|
51 | </div> | |||
|
52 | ||||
|
53 | <script type="text/javascript" src="{staticurl}graph.js"></script> | |||
|
54 | <script type="text/javascript"> | |||
|
55 | <!-- hide script content | |||
|
56 | ||||
|
57 | var data = {jsdata|json}; | |||
|
58 | var graph = new Graph(); | |||
|
59 | graph.scale({bg_height}); | |||
|
60 | ||||
|
61 | graph.edge = function(x0, y0, x1, y1, color) { | |||
|
62 | ||||
|
63 | this.setColor(color, 0.0, 0.65); | |||
|
64 | this.ctx.beginPath(); | |||
|
65 | this.ctx.moveTo(x0, y0); | |||
|
66 | this.ctx.lineTo(x1, y1); | |||
|
67 | this.ctx.stroke(); | |||
|
68 | ||||
|
69 | } | |||
|
70 | ||||
|
71 | var revlink = '<li style="_STYLE"><span class="desc">'; | |||
|
72 | revlink += '<a href="{url}rev/_NODEID{sessionvars%urlparameter}" title="_NODEID">_DESC</a>'; | |||
|
73 | revlink += '</span>_TAGS<span class="info">_DATE ago, by _USER</span></li>'; | |||
|
74 | ||||
|
75 | graph.vertex = function(x, y, color, parity, cur) { | |||
|
76 | ||||
|
77 | this.ctx.beginPath(); | |||
|
78 | color = this.setColor(color, 0.25, 0.75); | |||
|
79 | this.ctx.arc(x, y, radius, 0, Math.PI * 2, true); | |||
|
80 | this.ctx.fill(); | |||
|
81 | ||||
|
82 | var bg = '<li class="bg parity' + parity + '"></li>'; | |||
|
83 | var left = (this.columns + 1) * this.bg_height; | |||
|
84 | var nstyle = 'padding-left: ' + left + 'px;'; | |||
|
85 | var item = revlink.replace(/_STYLE/, nstyle); | |||
|
86 | item = item.replace(/_PARITY/, 'parity' + parity); | |||
|
87 | item = item.replace(/_NODEID/, cur[0]); | |||
|
88 | item = item.replace(/_NODEID/, cur[0]); | |||
|
89 | item = item.replace(/_DESC/, cur[3]); | |||
|
90 | item = item.replace(/_USER/, cur[4]); | |||
|
91 | item = item.replace(/_DATE/, cur[5]); | |||
|
92 | ||||
|
93 | var tagspan = ''; | |||
|
94 | if (cur[7].length || (cur[6][0] != 'default' || cur[6][1])) { | |||
|
95 | tagspan = '<span class="logtags">'; | |||
|
96 | if (cur[6][1]) { | |||
|
97 | tagspan += '<span class="branchhead" title="' + cur[6][0] + '">'; | |||
|
98 | tagspan += cur[6][0] + '</span> '; | |||
|
99 | } else if (!cur[6][1] && cur[6][0] != 'default') { | |||
|
100 | tagspan += '<span class="branchname" title="' + cur[6][0] + '">'; | |||
|
101 | tagspan += cur[6][0] + '</span> '; | |||
|
102 | } | |||
|
103 | if (cur[7].length) { | |||
|
104 | for (var t in cur[7]) { | |||
|
105 | var tag = cur[7][t]; | |||
|
106 | tagspan += '<span class="tag">' + tag + '</span> '; | |||
|
107 | } | |||
|
108 | } | |||
|
109 | tagspan += '</span>'; | |||
|
110 | } | |||
|
111 | ||||
|
112 | item = item.replace(/_TAGS/, tagspan); | |||
|
113 | return [bg, item]; | |||
|
114 | ||||
|
115 | } | |||
|
116 | ||||
|
117 | graph.render(data); | |||
|
118 | ||||
|
119 | // stop hiding script --> | |||
|
120 | </script> | |||
|
121 | ||||
|
122 | <div class="navigate"> | |||
|
123 | <a href="{url}graph/{rev}{lessvars%urlparameter}">less</a> | |||
|
124 | <a href="{url}graph/{rev}{morevars%urlparameter}">more</a> | |||
|
125 | | rev {rev}: {changenav%navgraphentry} | |||
|
126 | </div> | |||
|
127 | ||||
|
128 | </div> | |||
|
129 | </div> | |||
|
130 | ||||
|
131 | {footer} |
@@ -0,0 +1,26 b'' | |||||
|
1 | {header} | |||
|
2 | <title>Mercurial repositories index</title> | |||
|
3 | </head> | |||
|
4 | <body> | |||
|
5 | ||||
|
6 | <div class="container"> | |||
|
7 | <div class="menu"> | |||
|
8 | <a href="http://www.selenic.com/mercurial/"> | |||
|
9 | <img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a> | |||
|
10 | </div> | |||
|
11 | <div class="main"> | |||
|
12 | <h2>Mercurial Repositories</h2> | |||
|
13 | ||||
|
14 | <table class="bigtable"> | |||
|
15 | <tr> | |||
|
16 | <th><a href="?sort={sort_name}">Name</a></th> | |||
|
17 | <th><a href="?sort={sort_description}">Description</a></th> | |||
|
18 | <th><a href="?sort={sort_contact}">Contact</a></th> | |||
|
19 | <th><a href="?sort={sort_lastchange}">Last change</a></th> | |||
|
20 | <th> </th> | |||
|
21 | </tr> | |||
|
22 | {entries%indexentry} | |||
|
23 | </table> | |||
|
24 | </div> | |||
|
25 | </div> | |||
|
26 | {footer} |
@@ -0,0 +1,53 b'' | |||||
|
1 | {header} | |||
|
2 | <title>{repo|escape}: {node|short} {path|escape}</title> | |||
|
3 | </head> | |||
|
4 | <body> | |||
|
5 | ||||
|
6 | <div class="container"> | |||
|
7 | <div class="menu"> | |||
|
8 | <div class="logo"> | |||
|
9 | <a href="http://www.selenic.com/mercurial/"> | |||
|
10 | <img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a> | |||
|
11 | </div> | |||
|
12 | <ul> | |||
|
13 | <li><a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">log</a></li> | |||
|
14 | <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> | |||
|
15 | <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> | |||
|
16 | </ul> | |||
|
17 | <ul> | |||
|
18 | <li><a href="{url}rev/{node|short}{sessionvars%urlparameter}">changeset</a></li> | |||
|
19 | <li class="active">browse</li> | |||
|
20 | </ul> | |||
|
21 | <ul> | |||
|
22 | {archives%archiveentry} | |||
|
23 | </ul> | |||
|
24 | </div> | |||
|
25 | ||||
|
26 | <div class="main"> | |||
|
27 | <h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a></h2> | |||
|
28 | <h3>directory {path|escape} @ {rev}:{node|short} {tags%changelogtag}</h3> | |||
|
29 | ||||
|
30 | <form class="search" action="{url}log"> | |||
|
31 | {sessionvars%hiddenformentry} | |||
|
32 | <p><input name="rev" id="search1" type="text" size="30"></p> | |||
|
33 | <span>find changesets by author, revision, | |||
|
34 | files, or words in the commit message</span> | |||
|
35 | </form> | |||
|
36 | ||||
|
37 | <table class="bigtable"> | |||
|
38 | <tr> | |||
|
39 | <th class="name">name</th> | |||
|
40 | <th class="size">size</th> | |||
|
41 | <th class="permissions">permissions</th> | |||
|
42 | </tr> | |||
|
43 | <tr class="fileline parity{upparity}"> | |||
|
44 | <td class="name"><a href="{url}file/{node|short}{up|urlescape}{sessionvars%urlparameter}">[up]</a></td> | |||
|
45 | <td class="size"></td> | |||
|
46 | <td class="permissions">drwxr-xr-x</td> | |||
|
47 | </tr> | |||
|
48 | {dentries%direntry} | |||
|
49 | {fentries%fileentry} | |||
|
50 | </table> | |||
|
51 | </div> | |||
|
52 | </div> | |||
|
53 | {footer} |
@@ -0,0 +1,12 b'' | |||||
|
1 | {header} | |||
|
2 | <title>Mercurial repository not found</title> | |||
|
3 | </head> | |||
|
4 | <body> | |||
|
5 | ||||
|
6 | <h2>Mercurial repository not found</h2> | |||
|
7 | ||||
|
8 | The specified repository "{repo|escape}" is unknown, sorry. | |||
|
9 | ||||
|
10 | Please go back to the main repository list page. | |||
|
11 | ||||
|
12 | {footer} |
@@ -0,0 +1,42 b'' | |||||
|
1 | {header} | |||
|
2 | <title>{repo|escape}: searching for {query|escape}</title> | |||
|
3 | </head> | |||
|
4 | <body> | |||
|
5 | ||||
|
6 | <div class="container"> | |||
|
7 | <div class="menu"> | |||
|
8 | <div class="logo"> | |||
|
9 | <a href="http://www.selenic.com/mercurial/"> | |||
|
10 | <img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a> | |||
|
11 | </div> | |||
|
12 | <ul> | |||
|
13 | <li><a href="{url}shortlog{sessionvars%urlparameter}">log</a></li> | |||
|
14 | <li><a href="{url}graph{sessionvars%urlparameter}">graph</a></li> | |||
|
15 | <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> | |||
|
16 | </ul> | |||
|
17 | </div> | |||
|
18 | ||||
|
19 | <div class="main"> | |||
|
20 | <h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a></h2> | |||
|
21 | <h3>searching for '{query|escape}'</h3> | |||
|
22 | ||||
|
23 | <form class="search" action="{url}log"> | |||
|
24 | {sessionvars%hiddenformentry} | |||
|
25 | <p><input name="rev" id="search1" type="text" size="30"></p> | |||
|
26 | <span>find changesets by author, revision, | |||
|
27 | files, or words in the commit message</span> | |||
|
28 | </form> | |||
|
29 | ||||
|
30 | <table class="bigtable"> | |||
|
31 | <tr> | |||
|
32 | <th class="age">age</th> | |||
|
33 | <th class="author">author</th> | |||
|
34 | <th class="description">description</th> | |||
|
35 | </tr> | |||
|
36 | {entries} | |||
|
37 | </table> | |||
|
38 | ||||
|
39 | </div> | |||
|
40 | </div> | |||
|
41 | ||||
|
42 | {footer} |
@@ -0,0 +1,56 b'' | |||||
|
1 | {header} | |||
|
2 | <title>{repo|escape}: log</title> | |||
|
3 | <link rel="alternate" type="application/atom+xml" | |||
|
4 | href="{url}atom-log" title="Atom feed for {repo|escape}"> | |||
|
5 | <link rel="alternate" type="application/rss+xml" | |||
|
6 | href="{url}rss-log" title="RSS feed for {repo|escape}"> | |||
|
7 | </head> | |||
|
8 | <body> | |||
|
9 | ||||
|
10 | <div class="container"> | |||
|
11 | <div class="menu"> | |||
|
12 | <div class="logo"> | |||
|
13 | <a href="http://www.selenic.com/mercurial/"> | |||
|
14 | <img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a> | |||
|
15 | </div> | |||
|
16 | <ul> | |||
|
17 | <li class="active">log</li> | |||
|
18 | <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> | |||
|
19 | <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> | |||
|
20 | </ul> | |||
|
21 | <ul> | |||
|
22 | <li><a href="{url}rev/{node|short}{sessionvars%urlparameter}">changeset</a></li> | |||
|
23 | <li><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">browse</a></li> | |||
|
24 | </ul> | |||
|
25 | <ul> | |||
|
26 | {archives%archiveentry} | |||
|
27 | </ul> | |||
|
28 | </div> | |||
|
29 | ||||
|
30 | <div class="main"> | |||
|
31 | <h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a></h2> | |||
|
32 | <h3>log</h3> | |||
|
33 | ||||
|
34 | <form class="search" action="{url}log"> | |||
|
35 | {sessionvars%hiddenformentry} | |||
|
36 | <p><input name="rev" id="search1" type="text" size="30"></p> | |||
|
37 | <span>find changesets by author, revision, | |||
|
38 | files, or words in the commit message</span> | |||
|
39 | </form> | |||
|
40 | ||||
|
41 | <div class="navigate">rev {rev}: {changenav%navshortentry}</div> | |||
|
42 | ||||
|
43 | <table class="bigtable"> | |||
|
44 | <tr> | |||
|
45 | <th class="age">age</th> | |||
|
46 | <th class="author">author</th> | |||
|
47 | <th class="description">description</th> | |||
|
48 | </tr> | |||
|
49 | {entries%shortlogentry} | |||
|
50 | </table> | |||
|
51 | ||||
|
52 | <div class="navigate">rev {rev}: {changenav%navshortentry}</div> | |||
|
53 | </div> | |||
|
54 | </div> | |||
|
55 | ||||
|
56 | {footer} |
@@ -0,0 +1,5 b'' | |||||
|
1 | <tr class="parity{parity}"> | |||
|
2 | <td class="age">{date|age}</td> | |||
|
3 | <td class="author">{author|person}</td> | |||
|
4 | <td class="description"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{desc|strip|firstline|escape}</a>{inbranch%changelogbranchname}{branches%changelogbranchhead}{tags%changelogtag}</td> | |||
|
5 | </tr> |
@@ -0,0 +1,44 b'' | |||||
|
1 | {header} | |||
|
2 | <title>{repo|escape}: tags</title> | |||
|
3 | <link rel="alternate" type="application/atom+xml" | |||
|
4 | href="{url}atom-tags" title="Atom feed for {repo|escape}: tags"> | |||
|
5 | <link rel="alternate" type="application/rss+xml" | |||
|
6 | href="{url}rss-tags" title="RSS feed for {repo|escape}: tags"> | |||
|
7 | </head> | |||
|
8 | <body> | |||
|
9 | ||||
|
10 | <div class="container"> | |||
|
11 | <div class="menu"> | |||
|
12 | <div class="logo"> | |||
|
13 | <a href="http://www.selenic.com/mercurial/"> | |||
|
14 | <img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a> | |||
|
15 | </div> | |||
|
16 | <ul> | |||
|
17 | <li><a href="{url}shortlog{sessionvars%urlparameter}">log</a></li> | |||
|
18 | <li><a href="{url}graph{sessionvars%urlparameter}">graph</a></li> | |||
|
19 | <li class="active">tags</li> | |||
|
20 | </ul> | |||
|
21 | </div> | |||
|
22 | ||||
|
23 | <div class="main"> | |||
|
24 | <h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a></h2> | |||
|
25 | <h3>tags</h3> | |||
|
26 | ||||
|
27 | <form class="search" action="{url}log"> | |||
|
28 | {sessionvars%hiddenformentry} | |||
|
29 | <p><input name="rev" id="search1" type="text" size="30"></p> | |||
|
30 | <span>find changesets by author, revision, | |||
|
31 | files, or words in the commit message</span> | |||
|
32 | </form> | |||
|
33 | ||||
|
34 | <table class="bigtable"> | |||
|
35 | <tr> | |||
|
36 | <th>tag</th> | |||
|
37 | <th>node</th> | |||
|
38 | </tr> | |||
|
39 | {entries%tagentry} | |||
|
40 | </table> | |||
|
41 | </div> | |||
|
42 | </div> | |||
|
43 | ||||
|
44 | {footer} |
@@ -2,13 +2,13 b" default = 'shortlog'" | |||||
2 |
|
2 | |||
3 | mimetype = 'text/html; charset={encoding}' |
|
3 | mimetype = 'text/html; charset={encoding}' | |
4 | header = header.tmpl |
|
4 | header = header.tmpl | |
5 | footer = footer.tmpl |
|
5 | footer = ../paper/footer.tmpl | |
6 | search = search.tmpl |
|
6 | search = ../paper/search.tmpl | |
7 |
|
7 | |||
8 | changelog = shortlog.tmpl |
|
8 | changelog = ../paper/shortlog.tmpl | |
9 | shortlog = shortlog.tmpl |
|
9 | shortlog = ../paper/shortlog.tmpl | |
10 | shortlogentry = shortlogentry.tmpl |
|
10 | shortlogentry = ../paper/shortlogentry.tmpl | |
11 | graph = graph.tmpl |
|
11 | graph = ../paper/graph.tmpl | |
12 |
|
12 | |||
13 | naventry = '<a href="{url}log/{node|short}{sessionvars%urlparameter}">{label|escape}</a> ' |
|
13 | naventry = '<a href="{url}log/{node|short}{sessionvars%urlparameter}">{label|escape}</a> ' | |
14 | navshortentry = '<a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">{label|escape}</a> ' |
|
14 | navshortentry = '<a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">{label|escape}</a> ' | |
@@ -18,20 +18,20 b' filedifflink = \'<a href="{url}diff/{node' | |||||
18 | filenodelink = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a> ' |
|
18 | filenodelink = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a> ' | |
19 | filenolink = '{file|escape} ' |
|
19 | filenolink = '{file|escape} ' | |
20 | fileellipses = '...' |
|
20 | fileellipses = '...' | |
21 | changelogentry = shortlogentry.tmpl |
|
21 | changelogentry = ../paper/shortlogentry.tmpl | |
22 | searchentry = shortlogentry.tmpl |
|
22 | searchentry = ../paper/shortlogentry.tmpl | |
23 | changeset = changeset.tmpl |
|
23 | changeset = ../paper/changeset.tmpl | |
24 | manifest = manifest.tmpl |
|
24 | manifest = ../paper/manifest.tmpl | |
25 |
|
25 | |||
26 | direntry = '<tr class="fileline parity{parity}"><td class="name"><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}"><img src="{staticurl}coal-folder.png"> {basename|escape}/</a> <a href="{url}file/{node|short}{path|urlescape}/{emptydirs|urlescape}{sessionvars%urlparameter}">{emptydirs|escape}</a><td class="size"></td><td class="permissions">drwxr-xr-x</td></tr>' |
|
26 | direntry = '<tr class="fileline parity{parity}"><td class="name"><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}"><img src="{staticurl}coal-folder.png"> {basename|escape}/</a> <a href="{url}file/{node|short}{path|urlescape}/{emptydirs|urlescape}{sessionvars%urlparameter}">{emptydirs|escape}</a><td class="size"></td><td class="permissions">drwxr-xr-x</td></tr>' | |
27 | fileentry = '<tr class="fileline parity{parity}"><td class="filename"><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}#l1"><img src="{staticurl}coal-file.png"> {basename|escape}</a></td><td class="size">{size}</td><td class="permissions">{permissions|permissions}</td></tr>' |
|
27 | fileentry = '<tr class="fileline parity{parity}"><td class="filename"><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}#l1"><img src="{staticurl}coal-file.png"> {basename|escape}</a></td><td class="size">{size}</td><td class="permissions">{permissions|permissions}</td></tr>' | |
28 |
|
28 | |||
29 | filerevision = filerevision.tmpl |
|
29 | filerevision = ../paper/filerevision.tmpl | |
30 | fileannotate = fileannotate.tmpl |
|
30 | fileannotate = ../paper/fileannotate.tmpl | |
31 | filediff = filediff.tmpl |
|
31 | filediff = ../paper/filediff.tmpl | |
32 | filelog = filelog.tmpl |
|
32 | filelog = ../paper/filelog.tmpl | |
33 | fileline = '<div class="parity{parity} source"><a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</div>' |
|
33 | fileline = '<div class="parity{parity} source"><a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</div>' | |
34 | filelogentry = filelogentry.tmpl |
|
34 | filelogentry = ../paper/filelogentry.tmpl | |
35 |
|
35 | |||
36 | annotateline = '<tr class="parity{parity}"><td class="annotate"><a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}#{targetline}" title="{node|short}: {desc|escape|firstline}">{author|user}@{rev}</a></td><td class="source"><a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</td></tr>' |
|
36 | annotateline = '<tr class="parity{parity}"><td class="annotate"><a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}#{targetline}" title="{node|short}: {desc|escape|firstline}">{author|user}@{rev}</a></td><td class="source"><a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</td></tr>' | |
37 |
|
37 | |||
@@ -54,7 +54,7 b' fileannotateparent = \'<tr><td class="met' | |||||
54 | changesetchild = '<a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a>' |
|
54 | changesetchild = '<a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a>' | |
55 | changelogchild = '<tr><th class="child">child</th><td class="child"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></td></tr>' |
|
55 | changelogchild = '<tr><th class="child">child</th><td class="child"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></td></tr>' | |
56 | fileannotatechild = '<tr><td class="metatag">child:</td><td><a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td></tr>' |
|
56 | fileannotatechild = '<tr><td class="metatag">child:</td><td><a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td></tr>' | |
57 | tags = tags.tmpl |
|
57 | tags = ../paper/tags.tmpl | |
58 | tagentry = '<tr class="tagEntry parity{parity}"><td><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{tag|escape}</a></td><td class="node">{node|short}</td></tr>' |
|
58 | tagentry = '<tr class="tagEntry parity{parity}"><td><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{tag|escape}</a></td><td class="node">{node|short}</td></tr>' | |
59 | changelogtag = '<span class="tag">{name|escape}</span> ' |
|
59 | changelogtag = '<span class="tag">{name|escape}</span> ' | |
60 | changesettag = '<span class="tag">{tag|escape}</span> ' |
|
60 | changesettag = '<span class="tag">{tag|escape}</span> ' | |
@@ -66,9 +66,9 b' filediffchild = \'<tr><th class="child">c' | |||||
66 | filelogchild = '<tr><th>child {rev}:</th><td><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td></tr>' |
|
66 | filelogchild = '<tr><th>child {rev}:</th><td><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td></tr>' | |
67 | indexentry = '<tr class="parity{parity}"><td><a href="{url}{sessionvars%urlparameter}">{name|escape}</a></td><td>{description}</td><td>{contact|obfuscate}</td><td class="age">{lastchange|age} ago</td><td class="indexlinks">{archives%indexarchiveentry}</td></tr>\n' |
|
67 | indexentry = '<tr class="parity{parity}"><td><a href="{url}{sessionvars%urlparameter}">{name|escape}</a></td><td>{description}</td><td>{contact|obfuscate}</td><td class="age">{lastchange|age} ago</td><td class="indexlinks">{archives%indexarchiveentry}</td></tr>\n' | |
68 | indexarchiveentry = '<a href="{url}archive/{node|short}{extension|urlescape}"> ↓{type|escape}</a>' |
|
68 | indexarchiveentry = '<a href="{url}archive/{node|short}{extension|urlescape}"> ↓{type|escape}</a>' | |
69 | index = index.tmpl |
|
69 | index = ../paper/index.tmpl | |
70 | archiveentry = '<li><a href="{url}archive/{node|short}{extension|urlescape}">{type|escape}</a></li>' |
|
70 | archiveentry = '<li><a href="{url}archive/{node|short}{extension|urlescape}">{type|escape}</a></li>' | |
71 | notfound = notfound.tmpl |
|
71 | notfound = ../paper/notfound.tmpl | |
72 | error = error.tmpl |
|
72 | error = ../paper/error.tmpl | |
73 | urlparameter = '{separator}{name}={value|urlescape}' |
|
73 | urlparameter = '{separator}{name}={value|urlescape}' | |
74 | hiddenformentry = '<input type="hidden" name="{name}" value="{value|escape}" />' |
|
74 | hiddenformentry = '<input type="hidden" name="{name}" value="{value|escape}" />' |
@@ -2,13 +2,13 b" default = 'shortlog'" | |||||
2 |
|
2 | |||
3 | mimetype = 'text/html; charset={encoding}' |
|
3 | mimetype = 'text/html; charset={encoding}' | |
4 | header = header.tmpl |
|
4 | header = header.tmpl | |
5 |
footer = |
|
5 | footer = footer.tmpl | |
6 |
search = |
|
6 | search = search.tmpl | |
7 |
|
7 | |||
8 |
changelog = |
|
8 | changelog = shortlog.tmpl | |
9 |
shortlog = |
|
9 | shortlog = shortlog.tmpl | |
10 |
shortlogentry = |
|
10 | shortlogentry = shortlogentry.tmpl | |
11 |
graph = |
|
11 | graph = graph.tmpl | |
12 |
|
12 | |||
13 | naventry = '<a href="{url}log/{node|short}{sessionvars%urlparameter}">{label|escape}</a> ' |
|
13 | naventry = '<a href="{url}log/{node|short}{sessionvars%urlparameter}">{label|escape}</a> ' | |
14 | navshortentry = '<a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">{label|escape}</a> ' |
|
14 | navshortentry = '<a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">{label|escape}</a> ' | |
@@ -18,20 +18,20 b' filedifflink = \'<a href="{url}diff/{node' | |||||
18 | filenodelink = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a> ' |
|
18 | filenodelink = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a> ' | |
19 | filenolink = '{file|escape} ' |
|
19 | filenolink = '{file|escape} ' | |
20 | fileellipses = '...' |
|
20 | fileellipses = '...' | |
21 |
changelogentry = |
|
21 | changelogentry = shortlogentry.tmpl | |
22 |
searchentry = |
|
22 | searchentry = shortlogentry.tmpl | |
23 |
changeset = |
|
23 | changeset = changeset.tmpl | |
24 |
manifest = |
|
24 | manifest = manifest.tmpl | |
25 |
|
25 | |||
26 | direntry = '<tr class="fileline parity{parity}"><td class="name"><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}"><img src="{staticurl}coal-folder.png"> {basename|escape}/</a> <a href="{url}file/{node|short}{path|urlescape}/{emptydirs|urlescape}{sessionvars%urlparameter}">{emptydirs|escape}</a><td class="size"></td><td class="permissions">drwxr-xr-x</td></tr>' |
|
26 | direntry = '<tr class="fileline parity{parity}"><td class="name"><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}"><img src="{staticurl}coal-folder.png"> {basename|escape}/</a> <a href="{url}file/{node|short}{path|urlescape}/{emptydirs|urlescape}{sessionvars%urlparameter}">{emptydirs|escape}</a><td class="size"></td><td class="permissions">drwxr-xr-x</td></tr>' | |
27 | fileentry = '<tr class="fileline parity{parity}"><td class="filename"><a href="{url}file/{node|short}/{file|urlescape}#l1{sessionvars%urlparameter}"><img src="{staticurl}coal-file.png"> {basename|escape}</a></td><td class="size">{size}</td><td class="permissions">{permissions|permissions}</td></tr>' |
|
27 | fileentry = '<tr class="fileline parity{parity}"><td class="filename"><a href="{url}file/{node|short}/{file|urlescape}#l1{sessionvars%urlparameter}"><img src="{staticurl}coal-file.png"> {basename|escape}</a></td><td class="size">{size}</td><td class="permissions">{permissions|permissions}</td></tr>' | |
28 |
|
28 | |||
29 |
filerevision = |
|
29 | filerevision = filerevision.tmpl | |
30 |
fileannotate = |
|
30 | fileannotate = fileannotate.tmpl | |
31 |
filediff = |
|
31 | filediff = filediff.tmpl | |
32 |
filelog = |
|
32 | filelog = filelog.tmpl | |
33 | fileline = '<div class="parity{parity} source"><a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</div>' |
|
33 | fileline = '<div class="parity{parity} source"><a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</div>' | |
34 |
filelogentry = |
|
34 | filelogentry = filelogentry.tmpl | |
35 |
|
35 | |||
36 | annotateline = '<tr class="parity{parity}"><td class="annotate"><a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}#{targetline}" title="{node|short}: {desc|escape|firstline}">{author|user}@{rev}</a></td><td class="source"><a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</td></tr>' |
|
36 | annotateline = '<tr class="parity{parity}"><td class="annotate"><a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}#{targetline}" title="{node|short}: {desc|escape|firstline}">{author|user}@{rev}</a></td><td class="source"><a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</td></tr>' | |
37 |
|
37 | |||
@@ -54,7 +54,7 b' fileannotateparent = \'<tr><td class="met' | |||||
54 | changesetchild = '<a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a>' |
|
54 | changesetchild = '<a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a>' | |
55 | changelogchild = '<tr><th class="child">child</th><td class="child"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></td></tr>' |
|
55 | changelogchild = '<tr><th class="child">child</th><td class="child"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></td></tr>' | |
56 | fileannotatechild = '<tr><td class="metatag">child:</td><td><a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td></tr>' |
|
56 | fileannotatechild = '<tr><td class="metatag">child:</td><td><a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td></tr>' | |
57 |
tags = |
|
57 | tags = tags.tmpl | |
58 | tagentry = '<tr class="tagEntry parity{parity}"><td><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{tag|escape}</a></td><td class="node">{node|short}</td></tr>' |
|
58 | tagentry = '<tr class="tagEntry parity{parity}"><td><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{tag|escape}</a></td><td class="node">{node|short}</td></tr>' | |
59 | changelogtag = '<span class="tag">{name|escape}</span> ' |
|
59 | changelogtag = '<span class="tag">{name|escape}</span> ' | |
60 | changesettag = '<span class="tag">{tag|escape}</span> ' |
|
60 | changesettag = '<span class="tag">{tag|escape}</span> ' | |
@@ -66,9 +66,9 b' filediffchild = \'<tr><th class="child">c' | |||||
66 | filelogchild = '<tr><th>child {rev}:</th><td><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td></tr>' |
|
66 | filelogchild = '<tr><th>child {rev}:</th><td><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td></tr>' | |
67 | indexentry = '<tr class="parity{parity}"><td><a href="{url}{sessionvars%urlparameter}">{name|escape}</a></td><td>{description}</td><td>{contact|obfuscate}</td><td class="age">{lastchange|age} ago</td><td class="indexlinks">{archives%indexarchiveentry}</td></tr>\n' |
|
67 | indexentry = '<tr class="parity{parity}"><td><a href="{url}{sessionvars%urlparameter}">{name|escape}</a></td><td>{description}</td><td>{contact|obfuscate}</td><td class="age">{lastchange|age} ago</td><td class="indexlinks">{archives%indexarchiveentry}</td></tr>\n' | |
68 | indexarchiveentry = '<a href="{url}archive/{node|short}{extension|urlescape}"> ↓{type|escape}</a>' |
|
68 | indexarchiveentry = '<a href="{url}archive/{node|short}{extension|urlescape}"> ↓{type|escape}</a>' | |
69 |
index = |
|
69 | index = index.tmpl | |
70 | archiveentry = '<li><a href="{url}archive/{node|short}{extension|urlescape}">{type|escape}</a></li>' |
|
70 | archiveentry = '<li><a href="{url}archive/{node|short}{extension|urlescape}">{type|escape}</a></li>' | |
71 |
notfound = |
|
71 | notfound = notfound.tmpl | |
72 |
error = |
|
72 | error = error.tmpl | |
73 | urlparameter = '{separator}{name}={value|urlescape}' |
|
73 | urlparameter = '{separator}{name}={value|urlescape}' | |
74 | hiddenformentry = '<input type="hidden" name="{name}" value="{value|escape}" />' |
|
74 | hiddenformentry = '<input type="hidden" name="{name}" value="{value|escape}" />' |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
General Comments 0
You need to be logged in to leave comments.
Login now