Mercurial > hg
annotate templates/monoblue/graph.tmpl @ 9504:a1ee850f49e3
i18n-da: random small strings, only 499 strings left
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Tue, 29 Sep 2009 00:42:14 +0200 |
parents | 8b47efdf40ee |
children | 17c6d5eab25d |
rev | line source |
---|---|
8430
8b47efdf40ee
monoblue: use newer template syntax everywhere
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
8355
diff
changeset
|
1 {header} |
8b47efdf40ee
monoblue: use newer template syntax everywhere
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
8355
diff
changeset
|
2 <title>{repo|escape}: graph</title> |
8b47efdf40ee
monoblue: use newer template syntax everywhere
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
8355
diff
changeset
|
3 <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for {repo|escape}"/> |
8b47efdf40ee
monoblue: use newer template syntax everywhere
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
8355
diff
changeset
|
4 <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for {repo|escape}"/> |
8b47efdf40ee
monoblue: use newer template syntax everywhere
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
8355
diff
changeset
|
5 <!--[if IE]><script type="text/javascript" src="{staticurl}excanvas.js"></script><![endif]--> |
7111 | 6 </head> |
7 | |
8 <body> | |
9 <div id="container"> | |
10 <div class="page-header"> | |
8430
8b47efdf40ee
monoblue: use newer template syntax everywhere
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
8355
diff
changeset
|
11 <h1><a href="{url}summary{sessionvars%urlparameter}">{repo|escape}</a> / graph</h1> |
7111 | 12 |
13 <form action="{url}log"> | |
14 {sessionvars%hiddenformentry} | |
15 <dl class="search"> | |
16 <dt><label>Search: </label></dt> | |
17 <dd><input type="text" name="rev" /></dd> | |
18 </dl> | |
19 </form> | |
20 | |
21 <ul class="page-nav"> | |
22 <li><a href="{url}summary{sessionvars%urlparameter}">summary</a></li> | |
23 <li><a href="{url}shortlog{sessionvars%urlparameter}">shortlog</a></li> | |
24 <li><a href="{url}changelog{sessionvars%urlparameter}">changelog</a></li> | |
25 <li class="current">graph</li> | |
26 <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> | |
8355
5ba798f339c8
monoblue: add branches page
Sune Foldager <cryo@cyanite.org>
parents:
8236
diff
changeset
|
27 <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li> |
8430
8b47efdf40ee
monoblue: use newer template syntax everywhere
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
8355
diff
changeset
|
28 <li><a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a></li> |
7111 | 29 </ul> |
30 </div> | |
31 | |
32 <h2 class="no-link no-border">graph</h2> | |
33 | |
34 <div id="noscript">The revision graph only works with JavaScript-enabled browsers.</div> | |
35 <div id="wrapper"> | |
36 <ul id="nodebgs"></ul> | |
8430
8b47efdf40ee
monoblue: use newer template syntax everywhere
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
8355
diff
changeset
|
37 <canvas id="graph" width="224" height="{canvasheight}"></canvas> |
7111 | 38 <ul id="graphnodes"></ul> |
39 </div> | |
40 | |
8430
8b47efdf40ee
monoblue: use newer template syntax everywhere
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
8355
diff
changeset
|
41 <script type="text/javascript" src="{staticurl}graph.js"></script> |
7111 | 42 <script> |
43 <!-- hide script content | |
44 | |
45 document.getElementById('noscript').style.display = 'none'; | |
46 | |
47 var data = {jsdata|json}; | |
48 var graph = new Graph(); | |
49 graph.scale({bg_height}); | |
50 | |
51 graph.edge = function(x0, y0, x1, y1, color) { | |
52 | |
53 this.setColor(color, 0.0, 0.65); | |
54 this.ctx.beginPath(); | |
55 this.ctx.moveTo(x0, y0); | |
56 this.ctx.lineTo(x1, y1); | |
57 this.ctx.stroke(); | |
58 | |
59 } | |
60 | |
61 var revlink = '<li style="_STYLE"><span class="desc">'; | |
62 revlink += '<a href="{url}rev/_NODEID{sessionvars%urlparameter}" title="_NODEID">_DESC</a>'; | |
7408
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
63 revlink += '</span>_TAGS<span class="info">_DATE ago, by _USER</span></li>'; |
7111 | 64 |
65 graph.vertex = function(x, y, color, parity, cur) { | |
66 | |
67 this.ctx.beginPath(); | |
68 color = this.setColor(color, 0.25, 0.75); | |
69 this.ctx.arc(x, y, radius, 0, Math.PI * 2, true); | |
70 this.ctx.fill(); | |
71 | |
72 var bg = '<li class="bg parity' + parity + '"></li>'; | |
73 var left = (this.columns + 1) * this.bg_height; | |
74 var nstyle = 'padding-left: ' + left + 'px;'; | |
75 var item = revlink.replace(/_STYLE/, nstyle); | |
76 item = item.replace(/_PARITY/, 'parity' + parity); | |
77 item = item.replace(/_NODEID/, cur[0]); | |
78 item = item.replace(/_NODEID/, cur[0]); | |
8236
9f53e203a09b
webcommands: move nonempty logic from JavaScript to Python
Martin Geisler <mg@lazybytes.net>
parents:
8235
diff
changeset
|
79 item = item.replace(/_DESC/, cur[3]); |
7111 | 80 item = item.replace(/_USER/, cur[4]); |
81 item = item.replace(/_DATE/, cur[5]); | |
82 | |
7408
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
83 var tagspan = ''; |
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
84 if (cur[7].length || (cur[6][0] != 'default' || cur[6][1])) { |
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
85 tagspan = '<span class="logtags">'; |
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
86 if (cur[6][1]) { |
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
87 tagspan += '<span class="branchtag" title="' + cur[6][0] + '">'; |
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
88 tagspan += cur[6][0] + '</span> '; |
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
89 } else if (!cur[6][1] && cur[6][0] != 'default') { |
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
90 tagspan += '<span class="inbranchtag" title="' + cur[6][0] + '">'; |
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
91 tagspan += cur[6][0] + '</span> '; |
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
92 } |
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
93 if (cur[7].length) { |
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
94 for (var t in cur[7]) { |
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
95 var tag = cur[7][t]; |
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
96 tagspan += '<span class="tagtag">' + tag + '</span> '; |
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
97 } |
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
98 } |
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
99 tagspan += '</span>'; |
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
100 } |
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
101 |
f031a12dfc31
coal/paper/monoblue: show branch names in hgweb graph
Benoit Allard <benoit@aeteurope.nl>
parents:
7111
diff
changeset
|
102 item = item.replace(/_TAGS/, tagspan); |
7111 | 103 return [bg, item]; |
104 | |
105 } | |
106 | |
107 graph.render(data); | |
108 | |
109 // stop hiding script --> | |
110 </script> | |
111 | |
112 <div class="page-path"> | |
7548
e8b818029ed6
monoblue: add less/more links to graph page
Pascal Quantin <pascal.quantin@gmail.com>
parents:
7408
diff
changeset
|
113 <a href="{url}graph/{rev}{lessvars%urlparameter}">less</a> |
e8b818029ed6
monoblue: add less/more links to graph page
Pascal Quantin <pascal.quantin@gmail.com>
parents:
7408
diff
changeset
|
114 <a href="{url}graph/{rev}{morevars%urlparameter}">more</a> |
e8b818029ed6
monoblue: add less/more links to graph page
Pascal Quantin <pascal.quantin@gmail.com>
parents:
7408
diff
changeset
|
115 | {changenav%navgraphentry} |
7111 | 116 </div> |
117 | |
8430
8b47efdf40ee
monoblue: use newer template syntax everywhere
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
8355
diff
changeset
|
118 {footer} |