##// END OF EJS Templates
tests: test symbolic revision (de)reference in all hgweb styles...
Anton Shestakov -
r25586:e7455316 default
parent child Browse files
Show More
This diff has been collapsed as it changes many lines, (980 lines changed) Show them Hide them
@@ -0,0 +1,980 b''
1 #require serve
2
3 Test symbolic revision usage in links produced by hgweb pages. There are
4 multiple issues related to this:
5 - issue2296
6 - issue2826
7 - issue3594
8 - issue3634
9
10 Set up the repo
11
12 $ hg init test
13 $ cd test
14 $ echo 0 > foo
15 $ mkdir dir
16 $ echo 0 > dir/bar
17 $ hg ci -Am 'first'
18 adding dir/bar
19 adding foo
20 $ echo 1 >> foo
21 $ hg ci -m 'second'
22 $ echo 2 >> foo
23 $ hg ci -m 'third'
24 $ hg bookmark -r1 xyzzy
25
26 $ hg log -G --template '{rev}:{node|short} {tags} {bookmarks}\n'
27 @ 2:9d8c40cba617 tip
28 |
29 o 1:a7c1559b7bba xyzzy
30 |
31 o 0:43c799df6e75
32
33 $ hg serve --config web.allow_archive=zip -n test -p $HGPORT -d --pid-file=hg.pid -E errors.log
34 $ cat hg.pid >> $DAEMON_PIDS
35
36 $ REVLINKS='href=[^>]+(rev=|/)(43c799df6e75|0|a7c1559b7bba|1|xyzzy|9d8c40cba617|2|tip)'
37
38 (De)referencing symbolic revisions (paper)
39
40 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'shortlog?style=paper' | egrep $REVLINKS
41 <li><a href="/graph/9d8c40cba617?style=paper">graph</a></li>
42 <li><a href="/rev/9d8c40cba617?style=paper">changeset</a></li>
43 <li><a href="/file/9d8c40cba617?style=paper">browse</a></li>
44 <a href="/archive/tip.zip">zip</a>
45 <a href="/shortlog/2?revcount=30&style=paper">less</a>
46 <a href="/shortlog/2?revcount=120&style=paper">more</a>
47 | rev 2: <a href="/shortlog/43c799df6e75?style=paper">(0)</a> <a href="/shortlog/tip?style=paper">tip</a>
48 <a href="/rev/9d8c40cba617?style=paper">third</a>
49 <a href="/rev/a7c1559b7bba?style=paper">second</a>
50 <a href="/rev/43c799df6e75?style=paper">first</a>
51 <a href="/shortlog/2?revcount=30&style=paper">less</a>
52 <a href="/shortlog/2?revcount=120&style=paper">more</a>
53 | rev 2: <a href="/shortlog/43c799df6e75?style=paper">(0)</a> <a href="/shortlog/tip?style=paper">tip</a>
54
55 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'graph?style=paper' | egrep $REVLINKS
56 <li><a href="/shortlog/9d8c40cba617?style=paper">log</a></li>
57 <li><a href="/rev/9d8c40cba617?style=paper">changeset</a></li>
58 <li><a href="/file/9d8c40cba617?style=paper">browse</a></li>
59 <a href="/graph/2?revcount=30&style=paper">less</a>
60 <a href="/graph/2?revcount=120&style=paper">more</a>
61 | rev 2: <a href="/graph/43c799df6e75?style=paper">(0)</a> <a href="/graph/tip?style=paper">tip</a>
62 <a href="/graph/2?revcount=30&style=paper">less</a>
63 <a href="/graph/2?revcount=120&style=paper">more</a>
64 | rev 2: <a href="/graph/43c799df6e75?style=paper">(0)</a> <a href="/graph/tip?style=paper">tip</a>
65
66 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'file?style=paper' | egrep $REVLINKS
67 <li><a href="/shortlog/9d8c40cba617?style=paper">log</a></li>
68 <li><a href="/graph/9d8c40cba617?style=paper">graph</a></li>
69 <li><a href="/rev/9d8c40cba617?style=paper">changeset</a></li>
70 <a href="/archive/9d8c40cba617.zip">zip</a>
71 <td class="name"><a href="/file/9d8c40cba617/?style=paper">[up]</a></td>
72 <a href="/file/9d8c40cba617/dir?style=paper">
73 <a href="/file/9d8c40cba617/dir/?style=paper">
74 <a href="/file/9d8c40cba617/foo?style=paper">
75
76 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'shortlog?style=paper&rev=all()' | egrep $REVLINKS
77 <a href="/rev/9d8c40cba617?style=paper">third</a>
78 <a href="/rev/a7c1559b7bba?style=paper">second</a>
79 <a href="/rev/43c799df6e75?style=paper">first</a>
80
81 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'rev/xyzzy?style=paper' | egrep $REVLINKS
82 <li><a href="/shortlog/a7c1559b7bba?style=paper">log</a></li>
83 <li><a href="/graph/a7c1559b7bba?style=paper">graph</a></li>
84 <li><a href="/raw-rev/a7c1559b7bba?style=paper">raw</a></li>
85 <li><a href="/file/a7c1559b7bba?style=paper">browse</a></li>
86 <a href="/archive/a7c1559b7bba.zip">zip</a>
87 <td class="author"><a href="/rev/43c799df6e75?style=paper">43c799df6e75</a> </td>
88 <td class="author"> <a href="/rev/9d8c40cba617?style=paper">9d8c40cba617</a></td>
89 <td class="files"><a href="/file/a7c1559b7bba/foo?style=paper">foo</a> </td>
90
91 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'shortlog/xyzzy?style=paper' | egrep $REVLINKS
92 <li><a href="/graph/a7c1559b7bba?style=paper">graph</a></li>
93 <li><a href="/rev/a7c1559b7bba?style=paper">changeset</a></li>
94 <li><a href="/file/a7c1559b7bba?style=paper">browse</a></li>
95 <a href="/archive/tip.zip">zip</a>
96 <a href="/shortlog/1?revcount=30&style=paper">less</a>
97 <a href="/shortlog/1?revcount=120&style=paper">more</a>
98 | rev 1: <a href="/shortlog/43c799df6e75?style=paper">(0)</a> <a href="/shortlog/tip?style=paper">tip</a>
99 <a href="/rev/a7c1559b7bba?style=paper">second</a>
100 <a href="/rev/43c799df6e75?style=paper">first</a>
101 <a href="/shortlog/1?revcount=30&style=paper">less</a>
102 <a href="/shortlog/1?revcount=120&style=paper">more</a>
103 | rev 1: <a href="/shortlog/43c799df6e75?style=paper">(0)</a> <a href="/shortlog/tip?style=paper">tip</a>
104
105 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'graph/xyzzy?style=paper' | egrep $REVLINKS
106 <li><a href="/shortlog/a7c1559b7bba?style=paper">log</a></li>
107 <li><a href="/rev/a7c1559b7bba?style=paper">changeset</a></li>
108 <li><a href="/file/a7c1559b7bba?style=paper">browse</a></li>
109 <a href="/graph/1?revcount=30&style=paper">less</a>
110 <a href="/graph/1?revcount=120&style=paper">more</a>
111 | rev 1: <a href="/graph/43c799df6e75?style=paper">(0)</a> <a href="/graph/tip?style=paper">tip</a>
112 <a href="/graph/1?revcount=30&style=paper">less</a>
113 <a href="/graph/1?revcount=120&style=paper">more</a>
114 | rev 1: <a href="/graph/43c799df6e75?style=paper">(0)</a> <a href="/graph/tip?style=paper">tip</a>
115
116 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'file/xyzzy?style=paper' | egrep $REVLINKS
117 <li><a href="/shortlog/a7c1559b7bba?style=paper">log</a></li>
118 <li><a href="/graph/a7c1559b7bba?style=paper">graph</a></li>
119 <li><a href="/rev/a7c1559b7bba?style=paper">changeset</a></li>
120 <a href="/archive/a7c1559b7bba.zip">zip</a>
121 <td class="name"><a href="/file/a7c1559b7bba/?style=paper">[up]</a></td>
122 <a href="/file/a7c1559b7bba/dir?style=paper">
123 <a href="/file/a7c1559b7bba/dir/?style=paper">
124 <a href="/file/a7c1559b7bba/foo?style=paper">
125
126 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'file/xyzzy/foo?style=paper' | egrep $REVLINKS
127 <li><a href="/shortlog/a7c1559b7bba?style=paper">log</a></li>
128 <li><a href="/graph/a7c1559b7bba?style=paper">graph</a></li>
129 <li><a href="/rev/a7c1559b7bba?style=paper">changeset</a></li>
130 <li><a href="/file/a7c1559b7bba/?style=paper">browse</a></li>
131 <li><a href="/file/tip/foo?style=paper">latest</a></li>
132 <li><a href="/diff/a7c1559b7bba/foo?style=paper">diff</a></li>
133 <li><a href="/comparison/a7c1559b7bba/foo?style=paper">comparison</a></li>
134 <li><a href="/annotate/a7c1559b7bba/foo?style=paper">annotate</a></li>
135 <li><a href="/log/a7c1559b7bba/foo?style=paper">file log</a></li>
136 <li><a href="/raw-file/a7c1559b7bba/foo">raw</a></li>
137 <td class="author"><a href="/file/43c799df6e75/foo?style=paper">43c799df6e75</a> </td>
138 <td class="author"><a href="/file/9d8c40cba617/foo?style=paper">9d8c40cba617</a> </td>
139
140 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'log/xyzzy/foo?style=paper' | egrep $REVLINKS
141 href="/atom-log/tip/foo" title="Atom feed for test:foo" />
142 href="/rss-log/tip/foo" title="RSS feed for test:foo" />
143 <li><a href="/shortlog/a7c1559b7bba?style=paper">log</a></li>
144 <li><a href="/graph/a7c1559b7bba?style=paper">graph</a></li>
145 <li><a href="/rev/a7c1559b7bba?style=paper">changeset</a></li>
146 <li><a href="/file/a7c1559b7bba?style=paper">browse</a></li>
147 <li><a href="/file/a7c1559b7bba/foo?style=paper">file</a></li>
148 <li><a href="/diff/a7c1559b7bba/foo?style=paper">diff</a></li>
149 <li><a href="/comparison/a7c1559b7bba/foo?style=paper">comparison</a></li>
150 <li><a href="/annotate/a7c1559b7bba/foo?style=paper">annotate</a></li>
151 <li><a href="/raw-file/a7c1559b7bba/foo">raw</a></li>
152 <a href="/atom-log/a7c1559b7bba/foo" title="subscribe to atom feed">
153 <a href="/log/a7c1559b7bba/foo?revcount=30&style=paper">less</a>
154 <a href="/log/a7c1559b7bba/foo?revcount=120&style=paper">more</a>
155 | <a href="/log/43c799df6e75/foo?style=paper">(0)</a> <a href="/log/tip/foo?style=paper">tip</a> </div>
156 <a href="/rev/a7c1559b7bba?style=paper">second</a>
157 <a href="/rev/43c799df6e75?style=paper">first</a>
158 <a href="/log/a7c1559b7bba/foo?revcount=30&style=paper">less</a>
159 <a href="/log/a7c1559b7bba/foo?revcount=120&style=paper">more</a>
160 | <a href="/log/43c799df6e75/foo?style=paper">(0)</a> <a href="/log/tip/foo?style=paper">tip</a>
161
162 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'annotate/xyzzy/foo?style=paper' | egrep $REVLINKS
163 <li><a href="/shortlog/a7c1559b7bba?style=paper">log</a></li>
164 <li><a href="/graph/a7c1559b7bba?style=paper">graph</a></li>
165 <li><a href="/rev/a7c1559b7bba?style=paper">changeset</a></li>
166 <li><a href="/file/a7c1559b7bba/?style=paper">browse</a></li>
167 <li><a href="/file/a7c1559b7bba/foo?style=paper">file</a></li>
168 <li><a href="/file/tip/foo?style=paper">latest</a></li>
169 <li><a href="/diff/a7c1559b7bba/foo?style=paper">diff</a></li>
170 <li><a href="/comparison/a7c1559b7bba/foo?style=paper">comparison</a></li>
171 <li><a href="/log/a7c1559b7bba/foo?style=paper">file log</a></li>
172 <li><a href="/raw-annotate/a7c1559b7bba/foo">raw</a></li>
173 <td class="author"><a href="/file/43c799df6e75/foo?style=paper">43c799df6e75</a> </td>
174 <td class="author"><a href="/file/9d8c40cba617/foo?style=paper">9d8c40cba617</a> </td>
175 <a href="/annotate/43c799df6e75/foo?style=paper#l1"
176 <a href="/annotate/a7c1559b7bba/foo?style=paper#l2"
177
178 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'diff/xyzzy/foo?style=paper' | egrep $REVLINKS
179 <li><a href="/shortlog/a7c1559b7bba?style=paper">log</a></li>
180 <li><a href="/graph/a7c1559b7bba?style=paper">graph</a></li>
181 <li><a href="/rev/a7c1559b7bba?style=paper">changeset</a></li>
182 <li><a href="/file/a7c1559b7bba?style=paper">browse</a></li>
183 <li><a href="/file/a7c1559b7bba/foo?style=paper">file</a></li>
184 <li><a href="/file/tip/foo?style=paper">latest</a></li>
185 <li><a href="/comparison/a7c1559b7bba/foo?style=paper">comparison</a></li>
186 <li><a href="/annotate/a7c1559b7bba/foo?style=paper">annotate</a></li>
187 <li><a href="/log/a7c1559b7bba/foo?style=paper">file log</a></li>
188 <li><a href="/raw-file/a7c1559b7bba/foo">raw</a></li>
189 <td><a href="/file/43c799df6e75/foo?style=paper">43c799df6e75</a> </td>
190 <td><a href="/file/9d8c40cba617/foo?style=paper">9d8c40cba617</a> </td>
191
192 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'comparison/xyzzy/foo?style=paper' | egrep $REVLINKS
193 <li><a href="/shortlog/a7c1559b7bba?style=paper">log</a></li>
194 <li><a href="/graph/a7c1559b7bba?style=paper">graph</a></li>
195 <li><a href="/rev/a7c1559b7bba?style=paper">changeset</a></li>
196 <li><a href="/file/a7c1559b7bba?style=paper">browse</a></li>
197 <li><a href="/file/a7c1559b7bba/foo?style=paper">file</a></li>
198 <li><a href="/file/tip/foo?style=paper">latest</a></li>
199 <li><a href="/diff/a7c1559b7bba/foo?style=paper">diff</a></li>
200 <li><a href="/annotate/a7c1559b7bba/foo?style=paper">annotate</a></li>
201 <li><a href="/log/a7c1559b7bba/foo?style=paper">file log</a></li>
202 <li><a href="/raw-file/a7c1559b7bba/foo">raw</a></li>
203 <td><a href="/file/43c799df6e75/foo?style=paper">43c799df6e75</a> </td>
204 <td><a href="/file/9d8c40cba617/foo?style=paper">9d8c40cba617</a> </td>
205
206 (De)referencing symbolic revisions (coal)
207
208 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'shortlog?style=coal' | egrep $REVLINKS
209 <li><a href="/graph/9d8c40cba617?style=coal">graph</a></li>
210 <li><a href="/rev/9d8c40cba617?style=coal">changeset</a></li>
211 <li><a href="/file/9d8c40cba617?style=coal">browse</a></li>
212 <a href="/archive/tip.zip">zip</a>
213 <a href="/shortlog/2?revcount=30&style=coal">less</a>
214 <a href="/shortlog/2?revcount=120&style=coal">more</a>
215 | rev 2: <a href="/shortlog/43c799df6e75?style=coal">(0)</a> <a href="/shortlog/tip?style=coal">tip</a>
216 <a href="/rev/9d8c40cba617?style=coal">third</a>
217 <a href="/rev/a7c1559b7bba?style=coal">second</a>
218 <a href="/rev/43c799df6e75?style=coal">first</a>
219 <a href="/shortlog/2?revcount=30&style=coal">less</a>
220 <a href="/shortlog/2?revcount=120&style=coal">more</a>
221 | rev 2: <a href="/shortlog/43c799df6e75?style=coal">(0)</a> <a href="/shortlog/tip?style=coal">tip</a>
222
223 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'graph?style=coal' | egrep $REVLINKS
224 <li><a href="/shortlog/9d8c40cba617?style=coal">log</a></li>
225 <li><a href="/rev/9d8c40cba617?style=coal">changeset</a></li>
226 <li><a href="/file/9d8c40cba617?style=coal">browse</a></li>
227 <a href="/graph/2?revcount=30&style=coal">less</a>
228 <a href="/graph/2?revcount=120&style=coal">more</a>
229 | rev 2: <a href="/graph/43c799df6e75?style=coal">(0)</a> <a href="/graph/tip?style=coal">tip</a>
230 <a href="/graph/2?revcount=30&style=coal">less</a>
231 <a href="/graph/2?revcount=120&style=coal">more</a>
232 | rev 2: <a href="/graph/43c799df6e75?style=coal">(0)</a> <a href="/graph/tip?style=coal">tip</a>
233
234 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'file?style=coal' | egrep $REVLINKS
235 <li><a href="/shortlog/9d8c40cba617?style=coal">log</a></li>
236 <li><a href="/graph/9d8c40cba617?style=coal">graph</a></li>
237 <li><a href="/rev/9d8c40cba617?style=coal">changeset</a></li>
238 <a href="/archive/9d8c40cba617.zip">zip</a>
239 <td class="name"><a href="/file/9d8c40cba617/?style=coal">[up]</a></td>
240 <a href="/file/9d8c40cba617/dir?style=coal">
241 <a href="/file/9d8c40cba617/dir/?style=coal">
242 <a href="/file/9d8c40cba617/foo?style=coal">
243
244 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'shortlog?style=coal&rev=all()' | egrep $REVLINKS
245 <a href="/rev/9d8c40cba617?style=coal">third</a>
246 <a href="/rev/a7c1559b7bba?style=coal">second</a>
247 <a href="/rev/43c799df6e75?style=coal">first</a>
248
249 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'rev/xyzzy?style=coal' | egrep $REVLINKS
250 <li><a href="/shortlog/a7c1559b7bba?style=coal">log</a></li>
251 <li><a href="/graph/a7c1559b7bba?style=coal">graph</a></li>
252 <li><a href="/raw-rev/a7c1559b7bba?style=coal">raw</a></li>
253 <li><a href="/file/a7c1559b7bba?style=coal">browse</a></li>
254 <a href="/archive/a7c1559b7bba.zip">zip</a>
255 <td class="author"><a href="/rev/43c799df6e75?style=coal">43c799df6e75</a> </td>
256 <td class="author"> <a href="/rev/9d8c40cba617?style=coal">9d8c40cba617</a></td>
257 <td class="files"><a href="/file/a7c1559b7bba/foo?style=coal">foo</a> </td>
258
259 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'shortlog/xyzzy?style=coal' | egrep $REVLINKS
260 <li><a href="/graph/a7c1559b7bba?style=coal">graph</a></li>
261 <li><a href="/rev/a7c1559b7bba?style=coal">changeset</a></li>
262 <li><a href="/file/a7c1559b7bba?style=coal">browse</a></li>
263 <a href="/archive/tip.zip">zip</a>
264 <a href="/shortlog/1?revcount=30&style=coal">less</a>
265 <a href="/shortlog/1?revcount=120&style=coal">more</a>
266 | rev 1: <a href="/shortlog/43c799df6e75?style=coal">(0)</a> <a href="/shortlog/tip?style=coal">tip</a>
267 <a href="/rev/a7c1559b7bba?style=coal">second</a>
268 <a href="/rev/43c799df6e75?style=coal">first</a>
269 <a href="/shortlog/1?revcount=30&style=coal">less</a>
270 <a href="/shortlog/1?revcount=120&style=coal">more</a>
271 | rev 1: <a href="/shortlog/43c799df6e75?style=coal">(0)</a> <a href="/shortlog/tip?style=coal">tip</a>
272
273 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'graph/xyzzy?style=coal' | egrep $REVLINKS
274 <li><a href="/shortlog/a7c1559b7bba?style=coal">log</a></li>
275 <li><a href="/rev/a7c1559b7bba?style=coal">changeset</a></li>
276 <li><a href="/file/a7c1559b7bba?style=coal">browse</a></li>
277 <a href="/graph/1?revcount=30&style=coal">less</a>
278 <a href="/graph/1?revcount=120&style=coal">more</a>
279 | rev 1: <a href="/graph/43c799df6e75?style=coal">(0)</a> <a href="/graph/tip?style=coal">tip</a>
280 <a href="/graph/1?revcount=30&style=coal">less</a>
281 <a href="/graph/1?revcount=120&style=coal">more</a>
282 | rev 1: <a href="/graph/43c799df6e75?style=coal">(0)</a> <a href="/graph/tip?style=coal">tip</a>
283
284 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'file/xyzzy?style=coal' | egrep $REVLINKS
285 <li><a href="/shortlog/a7c1559b7bba?style=coal">log</a></li>
286 <li><a href="/graph/a7c1559b7bba?style=coal">graph</a></li>
287 <li><a href="/rev/a7c1559b7bba?style=coal">changeset</a></li>
288 <a href="/archive/a7c1559b7bba.zip">zip</a>
289 <td class="name"><a href="/file/a7c1559b7bba/?style=coal">[up]</a></td>
290 <a href="/file/a7c1559b7bba/dir?style=coal">
291 <a href="/file/a7c1559b7bba/dir/?style=coal">
292 <a href="/file/a7c1559b7bba/foo?style=coal">
293
294 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'file/xyzzy/foo?style=coal' | egrep $REVLINKS
295 <li><a href="/shortlog/a7c1559b7bba?style=coal">log</a></li>
296 <li><a href="/graph/a7c1559b7bba?style=coal">graph</a></li>
297 <li><a href="/rev/a7c1559b7bba?style=coal">changeset</a></li>
298 <li><a href="/file/a7c1559b7bba/?style=coal">browse</a></li>
299 <li><a href="/file/tip/foo?style=coal">latest</a></li>
300 <li><a href="/diff/a7c1559b7bba/foo?style=coal">diff</a></li>
301 <li><a href="/comparison/a7c1559b7bba/foo?style=coal">comparison</a></li>
302 <li><a href="/annotate/a7c1559b7bba/foo?style=coal">annotate</a></li>
303 <li><a href="/log/a7c1559b7bba/foo?style=coal">file log</a></li>
304 <li><a href="/raw-file/a7c1559b7bba/foo">raw</a></li>
305 <td class="author"><a href="/file/43c799df6e75/foo?style=coal">43c799df6e75</a> </td>
306 <td class="author"><a href="/file/9d8c40cba617/foo?style=coal">9d8c40cba617</a> </td>
307
308 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'log/xyzzy/foo?style=coal' | egrep $REVLINKS
309 href="/atom-log/tip/foo" title="Atom feed for test:foo" />
310 href="/rss-log/tip/foo" title="RSS feed for test:foo" />
311 <li><a href="/shortlog/a7c1559b7bba?style=coal">log</a></li>
312 <li><a href="/graph/a7c1559b7bba?style=coal">graph</a></li>
313 <li><a href="/rev/a7c1559b7bba?style=coal">changeset</a></li>
314 <li><a href="/file/a7c1559b7bba?style=coal">browse</a></li>
315 <li><a href="/file/a7c1559b7bba/foo?style=coal">file</a></li>
316 <li><a href="/diff/a7c1559b7bba/foo?style=coal">diff</a></li>
317 <li><a href="/comparison/a7c1559b7bba/foo?style=coal">comparison</a></li>
318 <li><a href="/annotate/a7c1559b7bba/foo?style=coal">annotate</a></li>
319 <li><a href="/raw-file/a7c1559b7bba/foo">raw</a></li>
320 <a href="/atom-log/a7c1559b7bba/foo" title="subscribe to atom feed">
321 <a href="/log/a7c1559b7bba/foo?revcount=30&style=coal">less</a>
322 <a href="/log/a7c1559b7bba/foo?revcount=120&style=coal">more</a>
323 | <a href="/log/43c799df6e75/foo?style=coal">(0)</a> <a href="/log/tip/foo?style=coal">tip</a> </div>
324 <a href="/rev/a7c1559b7bba?style=coal">second</a>
325 <a href="/rev/43c799df6e75?style=coal">first</a>
326 <a href="/log/a7c1559b7bba/foo?revcount=30&style=coal">less</a>
327 <a href="/log/a7c1559b7bba/foo?revcount=120&style=coal">more</a>
328 | <a href="/log/43c799df6e75/foo?style=coal">(0)</a> <a href="/log/tip/foo?style=coal">tip</a>
329
330 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'annotate/xyzzy/foo?style=coal' | egrep $REVLINKS
331 <li><a href="/shortlog/a7c1559b7bba?style=coal">log</a></li>
332 <li><a href="/graph/a7c1559b7bba?style=coal">graph</a></li>
333 <li><a href="/rev/a7c1559b7bba?style=coal">changeset</a></li>
334 <li><a href="/file/a7c1559b7bba/?style=coal">browse</a></li>
335 <li><a href="/file/a7c1559b7bba/foo?style=coal">file</a></li>
336 <li><a href="/file/tip/foo?style=coal">latest</a></li>
337 <li><a href="/diff/a7c1559b7bba/foo?style=coal">diff</a></li>
338 <li><a href="/comparison/a7c1559b7bba/foo?style=coal">comparison</a></li>
339 <li><a href="/log/a7c1559b7bba/foo?style=coal">file log</a></li>
340 <li><a href="/raw-annotate/a7c1559b7bba/foo">raw</a></li>
341 <td class="author"><a href="/file/43c799df6e75/foo?style=coal">43c799df6e75</a> </td>
342 <td class="author"><a href="/file/9d8c40cba617/foo?style=coal">9d8c40cba617</a> </td>
343 <a href="/annotate/43c799df6e75/foo?style=coal#1"
344 <a href="/annotate/a7c1559b7bba/foo?style=coal#2"
345
346 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'diff/xyzzy/foo?style=coal' | egrep $REVLINKS
347 <li><a href="/shortlog/a7c1559b7bba?style=coal">log</a></li>
348 <li><a href="/graph/a7c1559b7bba?style=coal">graph</a></li>
349 <li><a href="/rev/a7c1559b7bba?style=coal">changeset</a></li>
350 <li><a href="/file/a7c1559b7bba?style=coal">browse</a></li>
351 <li><a href="/file/a7c1559b7bba/foo?style=coal">file</a></li>
352 <li><a href="/file/tip/foo?style=coal">latest</a></li>
353 <li><a href="/comparison/a7c1559b7bba/foo?style=coal">comparison</a></li>
354 <li><a href="/annotate/a7c1559b7bba/foo?style=coal">annotate</a></li>
355 <li><a href="/log/a7c1559b7bba/foo?style=coal">file log</a></li>
356 <li><a href="/raw-file/a7c1559b7bba/foo">raw</a></li>
357 <td><a href="/file/43c799df6e75/foo?style=coal">43c799df6e75</a> </td>
358 <td><a href="/file/9d8c40cba617/foo?style=coal">9d8c40cba617</a> </td>
359
360 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'comparison/xyzzy/foo?style=coal' | egrep $REVLINKS
361 <li><a href="/shortlog/a7c1559b7bba?style=coal">log</a></li>
362 <li><a href="/graph/a7c1559b7bba?style=coal">graph</a></li>
363 <li><a href="/rev/a7c1559b7bba?style=coal">changeset</a></li>
364 <li><a href="/file/a7c1559b7bba?style=coal">browse</a></li>
365 <li><a href="/file/a7c1559b7bba/foo?style=coal">file</a></li>
366 <li><a href="/file/tip/foo?style=coal">latest</a></li>
367 <li><a href="/diff/a7c1559b7bba/foo?style=coal">diff</a></li>
368 <li><a href="/annotate/a7c1559b7bba/foo?style=coal">annotate</a></li>
369 <li><a href="/log/a7c1559b7bba/foo?style=coal">file log</a></li>
370 <li><a href="/raw-file/a7c1559b7bba/foo">raw</a></li>
371 <td><a href="/file/43c799df6e75/foo?style=coal">43c799df6e75</a> </td>
372 <td><a href="/file/9d8c40cba617/foo?style=coal">9d8c40cba617</a> </td>
373
374 (De)referencing symbolic revisions (gitweb)
375
376 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'summary?style=gitweb' | egrep $REVLINKS
377 <a href="/file?style=gitweb">files</a> | <a href="/archive/tip.zip">zip</a> |
378 <a class="list" href="/rev/9d8c40cba617?style=gitweb">
379 <a href="/rev/9d8c40cba617?style=gitweb">changeset</a> |
380 <a href="/file/9d8c40cba617?style=gitweb">files</a>
381 <a class="list" href="/rev/a7c1559b7bba?style=gitweb">
382 <a href="/rev/a7c1559b7bba?style=gitweb">changeset</a> |
383 <a href="/file/a7c1559b7bba?style=gitweb">files</a>
384 <a class="list" href="/rev/43c799df6e75?style=gitweb">
385 <a href="/rev/43c799df6e75?style=gitweb">changeset</a> |
386 <a href="/file/43c799df6e75?style=gitweb">files</a>
387 <td><a class="list" href="/rev/a7c1559b7bba?style=gitweb"><b>xyzzy</b></a></td>
388 <a href="/rev/a7c1559b7bba?style=gitweb">changeset</a> |
389 <a href="/log/a7c1559b7bba?style=gitweb">changelog</a> |
390 <a href="/file/a7c1559b7bba?style=gitweb">files</a>
391 <td><a class="list" href="/shortlog/9d8c40cba617?style=gitweb"><b>9d8c40cba617</b></a></td>
392 <a href="/changeset/9d8c40cba617?style=gitweb">changeset</a> |
393 <a href="/log/9d8c40cba617?style=gitweb">changelog</a> |
394 <a href="/file/9d8c40cba617?style=gitweb">files</a>
395
396 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'shortlog?style=gitweb' | egrep $REVLINKS
397 <a href="/log/2?style=gitweb">changelog</a> |
398 <a href="/file/9d8c40cba617?style=gitweb">files</a> | <a href="/archive/tip.zip">zip</a> |
399 <br/><a href="/shortlog/43c799df6e75?style=gitweb">(0)</a> <a href="/shortlog/tip?style=gitweb">tip</a> <br/>
400 <a class="list" href="/rev/9d8c40cba617?style=gitweb">
401 <a href="/rev/9d8c40cba617?style=gitweb">changeset</a> |
402 <a href="/file/9d8c40cba617?style=gitweb">files</a>
403 <a class="list" href="/rev/a7c1559b7bba?style=gitweb">
404 <a href="/rev/a7c1559b7bba?style=gitweb">changeset</a> |
405 <a href="/file/a7c1559b7bba?style=gitweb">files</a>
406 <a class="list" href="/rev/43c799df6e75?style=gitweb">
407 <a href="/rev/43c799df6e75?style=gitweb">changeset</a> |
408 <a href="/file/43c799df6e75?style=gitweb">files</a>
409 <a href="/shortlog/43c799df6e75?style=gitweb">(0)</a> <a href="/shortlog/tip?style=gitweb">tip</a>
410
411 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'log?style=gitweb' | egrep $REVLINKS
412 <a href="/shortlog/2?style=gitweb">shortlog</a> |
413 <a href="/file/9d8c40cba617?style=gitweb">files</a> | <a href="/archive/tip.zip">zip</a> |
414 <a href="/log/43c799df6e75?style=gitweb">(0)</a> <a href="/log/tip?style=gitweb">tip</a> <br/>
415 <a class="title" href="/rev/9d8c40cba617?style=gitweb"><span class="age">Thu, 01 Jan 1970 00:00:00 +0000</span>third<span class="logtags"> <span class="branchtag" title="default">default</span> <span class="tagtag" title="tip">tip</span> </span></a>
416 <a href="/rev/9d8c40cba617?style=gitweb">changeset</a><br/>
417 <a class="title" href="/rev/a7c1559b7bba?style=gitweb"><span class="age">Thu, 01 Jan 1970 00:00:00 +0000</span>second<span class="logtags"> <span class="bookmarktag" title="xyzzy">xyzzy</span> </span></a>
418 <a href="/rev/a7c1559b7bba?style=gitweb">changeset</a><br/>
419 <a class="title" href="/rev/43c799df6e75?style=gitweb"><span class="age">Thu, 01 Jan 1970 00:00:00 +0000</span>first<span class="logtags"> </span></a>
420 <a href="/rev/43c799df6e75?style=gitweb">changeset</a><br/>
421 <a href="/log/43c799df6e75?style=gitweb">(0)</a> <a href="/log/tip?style=gitweb">tip</a> <br/>
422
423 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'graph?style=gitweb' | egrep $REVLINKS
424 <a href="/log/2?style=gitweb">changelog</a> |
425 <a href="/file/9d8c40cba617?style=gitweb">files</a> |
426 <a href="/graph/2?revcount=30&style=gitweb">less</a>
427 <a href="/graph/2?revcount=120&style=gitweb">more</a>
428 | <a href="/graph/43c799df6e75?style=gitweb">(0)</a> <a href="/graph/tip?style=gitweb">tip</a> <br/>
429 <a href="/graph/2?revcount=30&style=gitweb">less</a>
430 <a href="/graph/2?revcount=120&style=gitweb">more</a>
431 | <a href="/graph/43c799df6e75?style=gitweb">(0)</a> <a href="/graph/tip?style=gitweb">tip</a>
432
433 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'tags?style=gitweb' | egrep $REVLINKS
434 <td><a class="list" href="/rev/9d8c40cba617?style=gitweb"><b>tip</b></a></td>
435 <a href="/rev/9d8c40cba617?style=gitweb">changeset</a> |
436 <a href="/log/9d8c40cba617?style=gitweb">changelog</a> |
437 <a href="/file/9d8c40cba617?style=gitweb">files</a>
438
439 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'bookmarks?style=gitweb' | egrep $REVLINKS
440 <td><a class="list" href="/rev/a7c1559b7bba?style=gitweb"><b>xyzzy</b></a></td>
441 <a href="/rev/a7c1559b7bba?style=gitweb">changeset</a> |
442 <a href="/log/a7c1559b7bba?style=gitweb">changelog</a> |
443 <a href="/file/a7c1559b7bba?style=gitweb">files</a>
444
445 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'branches?style=gitweb' | egrep $REVLINKS
446 <td><a class="list" href="/shortlog/9d8c40cba617?style=gitweb"><b>9d8c40cba617</b></a></td>
447 <a href="/changeset/9d8c40cba617?style=gitweb">changeset</a> |
448 <a href="/log/9d8c40cba617?style=gitweb">changelog</a> |
449 <a href="/file/9d8c40cba617?style=gitweb">files</a>
450
451 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'file?style=gitweb' | egrep $REVLINKS
452 <a href="/rev/9d8c40cba617?style=gitweb">changeset</a> | <a href="/archive/9d8c40cba617.zip">zip</a> |
453 <td><a href="/file/9d8c40cba617/?style=gitweb">[up]</a></td>
454 <a href="/file/9d8c40cba617/dir?style=gitweb">dir</a>
455 <a href="/file/9d8c40cba617/dir/?style=gitweb"></a>
456 <a href="/file/9d8c40cba617/dir?style=gitweb">files</a>
457 <a class="list" href="/file/9d8c40cba617/foo?style=gitweb">foo</a>
458 <a href="/file/9d8c40cba617/foo?style=gitweb">file</a> |
459 <a href="/log/9d8c40cba617/foo?style=gitweb">revisions</a> |
460 <a href="/annotate/9d8c40cba617/foo?style=gitweb">annotate</a>
461
462 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'shortlog?style=gitweb&rev=all()' | egrep $REVLINKS
463 <a href="/file?style=gitweb">files</a> | <a href="/archive/tip.zip">zip</a>
464 <a class="title" href="/rev/9d8c40cba617?style=gitweb"><span class="age">Thu, 01 Jan 1970 00:00:00 +0000</span>third<span class="logtags"> <span class="branchtag" title="default">default</span> <span class="tagtag" title="tip">tip</span> </span></a>
465 <a href="/rev/9d8c40cba617?style=gitweb">changeset</a><br/>
466 <a class="title" href="/rev/a7c1559b7bba?style=gitweb"><span class="age">Thu, 01 Jan 1970 00:00:00 +0000</span>second<span class="logtags"> <span class="bookmarktag" title="xyzzy">xyzzy</span> </span></a>
467 <a href="/rev/a7c1559b7bba?style=gitweb">changeset</a><br/>
468 <a class="title" href="/rev/43c799df6e75?style=gitweb"><span class="age">Thu, 01 Jan 1970 00:00:00 +0000</span>first<span class="logtags"> </span></a>
469 <a href="/rev/43c799df6e75?style=gitweb">changeset</a><br/>
470
471 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'rev/xyzzy?style=gitweb' | egrep $REVLINKS
472 <a href="/shortlog/1?style=gitweb">shortlog</a> |
473 <a href="/log/1?style=gitweb">changelog</a> |
474 <a href="/file/a7c1559b7bba?style=gitweb">files</a> |
475 <a href="/raw-rev/a7c1559b7bba">raw</a> | <a href="/archive/a7c1559b7bba.zip">zip</a> |
476 <a class="title" href="/raw-rev/a7c1559b7bba">second <span class="logtags"><span class="bookmarktag" title="xyzzy">xyzzy</span> </span></a>
477 <a class="list" href="/rev/43c799df6e75?style=gitweb">43c799df6e75</a>
478 <a class="list" href="/rev/9d8c40cba617?style=gitweb">9d8c40cba617</a>
479 <td><a class="list" href="/diff/a7c1559b7bba/foo?style=gitweb">foo</a></td>
480 <a href="/file/a7c1559b7bba/foo?style=gitweb">file</a> |
481 <a href="/annotate/a7c1559b7bba/foo?style=gitweb">annotate</a> |
482 <a href="/diff/a7c1559b7bba/foo?style=gitweb">diff</a> |
483 <a href="/comparison/a7c1559b7bba/foo?style=gitweb">comparison</a> |
484 <a href="/log/a7c1559b7bba/foo?style=gitweb">revisions</a>
485
486 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'shortlog/xyzzy?style=gitweb' | egrep $REVLINKS
487 <a href="/log/1?style=gitweb">changelog</a> |
488 <a href="/file/a7c1559b7bba?style=gitweb">files</a> | <a href="/archive/tip.zip">zip</a> |
489 <br/><a href="/shortlog/43c799df6e75?style=gitweb">(0)</a> <a href="/shortlog/tip?style=gitweb">tip</a> <br/>
490 <a class="list" href="/rev/a7c1559b7bba?style=gitweb">
491 <a href="/rev/a7c1559b7bba?style=gitweb">changeset</a> |
492 <a href="/file/a7c1559b7bba?style=gitweb">files</a>
493 <a class="list" href="/rev/43c799df6e75?style=gitweb">
494 <a href="/rev/43c799df6e75?style=gitweb">changeset</a> |
495 <a href="/file/43c799df6e75?style=gitweb">files</a>
496 <a href="/shortlog/43c799df6e75?style=gitweb">(0)</a> <a href="/shortlog/tip?style=gitweb">tip</a>
497
498 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'log/xyzzy?style=gitweb' | egrep $REVLINKS
499 <a href="/shortlog/1?style=gitweb">shortlog</a> |
500 <a href="/file/a7c1559b7bba?style=gitweb">files</a> | <a href="/archive/tip.zip">zip</a> |
501 <a href="/log/43c799df6e75?style=gitweb">(0)</a> <a href="/log/tip?style=gitweb">tip</a> <br/>
502 <a class="title" href="/rev/a7c1559b7bba?style=gitweb"><span class="age">Thu, 01 Jan 1970 00:00:00 +0000</span>second<span class="logtags"> <span class="bookmarktag" title="xyzzy">xyzzy</span> </span></a>
503 <a href="/rev/a7c1559b7bba?style=gitweb">changeset</a><br/>
504 <a class="title" href="/rev/43c799df6e75?style=gitweb"><span class="age">Thu, 01 Jan 1970 00:00:00 +0000</span>first<span class="logtags"> </span></a>
505 <a href="/rev/43c799df6e75?style=gitweb">changeset</a><br/>
506 <a href="/log/43c799df6e75?style=gitweb">(0)</a> <a href="/log/tip?style=gitweb">tip</a> <br/>
507
508 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'graph/xyzzy?style=gitweb' | egrep $REVLINKS
509 <a href="/log/1?style=gitweb">changelog</a> |
510 <a href="/file/a7c1559b7bba?style=gitweb">files</a> |
511 <a href="/graph/1?revcount=30&style=gitweb">less</a>
512 <a href="/graph/1?revcount=120&style=gitweb">more</a>
513 | <a href="/graph/43c799df6e75?style=gitweb">(0)</a> <a href="/graph/tip?style=gitweb">tip</a> <br/>
514 <a href="/graph/1?revcount=30&style=gitweb">less</a>
515 <a href="/graph/1?revcount=120&style=gitweb">more</a>
516 | <a href="/graph/43c799df6e75?style=gitweb">(0)</a> <a href="/graph/tip?style=gitweb">tip</a>
517
518 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'file/xyzzy?style=gitweb' | egrep $REVLINKS
519 <a href="/rev/a7c1559b7bba?style=gitweb">changeset</a> | <a href="/archive/a7c1559b7bba.zip">zip</a> |
520 <td><a href="/file/a7c1559b7bba/?style=gitweb">[up]</a></td>
521 <a href="/file/a7c1559b7bba/dir?style=gitweb">dir</a>
522 <a href="/file/a7c1559b7bba/dir/?style=gitweb"></a>
523 <a href="/file/a7c1559b7bba/dir?style=gitweb">files</a>
524 <a class="list" href="/file/a7c1559b7bba/foo?style=gitweb">foo</a>
525 <a href="/file/a7c1559b7bba/foo?style=gitweb">file</a> |
526 <a href="/log/a7c1559b7bba/foo?style=gitweb">revisions</a> |
527 <a href="/annotate/a7c1559b7bba/foo?style=gitweb">annotate</a>
528
529 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'file/xyzzy/foo?style=gitweb' | egrep $REVLINKS
530 <a href="/file/a7c1559b7bba/?style=gitweb">files</a> |
531 <a href="/rev/a7c1559b7bba?style=gitweb">changeset</a> |
532 <a href="/file/tip/foo?style=gitweb">latest</a> |
533 <a href="/log/a7c1559b7bba/foo?style=gitweb">revisions</a> |
534 <a href="/annotate/a7c1559b7bba/foo?style=gitweb">annotate</a> |
535 <a href="/diff/a7c1559b7bba/foo?style=gitweb">diff</a> |
536 <a href="/comparison/a7c1559b7bba/foo?style=gitweb">comparison</a> |
537 <a href="/raw-file/a7c1559b7bba/foo">raw</a> |
538 <td style="font-family:monospace"><a class="list" href="/rev/a7c1559b7bba?style=gitweb">a7c1559b7bba</a></td>
539 <a class="list" href="/file/43c799df6e75/foo?style=gitweb">
540 <a class="list" href="/file/9d8c40cba617/foo?style=gitweb">9d8c40cba617</a></td>
541
542 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'log/xyzzy/foo?style=gitweb' | egrep $REVLINKS
543 <a href="/file/a7c1559b7bba/foo?style=gitweb">file</a> |
544 <a href="/annotate/a7c1559b7bba/foo?style=gitweb">annotate</a> |
545 <a href="/diff/a7c1559b7bba/foo?style=gitweb">diff</a> |
546 <a href="/comparison/a7c1559b7bba/foo?style=gitweb">comparison</a> |
547 <a href="/rss-log/tip/foo">rss</a> |
548 <a href="/log/43c799df6e75/foo?style=gitweb">(0)</a> <a href="/log/tip/foo?style=gitweb">tip</a>
549 <a class="list" href="/rev/a7c1559b7bba?style=gitweb">
550 <a href="/file/a7c1559b7bba/foo?style=gitweb">file</a> |
551 <a href="/diff/a7c1559b7bba/foo?style=gitweb">diff</a> |
552 <a href="/annotate/a7c1559b7bba/foo?style=gitweb">annotate</a>
553 <a class="list" href="/rev/43c799df6e75?style=gitweb">
554 <a href="/file/43c799df6e75/foo?style=gitweb">file</a> |
555 <a href="/diff/43c799df6e75/foo?style=gitweb">diff</a> |
556 <a href="/annotate/43c799df6e75/foo?style=gitweb">annotate</a>
557 <a href="/log/43c799df6e75/foo?style=gitweb">(0)</a> <a href="/log/tip/foo?style=gitweb">tip</a>
558
559 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'annotate/xyzzy/foo?style=gitweb' | egrep $REVLINKS
560 <a href="/file/a7c1559b7bba/?style=gitweb">files</a> |
561 <a href="/rev/a7c1559b7bba?style=gitweb">changeset</a> |
562 <a href="/file/a7c1559b7bba/foo?style=gitweb">file</a> |
563 <a href="/file/tip/foo?style=gitweb">latest</a> |
564 <a href="/log/a7c1559b7bba/foo?style=gitweb">revisions</a> |
565 <a href="/diff/a7c1559b7bba/foo?style=gitweb">diff</a> |
566 <a href="/comparison/a7c1559b7bba/foo?style=gitweb">comparison</a> |
567 <a href="/raw-annotate/a7c1559b7bba/foo">raw</a> |
568 <td style="font-family:monospace"><a class="list" href="/rev/a7c1559b7bba?style=gitweb">a7c1559b7bba</a></td>
569 <a class="list" href="/annotate/43c799df6e75/foo?style=gitweb">
570 <a class="list" href="/annotate/9d8c40cba617/foo?style=gitweb">9d8c40cba617</a></td>
571 <a href="/annotate/43c799df6e75/foo?style=gitweb#l1"
572 <a href="/annotate/a7c1559b7bba/foo?style=gitweb#l2"
573
574 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'diff/xyzzy/foo?style=gitweb' | egrep $REVLINKS
575 <a href="/file/a7c1559b7bba?style=gitweb">files</a> |
576 <a href="/rev/a7c1559b7bba?style=gitweb">changeset</a> |
577 <a href="/file/a7c1559b7bba/foo?style=gitweb">file</a> |
578 <a href="/file/tip/foo?style=gitweb">latest</a> |
579 <a href="/log/a7c1559b7bba/foo?style=gitweb">revisions</a> |
580 <a href="/annotate/a7c1559b7bba/foo?style=gitweb">annotate</a> |
581 <a href="/comparison/a7c1559b7bba/foo?style=gitweb">comparison</a> |
582 <a href="/raw-diff/a7c1559b7bba/foo">raw</a> |
583 <td style="font-family:monospace"><a class="list" href="/rev/a7c1559b7bba?style=gitweb">a7c1559b7bba</a></td>
584 <a class="list" href="/diff/43c799df6e75/foo?style=gitweb">
585 <a class="list" href="/diff/9d8c40cba617/foo?style=gitweb">9d8c40cba617</a>
586
587 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'comparison/xyzzy/foo?style=gitweb' | egrep $REVLINKS
588 <a href="/file/a7c1559b7bba?style=gitweb">files</a> |
589 <a href="/rev/a7c1559b7bba?style=gitweb">changeset</a> |
590 <a href="/file/a7c1559b7bba/foo?style=gitweb">file</a> |
591 <a href="/file/tip/foo?style=gitweb">latest</a> |
592 <a href="/log/a7c1559b7bba/foo?style=gitweb">revisions</a> |
593 <a href="/annotate/a7c1559b7bba/foo?style=gitweb">annotate</a> |
594 <a href="/diff/a7c1559b7bba/foo?style=gitweb">diff</a> |
595 <a href="/raw-diff/a7c1559b7bba/foo">raw</a> |
596 <td style="font-family:monospace"><a class="list" href="/rev/a7c1559b7bba?style=gitweb">a7c1559b7bba</a></td>
597 <a class="list" href="/comparison/43c799df6e75/foo?style=gitweb">
598 <a class="list" href="/comparison/9d8c40cba617/foo?style=gitweb">9d8c40cba617</a>
599
600 (De)referencing symbolic revisions (monoblue)
601
602 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'summary?style=monoblue' | egrep $REVLINKS
603 <a href="/rev/9d8c40cba617?style=monoblue">
604 <a href="/rev/9d8c40cba617?style=monoblue">changeset</a> |
605 <a href="/file/9d8c40cba617?style=monoblue">files</a>
606 <a href="/rev/a7c1559b7bba?style=monoblue">
607 <a href="/rev/a7c1559b7bba?style=monoblue">changeset</a> |
608 <a href="/file/a7c1559b7bba?style=monoblue">files</a>
609 <a href="/rev/43c799df6e75?style=monoblue">
610 <a href="/rev/43c799df6e75?style=monoblue">changeset</a> |
611 <a href="/file/43c799df6e75?style=monoblue">files</a>
612 <td><a href="/rev/a7c1559b7bba?style=monoblue">xyzzy</a></td>
613 <a href="/rev/a7c1559b7bba?style=monoblue">changeset</a> |
614 <a href="/log/a7c1559b7bba?style=monoblue">changelog</a> |
615 <a href="/file/a7c1559b7bba?style=monoblue">files</a>
616 <td><a href="/shortlog/9d8c40cba617?style=monoblue">9d8c40cba617</a></td>
617 <a href="/rev/9d8c40cba617?style=monoblue">changeset</a> |
618 <a href="/log/9d8c40cba617?style=monoblue">changelog</a> |
619 <a href="/file/9d8c40cba617?style=monoblue">files</a>
620
621 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'shortlog?style=monoblue' | egrep $REVLINKS
622 <li><a href="/graph/9d8c40cba617?style=monoblue">graph</a></li>
623 <li><a href="/file/9d8c40cba617?style=monoblue">files</a></li>
624 <li><a href="/archive/tip.zip">zip</a></li>
625 <a href="/rev/9d8c40cba617?style=monoblue">
626 <a href="/rev/9d8c40cba617?style=monoblue">changeset</a> |
627 <a href="/file/9d8c40cba617?style=monoblue">files</a>
628 <a href="/rev/a7c1559b7bba?style=monoblue">
629 <a href="/rev/a7c1559b7bba?style=monoblue">changeset</a> |
630 <a href="/file/a7c1559b7bba?style=monoblue">files</a>
631 <a href="/rev/43c799df6e75?style=monoblue">
632 <a href="/rev/43c799df6e75?style=monoblue">changeset</a> |
633 <a href="/file/43c799df6e75?style=monoblue">files</a>
634 <a href="/shortlog/43c799df6e75?style=monoblue">(0)</a> <a href="/shortlog/tip?style=monoblue">tip</a>
635
636 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'log?style=monoblue' | egrep $REVLINKS
637 <li><a href="/graph/9d8c40cba617?style=monoblue">graph</a></li>
638 <li><a href="/file/9d8c40cba617?style=monoblue">files</a></li>
639 <li><a href="/archive/tip.zip">zip</a></li>
640 <h3 class="changelog"><a class="title" href="/rev/9d8c40cba617?style=monoblue">third<span class="logtags"> <span class="branchtag" title="default">default</span> <span class="tagtag" title="tip">tip</span> </span></a></h3>
641 <h3 class="changelog"><a class="title" href="/rev/a7c1559b7bba?style=monoblue">second<span class="logtags"> <span class="bookmarktag" title="xyzzy">xyzzy</span> </span></a></h3>
642 <h3 class="changelog"><a class="title" href="/rev/43c799df6e75?style=monoblue">first<span class="logtags"> </span></a></h3>
643 <a href="/log/43c799df6e75?style=monoblue">(0)</a> <a href="/log/tip?style=monoblue">tip</a>
644
645 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'graph?style=monoblue' | egrep $REVLINKS
646 <li><a href="/file/9d8c40cba617?style=monoblue">files</a></li>
647 <a href="/graph/2?revcount=30&style=monoblue">less</a>
648 <a href="/graph/2?revcount=120&style=monoblue">more</a>
649 | <a href="/graph/43c799df6e75?style=monoblue">(0)</a> <a href="/graph/tip?style=monoblue">tip</a>
650
651 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'tags?style=monoblue' | egrep $REVLINKS
652 <td><a href="/rev/9d8c40cba617?style=monoblue">tip</a></td>
653 <a href="/rev/9d8c40cba617?style=monoblue">changeset</a> |
654 <a href="/log/9d8c40cba617?style=monoblue">changelog</a> |
655 <a href="/file/9d8c40cba617?style=monoblue">files</a>
656
657 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'bookmarks?style=monoblue' | egrep $REVLINKS
658 <td><a href="/rev/a7c1559b7bba?style=monoblue">xyzzy</a></td>
659 <a href="/rev/a7c1559b7bba?style=monoblue">changeset</a> |
660 <a href="/log/a7c1559b7bba?style=monoblue">changelog</a> |
661 <a href="/file/a7c1559b7bba?style=monoblue">files</a>
662
663 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'branches?style=monoblue' | egrep $REVLINKS
664 <td><a href="/shortlog/9d8c40cba617?style=monoblue">9d8c40cba617</a></td>
665 <a href="/rev/9d8c40cba617?style=monoblue">changeset</a> |
666 <a href="/log/9d8c40cba617?style=monoblue">changelog</a> |
667 <a href="/file/9d8c40cba617?style=monoblue">files</a>
668
669 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'file?style=monoblue' | egrep $REVLINKS
670 <li><a href="/graph/9d8c40cba617?style=monoblue">graph</a></li>
671 <li><a href="/rev/9d8c40cba617?style=monoblue">changeset</a></li>
672 <li><a href="/archive/9d8c40cba617.zip">zip</a></li>
673 <td><a href="/file/9d8c40cba617/?style=monoblue">[up]</a></td>
674 <a href="/file/9d8c40cba617/dir?style=monoblue">dir</a>
675 <a href="/file/9d8c40cba617/dir/?style=monoblue"></a>
676 <td><a href="/file/9d8c40cba617/dir?style=monoblue">files</a></td>
677 <td><a href="/file/9d8c40cba617/foo?style=monoblue">foo</a></td>
678 <a href="/file/9d8c40cba617/foo?style=monoblue">file</a> |
679 <a href="/log/9d8c40cba617/foo?style=monoblue">revisions</a> |
680 <a href="/annotate/9d8c40cba617/foo?style=monoblue">annotate</a>
681
682 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'shortlog?style=monoblue&rev=all()' | egrep $REVLINKS
683 <li><a href="/archive/tip.zip">zip</a></li>
684 <h3 class="changelog"><a class="title" href="/rev/9d8c40cba617?style=monoblue">third<span class="logtags"> <span class="branchtag" title="default">default</span> <span class="tagtag" title="tip">tip</span> </span></a></h3>
685 <h3 class="changelog"><a class="title" href="/rev/a7c1559b7bba?style=monoblue">second<span class="logtags"> <span class="bookmarktag" title="xyzzy">xyzzy</span> </span></a></h3>
686 <h3 class="changelog"><a class="title" href="/rev/43c799df6e75?style=monoblue">first<span class="logtags"> </span></a></h3>
687
688 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'rev/xyzzy?style=monoblue' | egrep $REVLINKS
689 <li><a href="/graph/a7c1559b7bba?style=monoblue">graph</a></li>
690 <li><a href="/file/a7c1559b7bba?style=monoblue">files</a></li>
691 <li><a href="/raw-rev/a7c1559b7bba">raw</a></li>
692 <li><a href="/archive/a7c1559b7bba.zip">zip</a></li>
693 <h3 class="changeset"><a href="/raw-rev/a7c1559b7bba">second <span class="logtags"><span class="bookmarktag" title="xyzzy">xyzzy</span> </span></a></h3>
694 <dd><a href="/rev/43c799df6e75?style=monoblue">43c799df6e75</a></dd>
695 <dd><a href="/rev/9d8c40cba617?style=monoblue">9d8c40cba617</a></dd>
696 <td><a href="/diff/a7c1559b7bba/foo?style=monoblue">foo</a></td>
697 <a href="/file/a7c1559b7bba/foo?style=monoblue">file</a> |
698 <a href="/annotate/a7c1559b7bba/foo?style=monoblue">annotate</a> |
699 <a href="/diff/a7c1559b7bba/foo?style=monoblue">diff</a> |
700 <a href="/comparison/a7c1559b7bba/foo?style=monoblue">comparison</a> |
701 <a href="/log/a7c1559b7bba/foo?style=monoblue">revisions</a>
702
703 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'shortlog/xyzzy?style=monoblue' | egrep $REVLINKS
704 <li><a href="/graph/a7c1559b7bba?style=monoblue">graph</a></li>
705 <li><a href="/file/a7c1559b7bba?style=monoblue">files</a></li>
706 <li><a href="/archive/tip.zip">zip</a></li>
707 <a href="/rev/a7c1559b7bba?style=monoblue">
708 <a href="/rev/a7c1559b7bba?style=monoblue">changeset</a> |
709 <a href="/file/a7c1559b7bba?style=monoblue">files</a>
710 <a href="/rev/43c799df6e75?style=monoblue">
711 <a href="/rev/43c799df6e75?style=monoblue">changeset</a> |
712 <a href="/file/43c799df6e75?style=monoblue">files</a>
713 <a href="/shortlog/43c799df6e75?style=monoblue">(0)</a> <a href="/shortlog/tip?style=monoblue">tip</a>
714
715 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'log/xyzzy?style=monoblue' | egrep $REVLINKS
716 <li><a href="/graph/a7c1559b7bba?style=monoblue">graph</a></li>
717 <li><a href="/file/a7c1559b7bba?style=monoblue">files</a></li>
718 <li><a href="/archive/tip.zip">zip</a></li>
719 <h3 class="changelog"><a class="title" href="/rev/a7c1559b7bba?style=monoblue">second<span class="logtags"> <span class="bookmarktag" title="xyzzy">xyzzy</span> </span></a></h3>
720 <h3 class="changelog"><a class="title" href="/rev/43c799df6e75?style=monoblue">first<span class="logtags"> </span></a></h3>
721 <a href="/log/43c799df6e75?style=monoblue">(0)</a> <a href="/log/tip?style=monoblue">tip</a>
722
723 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'graph/xyzzy?style=monoblue' | egrep $REVLINKS
724 <li><a href="/file/a7c1559b7bba?style=monoblue">files</a></li>
725 <a href="/graph/1?revcount=30&style=monoblue">less</a>
726 <a href="/graph/1?revcount=120&style=monoblue">more</a>
727 | <a href="/graph/43c799df6e75?style=monoblue">(0)</a> <a href="/graph/tip?style=monoblue">tip</a>
728
729 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'file/xyzzy?style=monoblue' | egrep $REVLINKS
730 <li><a href="/graph/a7c1559b7bba?style=monoblue">graph</a></li>
731 <li><a href="/rev/a7c1559b7bba?style=monoblue">changeset</a></li>
732 <li><a href="/archive/a7c1559b7bba.zip">zip</a></li>
733 <td><a href="/file/a7c1559b7bba/?style=monoblue">[up]</a></td>
734 <a href="/file/a7c1559b7bba/dir?style=monoblue">dir</a>
735 <a href="/file/a7c1559b7bba/dir/?style=monoblue"></a>
736 <td><a href="/file/a7c1559b7bba/dir?style=monoblue">files</a></td>
737 <td><a href="/file/a7c1559b7bba/foo?style=monoblue">foo</a></td>
738 <a href="/file/a7c1559b7bba/foo?style=monoblue">file</a> |
739 <a href="/log/a7c1559b7bba/foo?style=monoblue">revisions</a> |
740 <a href="/annotate/a7c1559b7bba/foo?style=monoblue">annotate</a>
741
742 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'file/xyzzy/foo?style=monoblue' | egrep $REVLINKS
743 <li><a href="/graph/a7c1559b7bba?style=monoblue">graph</a></li>
744 <li><a href="/file/a7c1559b7bba/?style=monoblue">files</a></li>
745 <li><a href="/log/a7c1559b7bba/foo?style=monoblue">revisions</a></li>
746 <li><a href="/annotate/a7c1559b7bba/foo?style=monoblue">annotate</a></li>
747 <li><a href="/diff/a7c1559b7bba/foo?style=monoblue">diff</a></li>
748 <li><a href="/comparison/a7c1559b7bba/foo?style=monoblue">comparison</a></li>
749 <li><a href="/raw-file/a7c1559b7bba/foo">raw</a></li>
750 <dd><a class="list" href="/rev/a7c1559b7bba?style=monoblue">a7c1559b7bba</a></dd>
751 <a href="/file/43c799df6e75/foo?style=monoblue">
752 <a href="/file/9d8c40cba617/foo?style=monoblue">9d8c40cba617</a>
753
754 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'log/xyzzy/foo?style=monoblue' | egrep $REVLINKS
755 <li><a href="/graph/a7c1559b7bba?style=monoblue">graph</a></li>
756 <li><a href="/file/a7c1559b7bba?style=monoblue">files</a></li>
757 <li><a href="/file/a7c1559b7bba/foo?style=monoblue">file</a></li>
758 <li><a href="/annotate/a7c1559b7bba/foo?style=monoblue">annotate</a></li>
759 <li><a href="/diff/a7c1559b7bba/foo?style=monoblue">diff</a></li>
760 <li><a href="/comparison/a7c1559b7bba/foo?style=monoblue">comparison</a></li>
761 <li><a href="/rss-log/tip/foo">rss</a></li>
762 <a href="/rev/a7c1559b7bba?style=monoblue">
763 <a href="/file/a7c1559b7bba/foo?style=monoblue">file</a>&nbsp;|&nbsp;<a href="/diff/a7c1559b7bba/foo?style=monoblue">diff</a>&nbsp;|&nbsp;<a href="/annotate/a7c1559b7bba/foo?style=monoblue">annotate</a>
764 <a href="/rev/43c799df6e75?style=monoblue">
765 <a href="/file/43c799df6e75/foo?style=monoblue">file</a>&nbsp;|&nbsp;<a href="/diff/43c799df6e75/foo?style=monoblue">diff</a>&nbsp;|&nbsp;<a href="/annotate/43c799df6e75/foo?style=monoblue">annotate</a>
766 <a href="/log/43c799df6e75/foo?style=monoblue">(0)</a><a href="/log/tip/foo?style=monoblue">tip</a>
767
768 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'annotate/xyzzy/foo?style=monoblue' | egrep $REVLINKS
769 <li><a href="/graph/a7c1559b7bba?style=monoblue">graph</a></li>
770 <li><a href="/file/a7c1559b7bba/?style=monoblue">files</a></li>
771 <li><a href="/file/a7c1559b7bba/foo?style=monoblue">file</a></li>
772 <li><a href="/log/a7c1559b7bba/foo?style=monoblue">revisions</a></li>
773 <li><a href="/diff/a7c1559b7bba/foo?style=monoblue">diff</a></li>
774 <li><a href="/comparison/a7c1559b7bba/foo?style=monoblue">comparison</a></li>
775 <li><a href="/raw-annotate/a7c1559b7bba/foo">raw</a></li>
776 <dd><a href="/rev/a7c1559b7bba?style=monoblue">a7c1559b7bba</a></dd>
777 <a href="/annotate/43c799df6e75/foo?style=monoblue">
778 <a href="/annotate/9d8c40cba617/foo?style=monoblue">9d8c40cba617</a>
779 <a href="/annotate/43c799df6e75/foo?style=monoblue#l1"
780 <a href="/annotate/a7c1559b7bba/foo?style=monoblue#l2"
781
782 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'diff/xyzzy/foo?style=monoblue' | egrep $REVLINKS
783 <li><a href="/graph/a7c1559b7bba?style=monoblue">graph</a></li>
784 <li><a href="/file/a7c1559b7bba?style=monoblue">files</a></li>
785 <li><a href="/file/a7c1559b7bba/foo?style=monoblue">file</a></li>
786 <li><a href="/log/a7c1559b7bba/foo?style=monoblue">revisions</a></li>
787 <li><a href="/annotate/a7c1559b7bba/foo?style=monoblue">annotate</a></li>
788 <li><a href="/comparison/a7c1559b7bba/foo?style=monoblue">comparison</a></li>
789 <li><a href="/raw-diff/a7c1559b7bba/foo">raw</a></li>
790 <dd><a href="/rev/a7c1559b7bba?style=monoblue">a7c1559b7bba</a></dd>
791 <dd><a href="/diff/43c799df6e75/foo?style=monoblue">43c799df6e75</a></dd>
792 <dd><a href="/diff/9d8c40cba617/foo?style=monoblue">9d8c40cba617</a></dd>
793
794 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'comparison/xyzzy/foo?style=monoblue' | egrep $REVLINKS
795 <li><a href="/graph/a7c1559b7bba?style=monoblue">graph</a></li>
796 <li><a href="/file/a7c1559b7bba?style=monoblue">files</a></li>
797 <li><a href="/file/a7c1559b7bba/foo?style=monoblue">file</a></li>
798 <li><a href="/log/a7c1559b7bba/foo?style=monoblue">revisions</a></li>
799 <li><a href="/annotate/a7c1559b7bba/foo?style=monoblue">annotate</a></li>
800 <li><a href="/diff/a7c1559b7bba/foo?style=monoblue">diff</a></li>
801 <li><a href="/raw-diff/a7c1559b7bba/foo">raw</a></li>
802 <dd><a href="/rev/a7c1559b7bba?style=monoblue">a7c1559b7bba</a></dd>
803 <dd><a href="/comparison/43c799df6e75/foo?style=monoblue">43c799df6e75</a></dd>
804 <dd><a href="/comparison/9d8c40cba617/foo?style=monoblue">9d8c40cba617</a></dd>
805
806 (De)referencing symbolic revisions (spartan)
807
808 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'shortlog?style=spartan' | egrep $REVLINKS
809 <a href="/log/2?style=spartan">changelog</a>
810 <a href="/file/9d8c40cba617/?style=spartan">files</a>
811 <a href="/archive/tip.zip">zip</a>
812 navigate: <small class="navigate"><a href="/shortlog/43c799df6e75?style=spartan">(0)</a> <a href="/shortlog/tip?style=spartan">tip</a> </small>
813 <td class="node"><a href="/rev/9d8c40cba617?style=spartan">third</a></td>
814 <td class="node"><a href="/rev/a7c1559b7bba?style=spartan">second</a></td>
815 <td class="node"><a href="/rev/43c799df6e75?style=spartan">first</a></td>
816 navigate: <small class="navigate"><a href="/shortlog/43c799df6e75?style=spartan">(0)</a> <a href="/shortlog/tip?style=spartan">tip</a> </small>
817
818 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'log?style=spartan' | egrep $REVLINKS
819 <a href="/shortlog/2?style=spartan">shortlog</a>
820 <a href="/file/9d8c40cba617?style=spartan">files</a>
821 <a href="/archive/tip.zip">zip</a>
822 navigate: <small class="navigate"><a href="/log/43c799df6e75?style=spartan">(0)</a> <a href="/log/tip?style=spartan">tip</a> </small>
823 <td class="node"><a href="/rev/9d8c40cba617?style=spartan">9d8c40cba617</a></td>
824 <th class="files"><a href="/file/9d8c40cba617?style=spartan">files</a>:</th>
825 <td class="files"><a href="/diff/9d8c40cba617/foo?style=spartan">foo</a> </td>
826 <td class="node"><a href="/rev/a7c1559b7bba?style=spartan">a7c1559b7bba</a></td>
827 <th class="files"><a href="/file/a7c1559b7bba?style=spartan">files</a>:</th>
828 <td class="files"><a href="/diff/a7c1559b7bba/foo?style=spartan">foo</a> </td>
829 <td class="node"><a href="/rev/43c799df6e75?style=spartan">43c799df6e75</a></td>
830 <th class="files"><a href="/file/43c799df6e75?style=spartan">files</a>:</th>
831 <td class="files"><a href="/diff/43c799df6e75/dir/bar?style=spartan">dir/bar</a> <a href="/diff/43c799df6e75/foo?style=spartan">foo</a> </td>
832 navigate: <small class="navigate"><a href="/log/43c799df6e75?style=spartan">(0)</a> <a href="/log/tip?style=spartan">tip</a> </small>
833
834 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'graph?style=spartan' | egrep $REVLINKS
835 <a href="/file/9d8c40cba617/?style=spartan">files</a>
836 navigate: <small class="navigate"><a href="/graph/43c799df6e75?style=spartan">(0)</a> <a href="/graph/tip?style=spartan">tip</a> </small>
837 navigate: <small class="navigate"><a href="/graph/43c799df6e75?style=spartan">(0)</a> <a href="/graph/tip?style=spartan">tip</a> </small>
838
839 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'tags?style=spartan' | egrep $REVLINKS
840 <a href="/rev/9d8c40cba617?style=spartan">tip</a>
841
842 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'branches?style=spartan' | egrep $REVLINKS
843 <a href="/shortlog/9d8c40cba617?style=spartan" class="open">default</a>
844
845 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'file?style=spartan' | egrep $REVLINKS
846 <a href="/log/2?style=spartan">changelog</a>
847 <a href="/shortlog/2?style=spartan">shortlog</a>
848 <a href="/rev/9d8c40cba617?style=spartan">changeset</a>
849 <a href="/archive/9d8c40cba617.zip">zip</a>
850 <h2><a href="/">Mercurial</a> / files for changeset <a href="/rev/9d8c40cba617">9d8c40cba617</a>: /</h2>
851 <td><a href="/file/9d8c40cba617/?style=spartan">[up]</a>
852 <a href="/file/9d8c40cba617/dir?style=spartan">dir/</a>
853 <a href="/file/9d8c40cba617/dir/?style=spartan">
854 <td><a href="/file/9d8c40cba617/foo?style=spartan">foo</a>
855
856 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'shortlog?style=spartan&rev=all()' | egrep $REVLINKS
857 <a href="/archive/tip.zip">zip</a>
858 <td class="node"><a href="/rev/9d8c40cba617?style=spartan">9d8c40cba617</a></td>
859 <a href="/rev/a7c1559b7bba?style=spartan">a7c1559b7bba</a>
860 <th class="files"><a href="/file/9d8c40cba617?style=spartan">files</a>:</th>
861 <td class="files"><a href="/diff/9d8c40cba617/foo?style=spartan">foo</a> </td>
862 <td class="node"><a href="/rev/a7c1559b7bba?style=spartan">a7c1559b7bba</a></td>
863 <a href="/rev/43c799df6e75?style=spartan">43c799df6e75</a>
864 <td class="child"><a href="/rev/9d8c40cba617?style=spartan">9d8c40cba617</a></td>
865 <th class="files"><a href="/file/a7c1559b7bba?style=spartan">files</a>:</th>
866 <td class="files"><a href="/diff/a7c1559b7bba/foo?style=spartan">foo</a> </td>
867 <td class="node"><a href="/rev/43c799df6e75?style=spartan">43c799df6e75</a></td>
868 <td class="child"><a href="/rev/a7c1559b7bba?style=spartan">a7c1559b7bba</a></td>
869 <th class="files"><a href="/file/43c799df6e75?style=spartan">files</a>:</th>
870 <td class="files"><a href="/diff/43c799df6e75/dir/bar?style=spartan">dir/bar</a> <a href="/diff/43c799df6e75/foo?style=spartan">foo</a> </td>
871
872 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'rev/xyzzy?style=spartan' | egrep $REVLINKS
873 <a href="/log/1?style=spartan">changelog</a>
874 <a href="/shortlog/1?style=spartan">shortlog</a>
875 <a href="/file/a7c1559b7bba?style=spartan">files</a>
876 <a href="/raw-rev/a7c1559b7bba">raw</a>
877 <a href="/archive/a7c1559b7bba.zip">zip</a>
878 <td class="changeset"><a href="/rev/a7c1559b7bba?style=spartan">a7c1559b7bba</a></td>
879 <td class="parent"><a href="/rev/43c799df6e75?style=spartan">43c799df6e75</a></td>
880 <td class="child"><a href="/rev/9d8c40cba617?style=spartan">9d8c40cba617</a></td>
881 <td class="files"><a href="/file/a7c1559b7bba/foo?style=spartan">foo</a> </td>
882
883 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'shortlog/xyzzy?style=spartan' | egrep $REVLINKS
884 <a href="/log/1?style=spartan">changelog</a>
885 <a href="/file/a7c1559b7bba/?style=spartan">files</a>
886 <a href="/archive/tip.zip">zip</a>
887 navigate: <small class="navigate"><a href="/shortlog/43c799df6e75?style=spartan">(0)</a> <a href="/shortlog/tip?style=spartan">tip</a> </small>
888 <td class="node"><a href="/rev/a7c1559b7bba?style=spartan">second</a></td>
889 <td class="node"><a href="/rev/43c799df6e75?style=spartan">first</a></td>
890 navigate: <small class="navigate"><a href="/shortlog/43c799df6e75?style=spartan">(0)</a> <a href="/shortlog/tip?style=spartan">tip</a> </small>
891
892 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'log/xyzzy?style=spartan' | egrep $REVLINKS
893 <a href="/shortlog/1?style=spartan">shortlog</a>
894 <a href="/file/a7c1559b7bba?style=spartan">files</a>
895 <a href="/archive/tip.zip">zip</a>
896 navigate: <small class="navigate"><a href="/log/43c799df6e75?style=spartan">(0)</a> <a href="/log/tip?style=spartan">tip</a> </small>
897 <td class="node"><a href="/rev/a7c1559b7bba?style=spartan">a7c1559b7bba</a></td>
898 <th class="files"><a href="/file/a7c1559b7bba?style=spartan">files</a>:</th>
899 <td class="files"><a href="/diff/a7c1559b7bba/foo?style=spartan">foo</a> </td>
900 <td class="node"><a href="/rev/43c799df6e75?style=spartan">43c799df6e75</a></td>
901 <th class="files"><a href="/file/43c799df6e75?style=spartan">files</a>:</th>
902 <td class="files"><a href="/diff/43c799df6e75/dir/bar?style=spartan">dir/bar</a> <a href="/diff/43c799df6e75/foo?style=spartan">foo</a> </td>
903 navigate: <small class="navigate"><a href="/log/43c799df6e75?style=spartan">(0)</a> <a href="/log/tip?style=spartan">tip</a> </small>
904
905 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'graph/xyzzy?style=spartan' | egrep $REVLINKS
906 <a href="/file/a7c1559b7bba/?style=spartan">files</a>
907 navigate: <small class="navigate"><a href="/graph/43c799df6e75?style=spartan">(0)</a> <a href="/graph/tip?style=spartan">tip</a> </small>
908 navigate: <small class="navigate"><a href="/graph/43c799df6e75?style=spartan">(0)</a> <a href="/graph/tip?style=spartan">tip</a> </small>
909
910 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'file/xyzzy?style=spartan' | egrep $REVLINKS
911 <a href="/log/1?style=spartan">changelog</a>
912 <a href="/shortlog/1?style=spartan">shortlog</a>
913 <a href="/rev/a7c1559b7bba?style=spartan">changeset</a>
914 <a href="/archive/a7c1559b7bba.zip">zip</a>
915 <h2><a href="/">Mercurial</a> / files for changeset <a href="/rev/a7c1559b7bba">a7c1559b7bba</a>: /</h2>
916 <td><a href="/file/a7c1559b7bba/?style=spartan">[up]</a>
917 <a href="/file/a7c1559b7bba/dir?style=spartan">dir/</a>
918 <a href="/file/a7c1559b7bba/dir/?style=spartan">
919 <td><a href="/file/a7c1559b7bba/foo?style=spartan">foo</a>
920
921 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'file/xyzzy/foo?style=spartan' | egrep $REVLINKS
922 <a href="/log/1?style=spartan">changelog</a>
923 <a href="/shortlog/1?style=spartan">shortlog</a>
924 <a href="/rev/a7c1559b7bba?style=spartan">changeset</a>
925 <a href="/file/a7c1559b7bba/?style=spartan">files</a>
926 <a href="/log/a7c1559b7bba/foo?style=spartan">revisions</a>
927 <a href="/annotate/a7c1559b7bba/foo?style=spartan">annotate</a>
928 <a href="/raw-file/a7c1559b7bba/foo">raw</a>
929 <td><a href="/rev/a7c1559b7bba?style=spartan">a7c1559b7bba</a></td>
930 <a href="/file/43c799df6e75/foo?style=spartan">
931 <td><a href="/file/9d8c40cba617/foo?style=spartan">9d8c40cba617</a></td>
932
933 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'log/xyzzy/foo?style=spartan' | egrep $REVLINKS
934 href="/atom-log/tip/foo" title="Atom feed for test:foo">
935 href="/rss-log/tip/foo" title="RSS feed for test:foo">
936 <a href="/file/a7c1559b7bba/foo?style=spartan">file</a>
937 <a href="/annotate/a7c1559b7bba/foo?style=spartan">annotate</a>
938 <a type="application/rss+xml" href="/rss-log/tip/foo">rss</a>
939 <a type="application/atom+xml" href="/atom-log/tip/foo" title="Atom feed for test:foo">atom</a>
940 <p>navigate: <small class="navigate"><a href="/log/43c799df6e75/foo?style=spartan">(0)</a> <a href="/log/tip/foo?style=spartan">tip</a> </small></p>
941 <th class="firstline"><a href="/rev/a7c1559b7bba?style=spartan">second</a></th>
942 <a href="/file/a7c1559b7bba/foo?style=spartan">a7c1559b7bba</a>
943 <a href="/diff/a7c1559b7bba/foo?style=spartan">(diff)</a>
944 <a href="/annotate/a7c1559b7bba/foo?style=spartan">(annotate)</a>
945 <th class="firstline"><a href="/rev/43c799df6e75?style=spartan">first</a></th>
946 <a href="/file/43c799df6e75/foo?style=spartan">43c799df6e75</a>
947 <a href="/diff/43c799df6e75/foo?style=spartan">(diff)</a>
948 <a href="/annotate/43c799df6e75/foo?style=spartan">(annotate)</a>
949
950 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'annotate/xyzzy/foo?style=spartan' | egrep $REVLINKS
951 <a href="/log/1?style=spartan">changelog</a>
952 <a href="/shortlog/1?style=spartan">shortlog</a>
953 <a href="/rev/a7c1559b7bba?style=spartan">changeset</a>
954 <a href="/file/a7c1559b7bba/?style=spartan">files</a>
955 <a href="/file/a7c1559b7bba/foo?style=spartan">file</a>
956 <a href="/log/a7c1559b7bba/foo?style=spartan">revisions</a>
957 <a href="/raw-annotate/a7c1559b7bba/foo">raw</a>
958 <td><a href="/rev/a7c1559b7bba?style=spartan">a7c1559b7bba</a></td>
959 <a href="/annotate/43c799df6e75/foo?style=spartan">
960 <td><a href="/annotate/9d8c40cba617/foo?style=spartan">9d8c40cba617</a></td>
961 <a href="/annotate/43c799df6e75/foo?style=spartan#l1"
962 <a href="/annotate/a7c1559b7bba/foo?style=spartan#l2"
963
964 $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'diff/xyzzy/foo?style=spartan' | egrep $REVLINKS
965 <a href="/log/1?style=spartan">changelog</a>
966 <a href="/shortlog/1?style=spartan">shortlog</a>
967 <a href="/rev/a7c1559b7bba?style=spartan">changeset</a>
968 <a href="/file/a7c1559b7bba/foo?style=spartan">file</a>
969 <a href="/log/a7c1559b7bba/foo?style=spartan">revisions</a>
970 <a href="/annotate/a7c1559b7bba/foo?style=spartan">annotate</a>
971 <a href="/raw-diff/a7c1559b7bba/foo">raw</a>
972 <td class="revision"><a href="/rev/a7c1559b7bba?style=spartan">a7c1559b7bba</a></td>
973 <td class="parent"><a href="/rev/43c799df6e75?style=spartan">43c799df6e75</a></td>
974 <td class="child"><a href="/rev/9d8c40cba617?style=spartan">9d8c40cba617</a></td>
975
976 Done
977
978 $ cat errors.log
979 $ "$TESTDIR/killdaemons.py" $DAEMON_PIDS
980 $ cd ..
General Comments 0
You need to be logged in to leave comments. Login now