author | Michael Krelin <hacker@klever.net> | 2007-07-21 17:35:39 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-07-21 17:35:39 (UTC) |
commit | bbd4a14456789a2114d8bb0f7ba245af3605bb49 (patch) (unidiff) | |
tree | 1bb4556bfcb7bc96af96dd5e48fd784dc841949f | |
parent | dc3c9b5bc48779f37f2fbcbadce8865eaf4a360e (diff) | |
download | cgit-bbd4a14456789a2114d8bb0f7ba245af3605bb49.zip cgit-bbd4a14456789a2114d8bb0f7ba245af3605bb49.tar.gz cgit-bbd4a14456789a2114d8bb0f7ba245af3605bb49.tar.bz2 |
fix: changed view link to blob in summary.
might not be the best way, but should suffice for now that view command isn't
handled in any way
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | ui-summary.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-summary.c b/ui-summary.c index b4bc6d8..fdee66b 100644 --- a/ui-summary.c +++ b/ui-summary.c | |||
@@ -51,25 +51,25 @@ static int cgit_print_branch_cb(const char *refname, const unsigned char *sha1, | |||
51 | static void cgit_print_object_ref(struct object *obj) | 51 | static void cgit_print_object_ref(struct object *obj) |
52 | { | 52 | { |
53 | char *page, *arg, *url; | 53 | char *page, *arg, *url; |
54 | 54 | ||
55 | if (obj->type == OBJ_COMMIT) { | 55 | if (obj->type == OBJ_COMMIT) { |
56 | cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL, | 56 | cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL, |
57 | cgit_query_head, sha1_to_hex(obj->sha1)); | 57 | cgit_query_head, sha1_to_hex(obj->sha1)); |
58 | return; | 58 | return; |
59 | } else if (obj->type == OBJ_TREE) { | 59 | } else if (obj->type == OBJ_TREE) { |
60 | page = "tree"; | 60 | page = "tree"; |
61 | arg = "id"; | 61 | arg = "id"; |
62 | } else { | 62 | } else { |
63 | page = "view"; | 63 | page = "blob"; |
64 | arg = "id"; | 64 | arg = "id"; |
65 | } | 65 | } |
66 | 66 | ||
67 | url = cgit_pageurl(cgit_query_repo, page, | 67 | url = cgit_pageurl(cgit_query_repo, page, |
68 | fmt("%s=%s", arg, sha1_to_hex(obj->sha1))); | 68 | fmt("%s=%s", arg, sha1_to_hex(obj->sha1))); |
69 | html_link_open(url, NULL, NULL); | 69 | html_link_open(url, NULL, NULL); |
70 | htmlf("%s %s", typename(obj->type), | 70 | htmlf("%s %s", typename(obj->type), |
71 | sha1_to_hex(obj->sha1)); | 71 | sha1_to_hex(obj->sha1)); |
72 | html_link_close(); | 72 | html_link_close(); |
73 | } | 73 | } |
74 | 74 | ||
75 | static void print_tag_header() | 75 | static void print_tag_header() |