commit - 32b9f7ede5545f25b13a16e6c8dab33462bbad8a
commit + 2796ac23f0b7cb1cf0930050c5947a67b3821906
blob - 1af7140e25acfeb1a4a028714a9c3a473ea8513f
blob + f3fffd71a8a5f8e6b9c84a183853732d654d2cb6
--- gotweb/gotweb.c
+++ gotweb/gotweb.c
if (kerr != KCGI_OK)
goto done;
- if (asprintf(&href_summary, "?path=%s&action=summary",
- gw_dir->name) == -1) {
- error = got_error_from_errno("asprintf");
- goto done;
- }
+ href_summary = khttp_urlpart(NULL, NULL, "gotweb", "path",
+ gw_dir->name, "action", "summary", NULL);
kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
"index_project", KATTR__MAX);
if (kerr != KCGI_OK)
if (kerr != KCGI_OK)
goto done;
- if (asprintf(&href_briefs, "?path=%s&action=briefs",
- gw_dir->name) == -1) {
- error = got_error_from_errno("asprintf");
- goto done;
- }
+ href_briefs = khttp_urlpart(NULL, NULL, "gotweb", "path",
+ gw_dir->name, "action", "briefs", NULL);
kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
href_briefs, KATTR__MAX);
if (kerr != KCGI_OK)
if (kerr != KCGI_OK)
goto done;
- if (asprintf(&href_commits, "?path=%s&action=commits",
- gw_dir->name) == -1) {
- error = got_error_from_errno("asprintf");
- goto done;
- }
+ href_commits = khttp_urlpart(NULL, NULL, "gotweb", "path",
+ gw_dir->name, "action", "commits", NULL);
kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
href_commits, KATTR__MAX);
if (kerr != KCGI_OK)
if (kerr != KCGI_OK)
goto done;
- if (asprintf(&href_tags, "?path=%s&action=tags",
- gw_dir->name) == -1) {
- error = got_error_from_errno("asprintf");
- goto done;
- }
+ href_tags = khttp_urlpart(NULL, NULL, "gotweb", "path",
+ gw_dir->name, "action", "tags", NULL);
kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
href_tags, KATTR__MAX);
if (kerr != KCGI_OK)
if (kerr != KCGI_OK)
goto done;
- if (asprintf(&href_tree, "?path=%s&action=tree",
- gw_dir->name) == -1) {
- error = got_error_from_errno("asprintf");
- goto done;
- }
+ href_tree = khttp_urlpart(NULL, NULL, "gotweb", "path",
+ gw_dir->name, "action", "tree", NULL);
kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
href_tree, KATTR__MAX);
if (kerr != KCGI_OK)
(gw_trans->page > 0) &&
(next_disp == gw_trans->gw_conf->got_max_repos_display ||
prev_disp == gw_trans->repos_total)) {
- if (asprintf(&href_prev, "?page=%d",
- gw_trans->page - 1) == -1) {
- error = got_error_from_errno("asprintf");
- goto done;
- }
+ href_prev = khttp_urlpartx(NULL, NULL, "gotweb", "page",
+ KATTRX_INT, (int64_t)(gw_trans->page - 1), NULL);
kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
KATTR_HREF, href_prev, KATTR__MAX);
if (kerr != KCGI_OK)
KATTR_ID, "nav_next", KATTR__MAX);
if (kerr != KCGI_OK)
goto done;
- if (asprintf(&href_next, "?page=%d",
- gw_trans->page + 1) == -1) {
- error = got_error_from_errno("calloc");
- goto done;
- }
+ href_next = khttp_urlpartx(NULL, NULL, "gotweb", "page",
+ KATTRX_INT, (int64_t)(gw_trans->page + 1), NULL);
kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
KATTR_HREF, href_next, KATTR__MAX);
if (kerr != KCGI_OK)