summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.h2
-rw-r--r--ui-log.c16
-rw-r--r--ui-repolist.c2
-rw-r--r--ui-shared.c22
-rw-r--r--ui-summary.c2
-rw-r--r--ui-tree.c2
6 files changed, 30 insertions, 16 deletions
diff --git a/cgit.h b/cgit.h
index ddb2fff..a59a370 100644
--- a/cgit.h
+++ b/cgit.h
@@ -1,236 +1,236 @@
1#ifndef CGIT_H 1#ifndef CGIT_H
2#define CGIT_H 2#define CGIT_H
3 3
4 4
5#include <git-compat-util.h> 5#include <git-compat-util.h>
6#include <cache.h> 6#include <cache.h>
7#include <grep.h> 7#include <grep.h>
8#include <object.h> 8#include <object.h>
9#include <tree.h> 9#include <tree.h>
10#include <commit.h> 10#include <commit.h>
11#include <tag.h> 11#include <tag.h>
12#include <diff.h> 12#include <diff.h>
13#include <diffcore.h> 13#include <diffcore.h>
14#include <refs.h> 14#include <refs.h>
15#include <revision.h> 15#include <revision.h>
16#include <log-tree.h> 16#include <log-tree.h>
17#include <archive.h> 17#include <archive.h>
18#include <xdiff/xdiff.h> 18#include <xdiff/xdiff.h>
19 19
20 20
21/* 21/*
22 * The valid cgit repo-commands 22 * The valid cgit repo-commands
23 */ 23 */
24#define CMD_LOG 1 24#define CMD_LOG 1
25#define CMD_COMMIT 2 25#define CMD_COMMIT 2
26#define CMD_DIFF 3 26#define CMD_DIFF 3
27#define CMD_TREE 4 27#define CMD_TREE 4
28#define CMD_BLOB 5 28#define CMD_BLOB 5
29#define CMD_SNAPSHOT 6 29#define CMD_SNAPSHOT 6
30 30
31 31
32/* 32/*
33 * Dateformats used on misc. pages 33 * Dateformats used on misc. pages
34 */ 34 */
35#define FMT_LONGDATE "%Y-%m-%d %H:%M:%S" 35#define FMT_LONGDATE "%Y-%m-%d %H:%M:%S"
36#define FMT_SHORTDATE "%Y-%m-%d" 36#define FMT_SHORTDATE "%Y-%m-%d"
37 37
38 38
39/* 39/*
40 * Limits used for relative dates 40 * Limits used for relative dates
41 */ 41 */
42#define TM_MIN 60 42#define TM_MIN 60
43#define TM_HOUR (TM_MIN * 60) 43#define TM_HOUR (TM_MIN * 60)
44#define TM_DAY (TM_HOUR * 24) 44#define TM_DAY (TM_HOUR * 24)
45#define TM_WEEK (TM_DAY * 7) 45#define TM_WEEK (TM_DAY * 7)
46#define TM_YEAR (TM_DAY * 365) 46#define TM_YEAR (TM_DAY * 365)
47#define TM_MONTH (TM_YEAR / 12.0) 47#define TM_MONTH (TM_YEAR / 12.0)
48 48
49 49
50typedef void (*configfn)(const char *name, const char *value); 50typedef void (*configfn)(const char *name, const char *value);
51typedef void (*filepair_fn)(struct diff_filepair *pair); 51typedef void (*filepair_fn)(struct diff_filepair *pair);
52typedef void (*linediff_fn)(char *line, int len); 52typedef void (*linediff_fn)(char *line, int len);
53 53
54struct cacheitem { 54struct cacheitem {
55 char *name; 55 char *name;
56 struct stat st; 56 struct stat st;
57 int ttl; 57 int ttl;
58 int fd; 58 int fd;
59}; 59};
60 60
61struct repoinfo { 61struct repoinfo {
62 char *url; 62 char *url;
63 char *name; 63 char *name;
64 char *path; 64 char *path;
65 char *desc; 65 char *desc;
66 char *owner; 66 char *owner;
67 char *defbranch; 67 char *defbranch;
68 char *group; 68 char *group;
69 char *module_link; 69 char *module_link;
70 char *readme; 70 char *readme;
71 int snapshots; 71 int snapshots;
72 int enable_log_filecount; 72 int enable_log_filecount;
73 int enable_log_linecount; 73 int enable_log_linecount;
74}; 74};
75 75
76struct repolist { 76struct repolist {
77 int length; 77 int length;
78 int count; 78 int count;
79 struct repoinfo *repos; 79 struct repoinfo *repos;
80}; 80};
81 81
82struct commitinfo { 82struct commitinfo {
83 struct commit *commit; 83 struct commit *commit;
84 char *author; 84 char *author;
85 char *author_email; 85 char *author_email;
86 unsigned long author_date; 86 unsigned long author_date;
87 char *committer; 87 char *committer;
88 char *committer_email; 88 char *committer_email;
89 unsigned long committer_date; 89 unsigned long committer_date;
90 char *subject; 90 char *subject;
91 char *msg; 91 char *msg;
92}; 92};
93 93
94struct taginfo { 94struct taginfo {
95 char *tagger; 95 char *tagger;
96 char *tagger_email; 96 char *tagger_email;
97 int tagger_date; 97 int tagger_date;
98 char *msg; 98 char *msg;
99}; 99};
100 100
101extern const char cgit_version[]; 101extern const char cgit_version[];
102 102
103extern struct repolist cgit_repolist; 103extern struct repolist cgit_repolist;
104extern struct repoinfo *cgit_repo; 104extern struct repoinfo *cgit_repo;
105extern int cgit_cmd; 105extern int cgit_cmd;
106 106
107extern char *cgit_root_title; 107extern char *cgit_root_title;
108extern char *cgit_css; 108extern char *cgit_css;
109extern char *cgit_logo; 109extern char *cgit_logo;
110extern char *cgit_index_header; 110extern char *cgit_index_header;
111extern char *cgit_logo_link; 111extern char *cgit_logo_link;
112extern char *cgit_module_link; 112extern char *cgit_module_link;
113extern char *cgit_agefile; 113extern char *cgit_agefile;
114extern char *cgit_virtual_root; 114extern char *cgit_virtual_root;
115extern char *cgit_script_name; 115extern char *cgit_script_name;
116extern char *cgit_cache_root; 116extern char *cgit_cache_root;
117extern char *cgit_repo_group; 117extern char *cgit_repo_group;
118 118
119extern int cgit_nocache; 119extern int cgit_nocache;
120extern int cgit_snapshots; 120extern int cgit_snapshots;
121extern int cgit_enable_index_links; 121extern int cgit_enable_index_links;
122extern int cgit_enable_log_filecount; 122extern int cgit_enable_log_filecount;
123extern int cgit_enable_log_linecount; 123extern int cgit_enable_log_linecount;
124extern int cgit_max_lock_attempts; 124extern int cgit_max_lock_attempts;
125extern int cgit_cache_root_ttl; 125extern int cgit_cache_root_ttl;
126extern int cgit_cache_repo_ttl; 126extern int cgit_cache_repo_ttl;
127extern int cgit_cache_dynamic_ttl; 127extern int cgit_cache_dynamic_ttl;
128extern int cgit_cache_static_ttl; 128extern int cgit_cache_static_ttl;
129extern int cgit_cache_max_create_time; 129extern int cgit_cache_max_create_time;
130extern int cgit_summary_log; 130extern int cgit_summary_log;
131 131
132extern int cgit_max_msg_len; 132extern int cgit_max_msg_len;
133extern int cgit_max_repodesc_len; 133extern int cgit_max_repodesc_len;
134extern int cgit_max_commit_count; 134extern int cgit_max_commit_count;
135 135
136extern int cgit_query_has_symref; 136extern int cgit_query_has_symref;
137extern int cgit_query_has_sha1; 137extern int cgit_query_has_sha1;
138 138
139extern char *cgit_querystring; 139extern char *cgit_querystring;
140extern char *cgit_query_repo; 140extern char *cgit_query_repo;
141extern char *cgit_query_page; 141extern char *cgit_query_page;
142extern char *cgit_query_search; 142extern char *cgit_query_search;
143extern char *cgit_query_head; 143extern char *cgit_query_head;
144extern char *cgit_query_sha1; 144extern char *cgit_query_sha1;
145extern char *cgit_query_sha2; 145extern char *cgit_query_sha2;
146extern char *cgit_query_path; 146extern char *cgit_query_path;
147extern char *cgit_query_name; 147extern char *cgit_query_name;
148extern int cgit_query_ofs; 148extern int cgit_query_ofs;
149 149
150extern int htmlfd; 150extern int htmlfd;
151 151
152extern int cgit_get_cmd_index(const char *cmd); 152extern int cgit_get_cmd_index(const char *cmd);
153extern struct repoinfo *cgit_get_repoinfo(const char *url); 153extern struct repoinfo *cgit_get_repoinfo(const char *url);
154extern void cgit_global_config_cb(const char *name, const char *value); 154extern void cgit_global_config_cb(const char *name, const char *value);
155extern void cgit_repo_config_cb(const char *name, const char *value); 155extern void cgit_repo_config_cb(const char *name, const char *value);
156extern void cgit_querystring_cb(const char *name, const char *value); 156extern void cgit_querystring_cb(const char *name, const char *value);
157 157
158extern int chk_zero(int result, char *msg); 158extern int chk_zero(int result, char *msg);
159extern int chk_positive(int result, char *msg); 159extern int chk_positive(int result, char *msg);
160 160
161extern int hextoint(char c); 161extern int hextoint(char c);
162extern char *trim_end(const char *str, char c); 162extern char *trim_end(const char *str, char c);
163 163
164extern void *cgit_free_commitinfo(struct commitinfo *info); 164extern void *cgit_free_commitinfo(struct commitinfo *info);
165 165
166extern int cgit_diff_files(const unsigned char *old_sha1, 166extern int cgit_diff_files(const unsigned char *old_sha1,
167 const unsigned char *new_sha1, 167 const unsigned char *new_sha1,
168 linediff_fn fn); 168 linediff_fn fn);
169 169
170extern void cgit_diff_tree(const unsigned char *old_sha1, 170extern void cgit_diff_tree(const unsigned char *old_sha1,
171 const unsigned char *new_sha1, 171 const unsigned char *new_sha1,
172 filepair_fn fn); 172 filepair_fn fn);
173 173
174extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); 174extern void cgit_diff_commit(struct commit *commit, filepair_fn fn);
175 175
176extern char *fmt(const char *format,...); 176extern char *fmt(const char *format,...);
177 177
178extern void html(const char *txt); 178extern void html(const char *txt);
179extern void htmlf(const char *format,...); 179extern void htmlf(const char *format,...);
180extern void html_txt(char *txt); 180extern void html_txt(char *txt);
181extern void html_ntxt(int len, char *txt); 181extern void html_ntxt(int len, char *txt);
182extern void html_attr(char *txt); 182extern void html_attr(char *txt);
183extern void html_hidden(char *name, char *value); 183extern void html_hidden(char *name, char *value);
184extern void html_link_open(char *url, char *title, char *class); 184extern void html_link_open(char *url, char *title, char *class);
185extern void html_link_close(void); 185extern void html_link_close(void);
186extern void html_filemode(unsigned short mode); 186extern void html_filemode(unsigned short mode);
187extern int html_include(const char *filename); 187extern int html_include(const char *filename);
188 188
189extern int cgit_read_config(const char *filename, configfn fn); 189extern int cgit_read_config(const char *filename, configfn fn);
190extern int cgit_parse_query(char *txt, configfn fn); 190extern int cgit_parse_query(char *txt, configfn fn);
191extern struct commitinfo *cgit_parse_commit(struct commit *commit); 191extern struct commitinfo *cgit_parse_commit(struct commit *commit);
192extern struct taginfo *cgit_parse_tag(struct tag *tag); 192extern struct taginfo *cgit_parse_tag(struct tag *tag);
193extern void cgit_parse_url(const char *url); 193extern void cgit_parse_url(const char *url);
194 194
195extern char *cache_safe_filename(const char *unsafe); 195extern char *cache_safe_filename(const char *unsafe);
196extern int cache_lock(struct cacheitem *item); 196extern int cache_lock(struct cacheitem *item);
197extern int cache_unlock(struct cacheitem *item); 197extern int cache_unlock(struct cacheitem *item);
198extern int cache_cancel_lock(struct cacheitem *item); 198extern int cache_cancel_lock(struct cacheitem *item);
199extern int cache_exist(struct cacheitem *item); 199extern int cache_exist(struct cacheitem *item);
200extern int cache_expired(struct cacheitem *item); 200extern int cache_expired(struct cacheitem *item);
201 201
202extern char *cgit_repourl(const char *reponame); 202extern char *cgit_repourl(const char *reponame);
203extern char *cgit_pageurl(const char *reponame, const char *pagename, 203extern char *cgit_pageurl(const char *reponame, const char *pagename,
204 const char *query); 204 const char *query);
205 205
206extern void cgit_tree_link(char *name, char *title, char *class, char *head, 206extern void cgit_tree_link(char *name, char *title, char *class, char *head,
207 char *rev, char *path); 207 char *rev, char *path);
208extern void cgit_log_link(char *name, char *title, char *class, char *head, 208extern void cgit_log_link(char *name, char *title, char *class, char *head,
209 char *rev, char *path); 209 char *rev, char *path, int ofs);
210extern void cgit_commit_link(char *name, char *title, char *class, char *head, 210extern void cgit_commit_link(char *name, char *title, char *class, char *head,
211 char *rev); 211 char *rev);
212extern void cgit_diff_link(char *name, char *title, char *class, char *head, 212extern void cgit_diff_link(char *name, char *title, char *class, char *head,
213 char *new_rev, char *old_rev, char *path); 213 char *new_rev, char *old_rev, char *path);
214 214
215extern void cgit_print_error(char *msg); 215extern void cgit_print_error(char *msg);
216extern void cgit_print_date(time_t secs, char *format); 216extern void cgit_print_date(time_t secs, char *format);
217extern void cgit_print_age(time_t t, time_t max_relative, char *format); 217extern void cgit_print_age(time_t t, time_t max_relative, char *format);
218extern void cgit_print_docstart(char *title, struct cacheitem *item); 218extern void cgit_print_docstart(char *title, struct cacheitem *item);
219extern void cgit_print_docend(); 219extern void cgit_print_docend();
220extern void cgit_print_pageheader(char *title, int show_search); 220extern void cgit_print_pageheader(char *title, int show_search);
221extern void cgit_print_snapshot_start(const char *mimetype, 221extern void cgit_print_snapshot_start(const char *mimetype,
222 const char *filename, 222 const char *filename,
223 struct cacheitem *item); 223 struct cacheitem *item);
224 224
225extern void cgit_print_repolist(struct cacheitem *item); 225extern void cgit_print_repolist(struct cacheitem *item);
226extern void cgit_print_summary(); 226extern void cgit_print_summary();
227extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path, int pager); 227extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path, int pager);
228extern void cgit_print_blob(struct cacheitem *item, const char *hex, char *path); 228extern void cgit_print_blob(struct cacheitem *item, const char *hex, char *path);
229extern void cgit_print_tree(const char *rev, char *path); 229extern void cgit_print_tree(const char *rev, char *path);
230extern void cgit_print_commit(char *hex); 230extern void cgit_print_commit(char *hex);
231extern void cgit_print_diff(const char *new_hex, const char *old_hex); 231extern void cgit_print_diff(const char *new_hex, const char *old_hex);
232extern void cgit_print_snapshot(struct cacheitem *item, const char *hex, 232extern void cgit_print_snapshot(struct cacheitem *item, const char *hex,
233 const char *format, const char *prefix, 233 const char *format, const char *prefix,
234 const char *filename); 234 const char *filename);
235 235
236#endif /* CGIT_H */ 236#endif /* CGIT_H */
diff --git a/ui-log.c b/ui-log.c
index 95cb453..d38e40a 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -1,130 +1,128 @@
1/* ui-log.c: functions for log output 1/* ui-log.c: functions for log output
2 * 2 *
3 * Copyright (C) 2006 Lars Hjemli 3 * Copyright (C) 2006 Lars Hjemli
4 * 4 *
5 * Licensed under GNU General Public License v2 5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text) 6 * (see COPYING for full license text)
7 */ 7 */
8 8
9#include "cgit.h" 9#include "cgit.h"
10 10
11int files, lines; 11int files, lines;
12 12
13void count_lines(char *line, int size) 13void count_lines(char *line, int size)
14{ 14{
15 if (size>0 && (line[0] == '+' || line[0] == '-')) 15 if (size>0 && (line[0] == '+' || line[0] == '-'))
16 lines++; 16 lines++;
17} 17}
18 18
19void inspect_files(struct diff_filepair *pair) 19void inspect_files(struct diff_filepair *pair)
20{ 20{
21 files++; 21 files++;
22 if (cgit_repo->enable_log_linecount) 22 if (cgit_repo->enable_log_linecount)
23 cgit_diff_files(pair->one->sha1, pair->two->sha1, count_lines); 23 cgit_diff_files(pair->one->sha1, pair->two->sha1, count_lines);
24} 24}
25 25
26void print_commit(struct commit *commit) 26void print_commit(struct commit *commit)
27{ 27{
28 struct commitinfo *info; 28 struct commitinfo *info;
29 29
30 info = cgit_parse_commit(commit); 30 info = cgit_parse_commit(commit);
31 html("<tr><td>"); 31 html("<tr><td>");
32 cgit_print_age(commit->date, TM_WEEK * 2, FMT_SHORTDATE); 32 cgit_print_age(commit->date, TM_WEEK * 2, FMT_SHORTDATE);
33 html("</td><td>"); 33 html("</td><td>");
34 cgit_commit_link(info->subject, NULL, NULL, cgit_query_head, 34 cgit_commit_link(info->subject, NULL, NULL, cgit_query_head,
35 sha1_to_hex(commit->object.sha1)); 35 sha1_to_hex(commit->object.sha1));
36 if (cgit_repo->enable_log_filecount) { 36 if (cgit_repo->enable_log_filecount) {
37 files = 0; 37 files = 0;
38 lines = 0; 38 lines = 0;
39 cgit_diff_commit(commit, inspect_files); 39 cgit_diff_commit(commit, inspect_files);
40 html("</td><td class='right'>"); 40 html("</td><td class='right'>");
41 htmlf("%d", files); 41 htmlf("%d", files);
42 if (cgit_repo->enable_log_linecount) { 42 if (cgit_repo->enable_log_linecount) {
43 html("</td><td class='right'>"); 43 html("</td><td class='right'>");
44 htmlf("%d", lines); 44 htmlf("%d", lines);
45 } 45 }
46 } 46 }
47 html("</td><td>"); 47 html("</td><td>");
48 html_txt(info->author); 48 html_txt(info->author);
49 html("</td></tr>\n"); 49 html("</td></tr>\n");
50 cgit_free_commitinfo(info); 50 cgit_free_commitinfo(info);
51} 51}
52 52
53 53
54void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path, int pager) 54void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path, int pager)
55{ 55{
56 struct rev_info rev; 56 struct rev_info rev;
57 struct commit *commit; 57 struct commit *commit;
58 const char *argv[] = {NULL, tip, NULL, NULL, NULL}; 58 const char *argv[] = {NULL, tip, NULL, NULL, NULL};
59 int argc = 2; 59 int argc = 2;
60 int i; 60 int i;
61 61
62 if (!tip) 62 if (!tip)
63 argv[1] = cgit_query_head; 63 argv[1] = cgit_query_head;
64 64
65 if (grep) 65 if (grep)
66 argv[argc++] = fmt("--grep=%s", grep); 66 argv[argc++] = fmt("--grep=%s", grep);
67 if (path) { 67 if (path) {
68 argv[argc++] = "--"; 68 argv[argc++] = "--";
69 argv[argc++] = path; 69 argv[argc++] = path;
70 } 70 }
71 init_revisions(&rev, NULL); 71 init_revisions(&rev, NULL);
72 rev.abbrev = DEFAULT_ABBREV; 72 rev.abbrev = DEFAULT_ABBREV;
73 rev.commit_format = CMIT_FMT_DEFAULT; 73 rev.commit_format = CMIT_FMT_DEFAULT;
74 rev.verbose_header = 1; 74 rev.verbose_header = 1;
75 rev.show_root_diff = 0; 75 rev.show_root_diff = 0;
76 setup_revisions(argc, argv, &rev, NULL); 76 setup_revisions(argc, argv, &rev, NULL);
77 if (rev.grep_filter) { 77 if (rev.grep_filter) {
78 rev.grep_filter->regflags |= REG_ICASE; 78 rev.grep_filter->regflags |= REG_ICASE;
79 compile_grep_patterns(rev.grep_filter); 79 compile_grep_patterns(rev.grep_filter);
80 } 80 }
81 prepare_revision_walk(&rev); 81 prepare_revision_walk(&rev);
82 82
83 html("<table class='list nowrap'>"); 83 html("<table class='list nowrap'>");
84 html("<tr class='nohover'><th class='left'>Age</th>" 84 html("<tr class='nohover'><th class='left'>Age</th>"
85 "<th class='left'>Message</th>"); 85 "<th class='left'>Message</th>");
86 86
87 if (cgit_repo->enable_log_filecount) { 87 if (cgit_repo->enable_log_filecount) {
88 html("<th class='left'>Files</th>"); 88 html("<th class='left'>Files</th>");
89 if (cgit_repo->enable_log_linecount) 89 if (cgit_repo->enable_log_linecount)
90 html("<th class='left'>Lines</th>"); 90 html("<th class='left'>Lines</th>");
91 } 91 }
92 html("<th class='left'>Author</th></tr>\n"); 92 html("<th class='left'>Author</th></tr>\n");
93 93
94 if (ofs<0) 94 if (ofs<0)
95 ofs = 0; 95 ofs = 0;
96 96
97 for (i = 0; i < ofs && (commit = get_revision(&rev)) != NULL; i++) { 97 for (i = 0; i < ofs && (commit = get_revision(&rev)) != NULL; i++) {
98 free(commit->buffer); 98 free(commit->buffer);
99 commit->buffer = NULL; 99 commit->buffer = NULL;
100 free_commit_list(commit->parents); 100 free_commit_list(commit->parents);
101 commit->parents = NULL; 101 commit->parents = NULL;
102 } 102 }
103 103
104 for (i = 0; i < cnt && (commit = get_revision(&rev)) != NULL; i++) { 104 for (i = 0; i < cnt && (commit = get_revision(&rev)) != NULL; i++) {
105 print_commit(commit); 105 print_commit(commit);
106 free(commit->buffer); 106 free(commit->buffer);
107 commit->buffer = NULL; 107 commit->buffer = NULL;
108 free_commit_list(commit->parents); 108 free_commit_list(commit->parents);
109 commit->parents = NULL; 109 commit->parents = NULL;
110 } 110 }
111 html("</table>\n"); 111 html("</table>\n");
112 112
113 if (pager) { 113 if (pager) {
114 html("<div class='pager'>"); 114 html("<div class='pager'>");
115 if (ofs > 0) { 115 if (ofs > 0) {
116 html("&nbsp;<a href='"); 116 cgit_log_link("[prev]", NULL, NULL, cgit_query_head,
117 html(cgit_pageurl(cgit_query_repo, cgit_query_page, 117 cgit_query_sha1, cgit_query_path,
118 fmt("h=%s&amp;ofs=%d", tip, ofs-cnt))); 118 ofs - cnt);
119 html("'>[prev]</a>&nbsp;"); 119 html("&nbsp;");
120 } 120 }
121
122 if ((commit = get_revision(&rev)) != NULL) { 121 if ((commit = get_revision(&rev)) != NULL) {
123 html("&nbsp;<a href='"); 122 cgit_log_link("[next]", NULL, NULL, cgit_query_head,
124 html(cgit_pageurl(cgit_query_repo, "log", 123 cgit_query_sha1, cgit_query_path,
125 fmt("h=%s&amp;ofs=%d", tip, ofs+cnt))); 124 ofs + cnt);
126 html("'>[next]</a>&nbsp;");
127 } 125 }
128 html("</div>"); 126 html("</div>");
129 } 127 }
130} 128}
diff --git a/ui-repolist.c b/ui-repolist.c
index c735368..4c86543 100644
--- a/ui-repolist.c
+++ b/ui-repolist.c
@@ -1,109 +1,109 @@
1/* ui-repolist.c: functions for generating the repolist page 1/* ui-repolist.c: functions for generating the repolist page
2 * 2 *
3 * Copyright (C) 2006 Lars Hjemli 3 * Copyright (C) 2006 Lars Hjemli
4 * 4 *
5 * Licensed under GNU General Public License v2 5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text) 6 * (see COPYING for full license text)
7 */ 7 */
8 8
9#include "cgit.h" 9#include "cgit.h"
10#include <time.h> 10#include <time.h>
11 11
12 12
13time_t read_agefile(char *path) 13time_t read_agefile(char *path)
14{ 14{
15 FILE *f; 15 FILE *f;
16 static char buf[64], buf2[64]; 16 static char buf[64], buf2[64];
17 17
18 if (!(f = fopen(path, "r"))) 18 if (!(f = fopen(path, "r")))
19 return -1; 19 return -1;
20 fgets(buf, sizeof(buf), f); 20 fgets(buf, sizeof(buf), f);
21 fclose(f); 21 fclose(f);
22 if (parse_date(buf, buf2, sizeof(buf2))) 22 if (parse_date(buf, buf2, sizeof(buf2)))
23 return strtoul(buf2, NULL, 10); 23 return strtoul(buf2, NULL, 10);
24 else 24 else
25 return 0; 25 return 0;
26} 26}
27 27
28static void print_modtime(struct repoinfo *repo) 28static void print_modtime(struct repoinfo *repo)
29{ 29{
30 char *path; 30 char *path;
31 struct stat s; 31 struct stat s;
32 32
33 path = fmt("%s/%s", repo->path, cgit_agefile); 33 path = fmt("%s/%s", repo->path, cgit_agefile);
34 if (stat(path, &s) == 0) { 34 if (stat(path, &s) == 0) {
35 cgit_print_age(read_agefile(path), -1, NULL); 35 cgit_print_age(read_agefile(path), -1, NULL);
36 return; 36 return;
37 } 37 }
38 38
39 path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch); 39 path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch);
40 if (stat(path, &s) != 0) 40 if (stat(path, &s) != 0)
41 return; 41 return;
42 cgit_print_age(s.st_mtime, -1, NULL); 42 cgit_print_age(s.st_mtime, -1, NULL);
43} 43}
44 44
45void cgit_print_repolist(struct cacheitem *item) 45void cgit_print_repolist(struct cacheitem *item)
46{ 46{
47 int i, columns = 4; 47 int i, columns = 4;
48 char *last_group = NULL; 48 char *last_group = NULL;
49 49
50 if (cgit_enable_index_links) 50 if (cgit_enable_index_links)
51 columns++; 51 columns++;
52 52
53 cgit_print_docstart(cgit_root_title, item); 53 cgit_print_docstart(cgit_root_title, item);
54 cgit_print_pageheader(cgit_root_title, 0); 54 cgit_print_pageheader(cgit_root_title, 0);
55 55
56 html("<table class='list nowrap'>"); 56 html("<table class='list nowrap'>");
57 if (cgit_index_header) { 57 if (cgit_index_header) {
58 htmlf("<tr class='nohover'><td colspan='%d' class='include-block'>", 58 htmlf("<tr class='nohover'><td colspan='%d' class='include-block'>",
59 columns); 59 columns);
60 html_include(cgit_index_header); 60 html_include(cgit_index_header);
61 html("</td></tr>"); 61 html("</td></tr>");
62 } 62 }
63 html("<tr class='nohover'>" 63 html("<tr class='nohover'>"
64 "<th class='left'>Name</th>" 64 "<th class='left'>Name</th>"
65 "<th class='left'>Description</th>" 65 "<th class='left'>Description</th>"
66 "<th class='left'>Owner</th>" 66 "<th class='left'>Owner</th>"
67 "<th class='left'>Idle</th>"); 67 "<th class='left'>Idle</th>");
68 if (cgit_enable_index_links) 68 if (cgit_enable_index_links)
69 html("<th>Links</th>"); 69 html("<th>Links</th>");
70 html("</tr>\n"); 70 html("</tr>\n");
71 71
72 for (i=0; i<cgit_repolist.count; i++) { 72 for (i=0; i<cgit_repolist.count; i++) {
73 cgit_repo = &cgit_repolist.repos[i]; 73 cgit_repo = &cgit_repolist.repos[i];
74 if ((last_group == NULL && cgit_repo->group != NULL) || 74 if ((last_group == NULL && cgit_repo->group != NULL) ||
75 (last_group != NULL && cgit_repo->group == NULL) || 75 (last_group != NULL && cgit_repo->group == NULL) ||
76 (last_group != NULL && cgit_repo->group != NULL && 76 (last_group != NULL && cgit_repo->group != NULL &&
77 strcmp(cgit_repo->group, last_group))) { 77 strcmp(cgit_repo->group, last_group))) {
78 htmlf("<tr class='nohover'><td colspan='%d' class='repogroup'>", 78 htmlf("<tr class='nohover'><td colspan='%d' class='repogroup'>",
79 columns); 79 columns);
80 html_txt(cgit_repo->group); 80 html_txt(cgit_repo->group);
81 html("</td></tr>"); 81 html("</td></tr>");
82 last_group = cgit_repo->group; 82 last_group = cgit_repo->group;
83 } 83 }
84 htmlf("<tr><td class='%s'>", 84 htmlf("<tr><td class='%s'>",
85 cgit_repo->group ? "sublevel-repo" : "toplevel-repo"); 85 cgit_repo->group ? "sublevel-repo" : "toplevel-repo");
86 html_link_open(cgit_repourl(cgit_repo->url), NULL, NULL); 86 html_link_open(cgit_repourl(cgit_repo->url), NULL, NULL);
87 html_txt(cgit_repo->name); 87 html_txt(cgit_repo->name);
88 html_link_close(); 88 html_link_close();
89 html("</td><td>"); 89 html("</td><td>");
90 html_ntxt(cgit_max_repodesc_len, cgit_repo->desc); 90 html_ntxt(cgit_max_repodesc_len, cgit_repo->desc);
91 html("</td><td>"); 91 html("</td><td>");
92 html_txt(cgit_repo->owner); 92 html_txt(cgit_repo->owner);
93 html("</td><td>"); 93 html("</td><td>");
94 print_modtime(cgit_repo); 94 print_modtime(cgit_repo);
95 html("</td>"); 95 html("</td>");
96 if (cgit_enable_index_links) { 96 if (cgit_enable_index_links) {
97 html("<td>"); 97 html("<td>");
98 html_link_open(cgit_repourl(cgit_repo->url), 98 html_link_open(cgit_repourl(cgit_repo->url),
99 NULL, "button"); 99 NULL, "button");
100 html("summary</a>"); 100 html("summary</a>");
101 cgit_log_link("log", NULL, "button", NULL, NULL, NULL); 101 cgit_log_link("log", NULL, "button", NULL, NULL, NULL, 0);
102 cgit_tree_link("tree", NULL, "button", NULL, NULL, NULL); 102 cgit_tree_link("tree", NULL, "button", NULL, NULL, NULL);
103 html("</td>"); 103 html("</td>");
104 } 104 }
105 html("</tr>\n"); 105 html("</tr>\n");
106 } 106 }
107 html("</table>"); 107 html("</table>");
108 cgit_print_docend(); 108 cgit_print_docend();
109} 109}
diff --git a/ui-shared.c b/ui-shared.c
index 64c237f..bfcc2ac 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -1,354 +1,370 @@
1/* ui-shared.c: common web output functions 1/* ui-shared.c: common web output functions
2 * 2 *
3 * Copyright (C) 2006 Lars Hjemli 3 * Copyright (C) 2006 Lars Hjemli
4 * 4 *
5 * Licensed under GNU General Public License v2 5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text) 6 * (see COPYING for full license text)
7 */ 7 */
8 8
9#include "cgit.h" 9#include "cgit.h"
10 10
11const char cgit_doctype[] = 11const char cgit_doctype[] =
12"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" 12"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n"
13" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; 13" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n";
14 14
15static char *http_date(time_t t) 15static char *http_date(time_t t)
16{ 16{
17 static char day[][4] = 17 static char day[][4] =
18 {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; 18 {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};
19 static char month[][4] = 19 static char month[][4] =
20 {"Jan", "Feb", "Mar", "Apr", "May", "Jun", 20 {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
21 "Jul", "Aug", "Sep", "Oct", "Now", "Dec"}; 21 "Jul", "Aug", "Sep", "Oct", "Now", "Dec"};
22 struct tm *tm = gmtime(&t); 22 struct tm *tm = gmtime(&t);
23 return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday], 23 return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday],
24 tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year, 24 tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year,
25 tm->tm_hour, tm->tm_min, tm->tm_sec); 25 tm->tm_hour, tm->tm_min, tm->tm_sec);
26} 26}
27 27
28static long ttl_seconds(long ttl) 28static long ttl_seconds(long ttl)
29{ 29{
30 if (ttl<0) 30 if (ttl<0)
31 return 60 * 60 * 24 * 365; 31 return 60 * 60 * 24 * 365;
32 else 32 else
33 return ttl * 60; 33 return ttl * 60;
34} 34}
35 35
36void cgit_print_error(char *msg) 36void cgit_print_error(char *msg)
37{ 37{
38 html("<div class='error'>"); 38 html("<div class='error'>");
39 html_txt(msg); 39 html_txt(msg);
40 html("</div>\n"); 40 html("</div>\n");
41} 41}
42 42
43char *cgit_rooturl() 43char *cgit_rooturl()
44{ 44{
45 if (cgit_virtual_root) 45 if (cgit_virtual_root)
46 return fmt("%s/", cgit_virtual_root); 46 return fmt("%s/", cgit_virtual_root);
47 else 47 else
48 return cgit_script_name; 48 return cgit_script_name;
49} 49}
50 50
51char *cgit_repourl(const char *reponame) 51char *cgit_repourl(const char *reponame)
52{ 52{
53 if (cgit_virtual_root) { 53 if (cgit_virtual_root) {
54 return fmt("%s/%s/", cgit_virtual_root, reponame); 54 return fmt("%s/%s/", cgit_virtual_root, reponame);
55 } else { 55 } else {
56 return fmt("?r=%s", reponame); 56 return fmt("?r=%s", reponame);
57 } 57 }
58} 58}
59 59
60char *cgit_pageurl(const char *reponame, const char *pagename, 60char *cgit_pageurl(const char *reponame, const char *pagename,
61 const char *query) 61 const char *query)
62{ 62{
63 if (cgit_virtual_root) { 63 if (cgit_virtual_root) {
64 if (query) 64 if (query)
65 return fmt("%s/%s/%s/?%s", cgit_virtual_root, reponame, 65 return fmt("%s/%s/%s/?%s", cgit_virtual_root, reponame,
66 pagename, query); 66 pagename, query);
67 else 67 else
68 return fmt("%s/%s/%s/", cgit_virtual_root, reponame, 68 return fmt("%s/%s/%s/", cgit_virtual_root, reponame,
69 pagename); 69 pagename);
70 } else { 70 } else {
71 if (query) 71 if (query)
72 return fmt("?r=%s&amp;p=%s&amp;%s", reponame, pagename, query); 72 return fmt("?r=%s&amp;p=%s&amp;%s", reponame, pagename, query);
73 else 73 else
74 return fmt("?r=%s&amp;p=%s", reponame, pagename); 74 return fmt("?r=%s&amp;p=%s", reponame, pagename);
75 } 75 }
76} 76}
77 77
78char *cgit_currurl() 78char *cgit_currurl()
79{ 79{
80 if (!cgit_virtual_root) 80 if (!cgit_virtual_root)
81 return cgit_script_name; 81 return cgit_script_name;
82 else if (cgit_query_page) 82 else if (cgit_query_page)
83 return fmt("%s/%s/%s/", cgit_virtual_root, cgit_query_repo, cgit_query_page); 83 return fmt("%s/%s/%s/", cgit_virtual_root, cgit_query_repo, cgit_query_page);
84 else if (cgit_query_repo) 84 else if (cgit_query_repo)
85 return fmt("%s/%s/", cgit_virtual_root, cgit_query_repo); 85 return fmt("%s/%s/", cgit_virtual_root, cgit_query_repo);
86 else 86 else
87 return fmt("%s/", cgit_virtual_root); 87 return fmt("%s/", cgit_virtual_root);
88} 88}
89 89
90static char *repolink(char *title, char *class, char *page, char *head, 90static char *repolink(char *title, char *class, char *page, char *head,
91 char *path) 91 char *path)
92{ 92{
93 char *delim = "?"; 93 char *delim = "?";
94 94
95 html("<a"); 95 html("<a");
96 if (title) { 96 if (title) {
97 html(" title='"); 97 html(" title='");
98 html_attr(title); 98 html_attr(title);
99 html("'"); 99 html("'");
100 } 100 }
101 if (class) { 101 if (class) {
102 html(" class='"); 102 html(" class='");
103 html_attr(class); 103 html_attr(class);
104 html("'"); 104 html("'");
105 } 105 }
106 html(" href='"); 106 html(" href='");
107 if (cgit_virtual_root) { 107 if (cgit_virtual_root) {
108 html_attr(cgit_virtual_root); 108 html_attr(cgit_virtual_root);
109 if (cgit_virtual_root[strlen(cgit_virtual_root) - 1] != '/') 109 if (cgit_virtual_root[strlen(cgit_virtual_root) - 1] != '/')
110 html("/"); 110 html("/");
111 html_attr(cgit_repo->url); 111 html_attr(cgit_repo->url);
112 if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/') 112 if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/')
113 html("/"); 113 html("/");
114 if (page) { 114 if (page) {
115 html(page); 115 html(page);
116 html("/"); 116 html("/");
117 if (path) 117 if (path)
118 html_attr(path); 118 html_attr(path);
119 } 119 }
120 } else { 120 } else {
121 html(cgit_script_name); 121 html(cgit_script_name);
122 html("?url="); 122 html("?url=");
123 html_attr(cgit_repo->url); 123 html_attr(cgit_repo->url);
124 if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/') 124 if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/')
125 html("/"); 125 html("/");
126 if (page) { 126 if (page) {
127 html(page); 127 html(page);
128 html("/"); 128 html("/");
129 if (path) 129 if (path)
130 html_attr(path); 130 html_attr(path);
131 } 131 }
132 delim = "&amp;"; 132 delim = "&amp;";
133 } 133 }
134 if (head && strcmp(head, cgit_repo->defbranch)) { 134 if (head && strcmp(head, cgit_repo->defbranch)) {
135 html(delim); 135 html(delim);
136 html("h="); 136 html("h=");
137 html_attr(head); 137 html_attr(head);
138 delim = "&amp;"; 138 delim = "&amp;";
139 } 139 }
140 return fmt("%s", delim); 140 return fmt("%s", delim);
141} 141}
142 142
143static void reporevlink(char *page, char *name, char *title, char *class, 143static void reporevlink(char *page, char *name, char *title, char *class,
144 char *head, char *rev, char *path) 144 char *head, char *rev, char *path)
145{ 145{
146 char *delim; 146 char *delim;
147 147
148 delim = repolink(title, class, page, head, path); 148 delim = repolink(title, class, page, head, path);
149 if (rev && strcmp(rev, cgit_query_head)) { 149 if (rev && strcmp(rev, cgit_query_head)) {
150 html(delim); 150 html(delim);
151 html("id="); 151 html("id=");
152 html_attr(rev); 152 html_attr(rev);
153 } 153 }
154 html("'>"); 154 html("'>");
155 html_txt(name); 155 html_txt(name);
156 html("</a>"); 156 html("</a>");
157} 157}
158 158
159void cgit_tree_link(char *name, char *title, char *class, char *head, 159void cgit_tree_link(char *name, char *title, char *class, char *head,
160 char *rev, char *path) 160 char *rev, char *path)
161{ 161{
162 reporevlink("tree", name, title, class, head, rev, path); 162 reporevlink("tree", name, title, class, head, rev, path);
163} 163}
164 164
165void cgit_log_link(char *name, char *title, char *class, char *head, 165void cgit_log_link(char *name, char *title, char *class, char *head,
166 char *rev, char *path) 166 char *rev, char *path, int ofs)
167{ 167{
168 reporevlink("log", name, title, class, head, rev, path); 168 char *delim;
169
170 delim = repolink(title, class, "log", head, path);
171 if (rev && strcmp(rev, cgit_query_head)) {
172 html(delim);
173 html("id=");
174 html_attr(rev);
175 delim = "&";
176 }
177 if (ofs > 0) {
178 html(delim);
179 html("ofs=");
180 htmlf("%d", ofs);
181 }
182 html("'>");
183 html_txt(name);
184 html("</a>");
169} 185}
170 186
171void cgit_commit_link(char *name, char *title, char *class, char *head, 187void cgit_commit_link(char *name, char *title, char *class, char *head,
172 char *rev) 188 char *rev)
173{ 189{
174 if (strlen(name) > cgit_max_msg_len && cgit_max_msg_len >= 15) { 190 if (strlen(name) > cgit_max_msg_len && cgit_max_msg_len >= 15) {
175 name[cgit_max_msg_len] = '\0'; 191 name[cgit_max_msg_len] = '\0';
176 name[cgit_max_msg_len - 1] = '.'; 192 name[cgit_max_msg_len - 1] = '.';
177 name[cgit_max_msg_len - 2] = '.'; 193 name[cgit_max_msg_len - 2] = '.';
178 name[cgit_max_msg_len - 3] = '.'; 194 name[cgit_max_msg_len - 3] = '.';
179 } 195 }
180 reporevlink("commit", name, title, class, head, rev, NULL); 196 reporevlink("commit", name, title, class, head, rev, NULL);
181} 197}
182 198
183void cgit_diff_link(char *name, char *title, char *class, char *head, 199void cgit_diff_link(char *name, char *title, char *class, char *head,
184 char *new_rev, char *old_rev, char *path) 200 char *new_rev, char *old_rev, char *path)
185{ 201{
186 char *delim; 202 char *delim;
187 203
188 delim = repolink(title, class, "diff", head, path); 204 delim = repolink(title, class, "diff", head, path);
189 if (new_rev && strcmp(new_rev, cgit_query_head)) { 205 if (new_rev && strcmp(new_rev, cgit_query_head)) {
190 html(delim); 206 html(delim);
191 html("id="); 207 html("id=");
192 html_attr(new_rev); 208 html_attr(new_rev);
193 delim = "&amp;"; 209 delim = "&amp;";
194 } 210 }
195 if (old_rev) { 211 if (old_rev) {
196 html(delim); 212 html(delim);
197 html("id2="); 213 html("id2=");
198 html_attr(old_rev); 214 html_attr(old_rev);
199 } 215 }
200 html("'>"); 216 html("'>");
201 html_txt(name); 217 html_txt(name);
202 html("</a>"); 218 html("</a>");
203} 219}
204 220
205void cgit_print_date(time_t secs, char *format) 221void cgit_print_date(time_t secs, char *format)
206{ 222{
207 char buf[64]; 223 char buf[64];
208 struct tm *time; 224 struct tm *time;
209 225
210 time = gmtime(&secs); 226 time = gmtime(&secs);
211 strftime(buf, sizeof(buf)-1, format, time); 227 strftime(buf, sizeof(buf)-1, format, time);
212 html_txt(buf); 228 html_txt(buf);
213} 229}
214 230
215void cgit_print_age(time_t t, time_t max_relative, char *format) 231void cgit_print_age(time_t t, time_t max_relative, char *format)
216{ 232{
217 time_t now, secs; 233 time_t now, secs;
218 234
219 time(&now); 235 time(&now);
220 secs = now - t; 236 secs = now - t;
221 237
222 if (secs > max_relative && max_relative >= 0) { 238 if (secs > max_relative && max_relative >= 0) {
223 cgit_print_date(t, format); 239 cgit_print_date(t, format);
224 return; 240 return;
225 } 241 }
226 242
227 if (secs < TM_HOUR * 2) { 243 if (secs < TM_HOUR * 2) {
228 htmlf("<span class='age-mins'>%.0f min.</span>", 244 htmlf("<span class='age-mins'>%.0f min.</span>",
229 secs * 1.0 / TM_MIN); 245 secs * 1.0 / TM_MIN);
230 return; 246 return;
231 } 247 }
232 if (secs < TM_DAY * 2) { 248 if (secs < TM_DAY * 2) {
233 htmlf("<span class='age-hours'>%.0f hours</span>", 249 htmlf("<span class='age-hours'>%.0f hours</span>",
234 secs * 1.0 / TM_HOUR); 250 secs * 1.0 / TM_HOUR);
235 return; 251 return;
236 } 252 }
237 if (secs < TM_WEEK * 2) { 253 if (secs < TM_WEEK * 2) {
238 htmlf("<span class='age-days'>%.0f days</span>", 254 htmlf("<span class='age-days'>%.0f days</span>",
239 secs * 1.0 / TM_DAY); 255 secs * 1.0 / TM_DAY);
240 return; 256 return;
241 } 257 }
242 if (secs < TM_MONTH * 2) { 258 if (secs < TM_MONTH * 2) {
243 htmlf("<span class='age-weeks'>%.0f weeks</span>", 259 htmlf("<span class='age-weeks'>%.0f weeks</span>",
244 secs * 1.0 / TM_WEEK); 260 secs * 1.0 / TM_WEEK);
245 return; 261 return;
246 } 262 }
247 if (secs < TM_YEAR * 2) { 263 if (secs < TM_YEAR * 2) {
248 htmlf("<span class='age-months'>%.0f months</span>", 264 htmlf("<span class='age-months'>%.0f months</span>",
249 secs * 1.0 / TM_MONTH); 265 secs * 1.0 / TM_MONTH);
250 return; 266 return;
251 } 267 }
252 htmlf("<span class='age-years'>%.0f years</span>", 268 htmlf("<span class='age-years'>%.0f years</span>",
253 secs * 1.0 / TM_YEAR); 269 secs * 1.0 / TM_YEAR);
254} 270}
255 271
256void cgit_print_docstart(char *title, struct cacheitem *item) 272void cgit_print_docstart(char *title, struct cacheitem *item)
257{ 273{
258 html("Content-Type: text/html; charset=utf-8\n"); 274 html("Content-Type: text/html; charset=utf-8\n");
259 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); 275 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime));
260 htmlf("Expires: %s\n", http_date(item->st.st_mtime + 276 htmlf("Expires: %s\n", http_date(item->st.st_mtime +
261 ttl_seconds(item->ttl))); 277 ttl_seconds(item->ttl)));
262 html("\n"); 278 html("\n");
263 html(cgit_doctype); 279 html(cgit_doctype);
264 html("<html>\n"); 280 html("<html>\n");
265 html("<head>\n"); 281 html("<head>\n");
266 html("<title>"); 282 html("<title>");
267 html_txt(title); 283 html_txt(title);
268 html("</title>\n"); 284 html("</title>\n");
269 htmlf("<meta name='generator' content='cgit v%s'/>\n", cgit_version); 285 htmlf("<meta name='generator' content='cgit v%s'/>\n", cgit_version);
270 html("<link rel='stylesheet' type='text/css' href='"); 286 html("<link rel='stylesheet' type='text/css' href='");
271 html_attr(cgit_css); 287 html_attr(cgit_css);
272 html("'/>\n"); 288 html("'/>\n");
273 html("</head>\n"); 289 html("</head>\n");
274 html("<body>\n"); 290 html("<body>\n");
275} 291}
276 292
277void cgit_print_docend() 293void cgit_print_docend()
278{ 294{
279 html("</td></tr></table>"); 295 html("</td></tr></table>");
280 html("</body>\n</html>\n"); 296 html("</body>\n</html>\n");
281} 297}
282 298
283void cgit_print_pageheader(char *title, int show_search) 299void cgit_print_pageheader(char *title, int show_search)
284{ 300{
285 html("<table id='layout'>"); 301 html("<table id='layout'>");
286 html("<tr><td id='header'><a href='"); 302 html("<tr><td id='header'><a href='");
287 html_attr(cgit_rooturl()); 303 html_attr(cgit_rooturl());
288 html("'>"); 304 html("'>");
289 html_txt(cgit_root_title); 305 html_txt(cgit_root_title);
290 html("</a></td><td id='logo'>"); 306 html("</a></td><td id='logo'>");
291 html("<a href='"); 307 html("<a href='");
292 html_attr(cgit_logo_link); 308 html_attr(cgit_logo_link);
293 htmlf("'><img src='%s' alt='logo'/></a>", cgit_logo); 309 htmlf("'><img src='%s' alt='logo'/></a>", cgit_logo);
294 html("</td></tr>"); 310 html("</td></tr>");
295 html("<tr><td id='crumb'>"); 311 html("<tr><td id='crumb'>");
296 if (cgit_query_repo) { 312 if (cgit_query_repo) {
297 html_txt(cgit_repo->name); 313 html_txt(cgit_repo->name);
298 html(" ("); 314 html(" (");
299 html_txt(cgit_query_head); 315 html_txt(cgit_query_head);
300 html(") : &nbsp;"); 316 html(") : &nbsp;");
301 reporevlink(NULL, "summary", NULL, NULL, cgit_query_head, 317 reporevlink(NULL, "summary", NULL, NULL, cgit_query_head,
302 NULL, NULL); 318 NULL, NULL);
303 html(" "); 319 html(" ");
304 cgit_log_link("log", NULL, NULL, cgit_query_head, 320 cgit_log_link("log", NULL, NULL, cgit_query_head,
305 cgit_query_sha1, cgit_query_path); 321 cgit_query_sha1, cgit_query_path, 0);
306 html(" "); 322 html(" ");
307 cgit_tree_link("tree", NULL, NULL, cgit_query_head, 323 cgit_tree_link("tree", NULL, NULL, cgit_query_head,
308 cgit_query_sha1, NULL); 324 cgit_query_sha1, NULL);
309 html(" "); 325 html(" ");
310 cgit_commit_link("commit", NULL, NULL, cgit_query_head, 326 cgit_commit_link("commit", NULL, NULL, cgit_query_head,
311 cgit_query_sha1); 327 cgit_query_sha1);
312 html(" "); 328 html(" ");
313 cgit_diff_link("diff", NULL, NULL, cgit_query_head, 329 cgit_diff_link("diff", NULL, NULL, cgit_query_head,
314 cgit_query_sha1, cgit_query_sha2, 330 cgit_query_sha1, cgit_query_sha2,
315 cgit_query_path); 331 cgit_query_path);
316 } else { 332 } else {
317 html_txt("Index of repositories"); 333 html_txt("Index of repositories");
318 } 334 }
319 html("</td>"); 335 html("</td>");
320 html("<td id='search'>"); 336 html("<td id='search'>");
321 if (show_search) { 337 if (show_search) {
322 html("<form method='get' action='"); 338 html("<form method='get' action='");
323 html_attr(cgit_currurl()); 339 html_attr(cgit_currurl());
324 html("'>"); 340 html("'>");
325 if (!cgit_virtual_root) { 341 if (!cgit_virtual_root) {
326 if (cgit_query_repo) 342 if (cgit_query_repo)
327 html_hidden("r", cgit_query_repo); 343 html_hidden("r", cgit_query_repo);
328 if (cgit_query_page) 344 if (cgit_query_page)
329 html_hidden("p", cgit_query_page); 345 html_hidden("p", cgit_query_page);
330 } 346 }
331 if (cgit_query_head) 347 if (cgit_query_head)
332 html_hidden("h", cgit_query_head); 348 html_hidden("h", cgit_query_head);
333 if (cgit_query_sha1) 349 if (cgit_query_sha1)
334 html_hidden("id", cgit_query_sha1); 350 html_hidden("id", cgit_query_sha1);
335 if (cgit_query_sha2) 351 if (cgit_query_sha2)
336 html_hidden("id2", cgit_query_sha2); 352 html_hidden("id2", cgit_query_sha2);
337 html("<input type='text' name='q' value='"); 353 html("<input type='text' name='q' value='");
338 html_attr(cgit_query_search); 354 html_attr(cgit_query_search);
339 html("'/></form>"); 355 html("'/></form>");
340 } 356 }
341 html("</td></tr>"); 357 html("</td></tr>");
342 html("<tr><td id='content' colspan='2'>"); 358 html("<tr><td id='content' colspan='2'>");
343} 359}
344 360
345void cgit_print_snapshot_start(const char *mimetype, const char *filename, 361void cgit_print_snapshot_start(const char *mimetype, const char *filename,
346 struct cacheitem *item) 362 struct cacheitem *item)
347{ 363{
348 htmlf("Content-Type: %s\n", mimetype); 364 htmlf("Content-Type: %s\n", mimetype);
349 htmlf("Content-Disposition: inline; filename=\"%s\"\n", filename); 365 htmlf("Content-Disposition: inline; filename=\"%s\"\n", filename);
350 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); 366 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime));
351 htmlf("Expires: %s\n", http_date(item->st.st_mtime + 367 htmlf("Expires: %s\n", http_date(item->st.st_mtime +
352 ttl_seconds(item->ttl))); 368 ttl_seconds(item->ttl)));
353 html("\n"); 369 html("\n");
354} 370}
diff --git a/ui-summary.c b/ui-summary.c
index 03dd078..b4bc6d8 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -1,214 +1,214 @@
1/* ui-summary.c: functions for generating repo summary page 1/* ui-summary.c: functions for generating repo summary page
2 * 2 *
3 * Copyright (C) 2006 Lars Hjemli 3 * Copyright (C) 2006 Lars Hjemli
4 * 4 *
5 * Licensed under GNU General Public License v2 5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text) 6 * (see COPYING for full license text)
7 */ 7 */
8 8
9#include "cgit.h" 9#include "cgit.h"
10 10
11static int header; 11static int header;
12 12
13static int cgit_print_branch_cb(const char *refname, const unsigned char *sha1, 13static int cgit_print_branch_cb(const char *refname, const unsigned char *sha1,
14 int flags, void *cb_data) 14 int flags, void *cb_data)
15{ 15{
16 struct commit *commit; 16 struct commit *commit;
17 struct commitinfo *info; 17 struct commitinfo *info;
18 char buf[256]; 18 char buf[256];
19 char *ref; 19 char *ref;
20 20
21 ref = xstrdup(refname); 21 ref = xstrdup(refname);
22 strncpy(buf, refname, sizeof(buf)); 22 strncpy(buf, refname, sizeof(buf));
23 commit = lookup_commit(sha1); 23 commit = lookup_commit(sha1);
24 // object is not really parsed at this point, because of some fallout 24 // object is not really parsed at this point, because of some fallout
25 // from previous calls to git functions in cgit_print_log() 25 // from previous calls to git functions in cgit_print_log()
26 commit->object.parsed = 0; 26 commit->object.parsed = 0;
27 if (commit && !parse_commit(commit)){ 27 if (commit && !parse_commit(commit)){
28 info = cgit_parse_commit(commit); 28 info = cgit_parse_commit(commit);
29 html("<tr><td>"); 29 html("<tr><td>");
30 cgit_log_link(ref, NULL, NULL, ref, NULL, NULL); 30 cgit_log_link(ref, NULL, NULL, ref, NULL, NULL, 0);
31 html("</td><td>"); 31 html("</td><td>");
32 cgit_print_age(commit->date, -1, NULL); 32 cgit_print_age(commit->date, -1, NULL);
33 html("</td><td>"); 33 html("</td><td>");
34 html_txt(info->author); 34 html_txt(info->author);
35 html("</td><td>"); 35 html("</td><td>");
36 cgit_commit_link(info->subject, NULL, NULL, ref, NULL); 36 cgit_commit_link(info->subject, NULL, NULL, ref, NULL);
37 html("</td></tr>\n"); 37 html("</td></tr>\n");
38 cgit_free_commitinfo(info); 38 cgit_free_commitinfo(info);
39 } else { 39 } else {
40 html("<tr><td>"); 40 html("<tr><td>");
41 html_txt(buf); 41 html_txt(buf);
42 html("</td><td colspan='3'>"); 42 html("</td><td colspan='3'>");
43 htmlf("*** bad ref %s ***", sha1_to_hex(sha1)); 43 htmlf("*** bad ref %s ***", sha1_to_hex(sha1));
44 html("</td></tr>\n"); 44 html("</td></tr>\n");
45 } 45 }
46 free(ref); 46 free(ref);
47 return 0; 47 return 0;
48} 48}
49 49
50 50
51static void cgit_print_object_ref(struct object *obj) 51static 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 = "view";
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
75static void print_tag_header() 75static void print_tag_header()
76{ 76{
77 html("<tr class='nohover'><th class='left'>Tag</th>" 77 html("<tr class='nohover'><th class='left'>Tag</th>"
78 "<th class='left'>Age</th>" 78 "<th class='left'>Age</th>"
79 "<th class='left'>Author</th>" 79 "<th class='left'>Author</th>"
80 "<th class='left'>Reference</th></tr>\n"); 80 "<th class='left'>Reference</th></tr>\n");
81 header = 1; 81 header = 1;
82} 82}
83 83
84static int cgit_print_tag_cb(const char *refname, const unsigned char *sha1, 84static int cgit_print_tag_cb(const char *refname, const unsigned char *sha1,
85 int flags, void *cb_data) 85 int flags, void *cb_data)
86{ 86{
87 struct tag *tag; 87 struct tag *tag;
88 struct taginfo *info; 88 struct taginfo *info;
89 struct object *obj; 89 struct object *obj;
90 char buf[256], *url; 90 char buf[256], *url;
91 91
92 strncpy(buf, refname, sizeof(buf)); 92 strncpy(buf, refname, sizeof(buf));
93 obj = parse_object(sha1); 93 obj = parse_object(sha1);
94 if (!obj) 94 if (!obj)
95 return 1; 95 return 1;
96 if (obj->type == OBJ_TAG) { 96 if (obj->type == OBJ_TAG) {
97 tag = lookup_tag(sha1); 97 tag = lookup_tag(sha1);
98 if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) 98 if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag)))
99 return 2; 99 return 2;
100 if (!header) 100 if (!header)
101 print_tag_header(); 101 print_tag_header();
102 html("<tr><td>"); 102 html("<tr><td>");
103 url = cgit_pageurl(cgit_query_repo, "view", 103 url = cgit_pageurl(cgit_query_repo, "view",
104 fmt("id=%s", sha1_to_hex(sha1))); 104 fmt("id=%s", sha1_to_hex(sha1)));
105 html_link_open(url, NULL, NULL); 105 html_link_open(url, NULL, NULL);
106 html_txt(buf); 106 html_txt(buf);
107 html_link_close(); 107 html_link_close();
108 html("</td><td>"); 108 html("</td><td>");
109 if (info->tagger_date > 0) 109 if (info->tagger_date > 0)
110 cgit_print_age(info->tagger_date, -1, NULL); 110 cgit_print_age(info->tagger_date, -1, NULL);
111 html("</td><td>"); 111 html("</td><td>");
112 if (info->tagger) 112 if (info->tagger)
113 html(info->tagger); 113 html(info->tagger);
114 html("</td><td>"); 114 html("</td><td>");
115 cgit_print_object_ref(tag->tagged); 115 cgit_print_object_ref(tag->tagged);
116 html("</td></tr>\n"); 116 html("</td></tr>\n");
117 } else { 117 } else {
118 if (!header) 118 if (!header)
119 print_tag_header(); 119 print_tag_header();
120 html("<tr><td>"); 120 html("<tr><td>");
121 html_txt(buf); 121 html_txt(buf);
122 html("</td><td colspan='2'/><td>"); 122 html("</td><td colspan='2'/><td>");
123 cgit_print_object_ref(obj); 123 cgit_print_object_ref(obj);
124 html("</td></tr>\n"); 124 html("</td></tr>\n");
125 } 125 }
126 return 0; 126 return 0;
127} 127}
128 128
129static int cgit_print_archive_cb(const char *refname, const unsigned char *sha1, 129static int cgit_print_archive_cb(const char *refname, const unsigned char *sha1,
130 int flags, void *cb_data) 130 int flags, void *cb_data)
131{ 131{
132 struct tag *tag; 132 struct tag *tag;
133 struct taginfo *info; 133 struct taginfo *info;
134 struct object *obj; 134 struct object *obj;
135 char buf[256], *url; 135 char buf[256], *url;
136 unsigned char fileid[20]; 136 unsigned char fileid[20];
137 137
138 if (prefixcmp(refname, "refs/archives")) 138 if (prefixcmp(refname, "refs/archives"))
139 return 0; 139 return 0;
140 strncpy(buf, refname+14, sizeof(buf)); 140 strncpy(buf, refname+14, sizeof(buf));
141 obj = parse_object(sha1); 141 obj = parse_object(sha1);
142 if (!obj) 142 if (!obj)
143 return 1; 143 return 1;
144 if (obj->type == OBJ_TAG) { 144 if (obj->type == OBJ_TAG) {
145 tag = lookup_tag(sha1); 145 tag = lookup_tag(sha1);
146 if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) 146 if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag)))
147 return 0; 147 return 0;
148 hashcpy(fileid, tag->tagged->sha1); 148 hashcpy(fileid, tag->tagged->sha1);
149 } else if (obj->type != OBJ_BLOB) { 149 } else if (obj->type != OBJ_BLOB) {
150 return 0; 150 return 0;
151 } else { 151 } else {
152 hashcpy(fileid, sha1); 152 hashcpy(fileid, sha1);
153 } 153 }
154 if (!header) { 154 if (!header) {
155 html("<table id='downloads'>"); 155 html("<table id='downloads'>");
156 html("<tr><th>Downloads</th></tr>"); 156 html("<tr><th>Downloads</th></tr>");
157 header = 1; 157 header = 1;
158 } 158 }
159 html("<tr><td>"); 159 html("<tr><td>");
160 url = cgit_pageurl(cgit_query_repo, "blob", 160 url = cgit_pageurl(cgit_query_repo, "blob",
161 fmt("id=%s&amp;path=%s", sha1_to_hex(fileid), 161 fmt("id=%s&amp;path=%s", sha1_to_hex(fileid),
162 buf)); 162 buf));
163 html_link_open(url, NULL, NULL); 163 html_link_open(url, NULL, NULL);
164 html_txt(buf); 164 html_txt(buf);
165 html_link_close(); 165 html_link_close();
166 html("</td></tr>"); 166 html("</td></tr>");
167 return 0; 167 return 0;
168} 168}
169 169
170static void cgit_print_branches() 170static void cgit_print_branches()
171{ 171{
172 html("<tr class='nohover'><th class='left'>Branch</th>" 172 html("<tr class='nohover'><th class='left'>Branch</th>"
173 "<th class='left'>Idle</th>" 173 "<th class='left'>Idle</th>"
174 "<th class='left'>Author</th>" 174 "<th class='left'>Author</th>"
175 "<th class='left'>Head commit</th></tr>\n"); 175 "<th class='left'>Head commit</th></tr>\n");
176 for_each_branch_ref(cgit_print_branch_cb, NULL); 176 for_each_branch_ref(cgit_print_branch_cb, NULL);
177} 177}
178 178
179static void cgit_print_tags() 179static void cgit_print_tags()
180{ 180{
181 header = 0; 181 header = 0;
182 for_each_tag_ref(cgit_print_tag_cb, NULL); 182 for_each_tag_ref(cgit_print_tag_cb, NULL);
183} 183}
184 184
185static void cgit_print_archives() 185static void cgit_print_archives()
186{ 186{
187 header = 0; 187 header = 0;
188 for_each_ref(cgit_print_archive_cb, NULL); 188 for_each_ref(cgit_print_archive_cb, NULL);
189 if (header) 189 if (header)
190 html("</table>"); 190 html("</table>");
191} 191}
192 192
193void cgit_print_summary() 193void cgit_print_summary()
194{ 194{
195 html("<div id='summary'>"); 195 html("<div id='summary'>");
196 cgit_print_archives(); 196 cgit_print_archives();
197 html("<h2>"); 197 html("<h2>");
198 html_txt(cgit_repo->name); 198 html_txt(cgit_repo->name);
199 html(" - "); 199 html(" - ");
200 html_txt(cgit_repo->desc); 200 html_txt(cgit_repo->desc);
201 html("</h2>"); 201 html("</h2>");
202 if (cgit_repo->readme) 202 if (cgit_repo->readme)
203 html_include(cgit_repo->readme); 203 html_include(cgit_repo->readme);
204 html("</div>"); 204 html("</div>");
205 if (cgit_summary_log > 0) 205 if (cgit_summary_log > 0)
206 cgit_print_log(cgit_query_head, 0, cgit_summary_log, NULL, NULL, 0); 206 cgit_print_log(cgit_query_head, 0, cgit_summary_log, NULL, NULL, 0);
207 html("<table class='list nowrap'>"); 207 html("<table class='list nowrap'>");
208 if (cgit_summary_log > 0) 208 if (cgit_summary_log > 0)
209 html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>"); 209 html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
210 cgit_print_branches(); 210 cgit_print_branches();
211 html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>"); 211 html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
212 cgit_print_tags(); 212 cgit_print_tags();
213 html("</table>"); 213 html("</table>");
214} 214}
diff --git a/ui-tree.c b/ui-tree.c
index b6cb813..c5d64ff 100644
--- a/ui-tree.c
+++ b/ui-tree.c
@@ -1,209 +1,209 @@
1/* ui-tree.c: functions for tree output 1/* ui-tree.c: functions for tree output
2 * 2 *
3 * Copyright (C) 2006 Lars Hjemli 3 * Copyright (C) 2006 Lars Hjemli
4 * 4 *
5 * Licensed under GNU General Public License v2 5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text) 6 * (see COPYING for full license text)
7 */ 7 */
8 8
9#include "cgit.h" 9#include "cgit.h"
10 10
11char *curr_rev; 11char *curr_rev;
12char *match_path; 12char *match_path;
13int header = 0; 13int header = 0;
14 14
15static void print_object(const unsigned char *sha1, char *path) 15static void print_object(const unsigned char *sha1, char *path)
16{ 16{
17 enum object_type type; 17 enum object_type type;
18 unsigned char *buf; 18 unsigned char *buf;
19 unsigned long size, lineno, start, idx; 19 unsigned long size, lineno, start, idx;
20 20
21 type = sha1_object_info(sha1, &size); 21 type = sha1_object_info(sha1, &size);
22 if (type == OBJ_BAD) { 22 if (type == OBJ_BAD) {
23 cgit_print_error(fmt("Bad object name: %s", 23 cgit_print_error(fmt("Bad object name: %s",
24 sha1_to_hex(sha1))); 24 sha1_to_hex(sha1)));
25 return; 25 return;
26 } 26 }
27 27
28 buf = read_sha1_file(sha1, &type, &size); 28 buf = read_sha1_file(sha1, &type, &size);
29 if (!buf) { 29 if (!buf) {
30 cgit_print_error(fmt("Error reading object %s", 30 cgit_print_error(fmt("Error reading object %s",
31 sha1_to_hex(sha1))); 31 sha1_to_hex(sha1)));
32 return; 32 return;
33 } 33 }
34 34
35 html("<table class='blob'>\n"); 35 html("<table class='blob'>\n");
36 idx = 0; 36 idx = 0;
37 start = 0; 37 start = 0;
38 lineno = 0; 38 lineno = 0;
39 while(idx < size) { 39 while(idx < size) {
40 if (buf[idx] == '\n') { 40 if (buf[idx] == '\n') {
41 buf[idx] = '\0'; 41 buf[idx] = '\0';
42 htmlf("<tr><td class='no'>%d</td><td class='txt'>", 42 htmlf("<tr><td class='no'>%d</td><td class='txt'>",
43 ++lineno); 43 ++lineno);
44 html_txt(buf + start); 44 html_txt(buf + start);
45 html("</td></tr>\n"); 45 html("</td></tr>\n");
46 start = idx + 1; 46 start = idx + 1;
47 } 47 }
48 idx++; 48 idx++;
49 } 49 }
50 html("</table>\n"); 50 html("</table>\n");
51} 51}
52 52
53 53
54static int ls_item(const unsigned char *sha1, const char *base, int baselen, 54static int ls_item(const unsigned char *sha1, const char *base, int baselen,
55 const char *pathname, unsigned int mode, int stage) 55 const char *pathname, unsigned int mode, int stage)
56{ 56{
57 char *name; 57 char *name;
58 char *fullpath; 58 char *fullpath;
59 enum object_type type; 59 enum object_type type;
60 unsigned long size = 0; 60 unsigned long size = 0;
61 61
62 name = xstrdup(pathname); 62 name = xstrdup(pathname);
63 fullpath = fmt("%s%s%s", cgit_query_path ? cgit_query_path : "", 63 fullpath = fmt("%s%s%s", cgit_query_path ? cgit_query_path : "",
64 cgit_query_path ? "/" : "", name); 64 cgit_query_path ? "/" : "", name);
65 65
66 type = sha1_object_info(sha1, &size); 66 type = sha1_object_info(sha1, &size);
67 if (type == OBJ_BAD && !S_ISDIRLNK(mode)) { 67 if (type == OBJ_BAD && !S_ISDIRLNK(mode)) {
68 htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>", 68 htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>",
69 name, 69 name,
70 sha1_to_hex(sha1)); 70 sha1_to_hex(sha1));
71 return 0; 71 return 0;
72 } 72 }
73 73
74 html("<tr><td class='ls-mode'>"); 74 html("<tr><td class='ls-mode'>");
75 html_filemode(mode); 75 html_filemode(mode);
76 html("</td><td>"); 76 html("</td><td>");
77 if (S_ISDIRLNK(mode)) { 77 if (S_ISDIRLNK(mode)) {
78 htmlf("<a class='ls-mod' href='"); 78 htmlf("<a class='ls-mod' href='");
79 html_attr(fmt(cgit_repo->module_link, 79 html_attr(fmt(cgit_repo->module_link,
80 name, 80 name,
81 sha1_to_hex(sha1))); 81 sha1_to_hex(sha1)));
82 html("'>"); 82 html("'>");
83 html_txt(name); 83 html_txt(name);
84 html("</a>"); 84 html("</a>");
85 } else if (S_ISDIR(mode)) { 85 } else if (S_ISDIR(mode)) {
86 cgit_tree_link(name, NULL, "ls-dir", cgit_query_head, 86 cgit_tree_link(name, NULL, "ls-dir", cgit_query_head,
87 curr_rev, fullpath); 87 curr_rev, fullpath);
88 } else { 88 } else {
89 cgit_tree_link(name, NULL, "ls-blob", cgit_query_head, 89 cgit_tree_link(name, NULL, "ls-blob", cgit_query_head,
90 curr_rev, fullpath); 90 curr_rev, fullpath);
91 } 91 }
92 htmlf("</td><td class='ls-size'>%li</td>", size); 92 htmlf("</td><td class='ls-size'>%li</td>", size);
93 93
94 html("<td>"); 94 html("<td>");
95 cgit_log_link("log", NULL, "button", cgit_query_head, curr_rev, 95 cgit_log_link("log", NULL, "button", cgit_query_head, curr_rev,
96 fullpath); 96 fullpath, 0);
97 html("</td></tr>\n"); 97 html("</td></tr>\n");
98 free(name); 98 free(name);
99 return 0; 99 return 0;
100} 100}
101 101
102static void ls_head() 102static void ls_head()
103{ 103{
104 html("<table class='list'>\n"); 104 html("<table class='list'>\n");
105 html("<tr class='nohover'>"); 105 html("<tr class='nohover'>");
106 html("<th class='left'>Mode</th>"); 106 html("<th class='left'>Mode</th>");
107 html("<th class='left'>Name</th>"); 107 html("<th class='left'>Name</th>");
108 html("<th class='right'>Size</th>"); 108 html("<th class='right'>Size</th>");
109 html("<th/>"); 109 html("<th/>");
110 html("</tr>\n"); 110 html("</tr>\n");
111 header = 1; 111 header = 1;
112} 112}
113 113
114static void ls_tail() 114static void ls_tail()
115{ 115{
116 if (!header) 116 if (!header)
117 return; 117 return;
118 html("</table>\n"); 118 html("</table>\n");
119 header = 0; 119 header = 0;
120} 120}
121 121
122static void ls_tree(const unsigned char *sha1, char *path) 122static void ls_tree(const unsigned char *sha1, char *path)
123{ 123{
124 struct tree *tree; 124 struct tree *tree;
125 125
126 tree = parse_tree_indirect(sha1); 126 tree = parse_tree_indirect(sha1);
127 if (!tree) { 127 if (!tree) {
128 cgit_print_error(fmt("Not a tree object: %s", 128 cgit_print_error(fmt("Not a tree object: %s",
129 sha1_to_hex(sha1))); 129 sha1_to_hex(sha1)));
130 return; 130 return;
131 } 131 }
132 132
133 ls_head(); 133 ls_head();
134 read_tree_recursive(tree, "", 0, 1, NULL, ls_item); 134 read_tree_recursive(tree, "", 0, 1, NULL, ls_item);
135 ls_tail(); 135 ls_tail();
136} 136}
137 137
138 138
139static int walk_tree(const unsigned char *sha1, const char *base, int baselen, 139static int walk_tree(const unsigned char *sha1, const char *base, int baselen,
140 const char *pathname, unsigned mode, int stage) 140 const char *pathname, unsigned mode, int stage)
141{ 141{
142 static int state; 142 static int state;
143 static char buffer[PATH_MAX]; 143 static char buffer[PATH_MAX];
144 char *url; 144 char *url;
145 145
146 if (state == 0) { 146 if (state == 0) {
147 memcpy(buffer, base, baselen); 147 memcpy(buffer, base, baselen);
148 strcpy(buffer+baselen, pathname); 148 strcpy(buffer+baselen, pathname);
149 url = cgit_pageurl(cgit_query_repo, "tree", 149 url = cgit_pageurl(cgit_query_repo, "tree",
150 fmt("h=%s&amp;path=%s", curr_rev, buffer)); 150 fmt("h=%s&amp;path=%s", curr_rev, buffer));
151 html("/"); 151 html("/");
152 cgit_tree_link(xstrdup(pathname), NULL, NULL, cgit_query_head, 152 cgit_tree_link(xstrdup(pathname), NULL, NULL, cgit_query_head,
153 curr_rev, buffer); 153 curr_rev, buffer);
154 154
155 if (strcmp(match_path, buffer)) 155 if (strcmp(match_path, buffer))
156 return READ_TREE_RECURSIVE; 156 return READ_TREE_RECURSIVE;
157 157
158 if (S_ISDIR(mode)) { 158 if (S_ISDIR(mode)) {
159 state = 1; 159 state = 1;
160 ls_head(); 160 ls_head();
161 return READ_TREE_RECURSIVE; 161 return READ_TREE_RECURSIVE;
162 } else { 162 } else {
163 print_object(sha1, buffer); 163 print_object(sha1, buffer);
164 return 0; 164 return 0;
165 } 165 }
166 } 166 }
167 ls_item(sha1, base, baselen, pathname, mode, stage); 167 ls_item(sha1, base, baselen, pathname, mode, stage);
168 return 0; 168 return 0;
169} 169}
170 170
171 171
172/* 172/*
173 * Show a tree or a blob 173 * Show a tree or a blob
174 * rev: the commit pointing at the root tree object 174 * rev: the commit pointing at the root tree object
175 * path: path to tree or blob 175 * path: path to tree or blob
176 */ 176 */
177void cgit_print_tree(const char *rev, char *path) 177void cgit_print_tree(const char *rev, char *path)
178{ 178{
179 unsigned char sha1[20]; 179 unsigned char sha1[20];
180 struct commit *commit; 180 struct commit *commit;
181 const char *paths[] = {path, NULL}; 181 const char *paths[] = {path, NULL};
182 182
183 if (!rev) 183 if (!rev)
184 rev = cgit_query_head; 184 rev = cgit_query_head;
185 185
186 curr_rev = xstrdup(rev); 186 curr_rev = xstrdup(rev);
187 if (get_sha1(rev, sha1)) { 187 if (get_sha1(rev, sha1)) {
188 cgit_print_error(fmt("Invalid revision name: %s", rev)); 188 cgit_print_error(fmt("Invalid revision name: %s", rev));
189 return; 189 return;
190 } 190 }
191 commit = lookup_commit_reference(sha1); 191 commit = lookup_commit_reference(sha1);
192 if (!commit || parse_commit(commit)) { 192 if (!commit || parse_commit(commit)) {
193 cgit_print_error(fmt("Invalid commit reference: %s", rev)); 193 cgit_print_error(fmt("Invalid commit reference: %s", rev));
194 return; 194 return;
195 } 195 }
196 196
197 html("path: <a href='"); 197 html("path: <a href='");
198 html_attr(cgit_pageurl(cgit_query_repo, "tree", fmt("h=%s", rev))); 198 html_attr(cgit_pageurl(cgit_query_repo, "tree", fmt("h=%s", rev)));
199 html("'>root</a>"); 199 html("'>root</a>");
200 200
201 if (path == NULL) { 201 if (path == NULL) {
202 ls_tree(commit->tree->object.sha1, NULL); 202 ls_tree(commit->tree->object.sha1, NULL);
203 return; 203 return;
204 } 204 }
205 205
206 match_path = path; 206 match_path = path;
207 read_tree_recursive(commit->tree, NULL, 0, 0, paths, walk_tree); 207 read_tree_recursive(commit->tree, NULL, 0, 0, paths, walk_tree);
208 ls_tail(); 208 ls_tail();
209} 209}