diff options
Diffstat (limited to 'ui-shared.c')
| -rw-r--r-- | ui-shared.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/ui-shared.c b/ui-shared.c index 64ee79c..71c899a 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
| @@ -136,8 +136,8 @@ static char *repolink(char *title, char *class, char *page, char *head, | |||
| 136 | return fmt("%s", delim); | 136 | return fmt("%s", delim); |
| 137 | } | 137 | } |
| 138 | 138 | ||
| 139 | static char *reporevlink(char *page, char *name, char *title, char *class, | 139 | static void reporevlink(char *page, char *name, char *title, char *class, |
| 140 | char *head, char *rev, char *path) | 140 | char *head, char *rev, char *path) |
| 141 | { | 141 | { |
| 142 | char *delim; | 142 | char *delim; |
| 143 | 143 | ||
| @@ -164,6 +164,18 @@ void cgit_log_link(char *name, char *title, char *class, char *head, | |||
| 164 | reporevlink("log", name, title, class, head, rev, path); | 164 | reporevlink("log", name, title, class, head, rev, path); |
| 165 | } | 165 | } |
| 166 | 166 | ||
| 167 | void cgit_commit_link(char *name, char *title, char *class, char *head, | ||
| 168 | char *rev) | ||
| 169 | { | ||
| 170 | if (strlen(name) > cgit_max_msg_len && cgit_max_msg_len >= 15) { | ||
| 171 | name[cgit_max_msg_len] = '\0'; | ||
| 172 | name[cgit_max_msg_len - 1] = '.'; | ||
| 173 | name[cgit_max_msg_len - 2] = '.'; | ||
| 174 | name[cgit_max_msg_len - 3] = '.'; | ||
| 175 | } | ||
| 176 | reporevlink("commit", name, title, class, head, rev, NULL); | ||
| 177 | } | ||
| 178 | |||
| 167 | void cgit_print_date(time_t secs, char *format) | 179 | void cgit_print_date(time_t secs, char *format) |
| 168 | { | 180 | { |
| 169 | char buf[64]; | 181 | char buf[64]; |
