##// END OF EJS Templates
hgweb: add base link to file log for paper and coal styles (issue2452)
Kevin Gessner -
r13850:1209e1d5 default
parent child Browse files
Show More
@@ -1,201 +1,199 b''
1 default = 'shortlog'
1 default = 'shortlog'
2
2
3 mimetype = 'text/html; charset={encoding}'
3 mimetype = 'text/html; charset={encoding}'
4 header = header.tmpl
4 header = header.tmpl
5 footer = ../paper/footer.tmpl
5 footer = ../paper/footer.tmpl
6 search = ../paper/search.tmpl
6 search = ../paper/search.tmpl
7
7
8 changelog = ../paper/shortlog.tmpl
8 changelog = ../paper/shortlog.tmpl
9 shortlog = ../paper/shortlog.tmpl
9 shortlog = ../paper/shortlog.tmpl
10 shortlogentry = ../paper/shortlogentry.tmpl
10 shortlogentry = ../paper/shortlogentry.tmpl
11 graph = ../paper/graph.tmpl
11 graph = ../paper/graph.tmpl
12
12
13 help = ../paper/help.tmpl
13 help = ../paper/help.tmpl
14 helptopics = ../paper/helptopics.tmpl
14 helptopics = ../paper/helptopics.tmpl
15
15
16 helpentry = '<tr><td><a href="{url}help/{topic|escape}{sessionvars%urlparameter}">{topic|escape}</a></td><td>{summary|escape}</td></tr>'
16 helpentry = '<tr><td><a href="{url}help/{topic|escape}{sessionvars%urlparameter}">{topic|escape}</a></td><td>{summary|escape}</td></tr>'
17
17
18 naventry = '<a href="{url}log/{node|short}{sessionvars%urlparameter}">{label|escape}</a> '
18 naventry = '<a href="{url}log/{node|short}{sessionvars%urlparameter}">{label|escape}</a> '
19 navshortentry = '<a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">{label|escape}</a> '
19 navshortentry = '<a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">{label|escape}</a> '
20 navgraphentry = '<a href="{url}graph/{node|short}{sessionvars%urlparameter}">{label|escape}</a> '
20 navgraphentry = '<a href="{url}graph/{node|short}{sessionvars%urlparameter}">{label|escape}</a> '
21 filenaventry = '<a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{label|escape}</a> '
21 filenaventry = '<a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{label|escape}</a> '
22 filedifflink = '<a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a> '
22 filedifflink = '<a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a> '
23 filenodelink = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a> '
23 filenodelink = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a> '
24 filenolink = '{file|escape} '
24 filenolink = '{file|escape} '
25 fileellipses = '...'
25 fileellipses = '...'
26 changelogentry = ../paper/shortlogentry.tmpl
26 changelogentry = ../paper/shortlogentry.tmpl
27 searchentry = ../paper/shortlogentry.tmpl
27 searchentry = ../paper/shortlogentry.tmpl
28 changeset = ../paper/changeset.tmpl
28 changeset = ../paper/changeset.tmpl
29 manifest = ../paper/manifest.tmpl
29 manifest = ../paper/manifest.tmpl
30
30
31 nav = '{before%naventry} {after%naventry}'
31 nav = '{before%naventry} {after%naventry}'
32 navshort = '{before%navshortentry}{after%navshortentry}'
32 navshort = '{before%navshortentry}{after%navshortentry}'
33 navgraph = '{before%navgraphentry}{after%navgraphentry}'
33 navgraph = '{before%navgraphentry}{after%navgraphentry}'
34 filenav = '{before%filenaventry}{after%filenaventry}'
34 filenav = '{before%filenaventry}{after%filenaventry}'
35
35
36 direntry = '
36 direntry = '
37 <tr class="fileline parity{parity}">
37 <tr class="fileline parity{parity}">
38 <td class="name">
38 <td class="name">
39 <a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">
39 <a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">
40 <img src="{staticurl}coal-folder.png" alt="dir."/> {basename|escape}/
40 <img src="{staticurl}coal-folder.png" alt="dir."/> {basename|escape}/
41 </a>
41 </a>
42 <a href="{url}file/{node|short}{path|urlescape}/{emptydirs|urlescape}{sessionvars%urlparameter}">
42 <a href="{url}file/{node|short}{path|urlescape}/{emptydirs|urlescape}{sessionvars%urlparameter}">
43 {emptydirs|escape}
43 {emptydirs|escape}
44 </a>
44 </a>
45 </td>
45 </td>
46 <td class="size"></td>
46 <td class="size"></td>
47 <td class="permissions">drwxr-xr-x</td>
47 <td class="permissions">drwxr-xr-x</td>
48 </tr>'
48 </tr>'
49
49
50 fileentry = '
50 fileentry = '
51 <tr class="fileline parity{parity}">
51 <tr class="fileline parity{parity}">
52 <td class="filename">
52 <td class="filename">
53 <a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
53 <a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
54 <img src="{staticurl}coal-file.png" alt="file"/> {basename|escape}
54 <img src="{staticurl}coal-file.png" alt="file"/> {basename|escape}
55 </a>
55 </a>
56 </td>
56 </td>
57 <td class="size">{size}</td>
57 <td class="size">{size}</td>
58 <td class="permissions">{permissions|permissions}</td>
58 <td class="permissions">{permissions|permissions}</td>
59 </tr>'
59 </tr>'
60
60
61 filerevision = ../paper/filerevision.tmpl
61 filerevision = ../paper/filerevision.tmpl
62 fileannotate = ../paper/fileannotate.tmpl
62 fileannotate = ../paper/fileannotate.tmpl
63 filediff = ../paper/filediff.tmpl
63 filediff = ../paper/filediff.tmpl
64 filelog = ../paper/filelog.tmpl
64 filelog = ../paper/filelog.tmpl
65 fileline = '
65 fileline = '
66 <div class="parity{parity} source"><a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</div>'
66 <div class="parity{parity} source"><a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</div>'
67 filelogentry = ../paper/filelogentry.tmpl
67 filelogentry = ../paper/filelogentry.tmpl
68
68
69 annotateline = '
69 annotateline = '
70 <tr class="parity{parity}">
70 <tr class="parity{parity}">
71 <td class="annotate">
71 <td class="annotate">
72 <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}#{targetline}"
72 <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}#{targetline}"
73 title="{node|short}: {desc|escape|firstline}">{author|user}@{rev}</a>
73 title="{node|short}: {desc|escape|firstline}">{author|user}@{rev}</a>
74 </td>
74 </td>
75 <td class="source"><a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</td>
75 <td class="source"><a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</td>
76 </tr>'
76 </tr>'
77
77
78 diffblock = '<div class="source bottomline parity{parity}"><pre>{lines}</pre></div>'
78 diffblock = '<div class="source bottomline parity{parity}"><pre>{lines}</pre></div>'
79 difflineplus = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> <span class="plusline">{line|escape}</span>'
79 difflineplus = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> <span class="plusline">{line|escape}</span>'
80 difflineminus = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> <span class="minusline">{line|escape}</span>'
80 difflineminus = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> <span class="minusline">{line|escape}</span>'
81 difflineat = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> <span class="atline">{line|escape}</span>'
81 difflineat = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> <span class="atline">{line|escape}</span>'
82 diffline = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}'
82 diffline = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}'
83
83
84 changelogparent = '
84 changelogparent = '
85 <tr>
85 <tr>
86 <th class="parent">parent {rev}:</th>
86 <th class="parent">parent {rev}:</th>
87 <td class="parent"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></td>
87 <td class="parent"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></td>
88 </tr>'
88 </tr>'
89
89
90 changesetparent = '<a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a> '
90 changesetparent = '<a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a> '
91
91
92 filerevparent = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{rename%filerename}{node|short}</a> '
92 filerevparent = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{rename%filerename}{node|short}</a> '
93 filerevchild = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a> '
93 filerevchild = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a> '
94
94
95 filerename = '{file|escape}@'
95 filerename = '{file|escape}@'
96 filelogrename = '
96 filelogrename = '
97 <tr>
97 <span class="base">
98 <th>base:</th>
98 base
99 <td>
99 <a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
100 <a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
100 {file|escape}@{node|short}
101 {file|escape}@{node|short}
101 </a>
102 </a>
102 </span>'
103 </td>
104 </tr>'
105 fileannotateparent = '
103 fileannotateparent = '
106 <tr>
104 <tr>
107 <td class="metatag">parent:</td>
105 <td class="metatag">parent:</td>
108 <td>
106 <td>
109 <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
107 <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
110 {rename%filerename}{node|short}
108 {rename%filerename}{node|short}
111 </a>
109 </a>
112 </td>
110 </td>
113 </tr>'
111 </tr>'
114 changesetchild = ' <a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a>'
112 changesetchild = ' <a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a>'
115 changelogchild = '
113 changelogchild = '
116 <tr>
114 <tr>
117 <th class="child">child</th>
115 <th class="child">child</th>
118 <td class="child">
116 <td class="child">
119 <a href="{url}rev/{node|short}{sessionvars%urlparameter}">
117 <a href="{url}rev/{node|short}{sessionvars%urlparameter}">
120 {node|short}
118 {node|short}
121 </a>
119 </a>
122 </td>
120 </td>
123 </tr>'
121 </tr>'
124 fileannotatechild = '
122 fileannotatechild = '
125 <tr>
123 <tr>
126 <td class="metatag">child:</td>
124 <td class="metatag">child:</td>
127 <td>
125 <td>
128 <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
126 <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
129 {node|short}
127 {node|short}
130 </a>
128 </a>
131 </td>
129 </td>
132 </tr>'
130 </tr>'
133 tags = ../paper/tags.tmpl
131 tags = ../paper/tags.tmpl
134 tagentry = '
132 tagentry = '
135 <tr class="tagEntry parity{parity}">
133 <tr class="tagEntry parity{parity}">
136 <td>
134 <td>
137 <a href="{url}rev/{node|short}{sessionvars%urlparameter}">
135 <a href="{url}rev/{node|short}{sessionvars%urlparameter}">
138 {tag|escape}
136 {tag|escape}
139 </a>
137 </a>
140 </td>
138 </td>
141 <td class="node">
139 <td class="node">
142 {node|short}
140 {node|short}
143 </td>
141 </td>
144 </tr>'
142 </tr>'
145 branches = ../paper/branches.tmpl
143 branches = ../paper/branches.tmpl
146 branchentry = '
144 branchentry = '
147 <tr class="tagEntry parity{parity}">
145 <tr class="tagEntry parity{parity}">
148 <td>
146 <td>
149 <a href="{url}shortlog/{node|short}{sessionvars%urlparameter}" class="{status}">
147 <a href="{url}shortlog/{node|short}{sessionvars%urlparameter}" class="{status}">
150 {branch|escape}
148 {branch|escape}
151 </a>
149 </a>
152 </td>
150 </td>
153 <td class="node">
151 <td class="node">
154 {node|short}
152 {node|short}
155 </td>
153 </td>
156 </tr>'
154 </tr>'
157 changelogtag = '<span class="tag">{name|escape}</span> '
155 changelogtag = '<span class="tag">{name|escape}</span> '
158 changesettag = '<span class="tag">{tag|escape}</span> '
156 changesettag = '<span class="tag">{tag|escape}</span> '
159 changelogbranchhead = '<span class="branchhead">{name|escape}</span> '
157 changelogbranchhead = '<span class="branchhead">{name|escape}</span> '
160 changelogbranchname = '<span class="branchname">{name|escape}</span> '
158 changelogbranchname = '<span class="branchname">{name|escape}</span> '
161
159
162 filediffparent = '
160 filediffparent = '
163 <tr>
161 <tr>
164 <th class="parent">parent {rev}:</th>
162 <th class="parent">parent {rev}:</th>
165 <td class="parent"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></td>
163 <td class="parent"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></td>
166 </tr>'
164 </tr>'
167 filelogparent = '
165 filelogparent = '
168 <tr>
166 <tr>
169 <th>parent {rev}:</th>
167 <th>parent {rev}:</th>
170 <td><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td>
168 <td><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td>
171 </tr>'
169 </tr>'
172 filediffchild = '
170 filediffchild = '
173 <tr>
171 <tr>
174 <th class="child">child {rev}:</th>
172 <th class="child">child {rev}:</th>
175 <td class="child"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a>
173 <td class="child"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a>
176 </td>
174 </td>
177 </tr>'
175 </tr>'
178 filelogchild = '
176 filelogchild = '
179 <tr>
177 <tr>
180 <th>child {rev}:</th>
178 <th>child {rev}:</th>
181 <td><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td>
179 <td><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td>
182 </tr>'
180 </tr>'
183
181
184 indexentry = '
182 indexentry = '
185 <tr class="parity{parity}">
183 <tr class="parity{parity}">
186 <td><a href="{url}{sessionvars%urlparameter}">{name|escape}</a></td>
184 <td><a href="{url}{sessionvars%urlparameter}">{name|escape}</a></td>
187 <td>{description}</td>
185 <td>{description}</td>
188 <td>{contact|obfuscate}</td>
186 <td>{contact|obfuscate}</td>
189 <td class="age">{lastchange|age}</td>
187 <td class="age">{lastchange|age}</td>
190 <td class="indexlinks">{archives%indexarchiveentry}</td>
188 <td class="indexlinks">{archives%indexarchiveentry}</td>
191 </tr>\n'
189 </tr>\n'
192 indexarchiveentry = '<a href="{url}archive/{node|short}{extension|urlescape}">&nbsp;&darr;{type|escape}</a>'
190 indexarchiveentry = '<a href="{url}archive/{node|short}{extension|urlescape}">&nbsp;&darr;{type|escape}</a>'
193 index = ../paper/index.tmpl
191 index = ../paper/index.tmpl
194 archiveentry = '
192 archiveentry = '
195 <li>
193 <li>
196 <a href="{url}archive/{node|short}{extension|urlescape}">{type|escape}</a>
194 <a href="{url}archive/{node|short}{extension|urlescape}">{type|escape}</a>
197 </li>'
195 </li>'
198 notfound = ../paper/notfound.tmpl
196 notfound = ../paper/notfound.tmpl
199 error = ../paper/error.tmpl
197 error = ../paper/error.tmpl
200 urlparameter = '{separator}{name}={value|urlescape}'
198 urlparameter = '{separator}{name}={value|urlescape}'
201 hiddenformentry = '<input type="hidden" name="{name}" value="{value|escape}" />'
199 hiddenformentry = '<input type="hidden" name="{name}" value="{value|escape}" />'
@@ -1,5 +1,5 b''
1 <tr class="parity{parity}">
1 <tr class="parity{parity}">
2 <td class="age">{date|age}</td>
2 <td class="age">{date|age}</td>
3 <td class="author">{author|person}</td>
3 <td class="author">{author|person}</td>
4 <td class="description"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{desc|strip|firstline|escape|nonempty}</a>{inbranch%changelogbranchname}{branches%changelogbranchhead}{tags%changelogtag}</td>
4 <td class="description"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{desc|strip|firstline|escape|nonempty}</a>{inbranch%changelogbranchname}{branches%changelogbranchhead}{tags%changelogtag}{rename%filelogrename}</td>
5 </tr>
5 </tr>
@@ -1,213 +1,211 b''
1 default = 'shortlog'
1 default = 'shortlog'
2
2
3 mimetype = 'text/html; charset={encoding}'
3 mimetype = 'text/html; charset={encoding}'
4 header = header.tmpl
4 header = header.tmpl
5 footer = footer.tmpl
5 footer = footer.tmpl
6 search = search.tmpl
6 search = search.tmpl
7
7
8 changelog = shortlog.tmpl
8 changelog = shortlog.tmpl
9 shortlog = shortlog.tmpl
9 shortlog = shortlog.tmpl
10 shortlogentry = shortlogentry.tmpl
10 shortlogentry = shortlogentry.tmpl
11 graph = graph.tmpl
11 graph = graph.tmpl
12 help = help.tmpl
12 help = help.tmpl
13 helptopics = helptopics.tmpl
13 helptopics = helptopics.tmpl
14
14
15 helpentry = '<tr><td><a href="{url}help/{topic|escape}{sessionvars%urlparameter}">{topic|escape}</a></td><td>{summary|escape}</td></tr>'
15 helpentry = '<tr><td><a href="{url}help/{topic|escape}{sessionvars%urlparameter}">{topic|escape}</a></td><td>{summary|escape}</td></tr>'
16
16
17 naventry = '<a href="{url}log/{node|short}{sessionvars%urlparameter}">{label|escape}</a> '
17 naventry = '<a href="{url}log/{node|short}{sessionvars%urlparameter}">{label|escape}</a> '
18 navshortentry = '<a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">{label|escape}</a> '
18 navshortentry = '<a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">{label|escape}</a> '
19 navgraphentry = '<a href="{url}graph/{node|short}{sessionvars%urlparameter}">{label|escape}</a> '
19 navgraphentry = '<a href="{url}graph/{node|short}{sessionvars%urlparameter}">{label|escape}</a> '
20 filenaventry = '<a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{label|escape}</a> '
20 filenaventry = '<a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{label|escape}</a> '
21 filedifflink = '<a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a> '
21 filedifflink = '<a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a> '
22 filenodelink = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a> '
22 filenodelink = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a> '
23 filenolink = '{file|escape} '
23 filenolink = '{file|escape} '
24 fileellipses = '...'
24 fileellipses = '...'
25 changelogentry = shortlogentry.tmpl
25 changelogentry = shortlogentry.tmpl
26 searchentry = shortlogentry.tmpl
26 searchentry = shortlogentry.tmpl
27 changeset = changeset.tmpl
27 changeset = changeset.tmpl
28 manifest = manifest.tmpl
28 manifest = manifest.tmpl
29
29
30 nav = '{before%naventry} {after%naventry}'
30 nav = '{before%naventry} {after%naventry}'
31 navshort = '{before%navshortentry}{after%navshortentry}'
31 navshort = '{before%navshortentry}{after%navshortentry}'
32 navgraph = '{before%navgraphentry}{after%navgraphentry}'
32 navgraph = '{before%navgraphentry}{after%navgraphentry}'
33 filenav = '{before%filenaventry}{after%filenaventry}'
33 filenav = '{before%filenaventry}{after%filenaventry}'
34
34
35 direntry = '
35 direntry = '
36 <tr class="fileline parity{parity}">
36 <tr class="fileline parity{parity}">
37 <td class="name">
37 <td class="name">
38 <a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">
38 <a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">
39 <img src="{staticurl}coal-folder.png" alt="dir."/> {basename|escape}/
39 <img src="{staticurl}coal-folder.png" alt="dir."/> {basename|escape}/
40 </a>
40 </a>
41 <a href="{url}file/{node|short}{path|urlescape}/{emptydirs|urlescape}{sessionvars%urlparameter}">
41 <a href="{url}file/{node|short}{path|urlescape}/{emptydirs|urlescape}{sessionvars%urlparameter}">
42 {emptydirs|escape}
42 {emptydirs|escape}
43 </a>
43 </a>
44 </td>
44 </td>
45 <td class="size"></td>
45 <td class="size"></td>
46 <td class="permissions">drwxr-xr-x</td>
46 <td class="permissions">drwxr-xr-x</td>
47 </tr>'
47 </tr>'
48
48
49 fileentry = '
49 fileentry = '
50 <tr class="fileline parity{parity}">
50 <tr class="fileline parity{parity}">
51 <td class="filename">
51 <td class="filename">
52 <a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
52 <a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
53 <img src="{staticurl}coal-file.png" alt="file"/> {basename|escape}
53 <img src="{staticurl}coal-file.png" alt="file"/> {basename|escape}
54 </a>
54 </a>
55 </td>
55 </td>
56 <td class="size">{size}</td>
56 <td class="size">{size}</td>
57 <td class="permissions">{permissions|permissions}</td>
57 <td class="permissions">{permissions|permissions}</td>
58 </tr>'
58 </tr>'
59
59
60 filerevision = filerevision.tmpl
60 filerevision = filerevision.tmpl
61 fileannotate = fileannotate.tmpl
61 fileannotate = fileannotate.tmpl
62 filediff = filediff.tmpl
62 filediff = filediff.tmpl
63 filelog = filelog.tmpl
63 filelog = filelog.tmpl
64 fileline = '
64 fileline = '
65 <div class="parity{parity} source"><a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</div>'
65 <div class="parity{parity} source"><a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</div>'
66 filelogentry = filelogentry.tmpl
66 filelogentry = filelogentry.tmpl
67
67
68 annotateline = '
68 annotateline = '
69 <tr class="parity{parity}">
69 <tr class="parity{parity}">
70 <td class="annotate">
70 <td class="annotate">
71 <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}#{targetline}"
71 <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}#{targetline}"
72 title="{node|short}: {desc|escape|firstline}">{author|user}@{rev}</a>
72 title="{node|short}: {desc|escape|firstline}">{author|user}@{rev}</a>
73 </td>
73 </td>
74 <td class="source"><a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</td>
74 <td class="source"><a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</td>
75 </tr>'
75 </tr>'
76
76
77 diffblock = '<div class="source bottomline parity{parity}"><pre>{lines}</pre></div>'
77 diffblock = '<div class="source bottomline parity{parity}"><pre>{lines}</pre></div>'
78 difflineplus = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> <span class="plusline">{line|escape}</span>'
78 difflineplus = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> <span class="plusline">{line|escape}</span>'
79 difflineminus = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> <span class="minusline">{line|escape}</span>'
79 difflineminus = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> <span class="minusline">{line|escape}</span>'
80 difflineat = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> <span class="atline">{line|escape}</span>'
80 difflineat = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> <span class="atline">{line|escape}</span>'
81 diffline = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}'
81 diffline = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}'
82
82
83 changelogparent = '
83 changelogparent = '
84 <tr>
84 <tr>
85 <th class="parent">parent {rev}:</th>
85 <th class="parent">parent {rev}:</th>
86 <td class="parent"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></td>
86 <td class="parent"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></td>
87 </tr>'
87 </tr>'
88
88
89 changesetparent = '<a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a> '
89 changesetparent = '<a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a> '
90
90
91 filerevparent = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{rename%filerename}{node|short}</a> '
91 filerevparent = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{rename%filerename}{node|short}</a> '
92 filerevchild = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a> '
92 filerevchild = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a> '
93
93
94 filerename = '{file|escape}@'
94 filerename = '{file|escape}@'
95 filelogrename = '
95 filelogrename = '
96 <tr>
96 <span class="base">
97 <th>base:</th>
97 base
98 <td>
98 <a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
99 <a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
99 {file|escape}@{node|short}
100 {file|escape}@{node|short}
100 </a>
101 </a>
101 </span>'
102 </td>
103 </tr>'
104 fileannotateparent = '
102 fileannotateparent = '
105 <tr>
103 <tr>
106 <td class="metatag">parent:</td>
104 <td class="metatag">parent:</td>
107 <td>
105 <td>
108 <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
106 <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
109 {rename%filerename}{node|short}
107 {rename%filerename}{node|short}
110 </a>
108 </a>
111 </td>
109 </td>
112 </tr>'
110 </tr>'
113 changesetchild = ' <a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a>'
111 changesetchild = ' <a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a>'
114 changelogchild = '
112 changelogchild = '
115 <tr>
113 <tr>
116 <th class="child">child</th>
114 <th class="child">child</th>
117 <td class="child">
115 <td class="child">
118 <a href="{url}rev/{node|short}{sessionvars%urlparameter}">
116 <a href="{url}rev/{node|short}{sessionvars%urlparameter}">
119 {node|short}
117 {node|short}
120 </a>
118 </a>
121 </td>
119 </td>
122 </tr>'
120 </tr>'
123 fileannotatechild = '
121 fileannotatechild = '
124 <tr>
122 <tr>
125 <td class="metatag">child:</td>
123 <td class="metatag">child:</td>
126 <td>
124 <td>
127 <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
125 <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
128 {node|short}
126 {node|short}
129 </a>
127 </a>
130 </td>
128 </td>
131 </tr>'
129 </tr>'
132 tags = tags.tmpl
130 tags = tags.tmpl
133 tagentry = '
131 tagentry = '
134 <tr class="tagEntry parity{parity}">
132 <tr class="tagEntry parity{parity}">
135 <td>
133 <td>
136 <a href="{url}rev/{node|short}{sessionvars%urlparameter}">
134 <a href="{url}rev/{node|short}{sessionvars%urlparameter}">
137 {tag|escape}
135 {tag|escape}
138 </a>
136 </a>
139 </td>
137 </td>
140 <td class="node">
138 <td class="node">
141 {node|short}
139 {node|short}
142 </td>
140 </td>
143 </tr>'
141 </tr>'
144 bookmarks = bookmarks.tmpl
142 bookmarks = bookmarks.tmpl
145 bookmarkentry = '
143 bookmarkentry = '
146 <tr class="tagEntry parity{parity}">
144 <tr class="tagEntry parity{parity}">
147 <td>
145 <td>
148 <a href="{url}rev/{node|short}{sessionvars%urlparameter}">
146 <a href="{url}rev/{node|short}{sessionvars%urlparameter}">
149 {bookmark|escape}
147 {bookmark|escape}
150 </a>
148 </a>
151 </td>
149 </td>
152 <td class="node">
150 <td class="node">
153 {node|short}
151 {node|short}
154 </td>
152 </td>
155 </tr>'
153 </tr>'
156 branches = branches.tmpl
154 branches = branches.tmpl
157 branchentry = '
155 branchentry = '
158 <tr class="tagEntry parity{parity}">
156 <tr class="tagEntry parity{parity}">
159 <td>
157 <td>
160 <a href="{url}shortlog/{node|short}{sessionvars%urlparameter}" class="{status}">
158 <a href="{url}shortlog/{node|short}{sessionvars%urlparameter}" class="{status}">
161 {branch|escape}
159 {branch|escape}
162 </a>
160 </a>
163 </td>
161 </td>
164 <td class="node">
162 <td class="node">
165 {node|short}
163 {node|short}
166 </td>
164 </td>
167 </tr>'
165 </tr>'
168 changelogtag = '<span class="tag">{name|escape}</span> '
166 changelogtag = '<span class="tag">{name|escape}</span> '
169 changesettag = '<span class="tag">{tag|escape}</span> '
167 changesettag = '<span class="tag">{tag|escape}</span> '
170 changesetbookmark = '<span class="tag">{bookmark|escape}</span> '
168 changesetbookmark = '<span class="tag">{bookmark|escape}</span> '
171 changelogbranchhead = '<span class="branchhead">{name|escape}</span> '
169 changelogbranchhead = '<span class="branchhead">{name|escape}</span> '
172 changelogbranchname = '<span class="branchname">{name|escape}</span> '
170 changelogbranchname = '<span class="branchname">{name|escape}</span> '
173
171
174 filediffparent = '
172 filediffparent = '
175 <tr>
173 <tr>
176 <th class="parent">parent {rev}:</th>
174 <th class="parent">parent {rev}:</th>
177 <td class="parent"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></td>
175 <td class="parent"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></td>
178 </tr>'
176 </tr>'
179 filelogparent = '
177 filelogparent = '
180 <tr>
178 <tr>
181 <th>parent {rev}:</th>
179 <th>parent {rev}:</th>
182 <td><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td>
180 <td><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td>
183 </tr>'
181 </tr>'
184 filediffchild = '
182 filediffchild = '
185 <tr>
183 <tr>
186 <th class="child">child {rev}:</th>
184 <th class="child">child {rev}:</th>
187 <td class="child"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a>
185 <td class="child"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a>
188 </td>
186 </td>
189 </tr>'
187 </tr>'
190 filelogchild = '
188 filelogchild = '
191 <tr>
189 <tr>
192 <th>child {rev}:</th>
190 <th>child {rev}:</th>
193 <td><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td>
191 <td><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td>
194 </tr>'
192 </tr>'
195
193
196 indexentry = '
194 indexentry = '
197 <tr class="parity{parity}">
195 <tr class="parity{parity}">
198 <td><a href="{url}{sessionvars%urlparameter}">{name|escape}</a></td>
196 <td><a href="{url}{sessionvars%urlparameter}">{name|escape}</a></td>
199 <td>{description}</td>
197 <td>{description}</td>
200 <td>{contact|obfuscate}</td>
198 <td>{contact|obfuscate}</td>
201 <td class="age">{lastchange|age}</td>
199 <td class="age">{lastchange|age}</td>
202 <td class="indexlinks">{archives%indexarchiveentry}</td>
200 <td class="indexlinks">{archives%indexarchiveentry}</td>
203 </tr>\n'
201 </tr>\n'
204 indexarchiveentry = '<a href="{url}archive/{node|short}{extension|urlescape}">&nbsp;&darr;{type|escape}</a>'
202 indexarchiveentry = '<a href="{url}archive/{node|short}{extension|urlescape}">&nbsp;&darr;{type|escape}</a>'
205 index = index.tmpl
203 index = index.tmpl
206 archiveentry = '
204 archiveentry = '
207 <li>
205 <li>
208 <a href="{url}archive/{node|short}{extension|urlescape}">{type|escape}</a>
206 <a href="{url}archive/{node|short}{extension|urlescape}">{type|escape}</a>
209 </li>'
207 </li>'
210 notfound = notfound.tmpl
208 notfound = notfound.tmpl
211 error = error.tmpl
209 error = error.tmpl
212 urlparameter = '{separator}{name}={value|urlescape}'
210 urlparameter = '{separator}{name}={value|urlescape}'
213 hiddenformentry = '<input type="hidden" name="{name}" value="{value|escape}" />'
211 hiddenformentry = '<input type="hidden" name="{name}" value="{value|escape}" />'
@@ -1,265 +1,266 b''
1 body {
1 body {
2 margin: 0;
2 margin: 0;
3 padding: 0;
3 padding: 0;
4 background: black url(background.png) repeat-x;
4 background: black url(background.png) repeat-x;
5 font-family: sans-serif;
5 font-family: sans-serif;
6 }
6 }
7
7
8 .container {
8 .container {
9 padding-right: 150px;
9 padding-right: 150px;
10 }
10 }
11
11
12 .main {
12 .main {
13 position: relative;
13 position: relative;
14 background: white;
14 background: white;
15 padding: 2em;
15 padding: 2em;
16 border-right: 15px solid black;
16 border-right: 15px solid black;
17 border-bottom: 15px solid black;
17 border-bottom: 15px solid black;
18 }
18 }
19
19
20 #.main {
20 #.main {
21 width: 98%;
21 width: 98%;
22 }
22 }
23
23
24 .overflow {
24 .overflow {
25 width: 100%;
25 width: 100%;
26 overflow: auto;
26 overflow: auto;
27 }
27 }
28
28
29 .menu {
29 .menu {
30 background: #999;
30 background: #999;
31 padding: 10px;
31 padding: 10px;
32 width: 75px;
32 width: 75px;
33 margin: 0;
33 margin: 0;
34 font-size: 80%;
34 font-size: 80%;
35 text-align: left;
35 text-align: left;
36 position: fixed;
36 position: fixed;
37 top: 27px;
37 top: 27px;
38 left: auto;
38 left: auto;
39 right: 27px;
39 right: 27px;
40 }
40 }
41
41
42 #.menu {
42 #.menu {
43 position: absolute !important;
43 position: absolute !important;
44 top:expression(eval(document.body.scrollTop + 27));
44 top:expression(eval(document.body.scrollTop + 27));
45 }
45 }
46
46
47 .menu ul {
47 .menu ul {
48 list-style: none;
48 list-style: none;
49 padding: 0;
49 padding: 0;
50 margin: 10px 0 0 0;
50 margin: 10px 0 0 0;
51 }
51 }
52
52
53 .menu li {
53 .menu li {
54 margin-bottom: 3px;
54 margin-bottom: 3px;
55 padding: 2px 4px;
55 padding: 2px 4px;
56 background: white;
56 background: white;
57 color: black;
57 color: black;
58 font-weight: normal;
58 font-weight: normal;
59 }
59 }
60
60
61 .menu li.active {
61 .menu li.active {
62 background: black;
62 background: black;
63 color: white;
63 color: white;
64 }
64 }
65
65
66 .menu img {
66 .menu img {
67 width: 75px;
67 width: 75px;
68 height: 90px;
68 height: 90px;
69 border: 0;
69 border: 0;
70 }
70 }
71
71
72 .menu a { color: black; display: block; }
72 .menu a { color: black; display: block; }
73
73
74 .search {
74 .search {
75 position: absolute;
75 position: absolute;
76 top: .7em;
76 top: .7em;
77 right: 2em;
77 right: 2em;
78 }
78 }
79
79
80 form.search div#hint {
80 form.search div#hint {
81 display: none;
81 display: none;
82 position: absolute;
82 position: absolute;
83 top: 40px;
83 top: 40px;
84 right: 0px;
84 right: 0px;
85 width: 190px;
85 width: 190px;
86 padding: 5px;
86 padding: 5px;
87 background: #ffc;
87 background: #ffc;
88 font-size: 70%;
88 font-size: 70%;
89 border: 1px solid yellow;
89 border: 1px solid yellow;
90 -moz-border-radius: 5px; /* this works only in camino/firefox */
90 -moz-border-radius: 5px; /* this works only in camino/firefox */
91 -webkit-border-radius: 5px; /* this is just for Safari */
91 -webkit-border-radius: 5px; /* this is just for Safari */
92 }
92 }
93
93
94 form.search:hover div#hint { display: block; }
94 form.search:hover div#hint { display: block; }
95
95
96 a { text-decoration:none; }
96 a { text-decoration:none; }
97 .age { white-space:nowrap; }
97 .age { white-space:nowrap; }
98 .date { white-space:nowrap; }
98 .date { white-space:nowrap; }
99 .indexlinks { white-space:nowrap; }
99 .indexlinks { white-space:nowrap; }
100 .parity0 { background-color: #f0f0f0; }
100 .parity0 { background-color: #f0f0f0; }
101 .parity1 { background-color: white; }
101 .parity1 { background-color: white; }
102 .plusline { color: green; }
102 .plusline { color: green; }
103 .minusline { color: #dc143c; } /* crimson */
103 .minusline { color: #dc143c; } /* crimson */
104 .atline { color: purple; }
104 .atline { color: purple; }
105
105
106 .navigate {
106 .navigate {
107 text-align: right;
107 text-align: right;
108 font-size: 60%;
108 font-size: 60%;
109 margin: 1em 0;
109 margin: 1em 0;
110 }
110 }
111
111
112 .tag {
112 .tag {
113 color: #999;
113 color: #999;
114 font-size: 70%;
114 font-size: 70%;
115 font-weight: normal;
115 font-weight: normal;
116 margin-left: .5em;
116 margin-left: .5em;
117 vertical-align: baseline;
117 vertical-align: baseline;
118 }
118 }
119
119
120 .branchhead {
120 .branchhead {
121 color: #000;
121 color: #000;
122 font-size: 80%;
122 font-size: 80%;
123 font-weight: normal;
123 font-weight: normal;
124 margin-left: .5em;
124 margin-left: .5em;
125 vertical-align: baseline;
125 vertical-align: baseline;
126 }
126 }
127
127
128 ul#graphnodes .branchhead {
128 ul#graphnodes .branchhead {
129 font-size: 75%;
129 font-size: 75%;
130 }
130 }
131
131
132 .branchname {
132 .branchname {
133 color: #000;
133 color: #000;
134 font-size: 60%;
134 font-size: 60%;
135 font-weight: normal;
135 font-weight: normal;
136 margin-left: .5em;
136 margin-left: .5em;
137 vertical-align: baseline;
137 vertical-align: baseline;
138 }
138 }
139
139
140 h3 .branchname {
140 h3 .branchname {
141 font-size: 80%;
141 font-size: 80%;
142 }
142 }
143
143
144 /* Common */
144 /* Common */
145 pre { margin: 0; }
145 pre { margin: 0; }
146
146
147 h2 { font-size: 120%; border-bottom: 1px solid #999; }
147 h2 { font-size: 120%; border-bottom: 1px solid #999; }
148 h2 a { color: #000; }
148 h2 a { color: #000; }
149 h3 {
149 h3 {
150 margin-top: -.7em;
150 margin-top: -.7em;
151 font-size: 100%;
151 font-size: 100%;
152 }
152 }
153
153
154 /* log and tags tables */
154 /* log and tags tables */
155 .bigtable {
155 .bigtable {
156 border-bottom: 1px solid #999;
156 border-bottom: 1px solid #999;
157 border-collapse: collapse;
157 border-collapse: collapse;
158 font-size: 90%;
158 font-size: 90%;
159 width: 100%;
159 width: 100%;
160 font-weight: normal;
160 font-weight: normal;
161 text-align: left;
161 text-align: left;
162 }
162 }
163
163
164 .bigtable td {
164 .bigtable td {
165 vertical-align: top;
165 vertical-align: top;
166 }
166 }
167
167
168 .bigtable th {
168 .bigtable th {
169 padding: 1px 4px;
169 padding: 1px 4px;
170 border-bottom: 1px solid #999;
170 border-bottom: 1px solid #999;
171 }
171 }
172 .bigtable tr { border: none; }
172 .bigtable tr { border: none; }
173 .bigtable .age { width: 6em; }
173 .bigtable .age { width: 6em; }
174 .bigtable .author { width: 12em; }
174 .bigtable .author { width: 12em; }
175 .bigtable .description { }
175 .bigtable .description { }
176 .bigtable .description .base { font-size: 70%; float: right; line-height: 1.66; }
176 .bigtable .node { width: 5em; font-family: monospace;}
177 .bigtable .node { width: 5em; font-family: monospace;}
177 .bigtable .lineno { width: 2em; text-align: right;}
178 .bigtable .lineno { width: 2em; text-align: right;}
178 .bigtable .lineno a { color: #999; font-size: smaller; font-family: monospace;}
179 .bigtable .lineno a { color: #999; font-size: smaller; font-family: monospace;}
179 .bigtable .permissions { width: 8em; text-align: left;}
180 .bigtable .permissions { width: 8em; text-align: left;}
180 .bigtable .size { width: 5em; text-align: right; }
181 .bigtable .size { width: 5em; text-align: right; }
181 .bigtable .annotate { text-align: right; }
182 .bigtable .annotate { text-align: right; }
182 .bigtable td.annotate { font-size: smaller; }
183 .bigtable td.annotate { font-size: smaller; }
183 .bigtable td.source { font-size: inherit; }
184 .bigtable td.source { font-size: inherit; }
184
185
185 .source, .sourcefirst, .sourcelast {
186 .source, .sourcefirst, .sourcelast {
186 font-family: monospace;
187 font-family: monospace;
187 white-space: pre;
188 white-space: pre;
188 padding: 1px 4px;
189 padding: 1px 4px;
189 font-size: 90%;
190 font-size: 90%;
190 }
191 }
191 .sourcefirst { border-bottom: 1px solid #999; font-weight: bold; }
192 .sourcefirst { border-bottom: 1px solid #999; font-weight: bold; }
192 .sourcelast { border-top: 1px solid #999; }
193 .sourcelast { border-top: 1px solid #999; }
193 .source a { color: #999; font-size: smaller; font-family: monospace;}
194 .source a { color: #999; font-size: smaller; font-family: monospace;}
194 .bottomline { border-bottom: 1px solid #999; }
195 .bottomline { border-bottom: 1px solid #999; }
195
196
196 .fileline { font-family: monospace; }
197 .fileline { font-family: monospace; }
197 .fileline img { border: 0; }
198 .fileline img { border: 0; }
198
199
199 .tagEntry .closed { color: #99f; }
200 .tagEntry .closed { color: #99f; }
200
201
201 /* Changeset entry */
202 /* Changeset entry */
202 #changesetEntry {
203 #changesetEntry {
203 border-collapse: collapse;
204 border-collapse: collapse;
204 font-size: 90%;
205 font-size: 90%;
205 width: 100%;
206 width: 100%;
206 margin-bottom: 1em;
207 margin-bottom: 1em;
207 }
208 }
208
209
209 #changesetEntry th {
210 #changesetEntry th {
210 padding: 1px 4px;
211 padding: 1px 4px;
211 width: 4em;
212 width: 4em;
212 text-align: right;
213 text-align: right;
213 font-weight: normal;
214 font-weight: normal;
214 color: #999;
215 color: #999;
215 margin-right: .5em;
216 margin-right: .5em;
216 vertical-align: top;
217 vertical-align: top;
217 }
218 }
218
219
219 div.description {
220 div.description {
220 border-left: 3px solid #999;
221 border-left: 3px solid #999;
221 margin: 1em 0 1em 0;
222 margin: 1em 0 1em 0;
222 padding: .3em;
223 padding: .3em;
223 }
224 }
224
225
225 /* Graph */
226 /* Graph */
226 div#wrapper {
227 div#wrapper {
227 position: relative;
228 position: relative;
228 border-top: 1px solid black;
229 border-top: 1px solid black;
229 border-bottom: 1px solid black;
230 border-bottom: 1px solid black;
230 margin: 0;
231 margin: 0;
231 padding: 0;
232 padding: 0;
232 }
233 }
233
234
234 canvas {
235 canvas {
235 position: absolute;
236 position: absolute;
236 z-index: 5;
237 z-index: 5;
237 top: -0.7em;
238 top: -0.7em;
238 margin: 0;
239 margin: 0;
239 }
240 }
240
241
241 ul#graphnodes {
242 ul#graphnodes {
242 position: absolute;
243 position: absolute;
243 z-index: 10;
244 z-index: 10;
244 top: -1.0em;
245 top: -1.0em;
245 list-style: none inside none;
246 list-style: none inside none;
246 padding: 0;
247 padding: 0;
247 }
248 }
248
249
249 ul#nodebgs {
250 ul#nodebgs {
250 list-style: none inside none;
251 list-style: none inside none;
251 padding: 0;
252 padding: 0;
252 margin: 0;
253 margin: 0;
253 top: -0.7em;
254 top: -0.7em;
254 }
255 }
255
256
256 ul#graphnodes li, ul#nodebgs li {
257 ul#graphnodes li, ul#nodebgs li {
257 height: 39px;
258 height: 39px;
258 }
259 }
259
260
260 ul#graphnodes li .info {
261 ul#graphnodes li .info {
261 display: block;
262 display: block;
262 font-size: 70%;
263 font-size: 70%;
263 position: relative;
264 position: relative;
264 top: -3px;
265 top: -3px;
265 }
266 }
@@ -1,254 +1,255 b''
1 body {
1 body {
2 margin: 0;
2 margin: 0;
3 padding: 0;
3 padding: 0;
4 background: white;
4 background: white;
5 font-family: sans-serif;
5 font-family: sans-serif;
6 }
6 }
7
7
8 .container {
8 .container {
9 padding-left: 115px;
9 padding-left: 115px;
10 }
10 }
11
11
12 .main {
12 .main {
13 position: relative;
13 position: relative;
14 background: white;
14 background: white;
15 padding: 2em 2em 2em 0;
15 padding: 2em 2em 2em 0;
16 }
16 }
17
17
18 #.main {
18 #.main {
19 width: 98%;
19 width: 98%;
20 }
20 }
21
21
22 .overflow {
22 .overflow {
23 width: 100%;
23 width: 100%;
24 overflow: auto;
24 overflow: auto;
25 }
25 }
26
26
27 .menu {
27 .menu {
28 width: 90px;
28 width: 90px;
29 margin: 0;
29 margin: 0;
30 font-size: 80%;
30 font-size: 80%;
31 text-align: left;
31 text-align: left;
32 position: absolute;
32 position: absolute;
33 top: 20px;
33 top: 20px;
34 left: 20px;
34 left: 20px;
35 right: auto;
35 right: auto;
36 }
36 }
37
37
38 .menu ul {
38 .menu ul {
39 list-style: none;
39 list-style: none;
40 padding: 0;
40 padding: 0;
41 margin: 10px 0 0 0;
41 margin: 10px 0 0 0;
42 border-left: 2px solid #999;
42 border-left: 2px solid #999;
43 }
43 }
44
44
45 .menu li {
45 .menu li {
46 margin-bottom: 3px;
46 margin-bottom: 3px;
47 padding: 2px 4px;
47 padding: 2px 4px;
48 background: white;
48 background: white;
49 color: black;
49 color: black;
50 font-weight: normal;
50 font-weight: normal;
51 }
51 }
52
52
53 .menu li.active {
53 .menu li.active {
54 font-weight: bold;
54 font-weight: bold;
55 }
55 }
56
56
57 .menu img {
57 .menu img {
58 width: 75px;
58 width: 75px;
59 height: 90px;
59 height: 90px;
60 border: 0;
60 border: 0;
61 }
61 }
62
62
63 .menu a { color: black; display: block; }
63 .menu a { color: black; display: block; }
64
64
65 .search {
65 .search {
66 position: absolute;
66 position: absolute;
67 top: .7em;
67 top: .7em;
68 right: 2em;
68 right: 2em;
69 }
69 }
70
70
71 form.search div#hint {
71 form.search div#hint {
72 display: none;
72 display: none;
73 position: absolute;
73 position: absolute;
74 top: 40px;
74 top: 40px;
75 right: 0px;
75 right: 0px;
76 width: 190px;
76 width: 190px;
77 padding: 5px;
77 padding: 5px;
78 background: #ffc;
78 background: #ffc;
79 font-size: 70%;
79 font-size: 70%;
80 border: 1px solid yellow;
80 border: 1px solid yellow;
81 -moz-border-radius: 5px; /* this works only in camino/firefox */
81 -moz-border-radius: 5px; /* this works only in camino/firefox */
82 -webkit-border-radius: 5px; /* this is just for Safari */
82 -webkit-border-radius: 5px; /* this is just for Safari */
83 }
83 }
84
84
85 form.search:hover div#hint { display: block; }
85 form.search:hover div#hint { display: block; }
86
86
87 a { text-decoration:none; }
87 a { text-decoration:none; }
88 .age { white-space:nowrap; }
88 .age { white-space:nowrap; }
89 .date { white-space:nowrap; }
89 .date { white-space:nowrap; }
90 .indexlinks { white-space:nowrap; }
90 .indexlinks { white-space:nowrap; }
91 .parity0 { background-color: #f0f0f0; }
91 .parity0 { background-color: #f0f0f0; }
92 .parity1 { background-color: white; }
92 .parity1 { background-color: white; }
93 .plusline { color: green; }
93 .plusline { color: green; }
94 .minusline { color: #dc143c; } /* crimson */
94 .minusline { color: #dc143c; } /* crimson */
95 .atline { color: purple; }
95 .atline { color: purple; }
96
96
97 .navigate {
97 .navigate {
98 text-align: right;
98 text-align: right;
99 font-size: 60%;
99 font-size: 60%;
100 margin: 1em 0;
100 margin: 1em 0;
101 }
101 }
102
102
103 .tag {
103 .tag {
104 color: #999;
104 color: #999;
105 font-size: 70%;
105 font-size: 70%;
106 font-weight: normal;
106 font-weight: normal;
107 margin-left: .5em;
107 margin-left: .5em;
108 vertical-align: baseline;
108 vertical-align: baseline;
109 }
109 }
110
110
111 .branchhead {
111 .branchhead {
112 color: #000;
112 color: #000;
113 font-size: 80%;
113 font-size: 80%;
114 font-weight: normal;
114 font-weight: normal;
115 margin-left: .5em;
115 margin-left: .5em;
116 vertical-align: baseline;
116 vertical-align: baseline;
117 }
117 }
118
118
119 ul#graphnodes .branchhead {
119 ul#graphnodes .branchhead {
120 font-size: 75%;
120 font-size: 75%;
121 }
121 }
122
122
123 .branchname {
123 .branchname {
124 color: #000;
124 color: #000;
125 font-size: 60%;
125 font-size: 60%;
126 font-weight: normal;
126 font-weight: normal;
127 margin-left: .5em;
127 margin-left: .5em;
128 vertical-align: baseline;
128 vertical-align: baseline;
129 }
129 }
130
130
131 h3 .branchname {
131 h3 .branchname {
132 font-size: 80%;
132 font-size: 80%;
133 }
133 }
134
134
135 /* Common */
135 /* Common */
136 pre { margin: 0; }
136 pre { margin: 0; }
137
137
138 h2 { font-size: 120%; border-bottom: 1px solid #999; }
138 h2 { font-size: 120%; border-bottom: 1px solid #999; }
139 h2 a { color: #000; }
139 h2 a { color: #000; }
140 h3 {
140 h3 {
141 margin-top: -.7em;
141 margin-top: -.7em;
142 font-size: 100%;
142 font-size: 100%;
143 }
143 }
144
144
145 /* log and tags tables */
145 /* log and tags tables */
146 .bigtable {
146 .bigtable {
147 border-bottom: 1px solid #999;
147 border-bottom: 1px solid #999;
148 border-collapse: collapse;
148 border-collapse: collapse;
149 font-size: 90%;
149 font-size: 90%;
150 width: 100%;
150 width: 100%;
151 font-weight: normal;
151 font-weight: normal;
152 text-align: left;
152 text-align: left;
153 }
153 }
154
154
155 .bigtable td {
155 .bigtable td {
156 vertical-align: top;
156 vertical-align: top;
157 }
157 }
158
158
159 .bigtable th {
159 .bigtable th {
160 padding: 1px 4px;
160 padding: 1px 4px;
161 border-bottom: 1px solid #999;
161 border-bottom: 1px solid #999;
162 }
162 }
163 .bigtable tr { border: none; }
163 .bigtable tr { border: none; }
164 .bigtable .age { width: 7em; }
164 .bigtable .age { width: 7em; }
165 .bigtable .author { width: 12em; }
165 .bigtable .author { width: 12em; }
166 .bigtable .description { }
166 .bigtable .description { }
167 .bigtable .description .base { font-size: 70%; float: right; line-height: 1.66; }
167 .bigtable .node { width: 5em; font-family: monospace;}
168 .bigtable .node { width: 5em; font-family: monospace;}
168 .bigtable .permissions { width: 8em; text-align: left;}
169 .bigtable .permissions { width: 8em; text-align: left;}
169 .bigtable .size { width: 5em; text-align: right; }
170 .bigtable .size { width: 5em; text-align: right; }
170 .bigtable .annotate { text-align: right; }
171 .bigtable .annotate { text-align: right; }
171 .bigtable td.annotate { font-size: smaller; }
172 .bigtable td.annotate { font-size: smaller; }
172 .bigtable td.source { font-size: inherit; }
173 .bigtable td.source { font-size: inherit; }
173
174
174 .source, .sourcefirst, .sourcelast {
175 .source, .sourcefirst, .sourcelast {
175 font-family: monospace;
176 font-family: monospace;
176 white-space: pre;
177 white-space: pre;
177 padding: 1px 4px;
178 padding: 1px 4px;
178 font-size: 90%;
179 font-size: 90%;
179 }
180 }
180 .sourcefirst { border-bottom: 1px solid #999; font-weight: bold; }
181 .sourcefirst { border-bottom: 1px solid #999; font-weight: bold; }
181 .sourcelast { border-top: 1px solid #999; }
182 .sourcelast { border-top: 1px solid #999; }
182 .source a { color: #999; font-size: smaller; font-family: monospace;}
183 .source a { color: #999; font-size: smaller; font-family: monospace;}
183 .bottomline { border-bottom: 1px solid #999; }
184 .bottomline { border-bottom: 1px solid #999; }
184
185
185 .fileline { font-family: monospace; }
186 .fileline { font-family: monospace; }
186 .fileline img { border: 0; }
187 .fileline img { border: 0; }
187
188
188 .tagEntry .closed { color: #99f; }
189 .tagEntry .closed { color: #99f; }
189
190
190 /* Changeset entry */
191 /* Changeset entry */
191 #changesetEntry {
192 #changesetEntry {
192 border-collapse: collapse;
193 border-collapse: collapse;
193 font-size: 90%;
194 font-size: 90%;
194 width: 100%;
195 width: 100%;
195 margin-bottom: 1em;
196 margin-bottom: 1em;
196 }
197 }
197
198
198 #changesetEntry th {
199 #changesetEntry th {
199 padding: 1px 4px;
200 padding: 1px 4px;
200 width: 4em;
201 width: 4em;
201 text-align: right;
202 text-align: right;
202 font-weight: normal;
203 font-weight: normal;
203 color: #999;
204 color: #999;
204 margin-right: .5em;
205 margin-right: .5em;
205 vertical-align: top;
206 vertical-align: top;
206 }
207 }
207
208
208 div.description {
209 div.description {
209 border-left: 2px solid #999;
210 border-left: 2px solid #999;
210 margin: 1em 0 1em 0;
211 margin: 1em 0 1em 0;
211 padding: .3em;
212 padding: .3em;
212 }
213 }
213
214
214 /* Graph */
215 /* Graph */
215 div#wrapper {
216 div#wrapper {
216 position: relative;
217 position: relative;
217 border-top: 1px solid black;
218 border-top: 1px solid black;
218 border-bottom: 1px solid black;
219 border-bottom: 1px solid black;
219 margin: 0;
220 margin: 0;
220 padding: 0;
221 padding: 0;
221 }
222 }
222
223
223 canvas {
224 canvas {
224 position: absolute;
225 position: absolute;
225 z-index: 5;
226 z-index: 5;
226 top: -0.7em;
227 top: -0.7em;
227 margin: 0;
228 margin: 0;
228 }
229 }
229
230
230 ul#graphnodes {
231 ul#graphnodes {
231 position: absolute;
232 position: absolute;
232 z-index: 10;
233 z-index: 10;
233 top: -1.0em;
234 top: -1.0em;
234 list-style: none inside none;
235 list-style: none inside none;
235 padding: 0;
236 padding: 0;
236 }
237 }
237
238
238 ul#nodebgs {
239 ul#nodebgs {
239 list-style: none inside none;
240 list-style: none inside none;
240 padding: 0;
241 padding: 0;
241 margin: 0;
242 margin: 0;
242 top: -0.7em;
243 top: -0.7em;
243 }
244 }
244
245
245 ul#graphnodes li, ul#nodebgs li {
246 ul#graphnodes li, ul#nodebgs li {
246 height: 39px;
247 height: 39px;
247 }
248 }
248
249
249 ul#graphnodes li .info {
250 ul#graphnodes li .info {
250 display: block;
251 display: block;
251 font-size: 70%;
252 font-size: 70%;
252 position: relative;
253 position: relative;
253 top: -3px;
254 top: -3px;
254 }
255 }
General Comments 0
You need to be logged in to leave comments. Login now