summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.c3
-rw-r--r--ui-tag.c5
2 files changed, 7 insertions, 1 deletions
diff --git a/cgit.c b/cgit.c
index 66dd140..5816f3d 100644
--- a/cgit.c
+++ b/cgit.c
@@ -132,96 +132,99 @@ void config_cb(const char *name, const char *value)
132 ctx.cfg.clone_prefix = xstrdup(value); 132 ctx.cfg.clone_prefix = xstrdup(value);
133 else if (!strcmp(name, "local-time")) 133 else if (!strcmp(name, "local-time"))
134 ctx.cfg.local_time = atoi(value); 134 ctx.cfg.local_time = atoi(value);
135 else if (!prefixcmp(name, "mimetype.")) 135 else if (!prefixcmp(name, "mimetype."))
136 add_mimetype(name + 9, value); 136 add_mimetype(name + 9, value);
137 else if (!strcmp(name, "repo.group")) 137 else if (!strcmp(name, "repo.group"))
138 ctx.cfg.repo_group = xstrdup(value); 138 ctx.cfg.repo_group = xstrdup(value);
139 else if (!strcmp(name, "repo.url")) 139 else if (!strcmp(name, "repo.url"))
140 ctx.repo = cgit_add_repo(value); 140 ctx.repo = cgit_add_repo(value);
141 else if (!strcmp(name, "repo.name")) 141 else if (!strcmp(name, "repo.name"))
142 ctx.repo->name = xstrdup(value); 142 ctx.repo->name = xstrdup(value);
143 else if (ctx.repo && !strcmp(name, "repo.path")) 143 else if (ctx.repo && !strcmp(name, "repo.path"))
144 ctx.repo->path = trim_end(value, '/'); 144 ctx.repo->path = trim_end(value, '/');
145 else if (ctx.repo && !strcmp(name, "repo.clone-url")) 145 else if (ctx.repo && !strcmp(name, "repo.clone-url"))
146 ctx.repo->clone_url = xstrdup(value); 146 ctx.repo->clone_url = xstrdup(value);
147 else if (ctx.repo && !strcmp(name, "repo.desc")) 147 else if (ctx.repo && !strcmp(name, "repo.desc"))
148 ctx.repo->desc = xstrdup(value); 148 ctx.repo->desc = xstrdup(value);
149 else if (ctx.repo && !strcmp(name, "repo.owner")) 149 else if (ctx.repo && !strcmp(name, "repo.owner"))
150 ctx.repo->owner = xstrdup(value); 150 ctx.repo->owner = xstrdup(value);
151 else if (ctx.repo && !strcmp(name, "repo.defbranch")) 151 else if (ctx.repo && !strcmp(name, "repo.defbranch"))
152 ctx.repo->defbranch = xstrdup(value); 152 ctx.repo->defbranch = xstrdup(value);
153 else if (ctx.repo && !strcmp(name, "repo.snapshots")) 153 else if (ctx.repo && !strcmp(name, "repo.snapshots"))
154 ctx.repo->snapshots = ctx.cfg.snapshots & cgit_parse_snapshots_mask(value); /* XXX: &? */ 154 ctx.repo->snapshots = ctx.cfg.snapshots & cgit_parse_snapshots_mask(value); /* XXX: &? */
155 else if (ctx.repo && !strcmp(name, "repo.enable-log-filecount")) 155 else if (ctx.repo && !strcmp(name, "repo.enable-log-filecount"))
156 ctx.repo->enable_log_filecount = ctx.cfg.enable_log_filecount * atoi(value); 156 ctx.repo->enable_log_filecount = ctx.cfg.enable_log_filecount * atoi(value);
157 else if (ctx.repo && !strcmp(name, "repo.enable-log-linecount")) 157 else if (ctx.repo && !strcmp(name, "repo.enable-log-linecount"))
158 ctx.repo->enable_log_linecount = ctx.cfg.enable_log_linecount * atoi(value); 158 ctx.repo->enable_log_linecount = ctx.cfg.enable_log_linecount * atoi(value);
159 else if (ctx.repo && !strcmp(name, "repo.max-stats")) 159 else if (ctx.repo && !strcmp(name, "repo.max-stats"))
160 ctx.repo->max_stats = cgit_find_stats_period(value, NULL); 160 ctx.repo->max_stats = cgit_find_stats_period(value, NULL);
161 else if (ctx.repo && !strcmp(name, "repo.module-link")) 161 else if (ctx.repo && !strcmp(name, "repo.module-link"))
162 ctx.repo->module_link= xstrdup(value); 162 ctx.repo->module_link= xstrdup(value);
163 else if (ctx.repo && !strcmp(name, "repo.about-filter")) 163 else if (ctx.repo && !strcmp(name, "repo.about-filter"))
164 ctx.repo->about_filter = new_filter(value, 0); 164 ctx.repo->about_filter = new_filter(value, 0);
165 else if (ctx.repo && !strcmp(name, "repo.commit-filter")) 165 else if (ctx.repo && !strcmp(name, "repo.commit-filter"))
166 ctx.repo->commit_filter = new_filter(value, 0); 166 ctx.repo->commit_filter = new_filter(value, 0);
167 else if (ctx.repo && !strcmp(name, "repo.source-filter")) 167 else if (ctx.repo && !strcmp(name, "repo.source-filter"))
168 ctx.repo->source_filter = new_filter(value, 1); 168 ctx.repo->source_filter = new_filter(value, 1);
169 else if (ctx.repo && !strcmp(name, "repo.readme") && value != NULL) { 169 else if (ctx.repo && !strcmp(name, "repo.readme") && value != NULL) {
170 if (*value == '/') 170 if (*value == '/')
171 ctx.repo->readme = xstrdup(value); 171 ctx.repo->readme = xstrdup(value);
172 else 172 else
173 ctx.repo->readme = xstrdup(fmt("%s/%s", ctx.repo->path, value)); 173 ctx.repo->readme = xstrdup(fmt("%s/%s", ctx.repo->path, value));
174 } else if (!strcmp(name, "include")) 174 } else if (!strcmp(name, "include"))
175 parse_configfile(value, config_cb); 175 parse_configfile(value, config_cb);
176} 176}
177 177
178static void querystring_cb(const char *name, const char *value) 178static void querystring_cb(const char *name, const char *value)
179{ 179{
180 if (!value)
181 value = "";
182
180 if (!strcmp(name,"r")) { 183 if (!strcmp(name,"r")) {
181 ctx.qry.repo = xstrdup(value); 184 ctx.qry.repo = xstrdup(value);
182 ctx.repo = cgit_get_repoinfo(value); 185 ctx.repo = cgit_get_repoinfo(value);
183 } else if (!strcmp(name, "p")) { 186 } else if (!strcmp(name, "p")) {
184 ctx.qry.page = xstrdup(value); 187 ctx.qry.page = xstrdup(value);
185 } else if (!strcmp(name, "url")) { 188 } else if (!strcmp(name, "url")) {
186 ctx.qry.url = xstrdup(value); 189 ctx.qry.url = xstrdup(value);
187 cgit_parse_url(value); 190 cgit_parse_url(value);
188 } else if (!strcmp(name, "qt")) { 191 } else if (!strcmp(name, "qt")) {
189 ctx.qry.grep = xstrdup(value); 192 ctx.qry.grep = xstrdup(value);
190 } else if (!strcmp(name, "q")) { 193 } else if (!strcmp(name, "q")) {
191 ctx.qry.search = xstrdup(value); 194 ctx.qry.search = xstrdup(value);
192 } else if (!strcmp(name, "h")) { 195 } else if (!strcmp(name, "h")) {
193 ctx.qry.head = xstrdup(value); 196 ctx.qry.head = xstrdup(value);
194 ctx.qry.has_symref = 1; 197 ctx.qry.has_symref = 1;
195 } else if (!strcmp(name, "id")) { 198 } else if (!strcmp(name, "id")) {
196 ctx.qry.sha1 = xstrdup(value); 199 ctx.qry.sha1 = xstrdup(value);
197 ctx.qry.has_sha1 = 1; 200 ctx.qry.has_sha1 = 1;
198 } else if (!strcmp(name, "id2")) { 201 } else if (!strcmp(name, "id2")) {
199 ctx.qry.sha2 = xstrdup(value); 202 ctx.qry.sha2 = xstrdup(value);
200 ctx.qry.has_sha1 = 1; 203 ctx.qry.has_sha1 = 1;
201 } else if (!strcmp(name, "ofs")) { 204 } else if (!strcmp(name, "ofs")) {
202 ctx.qry.ofs = atoi(value); 205 ctx.qry.ofs = atoi(value);
203 } else if (!strcmp(name, "path")) { 206 } else if (!strcmp(name, "path")) {
204 ctx.qry.path = trim_end(value, '/'); 207 ctx.qry.path = trim_end(value, '/');
205 } else if (!strcmp(name, "name")) { 208 } else if (!strcmp(name, "name")) {
206 ctx.qry.name = xstrdup(value); 209 ctx.qry.name = xstrdup(value);
207 } else if (!strcmp(name, "mimetype")) { 210 } else if (!strcmp(name, "mimetype")) {
208 ctx.qry.mimetype = xstrdup(value); 211 ctx.qry.mimetype = xstrdup(value);
209 } else if (!strcmp(name, "s")){ 212 } else if (!strcmp(name, "s")){
210 ctx.qry.sort = xstrdup(value); 213 ctx.qry.sort = xstrdup(value);
211 } else if (!strcmp(name, "showmsg")) { 214 } else if (!strcmp(name, "showmsg")) {
212 ctx.qry.showmsg = atoi(value); 215 ctx.qry.showmsg = atoi(value);
213 } else if (!strcmp(name, "period")) { 216 } else if (!strcmp(name, "period")) {
214 ctx.qry.period = xstrdup(value); 217 ctx.qry.period = xstrdup(value);
215 } 218 }
216} 219}
217 220
218char *xstrdupn(const char *str) 221char *xstrdupn(const char *str)
219{ 222{
220 return (str ? xstrdup(str) : NULL); 223 return (str ? xstrdup(str) : NULL);
221} 224}
222 225
223static void prepare_context(struct cgit_context *ctx) 226static void prepare_context(struct cgit_context *ctx)
224{ 227{
225 memset(ctx, 0, sizeof(ctx)); 228 memset(ctx, 0, sizeof(ctx));
226 ctx->cfg.agefile = "info/web/last-modified"; 229 ctx->cfg.agefile = "info/web/last-modified";
227 ctx->cfg.nocache = 0; 230 ctx->cfg.nocache = 0;
diff --git a/ui-tag.c b/ui-tag.c
index a9c8670..c2d72af 100644
--- a/ui-tag.c
+++ b/ui-tag.c
@@ -1,88 +1,91 @@
1/* ui-tag.c: display a tag 1/* ui-tag.c: display a tag
2 * 2 *
3 * Copyright (C) 2007 Lars Hjemli 3 * Copyright (C) 2007 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 "html.h" 10#include "html.h"
11#include "ui-shared.h" 11#include "ui-shared.h"
12 12
13static void print_tag_content(char *buf) 13static void print_tag_content(char *buf)
14{ 14{
15 char *p; 15 char *p;
16 16
17 if (!buf) 17 if (!buf)
18 return; 18 return;
19 19
20 html("<div class='commit-subject'>"); 20 html("<div class='commit-subject'>");
21 p = strchr(buf, '\n'); 21 p = strchr(buf, '\n');
22 if (p) 22 if (p)
23 *p = '\0'; 23 *p = '\0';
24 html_txt(buf); 24 html_txt(buf);
25 html("</div>"); 25 html("</div>");
26 if (p) { 26 if (p) {
27 html("<div class='commit-msg'>"); 27 html("<div class='commit-msg'>");
28 html_txt(++p); 28 html_txt(++p);
29 html("</div>"); 29 html("</div>");
30 } 30 }
31} 31}
32 32
33void cgit_print_tag(char *revname) 33void cgit_print_tag(char *revname)
34{ 34{
35 unsigned char sha1[20]; 35 unsigned char sha1[20];
36 struct object *obj; 36 struct object *obj;
37 struct tag *tag; 37 struct tag *tag;
38 struct taginfo *info; 38 struct taginfo *info;
39 39
40 if (get_sha1(revname, sha1)) { 40 if (!revname)
41 revname = ctx.qry.head;
42
43 if (get_sha1(fmt("refs/tags/%s", revname), sha1)) {
41 cgit_print_error(fmt("Bad tag reference: %s", revname)); 44 cgit_print_error(fmt("Bad tag reference: %s", revname));
42 return; 45 return;
43 } 46 }
44 obj = parse_object(sha1); 47 obj = parse_object(sha1);
45 if (!obj) { 48 if (!obj) {
46 cgit_print_error(fmt("Bad object id: %s", sha1_to_hex(sha1))); 49 cgit_print_error(fmt("Bad object id: %s", sha1_to_hex(sha1)));
47 return; 50 return;
48 } 51 }
49 if (obj->type == OBJ_TAG) { 52 if (obj->type == OBJ_TAG) {
50 tag = lookup_tag(sha1); 53 tag = lookup_tag(sha1);
51 if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) { 54 if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) {
52 cgit_print_error(fmt("Bad tag object: %s", revname)); 55 cgit_print_error(fmt("Bad tag object: %s", revname));
53 return; 56 return;
54 } 57 }
55 html("<table class='commit-info'>\n"); 58 html("<table class='commit-info'>\n");
56 htmlf("<tr><td>Tag name</td><td>"); 59 htmlf("<tr><td>Tag name</td><td>");
57 html_txt(revname); 60 html_txt(revname);
58 htmlf(" (%s)</td></tr>\n", sha1_to_hex(sha1)); 61 htmlf(" (%s)</td></tr>\n", sha1_to_hex(sha1));
59 if (info->tagger_date > 0) { 62 if (info->tagger_date > 0) {
60 html("<tr><td>Tag date</td><td>"); 63 html("<tr><td>Tag date</td><td>");
61 cgit_print_date(info->tagger_date, FMT_LONGDATE, ctx.cfg.local_time); 64 cgit_print_date(info->tagger_date, FMT_LONGDATE, ctx.cfg.local_time);
62 html("</td></tr>\n"); 65 html("</td></tr>\n");
63 } 66 }
64 if (info->tagger) { 67 if (info->tagger) {
65 html("<tr><td>Tagged by</td><td>"); 68 html("<tr><td>Tagged by</td><td>");
66 html_txt(info->tagger); 69 html_txt(info->tagger);
67 if (info->tagger_email && !ctx.cfg.noplainemail) { 70 if (info->tagger_email && !ctx.cfg.noplainemail) {
68 html(" "); 71 html(" ");
69 html_txt(info->tagger_email); 72 html_txt(info->tagger_email);
70 } 73 }
71 html("</td></tr>\n"); 74 html("</td></tr>\n");
72 } 75 }
73 html("<tr><td>Tagged object</td><td>"); 76 html("<tr><td>Tagged object</td><td>");
74 cgit_object_link(tag->tagged); 77 cgit_object_link(tag->tagged);
75 html("</td></tr>\n"); 78 html("</td></tr>\n");
76 html("</table>\n"); 79 html("</table>\n");
77 print_tag_content(info->msg); 80 print_tag_content(info->msg);
78 } else { 81 } else {
79 html("<table class='commit-info'>\n"); 82 html("<table class='commit-info'>\n");
80 htmlf("<tr><td>Tag name</td><td>"); 83 htmlf("<tr><td>Tag name</td><td>");
81 html_txt(revname); 84 html_txt(revname);
82 html("</td></tr>\n"); 85 html("</td></tr>\n");
83 html("<tr><td>Tagged object</td><td>"); 86 html("<tr><td>Tagged object</td><td>");
84 cgit_object_link(obj); 87 cgit_object_link(obj);
85 html("</td></tr>\n"); 88 html("</td></tr>\n");
86 html("</table>\n"); 89 html("</table>\n");
87 } 90 }
88 return; 91 return;