Show More
@@ -1,91 +1,91 b'' | |||||
1 | #!/bin/sh |
|
1 | #!/bin/sh | |
2 |
|
2 | |||
3 | hg init a |
|
3 | hg init a | |
4 | cd a |
|
4 | cd a | |
5 | echo a > a |
|
5 | echo a > a | |
6 | hg add a |
|
6 | hg add a | |
7 | echo line 1 > b |
|
7 | echo line 1 > b | |
8 | echo line 2 >> b |
|
8 | echo line 2 >> b | |
9 | hg commit -l b -d '1111111111 0' -u 'User Name <user@hostname>' |
|
9 | hg commit -l b -d '1111111111 0' -u 'User Name <user@hostname>' | |
10 | hg add b |
|
10 | hg add b | |
11 | echo other 1 > c |
|
11 | echo other 1 > c | |
12 | echo other 2 >> c |
|
12 | echo other 2 >> c | |
13 | echo >> c |
|
13 | echo >> c | |
14 | echo other 3 >> c |
|
14 | echo other 3 >> c | |
15 | hg commit -l c -d '1123456789 0' -u 'A. N. Other <other@place>' |
|
15 | hg commit -l c -d '1123456789 0' -u 'A. N. Other <other@place>' | |
16 | hg add c |
|
16 | hg add c | |
17 | hg commit -m 'no person' -d '1134567890 0' -u 'other@place' |
|
17 | hg commit -m 'no person' -d '1134567890 0' -u 'other@place' | |
18 | echo c >> c |
|
18 | echo c >> c | |
19 |
hg commit -m 'no user, no domain' -d '1144567890 |
|
19 | hg commit -m 'no user, no domain' -d '1144567890 0' -u 'person' | |
20 |
|
20 | |||
21 | # make sure user/global hgrc does not affect tests |
|
21 | # make sure user/global hgrc does not affect tests | |
22 | echo '[ui]' > .hg/hgrc |
|
22 | echo '[ui]' > .hg/hgrc | |
23 | echo 'logtemplate =' >> .hg/hgrc |
|
23 | echo 'logtemplate =' >> .hg/hgrc | |
24 | echo 'style =' >> .hg/hgrc |
|
24 | echo 'style =' >> .hg/hgrc | |
25 |
|
25 | |||
26 | echo '# default style is like normal output' |
|
26 | echo '# default style is like normal output' | |
27 | hg log > log.out |
|
27 | hg log > log.out | |
28 | hg log --style default > style.out |
|
28 | hg log --style default > style.out | |
29 | diff log.out style.out |
|
29 | diff log.out style.out | |
30 | hg log -v > log.out |
|
30 | hg log -v > log.out | |
31 | hg log -v --style default > style.out |
|
31 | hg log -v --style default > style.out | |
32 | diff log.out style.out |
|
32 | diff log.out style.out | |
33 | hg log --debug > log.out |
|
33 | hg log --debug > log.out | |
34 | hg log --debug --style default > style.out |
|
34 | hg log --debug --style default > style.out | |
35 | diff log.out style.out |
|
35 | diff log.out style.out | |
36 |
|
36 | |||
37 | echo '# compact style works' |
|
37 | echo '# compact style works' | |
38 | hg log --style compact |
|
38 | hg log --style compact | |
39 | hg log -v --style compact |
|
39 | hg log -v --style compact | |
40 | hg log --debug --style compact |
|
40 | hg log --debug --style compact | |
41 |
|
41 | |||
42 | echo '# error if style not readable' |
|
42 | echo '# error if style not readable' | |
43 | touch q |
|
43 | touch q | |
44 | chmod 0 q |
|
44 | chmod 0 q | |
45 | hg log --style ./q |
|
45 | hg log --style ./q | |
46 |
|
46 | |||
47 | echo '# error if no style' |
|
47 | echo '# error if no style' | |
48 | hg log --style notexist |
|
48 | hg log --style notexist | |
49 |
|
49 | |||
50 | echo '# error if style missing key' |
|
50 | echo '# error if style missing key' | |
51 | echo 'q = q' > t |
|
51 | echo 'q = q' > t | |
52 | hg log --style ./t |
|
52 | hg log --style ./t | |
53 |
|
53 | |||
54 | echo '# error if include fails' |
|
54 | echo '# error if include fails' | |
55 | echo 'changeset = q' >> t |
|
55 | echo 'changeset = q' >> t | |
56 | hg log --style ./t |
|
56 | hg log --style ./t | |
57 |
|
57 | |||
58 | echo '# include works' |
|
58 | echo '# include works' | |
59 | rm -f q |
|
59 | rm -f q | |
60 | echo '{rev}' > q |
|
60 | echo '{rev}' > q | |
61 | hg log --style ./t |
|
61 | hg log --style ./t | |
62 |
|
62 | |||
63 | echo '# ui.style works' |
|
63 | echo '# ui.style works' | |
64 | echo '[ui]' > .hg/hgrc |
|
64 | echo '[ui]' > .hg/hgrc | |
65 | echo 'style = t' >> .hg/hgrc |
|
65 | echo 'style = t' >> .hg/hgrc | |
66 | hg log |
|
66 | hg log | |
67 |
|
67 | |||
68 | echo "# keys work" |
|
68 | echo "# keys work" | |
69 | for key in author branches date desc file_adds file_dels files \ |
|
69 | for key in author branches date desc file_adds file_dels files \ | |
70 | manifest node parents rev tags; do |
|
70 | manifest node parents rev tags; do | |
71 | for mode in '' --verbose --debug; do |
|
71 | for mode in '' --verbose --debug; do | |
72 | hg log $mode --template "$key$mode: {$key}\n" |
|
72 | hg log $mode --template "$key$mode: {$key}\n" | |
73 | done |
|
73 | done | |
74 | done |
|
74 | done | |
75 |
|
75 | |||
76 | echo '# filters work' |
|
76 | echo '# filters work' | |
77 | hg log --template '{author|domain}\n' |
|
77 | hg log --template '{author|domain}\n' | |
78 | hg log --template '{author|person}\n' |
|
78 | hg log --template '{author|person}\n' | |
79 | hg log --template '{author|user}\n' |
|
79 | hg log --template '{author|user}\n' | |
80 | hg log --template '{date|age}\n' > /dev/null || exit 1 |
|
80 | hg log --template '{date|age}\n' > /dev/null || exit 1 | |
81 | hg log --template '{date|date}\n' |
|
81 | hg log --template '{date|date}\n' | |
82 | hg log --template '{date|isodate}\n' |
|
82 | hg log --template '{date|isodate}\n' | |
83 | hg log --template '{date|rfc822date}\n' |
|
83 | hg log --template '{date|rfc822date}\n' | |
84 | hg log --template '{desc|firstline}\n' |
|
84 | hg log --template '{desc|firstline}\n' | |
85 | hg log --template '{node|short}\n' |
|
85 | hg log --template '{node|short}\n' | |
86 |
|
86 | |||
87 | echo '# error on syntax' |
|
87 | echo '# error on syntax' | |
88 | echo 'x = "f' >> t |
|
88 | echo 'x = "f' >> t | |
89 | hg log |
|
89 | hg log | |
90 |
|
90 | |||
91 | echo '# done' |
|
91 | echo '# done' |
@@ -1,232 +1,261 b'' | |||||
1 | transaction abort! |
|
|||
2 | rollback completed |
|
|||
3 | abort: date exceeds 32 bits: 11445678900 |
|
|||
4 | # default style is like normal output |
|
1 | # default style is like normal output | |
5 | --- log.out 2006-03-05 05:11:40.700065250 +0000 |
|
2 | 18a19 | |
6 | +++ style.out 2006-03-05 05:11:40.816072500 +0000 |
|
3 | > files: | |
7 | @@ -5,6 +5,7 @@ |
|
4 | 29a31 | |
8 | manifest: 2:6e0e82995c35d0d57a52aca8da4e56139e06b4b1 |
|
5 | > files: | |
9 | user: other@place |
|
6 | 43a46 | |
10 | date: Wed Dec 14 13:44:50 2005 +0000 |
|
7 | > files: | |
11 | +files: |
|
|||
12 | files+: c |
|
|||
13 | description: |
|
|||
14 | no person |
|
|||
15 | @@ -16,6 +17,7 @@ |
|
|||
16 | manifest: 1:4e8d705b1e53e3f9375e0e60dc7b525d8211fe55 |
|
|||
17 | user: A. N. Other <other@place> |
|
|||
18 | date: Sun Aug 7 23:19:49 2005 +0000 |
|
|||
19 | +files: |
|
|||
20 | files+: b |
|
|||
21 | description: |
|
|||
22 | other 1 |
|
|||
23 | @@ -30,6 +32,7 @@ |
|
|||
24 | manifest: 0:a0c8bcbbb45c63b90b70ad007bf38961f64f2af0 |
|
|||
25 | user: User Name <user@hostname> |
|
|||
26 | date: Fri Mar 18 01:58:31 2005 +0000 |
|
|||
27 | +files: |
|
|||
28 | files+: a |
|
|||
29 | description: |
|
|||
30 | line 1 |
|
|||
31 | # compact style works |
|
8 | # compact style works | |
32 | 2[tip] cdc488b3baa4 2005-12-14 13:44 +0000 other |
|
9 | 3[tip] 2bacb094274c 2006-04-09 07:31 +0000 person | |
|
10 | no user, no domain | |||
|
11 | ||||
|
12 | 2 cdc488b3baa4 2005-12-14 13:44 +0000 other | |||
33 | no person |
|
13 | no person | |
34 |
|
14 | |||
35 | 1 55b647117689 2005-08-07 23:19 +0000 other |
|
15 | 1 55b647117689 2005-08-07 23:19 +0000 other | |
36 | other 1 |
|
16 | other 1 | |
37 |
|
17 | |||
38 | 0 debcd367d974 2005-03-18 01:58 +0000 user |
|
18 | 0 debcd367d974 2005-03-18 01:58 +0000 user | |
39 | line 1 |
|
19 | line 1 | |
40 |
|
20 | |||
41 | 2[tip] cdc488b3baa4 2005-12-14 13:44 +0000 other |
|
21 | 3[tip] 2bacb094274c 2006-04-09 07:31 +0000 person | |
|
22 | no user, no domain | |||
|
23 | ||||
|
24 | 2 cdc488b3baa4 2005-12-14 13:44 +0000 other | |||
42 | no person |
|
25 | no person | |
43 |
|
26 | |||
44 | 1 55b647117689 2005-08-07 23:19 +0000 other |
|
27 | 1 55b647117689 2005-08-07 23:19 +0000 other | |
45 | other 1 |
|
28 | other 1 | |
46 |
|
29 | |||
47 | 0 debcd367d974 2005-03-18 01:58 +0000 user |
|
30 | 0 debcd367d974 2005-03-18 01:58 +0000 user | |
48 | line 1 |
|
31 | line 1 | |
49 |
|
32 | |||
50 | 2[tip]:1,-1 cdc488b3baa4 2005-12-14 13:44 +0000 other |
|
33 | 3[tip]:2,-1 2bacb094274c 2006-04-09 07:31 +0000 person | |
|
34 | no user, no domain | |||
|
35 | ||||
|
36 | 2:1,-1 cdc488b3baa4 2005-12-14 13:44 +0000 other | |||
51 | no person |
|
37 | no person | |
52 |
|
38 | |||
53 | 1:0,-1 55b647117689 2005-08-07 23:19 +0000 other |
|
39 | 1:0,-1 55b647117689 2005-08-07 23:19 +0000 other | |
54 | other 1 |
|
40 | other 1 | |
55 |
|
41 | |||
56 | 0:-1,-1 debcd367d974 2005-03-18 01:58 +0000 user |
|
42 | 0:-1,-1 debcd367d974 2005-03-18 01:58 +0000 user | |
57 | line 1 |
|
43 | line 1 | |
58 |
|
44 | |||
59 | # error if style not readable |
|
45 | # error if style not readable | |
60 | abort: Permission denied - ./q |
|
46 | abort: Permission denied - ./q | |
61 | # error if no style |
|
47 | # error if no style | |
62 | abort: No such file or directory - notexist |
|
48 | abort: No such file or directory - notexist | |
63 | # error if style missing key |
|
49 | # error if style missing key | |
64 | abort: ./t: no key named 'changeset' |
|
50 | abort: ./t: no key named 'changeset' | |
65 | # error if include fails |
|
51 | # error if include fails | |
66 | abort: template file ./q: Permission denied |
|
52 | abort: template file ./q: Permission denied | |
67 | # include works |
|
53 | # include works | |
|
54 | 3 | |||
68 | 2 |
|
55 | 2 | |
69 | 1 |
|
56 | 1 | |
70 | 0 |
|
57 | 0 | |
71 | # ui.style works |
|
58 | # ui.style works | |
|
59 | 3 | |||
72 | 2 |
|
60 | 2 | |
73 | 1 |
|
61 | 1 | |
74 | 0 |
|
62 | 0 | |
75 | # keys work |
|
63 | # keys work | |
|
64 | author: person | |||
76 | author: other@place |
|
65 | author: other@place | |
77 | author: A. N. Other <other@place> |
|
66 | author: A. N. Other <other@place> | |
78 | author: User Name <user@hostname> |
|
67 | author: User Name <user@hostname> | |
|
68 | author--verbose: person | |||
79 | author--verbose: other@place |
|
69 | author--verbose: other@place | |
80 | author--verbose: A. N. Other <other@place> |
|
70 | author--verbose: A. N. Other <other@place> | |
81 | author--verbose: User Name <user@hostname> |
|
71 | author--verbose: User Name <user@hostname> | |
|
72 | author--debug: person | |||
82 | author--debug: other@place |
|
73 | author--debug: other@place | |
83 | author--debug: A. N. Other <other@place> |
|
74 | author--debug: A. N. Other <other@place> | |
84 | author--debug: User Name <user@hostname> |
|
75 | author--debug: User Name <user@hostname> | |
85 | branches: |
|
76 | branches: | |
86 | branches: |
|
77 | branches: | |
87 | branches: |
|
78 | branches: | |
|
79 | branches: | |||
|
80 | branches--verbose: | |||
88 | branches--verbose: |
|
81 | branches--verbose: | |
89 | branches--verbose: |
|
82 | branches--verbose: | |
90 | branches--verbose: |
|
83 | branches--verbose: | |
91 | branches--debug: |
|
84 | branches--debug: | |
92 | branches--debug: |
|
85 | branches--debug: | |
93 | branches--debug: |
|
86 | branches--debug: | |
|
87 | branches--debug: | |||
|
88 | date: 1144567890.00 | |||
94 | date: 1134567890.00 |
|
89 | date: 1134567890.00 | |
95 | date: 1123456789.00 |
|
90 | date: 1123456789.00 | |
96 | date: 1111111111.00 |
|
91 | date: 1111111111.00 | |
|
92 | date--verbose: 1144567890.00 | |||
97 | date--verbose: 1134567890.00 |
|
93 | date--verbose: 1134567890.00 | |
98 | date--verbose: 1123456789.00 |
|
94 | date--verbose: 1123456789.00 | |
99 | date--verbose: 1111111111.00 |
|
95 | date--verbose: 1111111111.00 | |
|
96 | date--debug: 1144567890.00 | |||
100 | date--debug: 1134567890.00 |
|
97 | date--debug: 1134567890.00 | |
101 | date--debug: 1123456789.00 |
|
98 | date--debug: 1123456789.00 | |
102 | date--debug: 1111111111.00 |
|
99 | date--debug: 1111111111.00 | |
|
100 | desc: no user, no domain | |||
103 | desc: no person |
|
101 | desc: no person | |
104 | desc: other 1 |
|
102 | desc: other 1 | |
105 | other 2 |
|
103 | other 2 | |
106 |
|
104 | |||
107 | other 3 |
|
105 | other 3 | |
108 |
|
106 | |||
109 | desc: line 1 |
|
107 | desc: line 1 | |
110 | line 2 |
|
108 | line 2 | |
111 |
|
109 | |||
|
110 | desc--verbose: no user, no domain | |||
112 | desc--verbose: no person |
|
111 | desc--verbose: no person | |
113 | desc--verbose: other 1 |
|
112 | desc--verbose: other 1 | |
114 | other 2 |
|
113 | other 2 | |
115 |
|
114 | |||
116 | other 3 |
|
115 | other 3 | |
117 |
|
116 | |||
118 | desc--verbose: line 1 |
|
117 | desc--verbose: line 1 | |
119 | line 2 |
|
118 | line 2 | |
120 |
|
119 | |||
|
120 | desc--debug: no user, no domain | |||
121 | desc--debug: no person |
|
121 | desc--debug: no person | |
122 | desc--debug: other 1 |
|
122 | desc--debug: other 1 | |
123 | other 2 |
|
123 | other 2 | |
124 |
|
124 | |||
125 | other 3 |
|
125 | other 3 | |
126 |
|
126 | |||
127 | desc--debug: line 1 |
|
127 | desc--debug: line 1 | |
128 | line 2 |
|
128 | line 2 | |
129 |
|
129 | |||
130 | file_adds: |
|
130 | file_adds: | |
131 | file_adds: |
|
131 | file_adds: | |
132 | file_adds: |
|
132 | file_adds: | |
|
133 | file_adds: | |||
133 | file_adds--verbose: |
|
134 | file_adds--verbose: | |
134 | file_adds--verbose: |
|
135 | file_adds--verbose: | |
135 | file_adds--verbose: |
|
136 | file_adds--verbose: | |
|
137 | file_adds--verbose: | |||
|
138 | file_adds--debug: | |||
136 | file_adds--debug: c |
|
139 | file_adds--debug: c | |
137 | file_adds--debug: b |
|
140 | file_adds--debug: b | |
138 | file_adds--debug: a |
|
141 | file_adds--debug: a | |
139 | file_dels: |
|
142 | file_dels: | |
140 | file_dels: |
|
143 | file_dels: | |
141 | file_dels: |
|
144 | file_dels: | |
|
145 | file_dels: | |||
|
146 | file_dels--verbose: | |||
142 | file_dels--verbose: |
|
147 | file_dels--verbose: | |
143 | file_dels--verbose: |
|
148 | file_dels--verbose: | |
144 | file_dels--verbose: |
|
149 | file_dels--verbose: | |
145 | file_dels--debug: |
|
150 | file_dels--debug: | |
146 | file_dels--debug: |
|
151 | file_dels--debug: | |
147 | file_dels--debug: |
|
152 | file_dels--debug: | |
|
153 | file_dels--debug: | |||
|
154 | files: c | |||
148 | files: c |
|
155 | files: c | |
149 | files: b |
|
156 | files: b | |
150 | files: a |
|
157 | files: a | |
151 | files--verbose: c |
|
158 | files--verbose: c | |
|
159 | files--verbose: c | |||
152 | files--verbose: b |
|
160 | files--verbose: b | |
153 | files--verbose: a |
|
161 | files--verbose: a | |
|
162 | files--debug: c | |||
154 | files--debug: |
|
163 | files--debug: | |
155 | files--debug: |
|
164 | files--debug: | |
156 | files--debug: |
|
165 | files--debug: | |
157 | manifest: |
|
166 | manifest: | |
158 | manifest: |
|
167 | manifest: | |
159 | manifest: |
|
168 | manifest: | |
|
169 | manifest: | |||
160 | manifest--verbose: |
|
170 | manifest--verbose: | |
161 | manifest--verbose: |
|
171 | manifest--verbose: | |
162 | manifest--verbose: |
|
172 | manifest--verbose: | |
|
173 | manifest--verbose: | |||
|
174 | manifest--debug: 3:cb5a1327723b | |||
163 | manifest--debug: 2:6e0e82995c35 |
|
175 | manifest--debug: 2:6e0e82995c35 | |
164 | manifest--debug: 1:4e8d705b1e53 |
|
176 | manifest--debug: 1:4e8d705b1e53 | |
165 | manifest--debug: 0:a0c8bcbbb45c |
|
177 | manifest--debug: 0:a0c8bcbbb45c | |
|
178 | node: 2bacb094274c6ad120b419cab77a39e51b69cbaa | |||
166 | node: cdc488b3baa4a2cf316d4d85a3a1f17c5e1695d8 |
|
179 | node: cdc488b3baa4a2cf316d4d85a3a1f17c5e1695d8 | |
167 | node: 55b64711768911f37c6d244b12785623aa64e7c3 |
|
180 | node: 55b64711768911f37c6d244b12785623aa64e7c3 | |
168 | node: debcd367d97455db85bba7b583b14b166172de25 |
|
181 | node: debcd367d97455db85bba7b583b14b166172de25 | |
|
182 | node--verbose: 2bacb094274c6ad120b419cab77a39e51b69cbaa | |||
169 | node--verbose: cdc488b3baa4a2cf316d4d85a3a1f17c5e1695d8 |
|
183 | node--verbose: cdc488b3baa4a2cf316d4d85a3a1f17c5e1695d8 | |
170 | node--verbose: 55b64711768911f37c6d244b12785623aa64e7c3 |
|
184 | node--verbose: 55b64711768911f37c6d244b12785623aa64e7c3 | |
171 | node--verbose: debcd367d97455db85bba7b583b14b166172de25 |
|
185 | node--verbose: debcd367d97455db85bba7b583b14b166172de25 | |
|
186 | node--debug: 2bacb094274c6ad120b419cab77a39e51b69cbaa | |||
172 | node--debug: cdc488b3baa4a2cf316d4d85a3a1f17c5e1695d8 |
|
187 | node--debug: cdc488b3baa4a2cf316d4d85a3a1f17c5e1695d8 | |
173 | node--debug: 55b64711768911f37c6d244b12785623aa64e7c3 |
|
188 | node--debug: 55b64711768911f37c6d244b12785623aa64e7c3 | |
174 | node--debug: debcd367d97455db85bba7b583b14b166172de25 |
|
189 | node--debug: debcd367d97455db85bba7b583b14b166172de25 | |
175 | parents: |
|
190 | parents: | |
176 | parents: |
|
191 | parents: | |
177 | parents: |
|
192 | parents: | |
|
193 | parents: | |||
178 | parents--verbose: |
|
194 | parents--verbose: | |
179 | parents--verbose: |
|
195 | parents--verbose: | |
180 | parents--verbose: |
|
196 | parents--verbose: | |
|
197 | parents--verbose: | |||
|
198 | parents--debug: 2:cdc488b3baa4 -1:000000000000 | |||
181 | parents--debug: 1:55b647117689 -1:000000000000 |
|
199 | parents--debug: 1:55b647117689 -1:000000000000 | |
182 | parents--debug: 0:debcd367d974 -1:000000000000 |
|
200 | parents--debug: 0:debcd367d974 -1:000000000000 | |
183 | parents--debug: -1:000000000000 -1:000000000000 |
|
201 | parents--debug: -1:000000000000 -1:000000000000 | |
|
202 | rev: 3 | |||
184 | rev: 2 |
|
203 | rev: 2 | |
185 | rev: 1 |
|
204 | rev: 1 | |
186 | rev: 0 |
|
205 | rev: 0 | |
|
206 | rev--verbose: 3 | |||
187 | rev--verbose: 2 |
|
207 | rev--verbose: 2 | |
188 | rev--verbose: 1 |
|
208 | rev--verbose: 1 | |
189 | rev--verbose: 0 |
|
209 | rev--verbose: 0 | |
|
210 | rev--debug: 3 | |||
190 | rev--debug: 2 |
|
211 | rev--debug: 2 | |
191 | rev--debug: 1 |
|
212 | rev--debug: 1 | |
192 | rev--debug: 0 |
|
213 | rev--debug: 0 | |
193 | tags: tip |
|
214 | tags: tip | |
194 | tags: |
|
215 | tags: | |
195 | tags: |
|
216 | tags: | |
|
217 | tags: | |||
196 | tags--verbose: tip |
|
218 | tags--verbose: tip | |
197 | tags--verbose: |
|
219 | tags--verbose: | |
198 | tags--verbose: |
|
220 | tags--verbose: | |
|
221 | tags--verbose: | |||
199 | tags--debug: tip |
|
222 | tags--debug: tip | |
200 | tags--debug: |
|
223 | tags--debug: | |
201 | tags--debug: |
|
224 | tags--debug: | |
|
225 | tags--debug: | |||
202 | # filters work |
|
226 | # filters work | |
|
227 | ||||
203 | place |
|
228 | place | |
204 | place |
|
229 | place | |
205 | hostname |
|
230 | hostname | |
|
231 | person | |||
206 | other |
|
232 | other | |
207 | A. N. Other |
|
233 | A. N. Other | |
208 | User Name |
|
234 | User Name | |
|
235 | person | |||
209 | other |
|
236 | other | |
210 | other |
|
237 | other | |
211 | user |
|
238 | user | |
212 | 2 months |
|
239 | Sun Apr 9 07:31:30 2006 +0000 | |
213 | 6 months |
|
|||
214 | 11 months |
|
|||
215 | Wed Dec 14 13:44:50 2005 +0000 |
|
240 | Wed Dec 14 13:44:50 2005 +0000 | |
216 | Sun Aug 7 23:19:49 2005 +0000 |
|
241 | Sun Aug 7 23:19:49 2005 +0000 | |
217 | Fri Mar 18 01:58:31 2005 +0000 |
|
242 | Fri Mar 18 01:58:31 2005 +0000 | |
|
243 | 2006-04-09 07:31 +0000 | |||
218 | 2005-12-14 13:44 +0000 |
|
244 | 2005-12-14 13:44 +0000 | |
219 | 2005-08-07 23:19 +0000 |
|
245 | 2005-08-07 23:19 +0000 | |
220 | 2005-03-18 01:58 +0000 |
|
246 | 2005-03-18 01:58 +0000 | |
|
247 | Sun, 09 Apr 2006 07:31:30 +0000 | |||
221 | Wed, 14 Dec 2005 13:44:50 +0000 |
|
248 | Wed, 14 Dec 2005 13:44:50 +0000 | |
222 | Sun, 07 Aug 2005 23:19:49 +0000 |
|
249 | Sun, 07 Aug 2005 23:19:49 +0000 | |
223 | Fri, 18 Mar 2005 01:58:31 +0000 |
|
250 | Fri, 18 Mar 2005 01:58:31 +0000 | |
|
251 | no user, no domain | |||
224 | no person |
|
252 | no person | |
225 | other 1 |
|
253 | other 1 | |
226 | line 1 |
|
254 | line 1 | |
|
255 | 2bacb094274c | |||
227 | cdc488b3baa4 |
|
256 | cdc488b3baa4 | |
228 | 55b647117689 |
|
257 | 55b647117689 | |
229 | debcd367d974 |
|
258 | debcd367d974 | |
230 | # error on syntax |
|
259 | # error on syntax | |
231 | abort: t:3: unmatched quotes |
|
260 | abort: t:3: unmatched quotes | |
232 | # done |
|
261 | # done |
General Comments 0
You need to be logged in to leave comments.
Login now