author | Lars Hjemli <hjemli@gmail.com> | 2007-06-29 18:27:41 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-06-29 18:31:00 (UTC) |
commit | 103940fe6b0914dc42b8b033d1d328f38135ca5f (patch) (unidiff) | |
tree | 2bc9c831dc5158032e68e065519e7ee243b6731d | |
parent | 382805ee83b6e6f165159312a9fe20e3971897b6 (diff) | |
download | cgit-103940fe6b0914dc42b8b033d1d328f38135ca5f.zip cgit-103940fe6b0914dc42b8b033d1d328f38135ca5f.tar.gz cgit-103940fe6b0914dc42b8b033d1d328f38135ca5f.tar.bz2 |
Add ofs argument to cgit_log_link and use it in ui-log.c
This fixes a bug in the prev/next links on the log page: when on the default
branch the links to prev/next page would contain h=(null).
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.h | 2 | ||||
-rw-r--r-- | ui-log.c | 16 | ||||
-rw-r--r-- | ui-repolist.c | 2 | ||||
-rw-r--r-- | ui-shared.c | 22 | ||||
-rw-r--r-- | ui-summary.c | 2 | ||||
-rw-r--r-- | ui-tree.c | 2 |
6 files changed, 30 insertions, 16 deletions
@@ -161,76 +161,76 @@ extern int chk_positive(int result, char *msg); | |||
161 | extern int hextoint(char c); | 161 | extern int hextoint(char c); |
162 | extern char *trim_end(const char *str, char c); | 162 | extern char *trim_end(const char *str, char c); |
163 | 163 | ||
164 | extern void *cgit_free_commitinfo(struct commitinfo *info); | 164 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
165 | 165 | ||
166 | extern int cgit_diff_files(const unsigned char *old_sha1, | 166 | extern 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 | ||
170 | extern void cgit_diff_tree(const unsigned char *old_sha1, | 170 | extern 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 | ||
174 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); | 174 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
175 | 175 | ||
176 | extern char *fmt(const char *format,...); | 176 | extern char *fmt(const char *format,...); |
177 | 177 | ||
178 | extern void html(const char *txt); | 178 | extern void html(const char *txt); |
179 | extern void htmlf(const char *format,...); | 179 | extern void htmlf(const char *format,...); |
180 | extern void html_txt(char *txt); | 180 | extern void html_txt(char *txt); |
181 | extern void html_ntxt(int len, char *txt); | 181 | extern void html_ntxt(int len, char *txt); |
182 | extern void html_attr(char *txt); | 182 | extern void html_attr(char *txt); |
183 | extern void html_hidden(char *name, char *value); | 183 | extern void html_hidden(char *name, char *value); |
184 | extern void html_link_open(char *url, char *title, char *class); | 184 | extern void html_link_open(char *url, char *title, char *class); |
185 | extern void html_link_close(void); | 185 | extern void html_link_close(void); |
186 | extern void html_filemode(unsigned short mode); | 186 | extern void html_filemode(unsigned short mode); |
187 | extern int html_include(const char *filename); | 187 | extern int html_include(const char *filename); |
188 | 188 | ||
189 | extern int cgit_read_config(const char *filename, configfn fn); | 189 | extern int cgit_read_config(const char *filename, configfn fn); |
190 | extern int cgit_parse_query(char *txt, configfn fn); | 190 | extern int cgit_parse_query(char *txt, configfn fn); |
191 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); | 191 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
192 | extern struct taginfo *cgit_parse_tag(struct tag *tag); | 192 | extern struct taginfo *cgit_parse_tag(struct tag *tag); |
193 | extern void cgit_parse_url(const char *url); | 193 | extern void cgit_parse_url(const char *url); |
194 | 194 | ||
195 | extern char *cache_safe_filename(const char *unsafe); | 195 | extern char *cache_safe_filename(const char *unsafe); |
196 | extern int cache_lock(struct cacheitem *item); | 196 | extern int cache_lock(struct cacheitem *item); |
197 | extern int cache_unlock(struct cacheitem *item); | 197 | extern int cache_unlock(struct cacheitem *item); |
198 | extern int cache_cancel_lock(struct cacheitem *item); | 198 | extern int cache_cancel_lock(struct cacheitem *item); |
199 | extern int cache_exist(struct cacheitem *item); | 199 | extern int cache_exist(struct cacheitem *item); |
200 | extern int cache_expired(struct cacheitem *item); | 200 | extern int cache_expired(struct cacheitem *item); |
201 | 201 | ||
202 | extern char *cgit_repourl(const char *reponame); | 202 | extern char *cgit_repourl(const char *reponame); |
203 | extern char *cgit_pageurl(const char *reponame, const char *pagename, | 203 | extern char *cgit_pageurl(const char *reponame, const char *pagename, |
204 | const char *query); | 204 | const char *query); |
205 | 205 | ||
206 | extern void cgit_tree_link(char *name, char *title, char *class, char *head, | 206 | extern void cgit_tree_link(char *name, char *title, char *class, char *head, |
207 | char *rev, char *path); | 207 | char *rev, char *path); |
208 | extern void cgit_log_link(char *name, char *title, char *class, char *head, | 208 | extern void cgit_log_link(char *name, char *title, char *class, char *head, |
209 | char *rev, char *path); | 209 | char *rev, char *path, int ofs); |
210 | extern void cgit_commit_link(char *name, char *title, char *class, char *head, | 210 | extern void cgit_commit_link(char *name, char *title, char *class, char *head, |
211 | char *rev); | 211 | char *rev); |
212 | extern void cgit_diff_link(char *name, char *title, char *class, char *head, | 212 | extern 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 | ||
215 | extern void cgit_print_error(char *msg); | 215 | extern void cgit_print_error(char *msg); |
216 | extern void cgit_print_date(time_t secs, char *format); | 216 | extern void cgit_print_date(time_t secs, char *format); |
217 | extern void cgit_print_age(time_t t, time_t max_relative, char *format); | 217 | extern void cgit_print_age(time_t t, time_t max_relative, char *format); |
218 | extern void cgit_print_docstart(char *title, struct cacheitem *item); | 218 | extern void cgit_print_docstart(char *title, struct cacheitem *item); |
219 | extern void cgit_print_docend(); | 219 | extern void cgit_print_docend(); |
220 | extern void cgit_print_pageheader(char *title, int show_search); | 220 | extern void cgit_print_pageheader(char *title, int show_search); |
221 | extern void cgit_print_snapshot_start(const char *mimetype, | 221 | extern 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 | ||
225 | extern void cgit_print_repolist(struct cacheitem *item); | 225 | extern void cgit_print_repolist(struct cacheitem *item); |
226 | extern void cgit_print_summary(); | 226 | extern void cgit_print_summary(); |
227 | extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path, int pager); | 227 | extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path, int pager); |
228 | extern void cgit_print_blob(struct cacheitem *item, const char *hex, char *path); | 228 | extern void cgit_print_blob(struct cacheitem *item, const char *hex, char *path); |
229 | extern void cgit_print_tree(const char *rev, char *path); | 229 | extern void cgit_print_tree(const char *rev, char *path); |
230 | extern void cgit_print_commit(char *hex); | 230 | extern void cgit_print_commit(char *hex); |
231 | extern void cgit_print_diff(const char *new_hex, const char *old_hex); | 231 | extern void cgit_print_diff(const char *new_hex, const char *old_hex); |
232 | extern void cgit_print_snapshot(struct cacheitem *item, const char *hex, | 232 | extern 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 */ |
@@ -68,63 +68,61 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path, i | |||
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(" <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&ofs=%d", tip, ofs-cnt))); | 118 | ofs - cnt); |
119 | html("'>[prev]</a> "); | 119 | html(" "); |
120 | } | 120 | } |
121 | |||
122 | if ((commit = get_revision(&rev)) != NULL) { | 121 | if ((commit = get_revision(&rev)) != NULL) { |
123 | html(" <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&ofs=%d", tip, ofs+cnt))); | 124 | ofs + cnt); |
126 | html("'>[next]</a> "); | ||
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 | |||
@@ -53,57 +53,57 @@ void cgit_print_repolist(struct cacheitem *item) | |||
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 | |||
@@ -118,99 +118,115 @@ static char *repolink(char *title, char *class, char *page, char *head, | |||
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 = "&"; | 132 | delim = "&"; |
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 = "&"; | 138 | delim = "&"; |
139 | } | 139 | } |
140 | return fmt("%s", delim); | 140 | return fmt("%s", delim); |
141 | } | 141 | } |
142 | 142 | ||
143 | static void reporevlink(char *page, char *name, char *title, char *class, | 143 | static 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 | ||
159 | void cgit_tree_link(char *name, char *title, char *class, char *head, | 159 | void 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 | ||
165 | void cgit_log_link(char *name, char *title, char *class, char *head, | 165 | void 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 | ||
171 | void cgit_commit_link(char *name, char *title, char *class, char *head, | 187 | void 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 | ||
183 | void cgit_diff_link(char *name, char *title, char *class, char *head, | 199 | void 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 = "&"; | 209 | delim = "&"; |
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 | ||
205 | void cgit_print_date(time_t secs, char *format) | 221 | void 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 | ||
215 | void cgit_print_age(time_t t, time_t max_relative, char *format) | 231 | void cgit_print_age(time_t t, time_t max_relative, char *format) |
216 | { | 232 | { |
@@ -257,97 +273,97 @@ void 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 | ||
277 | void cgit_print_docend() | 293 | void 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 | ||
283 | void cgit_print_pageheader(char *title, int show_search) | 299 | void 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(") : "); | 316 | html(") : "); |
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 | ||
345 | void cgit_print_snapshot_start(const char *mimetype, const char *filename, | 361 | void 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"); |
diff --git a/ui-summary.c b/ui-summary.c index 03dd078..b4bc6d8 100644 --- a/ui-summary.c +++ b/ui-summary.c | |||
@@ -1,78 +1,78 @@ | |||
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 | ||
11 | static int header; | 11 | static int header; |
12 | 12 | ||
13 | static int cgit_print_branch_cb(const char *refname, const unsigned char *sha1, | 13 | static 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 | ||
51 | static void cgit_print_object_ref(struct object *obj) | 51 | static 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 | ||
75 | static void print_tag_header() | 75 | static 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>" |
@@ -48,97 +48,97 @@ static void print_object(const unsigned char *sha1, char *path) | |||
48 | idx++; | 48 | idx++; |
49 | } | 49 | } |
50 | html("</table>\n"); | 50 | html("</table>\n"); |
51 | } | 51 | } |
52 | 52 | ||
53 | 53 | ||
54 | static int ls_item(const unsigned char *sha1, const char *base, int baselen, | 54 | static 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 | ||
102 | static void ls_head() | 102 | static 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 | ||
114 | static void ls_tail() | 114 | static 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 | ||
122 | static void ls_tree(const unsigned char *sha1, char *path) | 122 | static 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 | ||
139 | static int walk_tree(const unsigned char *sha1, const char *base, int baselen, | 139 | static 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; |