about summary refs log tree commit diff stats
path: root/ui-shared.c
diff options
context:
space:
mode:
authorLars Hjemli2007-10-28 15:40:47 +0100
committerLars Hjemli2007-10-28 15:41:58 +0100
commitfc5880fab8b9afc589aaadd1299c34a6ef2a3c2d (patch)
treea429f34b01fc1ce9a90d46b81915db5fa124f83b /ui-shared.c
parentMake print_branch() handle refs not pointing at commits (diff)
downloadcgit-fc5880fab8b9afc589aaadd1299c34a6ef2a3c2d.tar.gz
cgit-fc5880fab8b9afc589aaadd1299c34a6ef2a3c2d.zip
Teach cgit_object_link() about tag objects
This makes random tag links more helpfull, e.g. when a branch head references
a tag object, link to the tag page.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-shared.c')
-rw-r--r--ui-shared.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c index 45105dc..1418010 100644 --- a/ui-shared.c +++ b/ui-shared.c
@@ -272,6 +272,9 @@ void cgit_object_link(struct object *obj)
272 } else if (obj->type == OBJ_TREE) { 272 } else if (obj->type == OBJ_TREE) {
273 page = "tree"; 273 page = "tree";
274 arg = "id"; 274 arg = "id";
275 } else if (obj->type == OBJ_TAG) {
276 page = "tag";
277 arg = "id";
275 } else { 278 } else {
276 page = "blob"; 279 page = "blob";
277 arg = "id"; 280 arg = "id";