author | Lars Hjemli <hjemli@gmail.com> | 2007-07-22 21:42:55 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-07-22 21:44:57 (UTC) |
commit | 4e9107abfe8d3edff17826875b417bcf40dc7390 (patch) (side-by-side diff) | |
tree | 96cfafa9b8838f34e1363ee3019eae64a6229b30 /cgit.h | |
parent | 71ebcbe23ab548e5c0ad40aa8be5741654ed3201 (diff) | |
download | cgit-4e9107abfe8d3edff17826875b417bcf40dc7390.zip cgit-4e9107abfe8d3edff17826875b417bcf40dc7390.tar.gz cgit-4e9107abfe8d3edff17826875b417bcf40dc7390.tar.bz2 |
Add ui-tag.c
This file implements the tag-command, i.e. printing of annotated tags.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -29,3 +29,3 @@ #define CMD_SNAPSHOT 6 - +#define CMD_TAG 7 @@ -214,2 +214,4 @@ extern void cgit_diff_link(char *name, char *title, char *class, char *head, +extern void cgit_object_link(struct object *obj); + extern void cgit_print_error(char *msg); @@ -230,2 +232,3 @@ extern void cgit_print_tree(const char *rev, char *path); extern void cgit_print_commit(char *hex); +extern void cgit_print_tag(char *revname); extern void cgit_print_diff(const char *new_hex, const char *old_hex); |