author | Lars Hjemli <hjemli@gmail.com> | 2008-10-05 11:13:33 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-10-05 11:13:33 (UTC) |
commit | 20c895f6889a66d7cf43c67a7c22df6ef324ed5d (patch) (unidiff) | |
tree | 4fc0c044fa0919cab562b371191add67114d07a9 /ui-shared.c | |
parent | 204669ff4a4028a82cc48e9319632595ba3ff703 (diff) | |
parent | b575115d9d93e45cdbcd5d066cc445d34639ae6a (diff) | |
download | cgit-20c895f6889a66d7cf43c67a7c22df6ef324ed5d.zip cgit-20c895f6889a66d7cf43c67a7c22df6ef324ed5d.tar.gz cgit-20c895f6889a66d7cf43c67a7c22df6ef324ed5d.tar.bz2 |
Merge branch 'lh/escape-urls'
* lh/escape-urls:
ui-shared.c: use html_url_arg()
html.c: add html_url_arg
-rw-r--r-- | ui-shared.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ui-shared.c b/ui-shared.c index c23bc75..a2f636c 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -208,100 +208,100 @@ static char *repolink(char *title, char *class, char *page, char *head, | |||
208 | if (ctx.cfg.virtual_root) { | 208 | if (ctx.cfg.virtual_root) { |
209 | html_attr(ctx.cfg.virtual_root); | 209 | html_attr(ctx.cfg.virtual_root); |
210 | if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') | 210 | if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') |
211 | html("/"); | 211 | html("/"); |
212 | html_attr(ctx.repo->url); | 212 | html_attr(ctx.repo->url); |
213 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') | 213 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') |
214 | html("/"); | 214 | html("/"); |
215 | if (page) { | 215 | if (page) { |
216 | html(page); | 216 | html(page); |
217 | html("/"); | 217 | html("/"); |
218 | if (path) | 218 | if (path) |
219 | html_attr(path); | 219 | html_attr(path); |
220 | } | 220 | } |
221 | } else { | 221 | } else { |
222 | html(ctx.cfg.script_name); | 222 | html(ctx.cfg.script_name); |
223 | html("?url="); | 223 | html("?url="); |
224 | html_attr(ctx.repo->url); | 224 | html_url_arg(ctx.repo->url); |
225 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') | 225 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') |
226 | html("/"); | 226 | html("/"); |
227 | if (page) { | 227 | if (page) { |
228 | html(page); | 228 | html_url_arg(page); |
229 | html("/"); | 229 | html("/"); |
230 | if (path) | 230 | if (path) |
231 | html_attr(path); | 231 | html_url_arg(path); |
232 | } | 232 | } |
233 | delim = "&"; | 233 | delim = "&"; |
234 | } | 234 | } |
235 | if (head && strcmp(head, ctx.repo->defbranch)) { | 235 | if (head && strcmp(head, ctx.repo->defbranch)) { |
236 | html(delim); | 236 | html(delim); |
237 | html("h="); | 237 | html("h="); |
238 | html_attr(head); | 238 | html_url_arg(head); |
239 | delim = "&"; | 239 | delim = "&"; |
240 | } | 240 | } |
241 | return fmt("%s", delim); | 241 | return fmt("%s", delim); |
242 | } | 242 | } |
243 | 243 | ||
244 | static void reporevlink(char *page, char *name, char *title, char *class, | 244 | static void reporevlink(char *page, char *name, char *title, char *class, |
245 | char *head, char *rev, char *path) | 245 | char *head, char *rev, char *path) |
246 | { | 246 | { |
247 | char *delim; | 247 | char *delim; |
248 | 248 | ||
249 | delim = repolink(title, class, page, head, path); | 249 | delim = repolink(title, class, page, head, path); |
250 | if (rev && strcmp(rev, ctx.qry.head)) { | 250 | if (rev && strcmp(rev, ctx.qry.head)) { |
251 | html(delim); | 251 | html(delim); |
252 | html("id="); | 252 | html("id="); |
253 | html_attr(rev); | 253 | html_url_arg(rev); |
254 | } | 254 | } |
255 | html("'>"); | 255 | html("'>"); |
256 | html_txt(name); | 256 | html_txt(name); |
257 | html("</a>"); | 257 | html("</a>"); |
258 | } | 258 | } |
259 | 259 | ||
260 | void cgit_tree_link(char *name, char *title, char *class, char *head, | 260 | void cgit_tree_link(char *name, char *title, char *class, char *head, |
261 | char *rev, char *path) | 261 | char *rev, char *path) |
262 | { | 262 | { |
263 | reporevlink("tree", name, title, class, head, rev, path); | 263 | reporevlink("tree", name, title, class, head, rev, path); |
264 | } | 264 | } |
265 | 265 | ||
266 | void cgit_plain_link(char *name, char *title, char *class, char *head, | 266 | void cgit_plain_link(char *name, char *title, char *class, char *head, |
267 | char *rev, char *path) | 267 | char *rev, char *path) |
268 | { | 268 | { |
269 | reporevlink("plain", name, title, class, head, rev, path); | 269 | reporevlink("plain", name, title, class, head, rev, path); |
270 | } | 270 | } |
271 | 271 | ||
272 | void cgit_log_link(char *name, char *title, char *class, char *head, | 272 | void cgit_log_link(char *name, char *title, char *class, char *head, |
273 | char *rev, char *path, int ofs, char *grep, char *pattern) | 273 | char *rev, char *path, int ofs, char *grep, char *pattern) |
274 | { | 274 | { |
275 | char *delim; | 275 | char *delim; |
276 | 276 | ||
277 | delim = repolink(title, class, "log", head, path); | 277 | delim = repolink(title, class, "log", head, path); |
278 | if (rev && strcmp(rev, ctx.qry.head)) { | 278 | if (rev && strcmp(rev, ctx.qry.head)) { |
279 | html(delim); | 279 | html(delim); |
280 | html("id="); | 280 | html("id="); |
281 | html_attr(rev); | 281 | html_url_arg(rev); |
282 | delim = "&"; | 282 | delim = "&"; |
283 | } | 283 | } |
284 | if (grep && pattern) { | 284 | if (grep && pattern) { |
285 | html(delim); | 285 | html(delim); |
286 | html("qt="); | 286 | html("qt="); |
287 | html_attr(grep); | 287 | html_url_arg(grep); |
288 | delim = "&"; | 288 | delim = "&"; |
289 | html(delim); | 289 | html(delim); |
290 | html("q="); | 290 | html("q="); |
291 | html_attr(pattern); | 291 | html_url_arg(pattern); |
292 | } | 292 | } |
293 | if (ofs > 0) { | 293 | if (ofs > 0) { |
294 | html(delim); | 294 | html(delim); |
295 | html("ofs="); | 295 | html("ofs="); |
296 | htmlf("%d", ofs); | 296 | htmlf("%d", ofs); |
297 | } | 297 | } |
298 | html("'>"); | 298 | html("'>"); |
299 | html_txt(name); | 299 | html_txt(name); |
300 | html("</a>"); | 300 | html("</a>"); |
301 | } | 301 | } |
302 | 302 | ||
303 | void cgit_commit_link(char *name, char *title, char *class, char *head, | 303 | void cgit_commit_link(char *name, char *title, char *class, char *head, |
304 | char *rev) | 304 | char *rev) |
305 | { | 305 | { |
306 | if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) { | 306 | if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) { |
307 | name[ctx.cfg.max_msg_len] = '\0'; | 307 | name[ctx.cfg.max_msg_len] = '\0'; |
@@ -320,39 +320,39 @@ void cgit_refs_link(char *name, char *title, char *class, char *head, | |||
320 | 320 | ||
321 | void cgit_snapshot_link(char *name, char *title, char *class, char *head, | 321 | void cgit_snapshot_link(char *name, char *title, char *class, char *head, |
322 | char *rev, char *archivename) | 322 | char *rev, char *archivename) |
323 | { | 323 | { |
324 | reporevlink("snapshot", name, title, class, head, rev, archivename); | 324 | reporevlink("snapshot", name, title, class, head, rev, archivename); |
325 | } | 325 | } |
326 | 326 | ||
327 | void cgit_diff_link(char *name, char *title, char *class, char *head, | 327 | void cgit_diff_link(char *name, char *title, char *class, char *head, |
328 | char *new_rev, char *old_rev, char *path) | 328 | char *new_rev, char *old_rev, char *path) |
329 | { | 329 | { |
330 | char *delim; | 330 | char *delim; |
331 | 331 | ||
332 | delim = repolink(title, class, "diff", head, path); | 332 | delim = repolink(title, class, "diff", head, path); |
333 | if (new_rev && strcmp(new_rev, ctx.qry.head)) { | 333 | if (new_rev && strcmp(new_rev, ctx.qry.head)) { |
334 | html(delim); | 334 | html(delim); |
335 | html("id="); | 335 | html("id="); |
336 | html_attr(new_rev); | 336 | html_url_arg(new_rev); |
337 | delim = "&"; | 337 | delim = "&"; |
338 | } | 338 | } |
339 | if (old_rev) { | 339 | if (old_rev) { |
340 | html(delim); | 340 | html(delim); |
341 | html("id2="); | 341 | html("id2="); |
342 | html_attr(old_rev); | 342 | html_url_arg(old_rev); |
343 | } | 343 | } |
344 | html("'>"); | 344 | html("'>"); |
345 | html_txt(name); | 345 | html_txt(name); |
346 | html("</a>"); | 346 | html("</a>"); |
347 | } | 347 | } |
348 | 348 | ||
349 | void cgit_patch_link(char *name, char *title, char *class, char *head, | 349 | void cgit_patch_link(char *name, char *title, char *class, char *head, |
350 | char *rev) | 350 | char *rev) |
351 | { | 351 | { |
352 | reporevlink("patch", name, title, class, head, rev, NULL); | 352 | reporevlink("patch", name, title, class, head, rev, NULL); |
353 | } | 353 | } |
354 | 354 | ||
355 | void cgit_object_link(struct object *obj) | 355 | void cgit_object_link(struct object *obj) |
356 | { | 356 | { |
357 | char *page, *arg, *url; | 357 | char *page, *arg, *url; |
358 | 358 | ||