summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2007-06-17 15:44:22 +0200
committerLars Hjemli <hjemli@gmail.com>2007-06-17 15:44:22 +0200
commitfaaca447b071592c9a1e1f14b4d0d2a39b4c795a (patch)
tree98c53a63df0fd01b4421201d7dadd5ee2351fb1b
parentcd79c16844b4006d4fd6f4b82d2f6e7e19b20c8e (diff)
downloadcgit-faaca447b071592c9a1e1f14b4d0d2a39b4c795a.tar.gz
cgit-faaca447b071592c9a1e1f14b4d0d2a39b4c795a.tar.bz2
cgit-faaca447b071592c9a1e1f14b4d0d2a39b4c795a.zip
ui-commit: use cgit_commit_link() for parent links
This replaces the old cgit_pageurl() function with the brand new cgit_commit_link() function, making parent links in commit view preserve the current branch. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r--ui-commit.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/ui-commit.c b/ui-commit.c
index 8864fc6..d489d7c 100644
--- a/ui-commit.c
+++ b/ui-commit.c
@@ -199,12 +199,10 @@ void cgit_print_commit(const char *hex)
continue;
}
html("<tr><th>parent</th>"
- "<td colspan='2' class='sha1'>"
- "<a href='");
- query = fmt("h=%s", sha1_to_hex(p->item->object.sha1));
- html_attr(cgit_pageurl(cgit_query_repo, "commit", query));
- htmlf("'>%s</a> (<a href='",
- sha1_to_hex(p->item->object.sha1));
+ "<td colspan='2' class='sha1'>");
+ cgit_commit_link(sha1_to_hex(p->item->object.sha1), NULL, NULL,
+ cgit_query_head, sha1_to_hex(p->item->object.sha1));
+ html(" (<a href='");
query = fmt("id=%s&amp;id2=%s", sha1_to_hex(parent->tree->object.sha1),
sha1_to_hex(commit->tree->object.sha1));
html_attr(cgit_pageurl(cgit_query_repo, "diff", query));
insertions'>+199 2020-04-20Fixes and validationRené 'Necoro' Neumann6-28/+25 2020-04-20Fix vettingRené 'Necoro' Neumann1-1/+1 2020-04-20Started with mail creationRené 'Necoro' Neumann4-3/+126 2020-04-20FeeditemsRené 'Necoro' Neumann2-2/+14 2020-04-20GlobalOptionsRené 'Necoro' Neumann3-25/+79 2020-04-19RestructureRené 'Necoro' Neumann6-152/+177 2020-04-19Rename package 'parse' to 'feed'René 'Necoro' Neumann2-3/+3 2020-04-19SELECT is not necessary for most operations -- skip itRené 'Necoro' Neumann2-12/+1 2020-04-19Store path as array -- the delimiter is not always '.'René 'Necoro' Neumann3-36/+44 2020-04-19Split client part to client.goRené 'Necoro' Neumann2-125/+137 2020-04-19IMAP: Create foldersRené 'Necoro' Neumann1-4/+38 2020-04-19Improved IMAPRené 'Necoro' Neumann1-3/+88 2020-04-19Started IMAP connectionRené 'Necoro' Neumann4-0/+152 2020-04-19Use our own logger for debug for convenience sakeRené 'Necoro' Neumann1-2/+3 2020-04-19Fix debug logging m(René 'Necoro' Neumann1-2/+2 2020-04-19Rename util.go to log.go. Add verbose modeRené 'Necoro' Neumann4-24/+54 2020-04-19Clean go.modRené 'Necoro' Neumann2-3/+0 2020-04-19Do not print the parsedCfg anymoreRené 'Necoro' Neumann1-1/+1 2020-04-19Increase go-version to 1.14René 'Necoro' Neumann1-2/+2 2020-04-19CI: go vetRené 'Necoro' Neumann1-0/+3 2020-04-19Fetching and parsing the feedsRené 'Necoro' Neumann5-4/+113 2020-04-19Ignore all config*.ymlRené 'Necoro' Neumann1-1/+1