author | Laurent Charignon <lcharignon@fb.com> |
Wed, 11 Mar 2015 15:54:11 -0700 | |
changeset 24307 | 7fcd9f4af49b |
parent 24054 | fdf7794be41d |
child 25108 | 09ec4220a839 |
permissions | -rw-r--r-- |
22046
7a9cbb315d84
tests: replace exit 80 with #require
Matt Mackall <mpm@selenic.com>
parents:
21124
diff
changeset
|
1 |
#require serve |
7300
591767e6ea7a
hgweb: conditionally show file logs for deleted files
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
diff
changeset
|
2 |
|
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
3 |
$ hg init test |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
4 |
$ cd test |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
5 |
$ echo b > b |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
6 |
$ hg ci -Am "b" |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
7 |
adding b |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
8 |
$ echo a > a |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
9 |
$ hg ci -Am "first a" |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
10 |
adding a |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
11 |
$ hg rm a |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
12 |
$ hg ci -m "del a" |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
13 |
$ echo b > a |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
14 |
$ hg ci -Am "second a" |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
15 |
adding a |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
16 |
$ hg rm a |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
17 |
$ hg ci -m "del2 a" |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
18 |
$ hg mv b c |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
19 |
$ hg ci -m "mv b" |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
20 |
$ echo c >> c |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
21 |
$ hg ci -m "change c" |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
22 |
$ hg log -p |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
23 |
changeset: 6:b7682196df1c |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
24 |
tag: tip |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
25 |
user: test |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
26 |
date: Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
27 |
summary: change c |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
28 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
29 |
diff -r 1a6696706df2 -r b7682196df1c c |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
30 |
--- a/c Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
31 |
+++ b/c Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
32 |
@@ -1,1 +1,2 @@ |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
33 |
b |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
34 |
+c |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
35 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
36 |
changeset: 5:1a6696706df2 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
37 |
user: test |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
38 |
date: Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
39 |
summary: mv b |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
40 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
41 |
diff -r 52e848cdcd88 -r 1a6696706df2 b |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
42 |
--- a/b Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
43 |
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
44 |
@@ -1,1 +0,0 @@ |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
45 |
-b |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
46 |
diff -r 52e848cdcd88 -r 1a6696706df2 c |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
47 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
48 |
+++ b/c Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
49 |
@@ -0,0 +1,1 @@ |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
50 |
+b |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
51 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
52 |
changeset: 4:52e848cdcd88 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
53 |
user: test |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
54 |
date: Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
55 |
summary: del2 a |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
56 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
57 |
diff -r 01de2d66a28d -r 52e848cdcd88 a |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
58 |
--- a/a Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
59 |
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
60 |
@@ -1,1 +0,0 @@ |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
61 |
-b |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
62 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
63 |
changeset: 3:01de2d66a28d |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
64 |
user: test |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
65 |
date: Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
66 |
summary: second a |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
67 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
68 |
diff -r be3ebcc91739 -r 01de2d66a28d a |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
69 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
70 |
+++ b/a Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
71 |
@@ -0,0 +1,1 @@ |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
72 |
+b |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
73 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
74 |
changeset: 2:be3ebcc91739 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
75 |
user: test |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
76 |
date: Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
77 |
summary: del a |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
78 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
79 |
diff -r 5ed941583260 -r be3ebcc91739 a |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
80 |
--- a/a Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
81 |
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
82 |
@@ -1,1 +0,0 @@ |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
83 |
-a |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
84 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
85 |
changeset: 1:5ed941583260 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
86 |
user: test |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
87 |
date: Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
88 |
summary: first a |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
89 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
90 |
diff -r 6563da9dcf87 -r 5ed941583260 a |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
91 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
92 |
+++ b/a Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
93 |
@@ -0,0 +1,1 @@ |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
94 |
+a |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
95 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
96 |
changeset: 0:6563da9dcf87 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
97 |
user: test |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
98 |
date: Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
99 |
summary: b |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
100 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
101 |
diff -r 000000000000 -r 6563da9dcf87 b |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
102 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
103 |
+++ b/b Thu Jan 01 00:00:00 1970 +0000 |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
104 |
@@ -0,0 +1,1 @@ |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
105 |
+b |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
106 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
107 |
$ hg serve -n test -p $HGPORT -d --pid-file=hg.pid -E errors.log |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
108 |
$ cat hg.pid >> $DAEMON_PIDS |
7300
591767e6ea7a
hgweb: conditionally show file logs for deleted files
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
diff
changeset
|
109 |
|
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
110 |
tip - two revisions |
7300
591767e6ea7a
hgweb: conditionally show file logs for deleted files
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
diff
changeset
|
111 |
|
17017
953faba28e91
tests: prepare get-with-headers.py for MSYS
Mads Kiilerich <mads@kiilerich.com>
parents:
16913
diff
changeset
|
112 |
$ ("$TESTDIR/get-with-headers.py" localhost:$HGPORT 'log/tip/a') |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
113 |
200 Script output follows |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
114 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
115 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
116 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
117 |
<head> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
118 |
<link rel="icon" href="/static/hgicon.png" type="image/png" /> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
119 |
<meta name="robots" content="index, nofollow" /> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
120 |
<link rel="stylesheet" href="/static/style-paper.css" type="text/css" /> |
14046
b24e5a708fad
web: Made elapsed time calculation dynamic (javascript).
Benoit Allard <benoit@aeteurope.nl>
parents:
13597
diff
changeset
|
121 |
<script type="text/javascript" src="/static/mercurial.js"></script> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
122 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
123 |
<title>test: a history</title> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
124 |
<link rel="alternate" type="application/atom+xml" |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
125 |
href="/atom-log/tip/a" title="Atom feed for test:a" /> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
126 |
<link rel="alternate" type="application/rss+xml" |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
127 |
href="/rss-log/tip/a" title="RSS feed for test:a" /> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
128 |
</head> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
129 |
<body> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
130 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
131 |
<div class="container"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
132 |
<div class="menu"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
133 |
<div class="logo"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
134 |
<a href="http://mercurial.selenic.com/"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
135 |
<img src="/static/hglogo.png" alt="mercurial" /></a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
136 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
137 |
<ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
138 |
<li><a href="/shortlog/01de2d66a28d">log</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
139 |
<li><a href="/graph/01de2d66a28d">graph</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
140 |
<li><a href="/tags">tags</a></li> |
13597
38c9837b1f75
hgweb: add separate page with bookmarks listing
Alexander Solovyov <alexander@solovyov.net>
parents:
13547
diff
changeset
|
141 |
<li><a href="/bookmarks">bookmarks</a></li> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
142 |
<li><a href="/branches">branches</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
143 |
</ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
144 |
<ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
145 |
<li><a href="/rev/01de2d66a28d">changeset</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
146 |
<li><a href="/file/01de2d66a28d">browse</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
147 |
</ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
148 |
<ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
149 |
<li><a href="/file/01de2d66a28d/a">file</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
150 |
<li><a href="/diff/01de2d66a28d/a">diff</a></li> |
17202
1ae119269ddc
hgweb: side-by-side comparison functionality
wujek srujek
parents:
17017
diff
changeset
|
151 |
<li><a href="/comparison/01de2d66a28d/a">comparison</a></li> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
152 |
<li><a href="/annotate/01de2d66a28d/a">annotate</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
153 |
<li class="active">file log</li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
154 |
<li><a href="/raw-file/01de2d66a28d/a">raw</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
155 |
</ul> |
12680
d664547ef540
hgweb: add help link to templates missed in ead4e21f49f1
Augie Fackler <durin42@gmail.com>
parents:
12437
diff
changeset
|
156 |
<ul> |
d664547ef540
hgweb: add help link to templates missed in ead4e21f49f1
Augie Fackler <durin42@gmail.com>
parents:
12437
diff
changeset
|
157 |
<li><a href="/help">help</a></li> |
d664547ef540
hgweb: add help link to templates missed in ead4e21f49f1
Augie Fackler <durin42@gmail.com>
parents:
12437
diff
changeset
|
158 |
</ul> |
18200
b31266671918
hgweb: add (Atom) subscribe link to the main paper template pages
Angel Ezquerra <angel.ezquerra@gmail.com>
parents:
17290
diff
changeset
|
159 |
<div class="atom-logo"> |
b31266671918
hgweb: add (Atom) subscribe link to the main paper template pages
Angel Ezquerra <angel.ezquerra@gmail.com>
parents:
17290
diff
changeset
|
160 |
<a href="/atom-log/01de2d66a28d/a" title="subscribe to atom feed"> |
23830
c4f6fc4eb01e
hgweb: close <img> elements
Anton Shestakov <engored@ya.ru>
parents:
23829
diff
changeset
|
161 |
<img class="atom-logo" src="/static/feed-icon-14x14.png" alt="atom feed" /> |
c4f6fc4eb01e
hgweb: close <img> elements
Anton Shestakov <engored@ya.ru>
parents:
23829
diff
changeset
|
162 |
</a> |
18200
b31266671918
hgweb: add (Atom) subscribe link to the main paper template pages
Angel Ezquerra <angel.ezquerra@gmail.com>
parents:
17290
diff
changeset
|
163 |
</div> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
164 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
165 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
166 |
<div class="main"> |
18264
d6ebdbdd70a5
tests: update hgweb tests to include breadcrumbs
Bryan O'Sullivan <bryano@fb.com>
parents:
18200
diff
changeset
|
167 |
<h2 class="breadcrumb"><a href="/">Mercurial</a> </h2> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
168 |
<h3>log a</h3> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
169 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
170 |
<form class="search" action="/log"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
171 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
172 |
<p><input name="rev" id="search1" type="text" size="30" /></p> |
19796
544848ef65f2
paper: edit search hint to include new feature description
Alexander Plavin <alexander@plav.in>
parents:
19795
diff
changeset
|
173 |
<div id="hint">Find changesets by keywords (author, files, the commit message), revision |
544848ef65f2
paper: edit search hint to include new feature description
Alexander Plavin <alexander@plav.in>
parents:
19795
diff
changeset
|
174 |
number or hash, or <a href="/help/revsets">revset expression</a>.</div> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
175 |
</form> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
176 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
177 |
<div class="navigate"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
178 |
<a href="/log/01de2d66a28d/a?revcount=30">less</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
179 |
<a href="/log/01de2d66a28d/a?revcount=120">more</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
180 |
| <a href="/log/5ed941583260/a">(0)</a> <a href="/log/tip/a">tip</a> </div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
181 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
182 |
<table class="bigtable"> |
24054
fdf7794be41d
hgweb: replace implicit <tbody> with explicit <thead> where appropriate
Anton Shestakov <engored@ya.ru>
parents:
24041
diff
changeset
|
183 |
<thead> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
184 |
<tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
185 |
<th class="age">age</th> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
186 |
<th class="author">author</th> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
187 |
<th class="description">description</th> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
188 |
</tr> |
24054
fdf7794be41d
hgweb: replace implicit <tbody> with explicit <thead> where appropriate
Anton Shestakov <engored@ya.ru>
parents:
24041
diff
changeset
|
189 |
</thead> |
19454
f4a3b50a30bd
hgweb: make stripes in file log with CSS
Alexander Plavin <me@aplavin.ru>
parents:
18264
diff
changeset
|
190 |
<tbody class="stripes2"> |
f4a3b50a30bd
hgweb: make stripes in file log with CSS
Alexander Plavin <me@aplavin.ru>
parents:
18264
diff
changeset
|
191 |
<tr> |
15375
fe9d36a6853e
hgweb: fix dynamic date calculation not working under Safari
Brodie Rao <brodie@bitheap.org>
parents:
14046
diff
changeset
|
192 |
<td class="age">Thu, 01 Jan 1970 00:00:00 +0000</td> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
193 |
<td class="author">test</td> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
194 |
<td class="description"><a href="/rev/01de2d66a28d">second a</a></td> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
195 |
</tr> |
19454
f4a3b50a30bd
hgweb: make stripes in file log with CSS
Alexander Plavin <me@aplavin.ru>
parents:
18264
diff
changeset
|
196 |
<tr> |
15375
fe9d36a6853e
hgweb: fix dynamic date calculation not working under Safari
Brodie Rao <brodie@bitheap.org>
parents:
14046
diff
changeset
|
197 |
<td class="age">Thu, 01 Jan 1970 00:00:00 +0000</td> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
198 |
<td class="author">test</td> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
199 |
<td class="description"><a href="/rev/5ed941583260">first a</a></td> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
200 |
</tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
201 |
|
19454
f4a3b50a30bd
hgweb: make stripes in file log with CSS
Alexander Plavin <me@aplavin.ru>
parents:
18264
diff
changeset
|
202 |
</tbody> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
203 |
</table> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
204 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
205 |
<div class="navigate"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
206 |
<a href="/log/01de2d66a28d/a?revcount=30">less</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
207 |
<a href="/log/01de2d66a28d/a?revcount=120">more</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
208 |
| <a href="/log/5ed941583260/a">(0)</a> <a href="/log/tip/a">tip</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
209 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
210 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
211 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
212 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
213 |
|
14046
b24e5a708fad
web: Made elapsed time calculation dynamic (javascript).
Benoit Allard <benoit@aeteurope.nl>
parents:
13597
diff
changeset
|
214 |
<script type="text/javascript">process_dates()</script> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
215 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
216 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
217 |
</body> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
218 |
</html> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
219 |
|
7300
591767e6ea7a
hgweb: conditionally show file logs for deleted files
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
diff
changeset
|
220 |
|
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
221 |
second version - two revisions |
7300
591767e6ea7a
hgweb: conditionally show file logs for deleted files
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
diff
changeset
|
222 |
|
17017
953faba28e91
tests: prepare get-with-headers.py for MSYS
Mads Kiilerich <mads@kiilerich.com>
parents:
16913
diff
changeset
|
223 |
$ ("$TESTDIR/get-with-headers.py" localhost:$HGPORT 'log/3/a') |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
224 |
200 Script output follows |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
225 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
226 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
227 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
228 |
<head> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
229 |
<link rel="icon" href="/static/hgicon.png" type="image/png" /> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
230 |
<meta name="robots" content="index, nofollow" /> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
231 |
<link rel="stylesheet" href="/static/style-paper.css" type="text/css" /> |
14046
b24e5a708fad
web: Made elapsed time calculation dynamic (javascript).
Benoit Allard <benoit@aeteurope.nl>
parents:
13597
diff
changeset
|
232 |
<script type="text/javascript" src="/static/mercurial.js"></script> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
233 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
234 |
<title>test: a history</title> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
235 |
<link rel="alternate" type="application/atom+xml" |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
236 |
href="/atom-log/tip/a" title="Atom feed for test:a" /> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
237 |
<link rel="alternate" type="application/rss+xml" |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
238 |
href="/rss-log/tip/a" title="RSS feed for test:a" /> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
239 |
</head> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
240 |
<body> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
241 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
242 |
<div class="container"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
243 |
<div class="menu"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
244 |
<div class="logo"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
245 |
<a href="http://mercurial.selenic.com/"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
246 |
<img src="/static/hglogo.png" alt="mercurial" /></a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
247 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
248 |
<ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
249 |
<li><a href="/shortlog/01de2d66a28d">log</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
250 |
<li><a href="/graph/01de2d66a28d">graph</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
251 |
<li><a href="/tags">tags</a></li> |
13597
38c9837b1f75
hgweb: add separate page with bookmarks listing
Alexander Solovyov <alexander@solovyov.net>
parents:
13547
diff
changeset
|
252 |
<li><a href="/bookmarks">bookmarks</a></li> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
253 |
<li><a href="/branches">branches</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
254 |
</ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
255 |
<ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
256 |
<li><a href="/rev/01de2d66a28d">changeset</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
257 |
<li><a href="/file/01de2d66a28d">browse</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
258 |
</ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
259 |
<ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
260 |
<li><a href="/file/01de2d66a28d/a">file</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
261 |
<li><a href="/diff/01de2d66a28d/a">diff</a></li> |
17202
1ae119269ddc
hgweb: side-by-side comparison functionality
wujek srujek
parents:
17017
diff
changeset
|
262 |
<li><a href="/comparison/01de2d66a28d/a">comparison</a></li> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
263 |
<li><a href="/annotate/01de2d66a28d/a">annotate</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
264 |
<li class="active">file log</li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
265 |
<li><a href="/raw-file/01de2d66a28d/a">raw</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
266 |
</ul> |
12680
d664547ef540
hgweb: add help link to templates missed in ead4e21f49f1
Augie Fackler <durin42@gmail.com>
parents:
12437
diff
changeset
|
267 |
<ul> |
d664547ef540
hgweb: add help link to templates missed in ead4e21f49f1
Augie Fackler <durin42@gmail.com>
parents:
12437
diff
changeset
|
268 |
<li><a href="/help">help</a></li> |
d664547ef540
hgweb: add help link to templates missed in ead4e21f49f1
Augie Fackler <durin42@gmail.com>
parents:
12437
diff
changeset
|
269 |
</ul> |
18200
b31266671918
hgweb: add (Atom) subscribe link to the main paper template pages
Angel Ezquerra <angel.ezquerra@gmail.com>
parents:
17290
diff
changeset
|
270 |
<div class="atom-logo"> |
b31266671918
hgweb: add (Atom) subscribe link to the main paper template pages
Angel Ezquerra <angel.ezquerra@gmail.com>
parents:
17290
diff
changeset
|
271 |
<a href="/atom-log/01de2d66a28d/a" title="subscribe to atom feed"> |
23830
c4f6fc4eb01e
hgweb: close <img> elements
Anton Shestakov <engored@ya.ru>
parents:
23829
diff
changeset
|
272 |
<img class="atom-logo" src="/static/feed-icon-14x14.png" alt="atom feed" /> |
c4f6fc4eb01e
hgweb: close <img> elements
Anton Shestakov <engored@ya.ru>
parents:
23829
diff
changeset
|
273 |
</a> |
18200
b31266671918
hgweb: add (Atom) subscribe link to the main paper template pages
Angel Ezquerra <angel.ezquerra@gmail.com>
parents:
17290
diff
changeset
|
274 |
</div> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
275 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
276 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
277 |
<div class="main"> |
18264
d6ebdbdd70a5
tests: update hgweb tests to include breadcrumbs
Bryan O'Sullivan <bryano@fb.com>
parents:
18200
diff
changeset
|
278 |
<h2 class="breadcrumb"><a href="/">Mercurial</a> </h2> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
279 |
<h3>log a</h3> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
280 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
281 |
<form class="search" action="/log"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
282 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
283 |
<p><input name="rev" id="search1" type="text" size="30" /></p> |
19796
544848ef65f2
paper: edit search hint to include new feature description
Alexander Plavin <alexander@plav.in>
parents:
19795
diff
changeset
|
284 |
<div id="hint">Find changesets by keywords (author, files, the commit message), revision |
544848ef65f2
paper: edit search hint to include new feature description
Alexander Plavin <alexander@plav.in>
parents:
19795
diff
changeset
|
285 |
number or hash, or <a href="/help/revsets">revset expression</a>.</div> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
286 |
</form> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
287 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
288 |
<div class="navigate"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
289 |
<a href="/log/01de2d66a28d/a?revcount=30">less</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
290 |
<a href="/log/01de2d66a28d/a?revcount=120">more</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
291 |
| <a href="/log/5ed941583260/a">(0)</a> <a href="/log/tip/a">tip</a> </div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
292 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
293 |
<table class="bigtable"> |
24054
fdf7794be41d
hgweb: replace implicit <tbody> with explicit <thead> where appropriate
Anton Shestakov <engored@ya.ru>
parents:
24041
diff
changeset
|
294 |
<thead> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
295 |
<tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
296 |
<th class="age">age</th> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
297 |
<th class="author">author</th> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
298 |
<th class="description">description</th> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
299 |
</tr> |
24054
fdf7794be41d
hgweb: replace implicit <tbody> with explicit <thead> where appropriate
Anton Shestakov <engored@ya.ru>
parents:
24041
diff
changeset
|
300 |
</thead> |
19454
f4a3b50a30bd
hgweb: make stripes in file log with CSS
Alexander Plavin <me@aplavin.ru>
parents:
18264
diff
changeset
|
301 |
<tbody class="stripes2"> |
f4a3b50a30bd
hgweb: make stripes in file log with CSS
Alexander Plavin <me@aplavin.ru>
parents:
18264
diff
changeset
|
302 |
<tr> |
15375
fe9d36a6853e
hgweb: fix dynamic date calculation not working under Safari
Brodie Rao <brodie@bitheap.org>
parents:
14046
diff
changeset
|
303 |
<td class="age">Thu, 01 Jan 1970 00:00:00 +0000</td> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
304 |
<td class="author">test</td> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
305 |
<td class="description"><a href="/rev/01de2d66a28d">second a</a></td> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
306 |
</tr> |
19454
f4a3b50a30bd
hgweb: make stripes in file log with CSS
Alexander Plavin <me@aplavin.ru>
parents:
18264
diff
changeset
|
307 |
<tr> |
15375
fe9d36a6853e
hgweb: fix dynamic date calculation not working under Safari
Brodie Rao <brodie@bitheap.org>
parents:
14046
diff
changeset
|
308 |
<td class="age">Thu, 01 Jan 1970 00:00:00 +0000</td> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
309 |
<td class="author">test</td> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
310 |
<td class="description"><a href="/rev/5ed941583260">first a</a></td> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
311 |
</tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
312 |
|
19454
f4a3b50a30bd
hgweb: make stripes in file log with CSS
Alexander Plavin <me@aplavin.ru>
parents:
18264
diff
changeset
|
313 |
</tbody> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
314 |
</table> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
315 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
316 |
<div class="navigate"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
317 |
<a href="/log/01de2d66a28d/a?revcount=30">less</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
318 |
<a href="/log/01de2d66a28d/a?revcount=120">more</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
319 |
| <a href="/log/5ed941583260/a">(0)</a> <a href="/log/tip/a">tip</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
320 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
321 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
322 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
323 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
324 |
|
14046
b24e5a708fad
web: Made elapsed time calculation dynamic (javascript).
Benoit Allard <benoit@aeteurope.nl>
parents:
13597
diff
changeset
|
325 |
<script type="text/javascript">process_dates()</script> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
326 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
327 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
328 |
</body> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
329 |
</html> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
330 |
|
7300
591767e6ea7a
hgweb: conditionally show file logs for deleted files
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
diff
changeset
|
331 |
|
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
332 |
first deleted - one revision |
7624
f2fa1a9eede6
Improved hgweb test.
Stefan Ring <stefan@complang.tuwien.ac.at>
parents:
7612
diff
changeset
|
333 |
|
17017
953faba28e91
tests: prepare get-with-headers.py for MSYS
Mads Kiilerich <mads@kiilerich.com>
parents:
16913
diff
changeset
|
334 |
$ ("$TESTDIR/get-with-headers.py" localhost:$HGPORT 'log/2/a') |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
335 |
200 Script output follows |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
336 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
337 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
338 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
339 |
<head> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
340 |
<link rel="icon" href="/static/hgicon.png" type="image/png" /> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
341 |
<meta name="robots" content="index, nofollow" /> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
342 |
<link rel="stylesheet" href="/static/style-paper.css" type="text/css" /> |
14046
b24e5a708fad
web: Made elapsed time calculation dynamic (javascript).
Benoit Allard <benoit@aeteurope.nl>
parents:
13597
diff
changeset
|
343 |
<script type="text/javascript" src="/static/mercurial.js"></script> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
344 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
345 |
<title>test: a history</title> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
346 |
<link rel="alternate" type="application/atom+xml" |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
347 |
href="/atom-log/tip/a" title="Atom feed for test:a" /> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
348 |
<link rel="alternate" type="application/rss+xml" |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
349 |
href="/rss-log/tip/a" title="RSS feed for test:a" /> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
350 |
</head> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
351 |
<body> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
352 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
353 |
<div class="container"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
354 |
<div class="menu"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
355 |
<div class="logo"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
356 |
<a href="http://mercurial.selenic.com/"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
357 |
<img src="/static/hglogo.png" alt="mercurial" /></a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
358 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
359 |
<ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
360 |
<li><a href="/shortlog/5ed941583260">log</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
361 |
<li><a href="/graph/5ed941583260">graph</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
362 |
<li><a href="/tags">tags</a></li> |
13597
38c9837b1f75
hgweb: add separate page with bookmarks listing
Alexander Solovyov <alexander@solovyov.net>
parents:
13547
diff
changeset
|
363 |
<li><a href="/bookmarks">bookmarks</a></li> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
364 |
<li><a href="/branches">branches</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
365 |
</ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
366 |
<ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
367 |
<li><a href="/rev/5ed941583260">changeset</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
368 |
<li><a href="/file/5ed941583260">browse</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
369 |
</ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
370 |
<ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
371 |
<li><a href="/file/5ed941583260/a">file</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
372 |
<li><a href="/diff/5ed941583260/a">diff</a></li> |
17202
1ae119269ddc
hgweb: side-by-side comparison functionality
wujek srujek
parents:
17017
diff
changeset
|
373 |
<li><a href="/comparison/5ed941583260/a">comparison</a></li> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
374 |
<li><a href="/annotate/5ed941583260/a">annotate</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
375 |
<li class="active">file log</li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
376 |
<li><a href="/raw-file/5ed941583260/a">raw</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
377 |
</ul> |
12680
d664547ef540
hgweb: add help link to templates missed in ead4e21f49f1
Augie Fackler <durin42@gmail.com>
parents:
12437
diff
changeset
|
378 |
<ul> |
d664547ef540
hgweb: add help link to templates missed in ead4e21f49f1
Augie Fackler <durin42@gmail.com>
parents:
12437
diff
changeset
|
379 |
<li><a href="/help">help</a></li> |
d664547ef540
hgweb: add help link to templates missed in ead4e21f49f1
Augie Fackler <durin42@gmail.com>
parents:
12437
diff
changeset
|
380 |
</ul> |
18200
b31266671918
hgweb: add (Atom) subscribe link to the main paper template pages
Angel Ezquerra <angel.ezquerra@gmail.com>
parents:
17290
diff
changeset
|
381 |
<div class="atom-logo"> |
b31266671918
hgweb: add (Atom) subscribe link to the main paper template pages
Angel Ezquerra <angel.ezquerra@gmail.com>
parents:
17290
diff
changeset
|
382 |
<a href="/atom-log/5ed941583260/a" title="subscribe to atom feed"> |
23830
c4f6fc4eb01e
hgweb: close <img> elements
Anton Shestakov <engored@ya.ru>
parents:
23829
diff
changeset
|
383 |
<img class="atom-logo" src="/static/feed-icon-14x14.png" alt="atom feed" /> |
c4f6fc4eb01e
hgweb: close <img> elements
Anton Shestakov <engored@ya.ru>
parents:
23829
diff
changeset
|
384 |
</a> |
18200
b31266671918
hgweb: add (Atom) subscribe link to the main paper template pages
Angel Ezquerra <angel.ezquerra@gmail.com>
parents:
17290
diff
changeset
|
385 |
</div> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
386 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
387 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
388 |
<div class="main"> |
18264
d6ebdbdd70a5
tests: update hgweb tests to include breadcrumbs
Bryan O'Sullivan <bryano@fb.com>
parents:
18200
diff
changeset
|
389 |
<h2 class="breadcrumb"><a href="/">Mercurial</a> </h2> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
390 |
<h3>log a</h3> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
391 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
392 |
<form class="search" action="/log"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
393 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
394 |
<p><input name="rev" id="search1" type="text" size="30" /></p> |
19796
544848ef65f2
paper: edit search hint to include new feature description
Alexander Plavin <alexander@plav.in>
parents:
19795
diff
changeset
|
395 |
<div id="hint">Find changesets by keywords (author, files, the commit message), revision |
544848ef65f2
paper: edit search hint to include new feature description
Alexander Plavin <alexander@plav.in>
parents:
19795
diff
changeset
|
396 |
number or hash, or <a href="/help/revsets">revset expression</a>.</div> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
397 |
</form> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
398 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
399 |
<div class="navigate"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
400 |
<a href="/log/5ed941583260/a?revcount=30">less</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
401 |
<a href="/log/5ed941583260/a?revcount=120">more</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
402 |
| <a href="/log/5ed941583260/a">(0)</a> <a href="/log/tip/a">tip</a> </div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
403 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
404 |
<table class="bigtable"> |
24054
fdf7794be41d
hgweb: replace implicit <tbody> with explicit <thead> where appropriate
Anton Shestakov <engored@ya.ru>
parents:
24041
diff
changeset
|
405 |
<thead> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
406 |
<tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
407 |
<th class="age">age</th> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
408 |
<th class="author">author</th> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
409 |
<th class="description">description</th> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
410 |
</tr> |
24054
fdf7794be41d
hgweb: replace implicit <tbody> with explicit <thead> where appropriate
Anton Shestakov <engored@ya.ru>
parents:
24041
diff
changeset
|
411 |
</thead> |
19454
f4a3b50a30bd
hgweb: make stripes in file log with CSS
Alexander Plavin <me@aplavin.ru>
parents:
18264
diff
changeset
|
412 |
<tbody class="stripes2"> |
f4a3b50a30bd
hgweb: make stripes in file log with CSS
Alexander Plavin <me@aplavin.ru>
parents:
18264
diff
changeset
|
413 |
<tr> |
15375
fe9d36a6853e
hgweb: fix dynamic date calculation not working under Safari
Brodie Rao <brodie@bitheap.org>
parents:
14046
diff
changeset
|
414 |
<td class="age">Thu, 01 Jan 1970 00:00:00 +0000</td> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
415 |
<td class="author">test</td> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
416 |
<td class="description"><a href="/rev/5ed941583260">first a</a></td> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
417 |
</tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
418 |
|
19454
f4a3b50a30bd
hgweb: make stripes in file log with CSS
Alexander Plavin <me@aplavin.ru>
parents:
18264
diff
changeset
|
419 |
</tbody> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
420 |
</table> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
421 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
422 |
<div class="navigate"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
423 |
<a href="/log/5ed941583260/a?revcount=30">less</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
424 |
<a href="/log/5ed941583260/a?revcount=120">more</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
425 |
| <a href="/log/5ed941583260/a">(0)</a> <a href="/log/tip/a">tip</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
426 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
427 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
428 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
429 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
430 |
|
14046
b24e5a708fad
web: Made elapsed time calculation dynamic (javascript).
Benoit Allard <benoit@aeteurope.nl>
parents:
13597
diff
changeset
|
431 |
<script type="text/javascript">process_dates()</script> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
432 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
433 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
434 |
</body> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
435 |
</html> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
436 |
|
7300
591767e6ea7a
hgweb: conditionally show file logs for deleted files
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
diff
changeset
|
437 |
|
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
438 |
first version - one revision |
7300
591767e6ea7a
hgweb: conditionally show file logs for deleted files
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
diff
changeset
|
439 |
|
17017
953faba28e91
tests: prepare get-with-headers.py for MSYS
Mads Kiilerich <mads@kiilerich.com>
parents:
16913
diff
changeset
|
440 |
$ ("$TESTDIR/get-with-headers.py" localhost:$HGPORT 'log/1/a') |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
441 |
200 Script output follows |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
442 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
443 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
444 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
445 |
<head> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
446 |
<link rel="icon" href="/static/hgicon.png" type="image/png" /> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
447 |
<meta name="robots" content="index, nofollow" /> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
448 |
<link rel="stylesheet" href="/static/style-paper.css" type="text/css" /> |
14046
b24e5a708fad
web: Made elapsed time calculation dynamic (javascript).
Benoit Allard <benoit@aeteurope.nl>
parents:
13597
diff
changeset
|
449 |
<script type="text/javascript" src="/static/mercurial.js"></script> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
450 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
451 |
<title>test: a history</title> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
452 |
<link rel="alternate" type="application/atom+xml" |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
453 |
href="/atom-log/tip/a" title="Atom feed for test:a" /> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
454 |
<link rel="alternate" type="application/rss+xml" |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
455 |
href="/rss-log/tip/a" title="RSS feed for test:a" /> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
456 |
</head> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
457 |
<body> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
458 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
459 |
<div class="container"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
460 |
<div class="menu"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
461 |
<div class="logo"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
462 |
<a href="http://mercurial.selenic.com/"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
463 |
<img src="/static/hglogo.png" alt="mercurial" /></a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
464 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
465 |
<ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
466 |
<li><a href="/shortlog/5ed941583260">log</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
467 |
<li><a href="/graph/5ed941583260">graph</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
468 |
<li><a href="/tags">tags</a></li> |
13597
38c9837b1f75
hgweb: add separate page with bookmarks listing
Alexander Solovyov <alexander@solovyov.net>
parents:
13547
diff
changeset
|
469 |
<li><a href="/bookmarks">bookmarks</a></li> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
470 |
<li><a href="/branches">branches</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
471 |
</ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
472 |
<ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
473 |
<li><a href="/rev/5ed941583260">changeset</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
474 |
<li><a href="/file/5ed941583260">browse</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
475 |
</ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
476 |
<ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
477 |
<li><a href="/file/5ed941583260/a">file</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
478 |
<li><a href="/diff/5ed941583260/a">diff</a></li> |
17202
1ae119269ddc
hgweb: side-by-side comparison functionality
wujek srujek
parents:
17017
diff
changeset
|
479 |
<li><a href="/comparison/5ed941583260/a">comparison</a></li> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
480 |
<li><a href="/annotate/5ed941583260/a">annotate</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
481 |
<li class="active">file log</li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
482 |
<li><a href="/raw-file/5ed941583260/a">raw</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
483 |
</ul> |
12680
d664547ef540
hgweb: add help link to templates missed in ead4e21f49f1
Augie Fackler <durin42@gmail.com>
parents:
12437
diff
changeset
|
484 |
<ul> |
d664547ef540
hgweb: add help link to templates missed in ead4e21f49f1
Augie Fackler <durin42@gmail.com>
parents:
12437
diff
changeset
|
485 |
<li><a href="/help">help</a></li> |
d664547ef540
hgweb: add help link to templates missed in ead4e21f49f1
Augie Fackler <durin42@gmail.com>
parents:
12437
diff
changeset
|
486 |
</ul> |
18200
b31266671918
hgweb: add (Atom) subscribe link to the main paper template pages
Angel Ezquerra <angel.ezquerra@gmail.com>
parents:
17290
diff
changeset
|
487 |
<div class="atom-logo"> |
b31266671918
hgweb: add (Atom) subscribe link to the main paper template pages
Angel Ezquerra <angel.ezquerra@gmail.com>
parents:
17290
diff
changeset
|
488 |
<a href="/atom-log/5ed941583260/a" title="subscribe to atom feed"> |
23830
c4f6fc4eb01e
hgweb: close <img> elements
Anton Shestakov <engored@ya.ru>
parents:
23829
diff
changeset
|
489 |
<img class="atom-logo" src="/static/feed-icon-14x14.png" alt="atom feed" /> |
c4f6fc4eb01e
hgweb: close <img> elements
Anton Shestakov <engored@ya.ru>
parents:
23829
diff
changeset
|
490 |
</a> |
18200
b31266671918
hgweb: add (Atom) subscribe link to the main paper template pages
Angel Ezquerra <angel.ezquerra@gmail.com>
parents:
17290
diff
changeset
|
491 |
</div> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
492 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
493 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
494 |
<div class="main"> |
18264
d6ebdbdd70a5
tests: update hgweb tests to include breadcrumbs
Bryan O'Sullivan <bryano@fb.com>
parents:
18200
diff
changeset
|
495 |
<h2 class="breadcrumb"><a href="/">Mercurial</a> </h2> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
496 |
<h3>log a</h3> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
497 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
498 |
<form class="search" action="/log"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
499 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
500 |
<p><input name="rev" id="search1" type="text" size="30" /></p> |
19796
544848ef65f2
paper: edit search hint to include new feature description
Alexander Plavin <alexander@plav.in>
parents:
19795
diff
changeset
|
501 |
<div id="hint">Find changesets by keywords (author, files, the commit message), revision |
544848ef65f2
paper: edit search hint to include new feature description
Alexander Plavin <alexander@plav.in>
parents:
19795
diff
changeset
|
502 |
number or hash, or <a href="/help/revsets">revset expression</a>.</div> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
503 |
</form> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
504 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
505 |
<div class="navigate"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
506 |
<a href="/log/5ed941583260/a?revcount=30">less</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
507 |
<a href="/log/5ed941583260/a?revcount=120">more</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
508 |
| <a href="/log/5ed941583260/a">(0)</a> <a href="/log/tip/a">tip</a> </div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
509 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
510 |
<table class="bigtable"> |
24054
fdf7794be41d
hgweb: replace implicit <tbody> with explicit <thead> where appropriate
Anton Shestakov <engored@ya.ru>
parents:
24041
diff
changeset
|
511 |
<thead> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
512 |
<tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
513 |
<th class="age">age</th> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
514 |
<th class="author">author</th> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
515 |
<th class="description">description</th> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
516 |
</tr> |
24054
fdf7794be41d
hgweb: replace implicit <tbody> with explicit <thead> where appropriate
Anton Shestakov <engored@ya.ru>
parents:
24041
diff
changeset
|
517 |
</thead> |
19454
f4a3b50a30bd
hgweb: make stripes in file log with CSS
Alexander Plavin <me@aplavin.ru>
parents:
18264
diff
changeset
|
518 |
<tbody class="stripes2"> |
f4a3b50a30bd
hgweb: make stripes in file log with CSS
Alexander Plavin <me@aplavin.ru>
parents:
18264
diff
changeset
|
519 |
<tr> |
15375
fe9d36a6853e
hgweb: fix dynamic date calculation not working under Safari
Brodie Rao <brodie@bitheap.org>
parents:
14046
diff
changeset
|
520 |
<td class="age">Thu, 01 Jan 1970 00:00:00 +0000</td> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
521 |
<td class="author">test</td> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
522 |
<td class="description"><a href="/rev/5ed941583260">first a</a></td> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
523 |
</tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
524 |
|
19454
f4a3b50a30bd
hgweb: make stripes in file log with CSS
Alexander Plavin <me@aplavin.ru>
parents:
18264
diff
changeset
|
525 |
</tbody> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
526 |
</table> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
527 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
528 |
<div class="navigate"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
529 |
<a href="/log/5ed941583260/a?revcount=30">less</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
530 |
<a href="/log/5ed941583260/a?revcount=120">more</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
531 |
| <a href="/log/5ed941583260/a">(0)</a> <a href="/log/tip/a">tip</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
532 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
533 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
534 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
535 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
536 |
|
14046
b24e5a708fad
web: Made elapsed time calculation dynamic (javascript).
Benoit Allard <benoit@aeteurope.nl>
parents:
13597
diff
changeset
|
537 |
<script type="text/javascript">process_dates()</script> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
538 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
539 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
540 |
</body> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
541 |
</html> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
542 |
|
7300
591767e6ea7a
hgweb: conditionally show file logs for deleted files
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
diff
changeset
|
543 |
|
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
544 |
before addition - error |
7300
591767e6ea7a
hgweb: conditionally show file logs for deleted files
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
diff
changeset
|
545 |
|
17017
953faba28e91
tests: prepare get-with-headers.py for MSYS
Mads Kiilerich <mads@kiilerich.com>
parents:
16913
diff
changeset
|
546 |
$ ("$TESTDIR/get-with-headers.py" localhost:$HGPORT 'log/0/a') |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
547 |
404 Not Found |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
548 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
549 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
550 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
551 |
<head> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
552 |
<link rel="icon" href="/static/hgicon.png" type="image/png" /> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
553 |
<meta name="robots" content="index, nofollow" /> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
554 |
<link rel="stylesheet" href="/static/style-paper.css" type="text/css" /> |
14046
b24e5a708fad
web: Made elapsed time calculation dynamic (javascript).
Benoit Allard <benoit@aeteurope.nl>
parents:
13597
diff
changeset
|
555 |
<script type="text/javascript" src="/static/mercurial.js"></script> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
556 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
557 |
<title>test: error</title> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
558 |
</head> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
559 |
<body> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
560 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
561 |
<div class="container"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
562 |
<div class="menu"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
563 |
<div class="logo"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
564 |
<a href="http://mercurial.selenic.com/"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
565 |
<img src="/static/hglogo.png" width=75 height=90 border=0 alt="mercurial" /></a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
566 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
567 |
<ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
568 |
<li><a href="/shortlog">log</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
569 |
<li><a href="/graph">graph</a></li> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
570 |
<li><a href="/tags">tags</a></li> |
13597
38c9837b1f75
hgweb: add separate page with bookmarks listing
Alexander Solovyov <alexander@solovyov.net>
parents:
13547
diff
changeset
|
571 |
<li><a href="/bookmarks">bookmarks</a></li> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
572 |
<li><a href="/branches">branches</a></li> |
17290
7a9246abf9fe
hgweb: make paper:error consistent with template
Ross Lagerwall <rosslagerwall@gmail.com>
parents:
17202
diff
changeset
|
573 |
</ul> |
7a9246abf9fe
hgweb: make paper:error consistent with template
Ross Lagerwall <rosslagerwall@gmail.com>
parents:
17202
diff
changeset
|
574 |
<ul> |
12680
d664547ef540
hgweb: add help link to templates missed in ead4e21f49f1
Augie Fackler <durin42@gmail.com>
parents:
12437
diff
changeset
|
575 |
<li><a href="/help">help</a></li> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
576 |
</ul> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
577 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
578 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
579 |
<div class="main"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
580 |
|
18264
d6ebdbdd70a5
tests: update hgweb tests to include breadcrumbs
Bryan O'Sullivan <bryano@fb.com>
parents:
18200
diff
changeset
|
581 |
<h2 class="breadcrumb"><a href="/">Mercurial</a> </h2> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
582 |
<h3>error</h3> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
583 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
584 |
<form class="search" action="/log"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
585 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
586 |
<p><input name="rev" id="search1" type="text" size="30"></p> |
19796
544848ef65f2
paper: edit search hint to include new feature description
Alexander Plavin <alexander@plav.in>
parents:
19795
diff
changeset
|
587 |
<div id="hint">Find changesets by keywords (author, files, the commit message), revision |
544848ef65f2
paper: edit search hint to include new feature description
Alexander Plavin <alexander@plav.in>
parents:
19795
diff
changeset
|
588 |
number or hash, or <a href="/help/revsets">revset expression</a>.</div> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
589 |
</form> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
590 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
591 |
<div class="description"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
592 |
<p> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
593 |
An error occurred while processing your request: |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
594 |
</p> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
595 |
<p> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
596 |
a@6563da9dcf87: not found in manifest |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
597 |
</p> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
598 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
599 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
600 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
601 |
|
14046
b24e5a708fad
web: Made elapsed time calculation dynamic (javascript).
Benoit Allard <benoit@aeteurope.nl>
parents:
13597
diff
changeset
|
602 |
<script type="text/javascript">process_dates()</script> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
603 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
604 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
605 |
</body> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
606 |
</html> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
607 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
608 |
[1] |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
609 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
610 |
should show base link, use spartan because it shows it |
7300
591767e6ea7a
hgweb: conditionally show file logs for deleted files
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
diff
changeset
|
611 |
|
17017
953faba28e91
tests: prepare get-with-headers.py for MSYS
Mads Kiilerich <mads@kiilerich.com>
parents:
16913
diff
changeset
|
612 |
$ ("$TESTDIR/get-with-headers.py" localhost:$HGPORT 'log/tip/c?style=spartan') |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
613 |
200 Script output follows |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
614 |
|
20256
b786754ba604
test-hgweb-*: output change fixes from b1d65cb8
Augie Fackler <raf@durin42.com>
parents:
19796
diff
changeset
|
615 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
616 |
<html> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
617 |
<head> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
618 |
<link rel="icon" href="/static/hgicon.png" type="image/png"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
619 |
<meta name="robots" content="index, nofollow" /> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
620 |
<link rel="stylesheet" href="/static/style.css" type="text/css" /> |
14046
b24e5a708fad
web: Made elapsed time calculation dynamic (javascript).
Benoit Allard <benoit@aeteurope.nl>
parents:
13597
diff
changeset
|
621 |
<script type="text/javascript" src="/static/mercurial.js"></script> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
622 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
623 |
<title>test: c history</title> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
624 |
<link rel="alternate" type="application/atom+xml" |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
625 |
href="/atom-log/tip/c" title="Atom feed for test:c"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
626 |
<link rel="alternate" type="application/rss+xml" |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
627 |
href="/rss-log/tip/c" title="RSS feed for test:c"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
628 |
</head> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
629 |
<body> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
630 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
631 |
<div class="buttons"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
632 |
<a href="/log?style=spartan">changelog</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
633 |
<a href="/shortlog?style=spartan">shortlog</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
634 |
<a href="/graph?style=spartan">graph</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
635 |
<a href="/tags?style=spartan">tags</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
636 |
<a href="/branches?style=spartan">branches</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
637 |
<a href="/file/b7682196df1c/c?style=spartan">file</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
638 |
<a href="/annotate/b7682196df1c/c?style=spartan">annotate</a> |
12680
d664547ef540
hgweb: add help link to templates missed in ead4e21f49f1
Augie Fackler <durin42@gmail.com>
parents:
12437
diff
changeset
|
639 |
<a href="/help?style=spartan">help</a> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
640 |
<a type="application/rss+xml" href="/rss-log/tip/c">rss</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
641 |
<a type="application/atom+xml" href="/atom-log/tip/c" title="Atom feed for test:c">atom</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
642 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
643 |
|
18264
d6ebdbdd70a5
tests: update hgweb tests to include breadcrumbs
Bryan O'Sullivan <bryano@fb.com>
parents:
18200
diff
changeset
|
644 |
<h2><a href="/">Mercurial</a> / c revision history</h2> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
645 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
646 |
<p>navigate: <small class="navigate"><a href="/log/1a6696706df2/c?style=spartan">(0)</a> <a href="/log/tip/c?style=spartan">tip</a> </small></p> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
647 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
648 |
<table class="logEntry parity0"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
649 |
<tr> |
21124
a65714215377
hgweb: align entries in "changelog" and "revisions" pages of "spartan" style
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
21117
diff
changeset
|
650 |
<th class="label"><span class="age">Thu, 01 Jan 1970 00:00:00 +0000</span>:</th> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
651 |
<th class="firstline"><a href="/rev/b7682196df1c?style=spartan">change c</a></th> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
652 |
</tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
653 |
<tr> |
23828
8b79fdaa9f85
hgweb: close <th> properly in spartan/filelogentry.tmpl
Anton Shestakov <engored@ya.ru>
parents:
22046
diff
changeset
|
654 |
<th class="revision">revision 1:</th> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
655 |
<td class="node"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
656 |
<a href="/file/b7682196df1c/c?style=spartan">b7682196df1c</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
657 |
<a href="/diff/b7682196df1c/c?style=spartan">(diff)</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
658 |
<a href="/annotate/b7682196df1c/c?style=spartan">(annotate)</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
659 |
</td> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
660 |
</tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
661 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
662 |
<tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
663 |
<th class="author">author:</th> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
664 |
<td class="author">test</td> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
665 |
</tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
666 |
<tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
667 |
<th class="date">date:</th> |
15375
fe9d36a6853e
hgweb: fix dynamic date calculation not working under Safari
Brodie Rao <brodie@bitheap.org>
parents:
14046
diff
changeset
|
668 |
<td class="date">Thu, 01 Jan 1970 00:00:00 +0000</td> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
669 |
</tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
670 |
</table> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
671 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
672 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
673 |
<table class="logEntry parity1"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
674 |
<tr> |
21124
a65714215377
hgweb: align entries in "changelog" and "revisions" pages of "spartan" style
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
21117
diff
changeset
|
675 |
<th class="label"><span class="age">Thu, 01 Jan 1970 00:00:00 +0000</span>:</th> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
676 |
<th class="firstline"><a href="/rev/1a6696706df2?style=spartan">mv b</a></th> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
677 |
</tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
678 |
<tr> |
23828
8b79fdaa9f85
hgweb: close <th> properly in spartan/filelogentry.tmpl
Anton Shestakov <engored@ya.ru>
parents:
22046
diff
changeset
|
679 |
<th class="revision">revision 0:</th> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
680 |
<td class="node"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
681 |
<a href="/file/1a6696706df2/c?style=spartan">1a6696706df2</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
682 |
<a href="/diff/1a6696706df2/c?style=spartan">(diff)</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
683 |
<a href="/annotate/1a6696706df2/c?style=spartan">(annotate)</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
684 |
</td> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
685 |
</tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
686 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
687 |
<tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
688 |
<th>base:</th> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
689 |
<td> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
690 |
<a href="/file/1e88685f5dde/b?style=spartan"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
691 |
b@1e88685f5dde |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
692 |
</a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
693 |
</td> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
694 |
</tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
695 |
<tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
696 |
<th class="author">author:</th> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
697 |
<td class="author">test</td> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
698 |
</tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
699 |
<tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
700 |
<th class="date">date:</th> |
15375
fe9d36a6853e
hgweb: fix dynamic date calculation not working under Safari
Brodie Rao <brodie@bitheap.org>
parents:
14046
diff
changeset
|
701 |
<td class="date">Thu, 01 Jan 1970 00:00:00 +0000</td> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
702 |
</tr> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
703 |
</table> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
704 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
705 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
706 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
707 |
|
14046
b24e5a708fad
web: Made elapsed time calculation dynamic (javascript).
Benoit Allard <benoit@aeteurope.nl>
parents:
13597
diff
changeset
|
708 |
<script type="text/javascript">process_dates()</script> |
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
709 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
710 |
<div class="logo"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
711 |
<a href="http://mercurial.selenic.com/"> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
712 |
<img src="/static/hglogo.png" width=75 height=90 border=0 alt="mercurial"></a> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
713 |
</div> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
714 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
715 |
</body> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
716 |
</html> |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
717 |
|
7612
069b29656401
web: use the correct filectx in filelog
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
7300
diff
changeset
|
718 |
|
13547
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
719 |
rss log |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
720 |
|
17017
953faba28e91
tests: prepare get-with-headers.py for MSYS
Mads Kiilerich <mads@kiilerich.com>
parents:
16913
diff
changeset
|
721 |
$ ("$TESTDIR/get-with-headers.py" localhost:$HGPORT 'rss-log/tip/a') |
13547
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
722 |
200 Script output follows |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
723 |
|
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
724 |
<?xml version="1.0" encoding="ascii"?> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
725 |
<rss version="2.0"> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
726 |
<channel> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
727 |
<link>http://*:$HGPORT/</link> (glob) |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
728 |
<language>en-us</language> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
729 |
|
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
730 |
<title>test: a history</title> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
731 |
<description>a revision history</description> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
732 |
<item> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
733 |
<title>second a</title> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
734 |
<link>http://*:$HGPORT/log01de2d66a28d/a</link> (glob) |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
735 |
<description><![CDATA[second a]]></description> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
736 |
<author>test</author> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
737 |
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
738 |
</item> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
739 |
<item> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
740 |
<title>first a</title> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
741 |
<link>http://*:$HGPORT/log5ed941583260/a</link> (glob) |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
742 |
<description><![CDATA[first a]]></description> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
743 |
<author>test</author> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
744 |
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
745 |
</item> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
746 |
|
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
747 |
</channel> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
748 |
</rss> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
749 |
|
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
750 |
atom log |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
751 |
|
17017
953faba28e91
tests: prepare get-with-headers.py for MSYS
Mads Kiilerich <mads@kiilerich.com>
parents:
16913
diff
changeset
|
752 |
$ ("$TESTDIR/get-with-headers.py" localhost:$HGPORT 'atom-log/tip/a') |
13547
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
753 |
200 Script output follows |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
754 |
|
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
755 |
<?xml version="1.0" encoding="ascii"?> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
756 |
<feed xmlns="http://www.w3.org/2005/Atom"> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
757 |
<id>http://*:$HGPORT/atom-log/tip/a</id> (glob) |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
758 |
<link rel="self" href="http://*:$HGPORT/atom-log/tip/a"/> (glob) |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
759 |
<title>test: a history</title> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
760 |
<updated>1970-01-01T00:00:00+00:00</updated> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
761 |
|
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
762 |
<entry> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
763 |
<title>second a</title> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
764 |
<id>http://*:$HGPORT/#changeset-01de2d66a28df5549090991dccda788726948517</id> (glob) |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
765 |
<link href="http://*:$HGPORT/rev/01de2d66a28d"/> (glob) |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
766 |
<author> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
767 |
<name>test</name> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
768 |
<email>test</email> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
769 |
</author> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
770 |
<updated>1970-01-01T00:00:00+00:00</updated> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
771 |
<published>1970-01-01T00:00:00+00:00</published> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
772 |
<content type="xhtml"> |
21056
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
773 |
<table xmlns="http://www.w3.org/1999/xhtml"> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
774 |
<tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
775 |
<th style="text-align:left;">changeset</th> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
776 |
<td>01de2d66a28d</td> |
21117
91eb605022f5
hgweb: adding branch names from inbranch template to atom feed
Aaron Jensen <ajensen@webmd.net>
parents:
21056
diff
changeset
|
777 |
</tr> |
91eb605022f5
hgweb: adding branch names from inbranch template to atom feed
Aaron Jensen <ajensen@webmd.net>
parents:
21056
diff
changeset
|
778 |
<tr> |
91eb605022f5
hgweb: adding branch names from inbranch template to atom feed
Aaron Jensen <ajensen@webmd.net>
parents:
21056
diff
changeset
|
779 |
<th style="text-align:left;">branch</th> |
91eb605022f5
hgweb: adding branch names from inbranch template to atom feed
Aaron Jensen <ajensen@webmd.net>
parents:
21056
diff
changeset
|
780 |
<td></td> |
91eb605022f5
hgweb: adding branch names from inbranch template to atom feed
Aaron Jensen <ajensen@webmd.net>
parents:
21056
diff
changeset
|
781 |
</tr> |
91eb605022f5
hgweb: adding branch names from inbranch template to atom feed
Aaron Jensen <ajensen@webmd.net>
parents:
21056
diff
changeset
|
782 |
<tr> |
91eb605022f5
hgweb: adding branch names from inbranch template to atom feed
Aaron Jensen <ajensen@webmd.net>
parents:
21056
diff
changeset
|
783 |
<th style="text-align:left;">bookmark</th> |
21056
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
784 |
<td></td> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
785 |
</tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
786 |
<tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
787 |
<th style="text-align:left;">tag</th> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
788 |
<td></td> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
789 |
</tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
790 |
<tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
791 |
<th style="text-align:left;">user</th> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
792 |
<td>test</td> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
793 |
</tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
794 |
<tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
795 |
<th style="text-align:left;vertical-align:top;">description</th> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
796 |
<td>second a</td> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
797 |
</tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
798 |
<tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
799 |
<th style="text-align:left;vertical-align:top;">files</th> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
800 |
<td></td> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
801 |
</tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
802 |
</table> |
13547
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
803 |
</content> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
804 |
</entry> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
805 |
<entry> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
806 |
<title>first a</title> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
807 |
<id>http://*:$HGPORT/#changeset-5ed941583260248620985524192fdc382ef57c36</id> (glob) |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
808 |
<link href="http://*:$HGPORT/rev/5ed941583260"/> (glob) |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
809 |
<author> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
810 |
<name>test</name> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
811 |
<email>test</email> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
812 |
</author> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
813 |
<updated>1970-01-01T00:00:00+00:00</updated> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
814 |
<published>1970-01-01T00:00:00+00:00</published> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
815 |
<content type="xhtml"> |
21056
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
816 |
<table xmlns="http://www.w3.org/1999/xhtml"> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
817 |
<tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
818 |
<th style="text-align:left;">changeset</th> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
819 |
<td>5ed941583260</td> |
21117
91eb605022f5
hgweb: adding branch names from inbranch template to atom feed
Aaron Jensen <ajensen@webmd.net>
parents:
21056
diff
changeset
|
820 |
</tr> |
91eb605022f5
hgweb: adding branch names from inbranch template to atom feed
Aaron Jensen <ajensen@webmd.net>
parents:
21056
diff
changeset
|
821 |
<tr> |
91eb605022f5
hgweb: adding branch names from inbranch template to atom feed
Aaron Jensen <ajensen@webmd.net>
parents:
21056
diff
changeset
|
822 |
<th style="text-align:left;">branch</th> |
91eb605022f5
hgweb: adding branch names from inbranch template to atom feed
Aaron Jensen <ajensen@webmd.net>
parents:
21056
diff
changeset
|
823 |
<td></td> |
91eb605022f5
hgweb: adding branch names from inbranch template to atom feed
Aaron Jensen <ajensen@webmd.net>
parents:
21056
diff
changeset
|
824 |
</tr> |
91eb605022f5
hgweb: adding branch names from inbranch template to atom feed
Aaron Jensen <ajensen@webmd.net>
parents:
21056
diff
changeset
|
825 |
<tr> |
91eb605022f5
hgweb: adding branch names from inbranch template to atom feed
Aaron Jensen <ajensen@webmd.net>
parents:
21056
diff
changeset
|
826 |
<th style="text-align:left;">bookmark</th> |
21056
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
827 |
<td></td> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
828 |
</tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
829 |
<tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
830 |
<th style="text-align:left;">tag</th> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
831 |
<td></td> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
832 |
</tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
833 |
<tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
834 |
<th style="text-align:left;">user</th> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
835 |
<td>test</td> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
836 |
</tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
837 |
<tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
838 |
<th style="text-align:left;vertical-align:top;">description</th> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
839 |
<td>first a</td> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
840 |
</tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
841 |
<tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
842 |
<th style="text-align:left;vertical-align:top;">files</th> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
843 |
<td></td> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
844 |
</tr> |
d70703954a2a
hgweb: adding branch, tags, bookmarks, user, and file list to atom feed entries
Aaron Jensen <ajensen@webmd.net>
parents:
20256
diff
changeset
|
845 |
</table> |
13547
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
846 |
</content> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
847 |
</entry> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
848 |
|
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
849 |
</feed> |
a2dc8819bb0d
hgweb: fix filelog rss links generation
Patrick Mezard <pmezard@gmail.com>
parents:
12680
diff
changeset
|
850 |
|
12437
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
851 |
errors |
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
852 |
|
b5538f89e5aa
tests: unify test-hgweb-filelog
Matt Mackall <mpm@selenic.com>
parents:
8452
diff
changeset
|
853 |
$ cat errors.log |
16913
f2719b387380
tests: add missing trailing 'cd ..'
Mads Kiilerich <mads@kiilerich.com>
parents:
15446
diff
changeset
|
854 |
|
f2719b387380
tests: add missing trailing 'cd ..'
Mads Kiilerich <mads@kiilerich.com>
parents:
15446
diff
changeset
|
855 |
$ cd .. |