summaryrefslogtreecommitdiffabout
path: root/ui-shared.c
Unidiff
Diffstat (limited to 'ui-shared.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-shared.c16
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
@@ -133,14 +133,14 @@ static char *repolink(char *title, char *class, char *page, char *head,
133 html_attr(head); 133 html_attr(head);
134 delim = "&"; 134 delim = "&";
135 } 135 }
136 return fmt("%s", delim); 136 return fmt("%s", delim);
137} 137}
138 138
139static char *reporevlink(char *page, char *name, char *title, char *class, 139static 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
144 delim = repolink(title, class, page, head, path); 144 delim = repolink(title, class, page, head, path);
145 if (rev && strcmp(rev, cgit_query_head)) { 145 if (rev && strcmp(rev, cgit_query_head)) {
146 html(delim); 146 html(delim);
@@ -161,12 +161,24 @@ void cgit_tree_link(char *name, char *title, char *class, char *head,
161void cgit_log_link(char *name, char *title, char *class, char *head, 161void cgit_log_link(char *name, char *title, char *class, char *head,
162 char *rev, char *path) 162 char *rev, char *path)
163{ 163{
164 reporevlink("log", name, title, class, head, rev, path); 164 reporevlink("log", name, title, class, head, rev, path);
165} 165}
166 166
167void 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
167void cgit_print_date(time_t secs, char *format) 179void cgit_print_date(time_t secs, char *format)
168{ 180{
169 char buf[64]; 181 char buf[64];
170 struct tm *time; 182 struct tm *time;
171 183
172 time = gmtime(&secs); 184 time = gmtime(&secs);