author | Lars Hjemli <hjemli@gmail.com> | 2008-04-28 23:13:08 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-04-28 23:13:08 (UTC) |
commit | 905dbaef5aa33ea11d385b82de0188fee73dd655 (patch) (unidiff) | |
tree | 34712da2eef917be04b2acc5585612b65c1e49cc /ui-shared.c | |
parent | d188ed4f2905e6d10abd26c45572a0d48eb53969 (diff) | |
parent | 71adba1f1678914063fc109cf3805afde2c68f75 (diff) | |
download | cgit-905dbaef5aa33ea11d385b82de0188fee73dd655.zip cgit-905dbaef5aa33ea11d385b82de0188fee73dd655.tar.gz cgit-905dbaef5aa33ea11d385b82de0188fee73dd655.tar.bz2 |
Merge branch 'lh/about'
* lh/about:
Add 'about site' and 'about repo' pages
Prepare for 'about site' page / add 'root-readme' option to cgitrc
Make it possible for a single cmd to work both with and without a repo
Re-enable 'index-info' and add support for 'root-desc' in cgitrc
Move included header-file out of repolist table
Prepare for 'about repo' page
-rw-r--r-- | ui-shared.c | 58 |
1 files changed, 54 insertions, 4 deletions
diff --git a/ui-shared.c b/ui-shared.c index 8a804c2..d08ede9 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -1,244 +1,287 @@ | |||
1 | /* ui-shared.c: common web output functions | 1 | /* ui-shared.c: common web output functions |
2 | * | 2 | * |
3 | * Copyright (C) 2006 Lars Hjemli | 3 | * Copyright (C) 2006 Lars Hjemli |
4 | * | 4 | * |
5 | * Licensed under GNU General Public License v2 | 5 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 6 | * (see COPYING for full license text) |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | #include "cmd.h" | 10 | #include "cmd.h" |
11 | #include "html.h" | 11 | #include "html.h" |
12 | 12 | ||
13 | const char cgit_doctype[] = | 13 | const char cgit_doctype[] = |
14 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" | 14 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" |
15 | " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; | 15 | " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; |
16 | 16 | ||
17 | static char *http_date(time_t t) | 17 | static char *http_date(time_t t) |
18 | { | 18 | { |
19 | static char day[][4] = | 19 | static char day[][4] = |
20 | {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; | 20 | {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; |
21 | static char month[][4] = | 21 | static char month[][4] = |
22 | {"Jan", "Feb", "Mar", "Apr", "May", "Jun", | 22 | {"Jan", "Feb", "Mar", "Apr", "May", "Jun", |
23 | "Jul", "Aug", "Sep", "Oct", "Now", "Dec"}; | 23 | "Jul", "Aug", "Sep", "Oct", "Now", "Dec"}; |
24 | struct tm *tm = gmtime(&t); | 24 | struct tm *tm = gmtime(&t); |
25 | return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday], | 25 | return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday], |
26 | tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year, | 26 | tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year, |
27 | tm->tm_hour, tm->tm_min, tm->tm_sec); | 27 | tm->tm_hour, tm->tm_min, tm->tm_sec); |
28 | } | 28 | } |
29 | 29 | ||
30 | void cgit_print_error(char *msg) | 30 | void cgit_print_error(char *msg) |
31 | { | 31 | { |
32 | html("<div class='error'>"); | 32 | html("<div class='error'>"); |
33 | html_txt(msg); | 33 | html_txt(msg); |
34 | html("</div>\n"); | 34 | html("</div>\n"); |
35 | } | 35 | } |
36 | 36 | ||
37 | char *cgit_rooturl() | 37 | char *cgit_rooturl() |
38 | { | 38 | { |
39 | if (ctx.cfg.virtual_root) | 39 | if (ctx.cfg.virtual_root) |
40 | return fmt("%s/", ctx.cfg.virtual_root); | 40 | return fmt("%s/", ctx.cfg.virtual_root); |
41 | else | 41 | else |
42 | return ctx.cfg.script_name; | 42 | return ctx.cfg.script_name; |
43 | } | 43 | } |
44 | 44 | ||
45 | char *cgit_repourl(const char *reponame) | 45 | char *cgit_repourl(const char *reponame) |
46 | { | 46 | { |
47 | if (ctx.cfg.virtual_root) { | 47 | if (ctx.cfg.virtual_root) { |
48 | return fmt("%s/%s/", ctx.cfg.virtual_root, reponame); | 48 | return fmt("%s/%s/", ctx.cfg.virtual_root, reponame); |
49 | } else { | 49 | } else { |
50 | return fmt("?r=%s", reponame); | 50 | return fmt("?r=%s", reponame); |
51 | } | 51 | } |
52 | } | 52 | } |
53 | 53 | ||
54 | char *cgit_fileurl(const char *reponame, const char *pagename, | 54 | char *cgit_fileurl(const char *reponame, const char *pagename, |
55 | const char *filename, const char *query) | 55 | const char *filename, const char *query) |
56 | { | 56 | { |
57 | char *tmp; | 57 | char *tmp; |
58 | char *delim; | 58 | char *delim; |
59 | 59 | ||
60 | if (ctx.cfg.virtual_root) { | 60 | if (ctx.cfg.virtual_root) { |
61 | tmp = fmt("%s/%s/%s/%s", ctx.cfg.virtual_root, reponame, | 61 | tmp = fmt("%s/%s/%s/%s", ctx.cfg.virtual_root, reponame, |
62 | pagename, (filename ? filename:"")); | 62 | pagename, (filename ? filename:"")); |
63 | delim = "?"; | 63 | delim = "?"; |
64 | } else { | 64 | } else { |
65 | tmp = fmt("?url=%s/%s/%s", reponame, pagename, | 65 | tmp = fmt("?url=%s/%s/%s", reponame, pagename, |
66 | (filename ? filename : "")); | 66 | (filename ? filename : "")); |
67 | delim = "&"; | 67 | delim = "&"; |
68 | } | 68 | } |
69 | if (query) | 69 | if (query) |
70 | tmp = fmt("%s%s%s", tmp, delim, query); | 70 | tmp = fmt("%s%s%s", tmp, delim, query); |
71 | return tmp; | 71 | return tmp; |
72 | } | 72 | } |
73 | 73 | ||
74 | char *cgit_pageurl(const char *reponame, const char *pagename, | 74 | char *cgit_pageurl(const char *reponame, const char *pagename, |
75 | const char *query) | 75 | const char *query) |
76 | { | 76 | { |
77 | return cgit_fileurl(reponame,pagename,0,query); | 77 | return cgit_fileurl(reponame,pagename,0,query); |
78 | } | 78 | } |
79 | 79 | ||
80 | const char *cgit_repobasename(const char *reponame) | 80 | const char *cgit_repobasename(const char *reponame) |
81 | { | 81 | { |
82 | /* I assume we don't need to store more than one repo basename */ | 82 | /* I assume we don't need to store more than one repo basename */ |
83 | static char rvbuf[1024]; | 83 | static char rvbuf[1024]; |
84 | int p; | 84 | int p; |
85 | const char *rv; | 85 | const char *rv; |
86 | strncpy(rvbuf,reponame,sizeof(rvbuf)); | 86 | strncpy(rvbuf,reponame,sizeof(rvbuf)); |
87 | if(rvbuf[sizeof(rvbuf)-1]) | 87 | if(rvbuf[sizeof(rvbuf)-1]) |
88 | die("cgit_repobasename: truncated repository name '%s'", reponame); | 88 | die("cgit_repobasename: truncated repository name '%s'", reponame); |
89 | p = strlen(rvbuf)-1; | 89 | p = strlen(rvbuf)-1; |
90 | /* strip trailing slashes */ | 90 | /* strip trailing slashes */ |
91 | while(p && rvbuf[p]=='/') rvbuf[p--]=0; | 91 | while(p && rvbuf[p]=='/') rvbuf[p--]=0; |
92 | /* strip trailing .git */ | 92 | /* strip trailing .git */ |
93 | if(p>=3 && !strncmp(&rvbuf[p-3],".git",4)) { | 93 | if(p>=3 && !strncmp(&rvbuf[p-3],".git",4)) { |
94 | p -= 3; rvbuf[p--] = 0; | 94 | p -= 3; rvbuf[p--] = 0; |
95 | } | 95 | } |
96 | /* strip more trailing slashes if any */ | 96 | /* strip more trailing slashes if any */ |
97 | while( p && rvbuf[p]=='/') rvbuf[p--]=0; | 97 | while( p && rvbuf[p]=='/') rvbuf[p--]=0; |
98 | /* find last slash in the remaining string */ | 98 | /* find last slash in the remaining string */ |
99 | rv = strrchr(rvbuf,'/'); | 99 | rv = strrchr(rvbuf,'/'); |
100 | if(rv) | 100 | if(rv) |
101 | return ++rv; | 101 | return ++rv; |
102 | return rvbuf; | 102 | return rvbuf; |
103 | } | 103 | } |
104 | 104 | ||
105 | char *cgit_currurl() | 105 | char *cgit_currurl() |
106 | { | 106 | { |
107 | if (!ctx.cfg.virtual_root) | 107 | if (!ctx.cfg.virtual_root) |
108 | return ctx.cfg.script_name; | 108 | return ctx.cfg.script_name; |
109 | else if (ctx.qry.page) | 109 | else if (ctx.qry.page) |
110 | return fmt("%s/%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo, ctx.qry.page); | 110 | return fmt("%s/%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo, ctx.qry.page); |
111 | else if (ctx.qry.repo) | 111 | else if (ctx.qry.repo) |
112 | return fmt("%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo); | 112 | return fmt("%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo); |
113 | else | 113 | else |
114 | return fmt("%s/", ctx.cfg.virtual_root); | 114 | return fmt("%s/", ctx.cfg.virtual_root); |
115 | } | 115 | } |
116 | 116 | ||
117 | static void site_url(char *page, char *search) | ||
118 | { | ||
119 | char *delim = "?"; | ||
120 | |||
121 | if (ctx.cfg.virtual_root) { | ||
122 | html_attr(ctx.cfg.virtual_root); | ||
123 | if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') | ||
124 | html("/"); | ||
125 | } else | ||
126 | html(ctx.cfg.script_name); | ||
127 | |||
128 | if (page) { | ||
129 | htmlf("?p=%s", page); | ||
130 | delim = "&"; | ||
131 | } | ||
132 | if (search) { | ||
133 | html(delim); | ||
134 | html("q="); | ||
135 | html_attr(search); | ||
136 | } | ||
137 | } | ||
138 | |||
139 | static void site_link(char *page, char *name, char *title, char *class, | ||
140 | char *search) | ||
141 | { | ||
142 | html("<a"); | ||
143 | if (title) { | ||
144 | html(" title='"); | ||
145 | html_attr(title); | ||
146 | html("'"); | ||
147 | } | ||
148 | if (class) { | ||
149 | html(" class='"); | ||
150 | html_attr(class); | ||
151 | html("'"); | ||
152 | } | ||
153 | html(" href='"); | ||
154 | site_url(page, search); | ||
155 | html("'>"); | ||
156 | html_txt(name); | ||
157 | html("</a>"); | ||
158 | } | ||
159 | |||
117 | static char *repolink(char *title, char *class, char *page, char *head, | 160 | static char *repolink(char *title, char *class, char *page, char *head, |
118 | char *path) | 161 | char *path) |
119 | { | 162 | { |
120 | char *delim = "?"; | 163 | char *delim = "?"; |
121 | 164 | ||
122 | html("<a"); | 165 | html("<a"); |
123 | if (title) { | 166 | if (title) { |
124 | html(" title='"); | 167 | html(" title='"); |
125 | html_attr(title); | 168 | html_attr(title); |
126 | html("'"); | 169 | html("'"); |
127 | } | 170 | } |
128 | if (class) { | 171 | if (class) { |
129 | html(" class='"); | 172 | html(" class='"); |
130 | html_attr(class); | 173 | html_attr(class); |
131 | html("'"); | 174 | html("'"); |
132 | } | 175 | } |
133 | html(" href='"); | 176 | html(" href='"); |
134 | if (ctx.cfg.virtual_root) { | 177 | if (ctx.cfg.virtual_root) { |
135 | html_attr(ctx.cfg.virtual_root); | 178 | html_attr(ctx.cfg.virtual_root); |
136 | if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') | 179 | if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') |
137 | html("/"); | 180 | html("/"); |
138 | html_attr(ctx.repo->url); | 181 | html_attr(ctx.repo->url); |
139 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') | 182 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') |
140 | html("/"); | 183 | html("/"); |
141 | if (page) { | 184 | if (page) { |
142 | html(page); | 185 | html(page); |
143 | html("/"); | 186 | html("/"); |
144 | if (path) | 187 | if (path) |
145 | html_attr(path); | 188 | html_attr(path); |
146 | } | 189 | } |
147 | } else { | 190 | } else { |
148 | html(ctx.cfg.script_name); | 191 | html(ctx.cfg.script_name); |
149 | html("?url="); | 192 | html("?url="); |
150 | html_attr(ctx.repo->url); | 193 | html_attr(ctx.repo->url); |
151 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') | 194 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') |
152 | html("/"); | 195 | html("/"); |
153 | if (page) { | 196 | if (page) { |
154 | html(page); | 197 | html(page); |
155 | html("/"); | 198 | html("/"); |
156 | if (path) | 199 | if (path) |
157 | html_attr(path); | 200 | html_attr(path); |
158 | } | 201 | } |
159 | delim = "&"; | 202 | delim = "&"; |
160 | } | 203 | } |
161 | if (head && strcmp(head, ctx.repo->defbranch)) { | 204 | if (head && strcmp(head, ctx.repo->defbranch)) { |
162 | html(delim); | 205 | html(delim); |
163 | html("h="); | 206 | html("h="); |
164 | html_attr(head); | 207 | html_attr(head); |
165 | delim = "&"; | 208 | delim = "&"; |
166 | } | 209 | } |
167 | return fmt("%s", delim); | 210 | return fmt("%s", delim); |
168 | } | 211 | } |
169 | 212 | ||
170 | static void reporevlink(char *page, char *name, char *title, char *class, | 213 | static void reporevlink(char *page, char *name, char *title, char *class, |
171 | char *head, char *rev, char *path) | 214 | char *head, char *rev, char *path) |
172 | { | 215 | { |
173 | char *delim; | 216 | char *delim; |
174 | 217 | ||
175 | delim = repolink(title, class, page, head, path); | 218 | delim = repolink(title, class, page, head, path); |
176 | if (rev && strcmp(rev, ctx.qry.head)) { | 219 | if (rev && strcmp(rev, ctx.qry.head)) { |
177 | html(delim); | 220 | html(delim); |
178 | html("id="); | 221 | html("id="); |
179 | html_attr(rev); | 222 | html_attr(rev); |
180 | } | 223 | } |
181 | html("'>"); | 224 | html("'>"); |
182 | html_txt(name); | 225 | html_txt(name); |
183 | html("</a>"); | 226 | html("</a>"); |
184 | } | 227 | } |
185 | 228 | ||
186 | void cgit_tree_link(char *name, char *title, char *class, char *head, | 229 | void cgit_tree_link(char *name, char *title, char *class, char *head, |
187 | char *rev, char *path) | 230 | char *rev, char *path) |
188 | { | 231 | { |
189 | reporevlink("tree", name, title, class, head, rev, path); | 232 | reporevlink("tree", name, title, class, head, rev, path); |
190 | } | 233 | } |
191 | 234 | ||
192 | void cgit_log_link(char *name, char *title, char *class, char *head, | 235 | void cgit_log_link(char *name, char *title, char *class, char *head, |
193 | char *rev, char *path, int ofs, char *grep, char *pattern) | 236 | char *rev, char *path, int ofs, char *grep, char *pattern) |
194 | { | 237 | { |
195 | char *delim; | 238 | char *delim; |
196 | 239 | ||
197 | delim = repolink(title, class, "log", head, path); | 240 | delim = repolink(title, class, "log", head, path); |
198 | if (rev && strcmp(rev, ctx.qry.head)) { | 241 | if (rev && strcmp(rev, ctx.qry.head)) { |
199 | html(delim); | 242 | html(delim); |
200 | html("id="); | 243 | html("id="); |
201 | html_attr(rev); | 244 | html_attr(rev); |
202 | delim = "&"; | 245 | delim = "&"; |
203 | } | 246 | } |
204 | if (grep && pattern) { | 247 | if (grep && pattern) { |
205 | html(delim); | 248 | html(delim); |
206 | html("qt="); | 249 | html("qt="); |
207 | html_attr(grep); | 250 | html_attr(grep); |
208 | delim = "&"; | 251 | delim = "&"; |
209 | html(delim); | 252 | html(delim); |
210 | html("q="); | 253 | html("q="); |
211 | html_attr(pattern); | 254 | html_attr(pattern); |
212 | } | 255 | } |
213 | if (ofs > 0) { | 256 | if (ofs > 0) { |
214 | html(delim); | 257 | html(delim); |
215 | html("ofs="); | 258 | html("ofs="); |
216 | htmlf("%d", ofs); | 259 | htmlf("%d", ofs); |
217 | } | 260 | } |
218 | html("'>"); | 261 | html("'>"); |
219 | html_txt(name); | 262 | html_txt(name); |
220 | html("</a>"); | 263 | html("</a>"); |
221 | } | 264 | } |
222 | 265 | ||
223 | void cgit_commit_link(char *name, char *title, char *class, char *head, | 266 | void cgit_commit_link(char *name, char *title, char *class, char *head, |
224 | char *rev) | 267 | char *rev) |
225 | { | 268 | { |
226 | if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) { | 269 | if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) { |
227 | name[ctx.cfg.max_msg_len] = '\0'; | 270 | name[ctx.cfg.max_msg_len] = '\0'; |
228 | name[ctx.cfg.max_msg_len - 1] = '.'; | 271 | name[ctx.cfg.max_msg_len - 1] = '.'; |
229 | name[ctx.cfg.max_msg_len - 2] = '.'; | 272 | name[ctx.cfg.max_msg_len - 2] = '.'; |
230 | name[ctx.cfg.max_msg_len - 3] = '.'; | 273 | name[ctx.cfg.max_msg_len - 3] = '.'; |
231 | } | 274 | } |
232 | reporevlink("commit", name, title, class, head, rev, NULL); | 275 | reporevlink("commit", name, title, class, head, rev, NULL); |
233 | } | 276 | } |
234 | 277 | ||
235 | void cgit_refs_link(char *name, char *title, char *class, char *head, | 278 | void cgit_refs_link(char *name, char *title, char *class, char *head, |
236 | char *rev, char *path) | 279 | char *rev, char *path) |
237 | { | 280 | { |
238 | reporevlink("refs", name, title, class, head, rev, path); | 281 | reporevlink("refs", name, title, class, head, rev, path); |
239 | } | 282 | } |
240 | 283 | ||
241 | void cgit_snapshot_link(char *name, char *title, char *class, char *head, | 284 | void cgit_snapshot_link(char *name, char *title, char *class, char *head, |
242 | char *rev, char *archivename) | 285 | char *rev, char *archivename) |
243 | { | 286 | { |
244 | reporevlink("snapshot", name, title, class, head, rev, archivename); | 287 | reporevlink("snapshot", name, title, class, head, rev, archivename); |
@@ -385,212 +428,219 @@ void cgit_print_docstart(struct cgit_context *ctx) | |||
385 | html("'/>\n"); | 428 | html("'/>\n"); |
386 | html("</head>\n"); | 429 | html("</head>\n"); |
387 | html("<body>\n"); | 430 | html("<body>\n"); |
388 | } | 431 | } |
389 | 432 | ||
390 | void cgit_print_docend() | 433 | void cgit_print_docend() |
391 | { | 434 | { |
392 | html("</div>\n</body>\n</html>\n"); | 435 | html("</div>\n</body>\n</html>\n"); |
393 | } | 436 | } |
394 | 437 | ||
395 | int print_branch_option(const char *refname, const unsigned char *sha1, | 438 | int print_branch_option(const char *refname, const unsigned char *sha1, |
396 | int flags, void *cb_data) | 439 | int flags, void *cb_data) |
397 | { | 440 | { |
398 | char *name = (char *)refname; | 441 | char *name = (char *)refname; |
399 | html_option(name, name, ctx.qry.head); | 442 | html_option(name, name, ctx.qry.head); |
400 | return 0; | 443 | return 0; |
401 | } | 444 | } |
402 | 445 | ||
403 | int print_archive_ref(const char *refname, const unsigned char *sha1, | 446 | int print_archive_ref(const char *refname, const unsigned char *sha1, |
404 | int flags, void *cb_data) | 447 | int flags, void *cb_data) |
405 | { | 448 | { |
406 | struct tag *tag; | 449 | struct tag *tag; |
407 | struct taginfo *info; | 450 | struct taginfo *info; |
408 | struct object *obj; | 451 | struct object *obj; |
409 | char buf[256], *url; | 452 | char buf[256], *url; |
410 | unsigned char fileid[20]; | 453 | unsigned char fileid[20]; |
411 | int *header = (int *)cb_data; | 454 | int *header = (int *)cb_data; |
412 | 455 | ||
413 | if (prefixcmp(refname, "refs/archives")) | 456 | if (prefixcmp(refname, "refs/archives")) |
414 | return 0; | 457 | return 0; |
415 | strncpy(buf, refname+14, sizeof(buf)); | 458 | strncpy(buf, refname+14, sizeof(buf)); |
416 | obj = parse_object(sha1); | 459 | obj = parse_object(sha1); |
417 | if (!obj) | 460 | if (!obj) |
418 | return 1; | 461 | return 1; |
419 | if (obj->type == OBJ_TAG) { | 462 | if (obj->type == OBJ_TAG) { |
420 | tag = lookup_tag(sha1); | 463 | tag = lookup_tag(sha1); |
421 | if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) | 464 | if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) |
422 | return 0; | 465 | return 0; |
423 | hashcpy(fileid, tag->tagged->sha1); | 466 | hashcpy(fileid, tag->tagged->sha1); |
424 | } else if (obj->type != OBJ_BLOB) { | 467 | } else if (obj->type != OBJ_BLOB) { |
425 | return 0; | 468 | return 0; |
426 | } else { | 469 | } else { |
427 | hashcpy(fileid, sha1); | 470 | hashcpy(fileid, sha1); |
428 | } | 471 | } |
429 | if (!*header) { | 472 | if (!*header) { |
430 | html("<h1>download</h1>\n"); | 473 | html("<h1>download</h1>\n"); |
431 | *header = 1; | 474 | *header = 1; |
432 | } | 475 | } |
433 | url = cgit_pageurl(ctx.qry.repo, "blob", | 476 | url = cgit_pageurl(ctx.qry.repo, "blob", |
434 | fmt("id=%s&path=%s", sha1_to_hex(fileid), | 477 | fmt("id=%s&path=%s", sha1_to_hex(fileid), |
435 | buf)); | 478 | buf)); |
436 | html_link_open(url, NULL, "menu"); | 479 | html_link_open(url, NULL, "menu"); |
437 | html_txt(strlpart(buf, 20)); | 480 | html_txt(strlpart(buf, 20)); |
438 | html_link_close(); | 481 | html_link_close(); |
439 | return 0; | 482 | return 0; |
440 | } | 483 | } |
441 | 484 | ||
442 | void add_hidden_formfields(int incl_head, int incl_search, char *page) | 485 | void add_hidden_formfields(int incl_head, int incl_search, char *page) |
443 | { | 486 | { |
444 | char *url; | 487 | char *url; |
445 | 488 | ||
446 | if (!ctx.cfg.virtual_root) { | 489 | if (!ctx.cfg.virtual_root) { |
447 | url = fmt("%s/%s", ctx.qry.repo, page); | 490 | url = fmt("%s/%s", ctx.qry.repo, page); |
448 | if (ctx.qry.path) | 491 | if (ctx.qry.path) |
449 | url = fmt("%s/%s", url, ctx.qry.path); | 492 | url = fmt("%s/%s", url, ctx.qry.path); |
450 | html_hidden("url", url); | 493 | html_hidden("url", url); |
451 | } | 494 | } |
452 | 495 | ||
453 | if (incl_head && strcmp(ctx.qry.head, ctx.repo->defbranch)) | 496 | if (incl_head && strcmp(ctx.qry.head, ctx.repo->defbranch)) |
454 | html_hidden("h", ctx.qry.head); | 497 | html_hidden("h", ctx.qry.head); |
455 | 498 | ||
456 | if (ctx.qry.sha1) | 499 | if (ctx.qry.sha1) |
457 | html_hidden("id", ctx.qry.sha1); | 500 | html_hidden("id", ctx.qry.sha1); |
458 | if (ctx.qry.sha2) | 501 | if (ctx.qry.sha2) |
459 | html_hidden("id2", ctx.qry.sha2); | 502 | html_hidden("id2", ctx.qry.sha2); |
460 | 503 | ||
461 | if (incl_search) { | 504 | if (incl_search) { |
462 | if (ctx.qry.grep) | 505 | if (ctx.qry.grep) |
463 | html_hidden("qt", ctx.qry.grep); | 506 | html_hidden("qt", ctx.qry.grep); |
464 | if (ctx.qry.search) | 507 | if (ctx.qry.search) |
465 | html_hidden("q", ctx.qry.search); | 508 | html_hidden("q", ctx.qry.search); |
466 | } | 509 | } |
467 | } | 510 | } |
468 | 511 | ||
469 | char *hc(struct cgit_cmd *cmd, const char *page) | 512 | char *hc(struct cgit_cmd *cmd, const char *page) |
470 | { | 513 | { |
471 | return (strcmp(cmd->name, page) ? NULL : "active"); | 514 | return (strcmp(cmd->name, page) ? NULL : "active"); |
472 | } | 515 | } |
473 | 516 | ||
474 | void cgit_print_pageheader(struct cgit_context *ctx) | 517 | void cgit_print_pageheader(struct cgit_context *ctx) |
475 | { | 518 | { |
476 | struct cgit_cmd *cmd = cgit_get_cmd(ctx); | 519 | struct cgit_cmd *cmd = cgit_get_cmd(ctx); |
477 | 520 | ||
478 | html("<table id='header'>\n"); | 521 | html("<table id='header'>\n"); |
479 | html("<tr>\n"); | 522 | html("<tr>\n"); |
480 | html("<td class='logo' rowspan='2'><a href='"); | 523 | html("<td class='logo' rowspan='2'><a href='"); |
481 | if (ctx->cfg.logo_link) | 524 | if (ctx->cfg.logo_link) |
482 | html_attr(ctx->cfg.logo_link); | 525 | html_attr(ctx->cfg.logo_link); |
483 | else | 526 | else |
484 | html_attr(cgit_rooturl()); | 527 | html_attr(cgit_rooturl()); |
485 | html("'><img src='"); | 528 | html("'><img src='"); |
486 | html_attr(ctx->cfg.logo); | 529 | html_attr(ctx->cfg.logo); |
487 | html("' alt='cgit logo'/></a></td>\n"); | 530 | html("' alt='cgit logo'/></a></td>\n"); |
488 | 531 | ||
489 | html("<td class='main'>"); | 532 | html("<td class='main'>"); |
490 | if (ctx->repo) { | 533 | if (ctx->repo) { |
491 | reporevlink(NULL, ctx->repo->name, NULL, hc(cmd, "summary"), | 534 | reporevlink(NULL, ctx->repo->name, NULL, hc(cmd, "summary"), |
492 | ctx->qry.head, NULL, NULL); | 535 | ctx->qry.head, NULL, NULL); |
493 | html(" : "); | 536 | html(" : "); |
494 | html_txt(ctx->qry.page); | 537 | html_txt(ctx->qry.page); |
495 | html("</td><td class='form'>"); | 538 | html("</td><td class='form'>"); |
496 | html("<form method='get' action=''>\n"); | 539 | html("<form method='get' action=''>\n"); |
497 | add_hidden_formfields(0, 1, ctx->qry.page); | 540 | add_hidden_formfields(0, 1, ctx->qry.page); |
498 | html("<select name='h' onchange='this.form.submit();'>\n"); | 541 | html("<select name='h' onchange='this.form.submit();'>\n"); |
499 | for_each_branch_ref(print_branch_option, ctx->qry.head); | 542 | for_each_branch_ref(print_branch_option, ctx->qry.head); |
500 | html("</select> "); | 543 | html("</select> "); |
501 | html("<input type='submit' name='' value='switch'/>"); | 544 | html("<input type='submit' name='' value='switch'/>"); |
502 | html("</form>"); | 545 | html("</form>"); |
503 | } else | 546 | } else |
504 | html_txt(ctx->cfg.root_title); | 547 | html_txt(ctx->cfg.root_title); |
505 | html("</td></tr>\n"); | 548 | html("</td></tr>\n"); |
506 | 549 | ||
507 | html("<tr><td class='sub'"); | 550 | html("<tr><td class='sub'"); |
508 | if (ctx->repo) { | 551 | if (ctx->repo) { |
509 | html(" colspan='2'>"); | 552 | html(" colspan='2'>"); |
510 | html_txt(ctx->repo->desc); | 553 | html_txt(ctx->repo->desc); |
511 | } else { | 554 | } else { |
512 | html(">"); | 555 | html(">"); |
513 | html_txt("a fast webinterface for the git dscm"); | 556 | if (ctx->cfg.root_desc) |
557 | html_txt(ctx->cfg.root_desc); | ||
558 | else if (ctx->cfg.index_info) | ||
559 | html_include(ctx->cfg.index_info); | ||
514 | } | 560 | } |
515 | html("</td></tr></table>\n"); | 561 | html("</td></tr></table>\n"); |
516 | 562 | ||
517 | html("<table class='tabs'><tr><td>\n"); | 563 | html("<table class='tabs'><tr><td>\n"); |
518 | if (ctx->repo) { | 564 | if (ctx->repo) { |
519 | reporevlink(NULL, "summary", NULL, hc(cmd, "summary"), | 565 | reporevlink(NULL, "summary", NULL, hc(cmd, "summary"), |
520 | ctx->qry.head, NULL, NULL); | 566 | ctx->qry.head, NULL, NULL); |
521 | cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head, | 567 | cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head, |
522 | ctx->qry.sha1, NULL); | 568 | ctx->qry.sha1, NULL); |
523 | cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head, | 569 | cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head, |
524 | NULL, NULL, 0, NULL, NULL); | 570 | NULL, NULL, 0, NULL, NULL); |
525 | cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head, | 571 | cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head, |
526 | ctx->qry.sha1, NULL); | 572 | ctx->qry.sha1, NULL); |
527 | cgit_commit_link("commit", NULL, hc(cmd, "commit"), | 573 | cgit_commit_link("commit", NULL, hc(cmd, "commit"), |
528 | ctx->qry.head, ctx->qry.sha1); | 574 | ctx->qry.head, ctx->qry.sha1); |
529 | cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head, | 575 | cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head, |
530 | ctx->qry.sha1, ctx->qry.sha2, NULL); | 576 | ctx->qry.sha1, ctx->qry.sha2, NULL); |
577 | if (ctx->repo->readme) | ||
578 | reporevlink("about", "about", NULL, | ||
579 | hc(cmd, "about"), ctx->qry.head, NULL, | ||
580 | NULL); | ||
531 | html("</td><td class='form'>"); | 581 | html("</td><td class='form'>"); |
532 | html("<form class='right' method='get' action='"); | 582 | html("<form class='right' method='get' action='"); |
533 | if (ctx->cfg.virtual_root) | 583 | if (ctx->cfg.virtual_root) |
534 | html_attr(cgit_fileurl(ctx->qry.repo, "log", | 584 | html_attr(cgit_fileurl(ctx->qry.repo, "log", |
535 | ctx->qry.path, NULL)); | 585 | ctx->qry.path, NULL)); |
536 | html("'>\n"); | 586 | html("'>\n"); |
537 | add_hidden_formfields(1, 0, "log"); | 587 | add_hidden_formfields(1, 0, "log"); |
538 | html("<select name='qt'>\n"); | 588 | html("<select name='qt'>\n"); |
539 | html_option("grep", "log msg", ctx->qry.grep); | 589 | html_option("grep", "log msg", ctx->qry.grep); |
540 | html_option("author", "author", ctx->qry.grep); | 590 | html_option("author", "author", ctx->qry.grep); |
541 | html_option("committer", "committer", ctx->qry.grep); | 591 | html_option("committer", "committer", ctx->qry.grep); |
542 | html("</select>\n"); | 592 | html("</select>\n"); |
543 | html("<input class='txt' type='text' size='10' name='q' value='"); | 593 | html("<input class='txt' type='text' size='10' name='q' value='"); |
544 | html_attr(ctx->qry.search); | 594 | html_attr(ctx->qry.search); |
545 | html("'/>\n"); | 595 | html("'/>\n"); |
546 | html("<input type='submit' value='search'/>\n"); | 596 | html("<input type='submit' value='search'/>\n"); |
547 | html("</form>\n"); | 597 | html("</form>\n"); |
548 | } else { | 598 | } else { |
549 | html("<a class='active' href='"); | 599 | site_link(NULL, "index", NULL, hc(cmd, "repolist"), NULL); |
550 | html_attr(cgit_rooturl()); | 600 | if (ctx->cfg.root_readme) |
551 | html("'>index</a>\n"); | 601 | site_link("about", "about", NULL, hc(cmd, "about"), NULL); |
552 | html("</td><td class='form'>"); | 602 | html("</td><td class='form'>"); |
553 | html("<form method='get' action='"); | 603 | html("<form method='get' action='"); |
554 | html_attr(cgit_rooturl()); | 604 | html_attr(cgit_rooturl()); |
555 | html("'>\n"); | 605 | html("'>\n"); |
556 | html("<input type='text' name='q' size='10' value='"); | 606 | html("<input type='text' name='q' size='10' value='"); |
557 | html_attr(ctx->qry.search); | 607 | html_attr(ctx->qry.search); |
558 | html("'/>\n"); | 608 | html("'/>\n"); |
559 | html("<input type='submit' value='search'/>\n"); | 609 | html("<input type='submit' value='search'/>\n"); |
560 | html("</form>"); | 610 | html("</form>"); |
561 | } | 611 | } |
562 | html("</td></tr></table>\n"); | 612 | html("</td></tr></table>\n"); |
563 | html("<div class='content'>"); | 613 | html("<div class='content'>"); |
564 | } | 614 | } |
565 | 615 | ||
566 | void cgit_print_filemode(unsigned short mode) | 616 | void cgit_print_filemode(unsigned short mode) |
567 | { | 617 | { |
568 | if (S_ISDIR(mode)) | 618 | if (S_ISDIR(mode)) |
569 | html("d"); | 619 | html("d"); |
570 | else if (S_ISLNK(mode)) | 620 | else if (S_ISLNK(mode)) |
571 | html("l"); | 621 | html("l"); |
572 | else if (S_ISGITLINK(mode)) | 622 | else if (S_ISGITLINK(mode)) |
573 | html("m"); | 623 | html("m"); |
574 | else | 624 | else |
575 | html("-"); | 625 | html("-"); |
576 | html_fileperm(mode >> 6); | 626 | html_fileperm(mode >> 6); |
577 | html_fileperm(mode >> 3); | 627 | html_fileperm(mode >> 3); |
578 | html_fileperm(mode); | 628 | html_fileperm(mode); |
579 | } | 629 | } |
580 | 630 | ||
581 | void cgit_print_snapshot_links(const char *repo, const char *head, | 631 | void cgit_print_snapshot_links(const char *repo, const char *head, |
582 | const char *hex, int snapshots) | 632 | const char *hex, int snapshots) |
583 | { | 633 | { |
584 | const struct cgit_snapshot_format* f; | 634 | const struct cgit_snapshot_format* f; |
585 | char *filename; | 635 | char *filename; |
586 | 636 | ||
587 | for (f = cgit_snapshot_formats; f->suffix; f++) { | 637 | for (f = cgit_snapshot_formats; f->suffix; f++) { |
588 | if (!(snapshots & f->bit)) | 638 | if (!(snapshots & f->bit)) |
589 | continue; | 639 | continue; |
590 | filename = fmt("%s-%s%s", cgit_repobasename(repo), hex, | 640 | filename = fmt("%s-%s%s", cgit_repobasename(repo), hex, |
591 | f->suffix); | 641 | f->suffix); |
592 | cgit_snapshot_link(filename, NULL, NULL, (char *)head, | 642 | cgit_snapshot_link(filename, NULL, NULL, (char *)head, |
593 | (char *)hex, filename); | 643 | (char *)hex, filename); |
594 | html("<br/>"); | 644 | html("<br/>"); |
595 | } | 645 | } |
596 | } | 646 | } |