diff options
author | Lars Hjemli <hjemli@gmail.com> | 2007-10-27 10:55:10 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-10-27 10:55:10 +0200 |
commit | dd0f27eb36e737261b57d6ebcbd9fe20e559470d (patch) | |
tree | 4729ecc84e0b24b044131546ff39bdd55a6cd9a6 /cgit.c | |
parent | Merge branch 'stable' (diff) | |
parent | Add links to the new refs page from summary page (diff) | |
download | cgit-pink-dd0f27eb36e737261b57d6ebcbd9fe20e559470d.tar.gz cgit-pink-dd0f27eb36e737261b57d6ebcbd9fe20e559470d.zip |
Merge branch 'filter-refs'
* filter-refs: Add links to the new refs page from summary page Add support for refs view Make cgit_print_branches()/cgit_print_tags() external Add descriptions of summary-branches and summary-tags to cgitrc Add support for config param summary-branches Move logic for age comparision from cmp_tag_age into cmp_age() Add support for config param summary-tags Sort tags by age Use reflist to print tag info Use reflist to print branch info Add functions and types for ref lists
Diffstat (limited to '')
-rw-r--r-- | cgit.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cgit.c b/cgit.c index 1b85b15..cc18ed4 100644 --- a/cgit.c +++ b/cgit.c @@ -103,6 +103,9 @@ static void cgit_print_repo_page(struct cacheitem *item) case CMD_COMMIT: cgit_print_commit(cgit_query_sha1); break; + case CMD_REFS: + cgit_print_refs(); + break; case CMD_TAG: cgit_print_tag(cgit_query_sha1); break; |