Blame


1 e7e5fa49 2022-12-30 thomas {!
2 e7e5fa49 2022-12-30 thomas /*
3 e7e5fa49 2022-12-30 thomas * Copyright (c) 2022 Omar Polo <op@openbsd.org>
4 e7e5fa49 2022-12-30 thomas * Copyright (c) 2016, 2019, 2020-2022 Tracey Emery <tracey@traceyemery.net>
5 e7e5fa49 2022-12-30 thomas *
6 e7e5fa49 2022-12-30 thomas * Permission to use, copy, modify, and distribute this software for any
7 e7e5fa49 2022-12-30 thomas * purpose with or without fee is hereby granted, provided that the above
8 e7e5fa49 2022-12-30 thomas * copyright notice and this permission notice appear in all copies.
9 e7e5fa49 2022-12-30 thomas *
10 e7e5fa49 2022-12-30 thomas * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 e7e5fa49 2022-12-30 thomas * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 e7e5fa49 2022-12-30 thomas * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 e7e5fa49 2022-12-30 thomas * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 e7e5fa49 2022-12-30 thomas * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 e7e5fa49 2022-12-30 thomas * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 e7e5fa49 2022-12-30 thomas * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 e7e5fa49 2022-12-30 thomas */
18 4fccd2fe 2023-03-08 thomas
19 4fccd2fe 2023-03-08 thomas #include "got_compat.h"
20 e7e5fa49 2022-12-30 thomas
21 e7e5fa49 2022-12-30 thomas #include <sys/types.h>
22 e7e5fa49 2022-12-30 thomas #include <sys/queue.h>
23 3c14c1f2 2023-01-06 thomas #include <sys/stat.h>
24 e7e5fa49 2022-12-30 thomas
25 d6795e9f 2022-12-30 thomas #include <ctype.h>
26 e7e5fa49 2022-12-30 thomas #include <event.h>
27 e7e5fa49 2022-12-30 thomas #include <stdint.h>
28 3c14c1f2 2023-01-06 thomas #include <stdio.h>
29 e7e5fa49 2022-12-30 thomas #include <stdlib.h>
30 e7e5fa49 2022-12-30 thomas #include <string.h>
31 e7e5fa49 2022-12-30 thomas #include <imsg.h>
32 e7e5fa49 2022-12-30 thomas
33 00abe30b 2023-01-14 thomas #include "got_error.h"
34 3c14c1f2 2023-01-06 thomas #include "got_object.h"
35 00abe30b 2023-01-14 thomas #include "got_reference.h"
36 e7e5fa49 2022-12-30 thomas
37 e7e5fa49 2022-12-30 thomas #include "gotwebd.h"
38 e7e5fa49 2022-12-30 thomas #include "tmpl.h"
39 e7e5fa49 2022-12-30 thomas
40 4cc0851e 2023-10-08 thomas enum gotweb_ref_tm {
41 4cc0851e 2023-10-08 thomas TM_DIFF,
42 4cc0851e 2023-10-08 thomas TM_LONG,
43 4cc0851e 2023-10-08 thomas };
44 4cc0851e 2023-10-08 thomas
45 6da1aa18 2023-12-01 thomas static int breadcumbs(struct template *);
46 4cc0851e 2023-10-08 thomas static int datetime(struct template *, time_t, int);
47 b82440e1 2023-01-06 thomas static int gotweb_render_blob_line(struct template *, const char *, size_t);
48 3c14c1f2 2023-01-06 thomas static int gotweb_render_tree_item(struct template *, struct got_tree_entry *);
49 1cd5d437 2023-01-15 thomas static int blame_line(struct template *, const char *, struct blame_line *,
50 1cd5d437 2023-01-15 thomas int, int);
51 20bab626 2023-02-03 thomas
52 20bab626 2023-02-03 thomas static inline int gotweb_render_more(struct template *, int);
53 b82440e1 2023-01-06 thomas
54 dccd05b4 2023-01-10 thomas static inline int diff_line(struct template *, char *);
55 617497a6 2023-01-09 thomas static inline int tag_item(struct template *, struct repo_tag *);
56 00abe30b 2023-01-14 thomas static inline int branch(struct template *, struct got_reflist_entry *);
57 d6795e9f 2022-12-30 thomas static inline int rss_tag_item(struct template *, struct repo_tag *);
58 d6795e9f 2022-12-30 thomas static inline int rss_author(struct template *, char *);
59 d6795e9f 2022-12-30 thomas
60 6da1aa18 2023-12-01 thomas static inline char *
61 6da1aa18 2023-12-01 thomas nextsep(char *s, char **t)
62 6da1aa18 2023-12-01 thomas {
63 6da1aa18 2023-12-01 thomas char *q;
64 6da1aa18 2023-12-01 thomas
65 6da1aa18 2023-12-01 thomas while (*s == '/')
66 6da1aa18 2023-12-01 thomas s++;
67 6da1aa18 2023-12-01 thomas *t = s;
68 6da1aa18 2023-12-01 thomas if (*s == '\0')
69 6da1aa18 2023-12-01 thomas return NULL;
70 6da1aa18 2023-12-01 thomas
71 6da1aa18 2023-12-01 thomas q = strchr(s, '/');
72 6da1aa18 2023-12-01 thomas if (q == NULL)
73 6da1aa18 2023-12-01 thomas q = strchr(s, '\0');
74 6da1aa18 2023-12-01 thomas return q;
75 6da1aa18 2023-12-01 thomas }
76 6da1aa18 2023-12-01 thomas
77 e7e5fa49 2022-12-30 thomas !}
78 4cc0851e 2023-10-08 thomas
79 4cc0851e 2023-10-08 thomas {{ define datetime(struct template *tp, time_t t, int fmt) }}
80 4cc0851e 2023-10-08 thomas {!
81 4cc0851e 2023-10-08 thomas struct tm tm;
82 4cc0851e 2023-10-08 thomas char rfc3339[64];
83 4cc0851e 2023-10-08 thomas char datebuf[64];
84 4cc0851e 2023-10-08 thomas
85 4cc0851e 2023-10-08 thomas if (gmtime_r(&t, &tm) == NULL)
86 4cc0851e 2023-10-08 thomas return -1;
87 4cc0851e 2023-10-08 thomas
88 4cc0851e 2023-10-08 thomas if (strftime(rfc3339, sizeof(rfc3339), "%FT%TZ", &tm) == 0)
89 4cc0851e 2023-10-08 thomas return -1;
90 4cc0851e 2023-10-08 thomas
91 4cc0851e 2023-10-08 thomas if (fmt != TM_DIFF && asctime_r(&tm, datebuf) == NULL)
92 4cc0851e 2023-10-08 thomas return -1;
93 4cc0851e 2023-10-08 thomas !}
94 4cc0851e 2023-10-08 thomas <time datetime="{{ rfc3339 }}">
95 4cc0851e 2023-10-08 thomas {{ if fmt == TM_DIFF }}
96 4cc0851e 2023-10-08 thomas {{ render gotweb_render_age(tp, t) }}
97 4cc0851e 2023-10-08 thomas {{ else }}
98 4cc0851e 2023-10-08 thomas {{ datebuf }} {{ " UTC" }}
99 4cc0851e 2023-10-08 thomas {{ end }}
100 4cc0851e 2023-10-08 thomas </time>
101 4cc0851e 2023-10-08 thomas {{ end }}
102 e7e5fa49 2022-12-30 thomas
103 6da1aa18 2023-12-01 thomas {{ define breadcumbs(struct template *tp) }}
104 6da1aa18 2023-12-01 thomas {!
105 6da1aa18 2023-12-01 thomas struct request *c = tp->tp_arg;
106 6da1aa18 2023-12-01 thomas struct querystring *qs = c->t->qs;
107 6da1aa18 2023-12-01 thomas struct gotweb_url url;
108 6da1aa18 2023-12-01 thomas const char *folder = qs->folder;
109 df7661fb 2023-12-03 thomas const char *action = "tree";
110 6da1aa18 2023-12-01 thomas char *t, *s = NULL, *dir = NULL;
111 6da1aa18 2023-12-01 thomas char ch;
112 6da1aa18 2023-12-01 thomas
113 6da1aa18 2023-12-01 thomas memset(&url, 0, sizeof(url));
114 6da1aa18 2023-12-01 thomas url.index_page = -1;
115 6da1aa18 2023-12-01 thomas url.page = -1;
116 6da1aa18 2023-12-01 thomas url.action = TREE;
117 6da1aa18 2023-12-01 thomas url.path = qs->path;
118 6da1aa18 2023-12-01 thomas url.commit = qs->commit;
119 6da1aa18 2023-12-01 thomas
120 df7661fb 2023-12-03 thomas if (qs->action != TREE && qs->action != BLOB) {
121 df7661fb 2023-12-03 thomas action = gotweb_action_name(qs->action);
122 df7661fb 2023-12-03 thomas url.action = qs->action;
123 df7661fb 2023-12-03 thomas }
124 df7661fb 2023-12-03 thomas
125 6da1aa18 2023-12-01 thomas if (folder && *folder != '\0') {
126 6da1aa18 2023-12-01 thomas while (*folder == '/')
127 6da1aa18 2023-12-01 thomas folder++;
128 6da1aa18 2023-12-01 thomas dir = strdup(folder);
129 6da1aa18 2023-12-01 thomas if (dir == NULL)
130 6da1aa18 2023-12-01 thomas return (-1);
131 6da1aa18 2023-12-01 thomas s = dir;
132 6da1aa18 2023-12-01 thomas }
133 6da1aa18 2023-12-01 thomas !}
134 6da1aa18 2023-12-01 thomas {{ " / " }}
135 df7661fb 2023-12-03 thomas <a href="{{ render gotweb_render_url(c, &url) }}">{{ action }}</a>
136 6da1aa18 2023-12-01 thomas {{ " / " }}
137 6da1aa18 2023-12-01 thomas {{ if dir }}
138 6da1aa18 2023-12-01 thomas {{ while (s = nextsep(s, &t)) != NULL }}
139 6da1aa18 2023-12-01 thomas {!
140 6da1aa18 2023-12-01 thomas ch = *s;
141 6da1aa18 2023-12-01 thomas *s = '\0';
142 6da1aa18 2023-12-01 thomas url.folder = dir;
143 6da1aa18 2023-12-01 thomas !}
144 6da1aa18 2023-12-01 thomas
145 6da1aa18 2023-12-01 thomas <a href="{{ render gotweb_render_url(c, &url) }}">
146 6da1aa18 2023-12-01 thomas {{ t }}
147 6da1aa18 2023-12-01 thomas </a>
148 6da1aa18 2023-12-01 thomas {{ " / " }}
149 6da1aa18 2023-12-01 thomas
150 6da1aa18 2023-12-01 thomas {! *s = ch; !}
151 6da1aa18 2023-12-01 thomas {{ end }}
152 6da1aa18 2023-12-01 thomas {{ end }}
153 6da1aa18 2023-12-01 thomas
154 6da1aa18 2023-12-01 thomas {{ if qs->file }}
155 6da1aa18 2023-12-01 thomas {{ qs->file }}
156 6da1aa18 2023-12-01 thomas {{ end}}
157 6da1aa18 2023-12-01 thomas
158 6da1aa18 2023-12-01 thomas {{ finally }}
159 6da1aa18 2023-12-01 thomas {! free(dir); !}
160 6da1aa18 2023-12-01 thomas {{ end }}
161 6da1aa18 2023-12-01 thomas
162 161663e7 2023-03-11 thomas {{ define gotweb_render_page(struct template *tp,
163 161663e7 2023-03-11 thomas int (*body)(struct template *)) }}
164 e7e5fa49 2022-12-30 thomas {!
165 e7e5fa49 2022-12-30 thomas struct request *c = tp->tp_arg;
166 e7e5fa49 2022-12-30 thomas struct server *srv = c->srv;
167 e7e5fa49 2022-12-30 thomas struct querystring *qs = c->t->qs;
168 e7e5fa49 2022-12-30 thomas struct gotweb_url u_path;
169 3191e256 2022-12-30 thomas const char *prfx = c->document_uri;
170 e7e5fa49 2022-12-30 thomas const char *css = srv->custom_css;
171 e7e5fa49 2022-12-30 thomas
172 e7e5fa49 2022-12-30 thomas memset(&u_path, 0, sizeof(u_path));
173 e7e5fa49 2022-12-30 thomas u_path.index_page = -1;
174 e7e5fa49 2022-12-30 thomas u_path.page = -1;
175 e7e5fa49 2022-12-30 thomas u_path.action = SUMMARY;
176 e7e5fa49 2022-12-30 thomas !}
177 e7e5fa49 2022-12-30 thomas <!doctype html>
178 e7e5fa49 2022-12-30 thomas <html>
179 e7e5fa49 2022-12-30 thomas <head>
180 e7e5fa49 2022-12-30 thomas <meta charset="utf-8" />
181 e7e5fa49 2022-12-30 thomas <title>{{ srv->site_name }}</title>
182 fdd79f2f 2023-09-12 thomas <meta name="viewport" content="initial-scale=1.0" />
183 e7e5fa49 2022-12-30 thomas <meta name="msapplication-TileColor" content="#da532c" />
184 e7e5fa49 2022-12-30 thomas <meta name="theme-color" content="#ffffff"/>
185 e7e5fa49 2022-12-30 thomas <link rel="apple-touch-icon" sizes="180x180" href="{{ prfx }}apple-touch-icon.png" />
186 e7e5fa49 2022-12-30 thomas <link rel="icon" type="image/png" sizes="32x32" href="{{ prfx }}favicon-32x32.png" />
187 e7e5fa49 2022-12-30 thomas <link rel="icon" type="image/png" sizes="16x16" href="{{ prfx }}favicon-16x16.png" />
188 e7e5fa49 2022-12-30 thomas <link rel="manifest" href="{{ prfx }}site.webmanifest"/>
189 e7e5fa49 2022-12-30 thomas <link rel="mask-icon" href="{{ prfx }}safari-pinned-tab.svg" />
190 e7e5fa49 2022-12-30 thomas <link rel="stylesheet" type="text/css" href="{{ prfx }}{{ css }}" />
191 e7e5fa49 2022-12-30 thomas </head>
192 e7e5fa49 2022-12-30 thomas <body>
193 fdd79f2f 2023-09-12 thomas <header id="header">
194 fdd79f2f 2023-09-12 thomas <div id="got_link">
195 fdd79f2f 2023-09-12 thomas <a href="{{ srv->logo_url }}" target="_blank">
196 fdd79f2f 2023-09-12 thomas <img src="{{ prfx }}{{ srv->logo }}" />
197 fdd79f2f 2023-09-12 thomas </a>
198 e7e5fa49 2022-12-30 thomas </div>
199 fdd79f2f 2023-09-12 thomas </header>
200 fdd79f2f 2023-09-12 thomas <nav id="site_path">
201 fdd79f2f 2023-09-12 thomas <div id="site_link">
202 fdd79f2f 2023-09-12 thomas <a href="?index_page={{ printf "%d", qs->index_page }}">
203 fdd79f2f 2023-09-12 thomas {{ srv->site_link }}
204 fdd79f2f 2023-09-12 thomas </a>
205 fdd79f2f 2023-09-12 thomas {{ if qs->path }}
206 fdd79f2f 2023-09-12 thomas {! u_path.path = qs->path; !}
207 fdd79f2f 2023-09-12 thomas {{ " / " }}
208 fdd79f2f 2023-09-12 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &u_path)}}">
209 fdd79f2f 2023-09-12 thomas {{ qs->path }}
210 e7e5fa49 2022-12-30 thomas </a>
211 fdd79f2f 2023-09-12 thomas {{ end }}
212 df7661fb 2023-12-03 thomas {{ if qs->action == SUMMARY || qs->action == DIFF ||
213 df7661fb 2023-12-03 thomas qs->action == TAG || qs->action == TAGS }}
214 fdd79f2f 2023-09-12 thomas {{ " / " }}{{ gotweb_action_name(qs->action) }}
215 df7661fb 2023-12-03 thomas {{ else if qs->action != INDEX}}
216 df7661fb 2023-12-03 thomas {{ render breadcumbs(tp) }}
217 fdd79f2f 2023-09-12 thomas {{ end }}
218 e7e5fa49 2022-12-30 thomas </div>
219 fdd79f2f 2023-09-12 thomas </nav>
220 fdd79f2f 2023-09-12 thomas <main>
221 fdd79f2f 2023-09-12 thomas {{ render body(tp) }}
222 fdd79f2f 2023-09-12 thomas </main>
223 fdd79f2f 2023-09-12 thomas <footer id="site_owner_wrapper">
224 fdd79f2f 2023-09-12 thomas <p id="site_owner">
225 fdd79f2f 2023-09-12 thomas {{ if srv->show_site_owner }}
226 fdd79f2f 2023-09-12 thomas {{ srv->site_owner }}
227 fdd79f2f 2023-09-12 thomas {{ end }}
228 fdd79f2f 2023-09-12 thomas </p>
229 fdd79f2f 2023-09-12 thomas </footer>
230 e7e5fa49 2022-12-30 thomas </body>
231 e7e5fa49 2022-12-30 thomas </html>
232 164b5ddc 2023-03-11 thomas {{ end }}
233 164b5ddc 2023-03-11 thomas
234 164b5ddc 2023-03-11 thomas {{ define gotweb_render_error(struct template *tp) }}
235 164b5ddc 2023-03-11 thomas {!
236 164b5ddc 2023-03-11 thomas struct request *c = tp->tp_arg;
237 164b5ddc 2023-03-11 thomas struct transport *t = c->t;
238 164b5ddc 2023-03-11 thomas !}
239 164b5ddc 2023-03-11 thomas <div id="err_content">
240 164b5ddc 2023-03-11 thomas {{ if t->error }}
241 164b5ddc 2023-03-11 thomas {{ t->error->msg }}
242 164b5ddc 2023-03-11 thomas {{ else }}
243 164b5ddc 2023-03-11 thomas See daemon logs for details
244 164b5ddc 2023-03-11 thomas {{ end }}
245 164b5ddc 2023-03-11 thomas </div>
246 e7e5fa49 2022-12-30 thomas {{ end }}
247 e7e5fa49 2022-12-30 thomas
248 e7e5fa49 2022-12-30 thomas {{ define gotweb_render_repo_table_hdr(struct template *tp) }}
249 e7e5fa49 2022-12-30 thomas {!
250 e7e5fa49 2022-12-30 thomas struct request *c = tp->tp_arg;
251 e7e5fa49 2022-12-30 thomas struct server *srv = c->srv;
252 e7e5fa49 2022-12-30 thomas !}
253 e7e5fa49 2022-12-30 thomas <div id="index_header">
254 fdd79f2f 2023-09-12 thomas <div class="index_project">
255 e7e5fa49 2022-12-30 thomas Project
256 e7e5fa49 2022-12-30 thomas </div>
257 e7e5fa49 2022-12-30 thomas {{ if srv->show_repo_description }}
258 fdd79f2f 2023-09-12 thomas <div class="index_project_description">
259 e7e5fa49 2022-12-30 thomas Description
260 e7e5fa49 2022-12-30 thomas </div>
261 e7e5fa49 2022-12-30 thomas {{ end }}
262 e7e5fa49 2022-12-30 thomas {{ if srv->show_repo_owner }}
263 fdd79f2f 2023-09-12 thomas <div class="index_project_owner">
264 e7e5fa49 2022-12-30 thomas Owner
265 e7e5fa49 2022-12-30 thomas </div>
266 e7e5fa49 2022-12-30 thomas {{ end }}
267 e7e5fa49 2022-12-30 thomas {{ if srv->show_repo_age }}
268 fdd79f2f 2023-09-12 thomas <div class="index_project_age">
269 e7e5fa49 2022-12-30 thomas Last Change
270 e7e5fa49 2022-12-30 thomas </div>
271 e7e5fa49 2022-12-30 thomas {{ end }}
272 e7e5fa49 2022-12-30 thomas </div>
273 e7e5fa49 2022-12-30 thomas {{ end }}
274 e7e5fa49 2022-12-30 thomas
275 e7e5fa49 2022-12-30 thomas {{ define gotweb_render_repo_fragment(struct template *tp, struct repo_dir *repo_dir) }}
276 e7e5fa49 2022-12-30 thomas {!
277 e7e5fa49 2022-12-30 thomas struct request *c = tp->tp_arg;
278 e7e5fa49 2022-12-30 thomas struct server *srv = c->srv;
279 e7e5fa49 2022-12-30 thomas struct gotweb_url summary = {
280 e7e5fa49 2022-12-30 thomas .action = SUMMARY,
281 e7e5fa49 2022-12-30 thomas .index_page = -1,
282 e7e5fa49 2022-12-30 thomas .page = -1,
283 e7e5fa49 2022-12-30 thomas .path = repo_dir->name,
284 e7e5fa49 2022-12-30 thomas }, briefs = {
285 e7e5fa49 2022-12-30 thomas .action = BRIEFS,
286 e7e5fa49 2022-12-30 thomas .index_page = -1,
287 e7e5fa49 2022-12-30 thomas .page = -1,
288 e7e5fa49 2022-12-30 thomas .path = repo_dir->name,
289 e7e5fa49 2022-12-30 thomas }, commits = {
290 e7e5fa49 2022-12-30 thomas .action = COMMITS,
291 e7e5fa49 2022-12-30 thomas .index_page = -1,
292 e7e5fa49 2022-12-30 thomas .page = -1,
293 e7e5fa49 2022-12-30 thomas .path = repo_dir->name,
294 e7e5fa49 2022-12-30 thomas }, tags = {
295 e7e5fa49 2022-12-30 thomas .action = TAGS,
296 e7e5fa49 2022-12-30 thomas .index_page = -1,
297 e7e5fa49 2022-12-30 thomas .page = -1,
298 e7e5fa49 2022-12-30 thomas .path = repo_dir->name,
299 e7e5fa49 2022-12-30 thomas }, tree = {
300 e7e5fa49 2022-12-30 thomas .action = TREE,
301 e7e5fa49 2022-12-30 thomas .index_page = -1,
302 e7e5fa49 2022-12-30 thomas .page = -1,
303 e7e5fa49 2022-12-30 thomas .path = repo_dir->name,
304 d6795e9f 2022-12-30 thomas }, rss = {
305 d6795e9f 2022-12-30 thomas .action = RSS,
306 d6795e9f 2022-12-30 thomas .index_page = -1,
307 d6795e9f 2022-12-30 thomas .page = -1,
308 d6795e9f 2022-12-30 thomas .path = repo_dir->name,
309 e7e5fa49 2022-12-30 thomas };
310 e7e5fa49 2022-12-30 thomas !}
311 e7e5fa49 2022-12-30 thomas <div class="index_wrapper">
312 e7e5fa49 2022-12-30 thomas <div class="index_project">
313 e7e5fa49 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &summary) }}">{{ repo_dir->name }}</a>
314 e7e5fa49 2022-12-30 thomas </div>
315 e7e5fa49 2022-12-30 thomas {{ if srv->show_repo_description }}
316 e7e5fa49 2022-12-30 thomas <div class="index_project_description">
317 e7e5fa49 2022-12-30 thomas {{ repo_dir->description }}
318 e7e5fa49 2022-12-30 thomas </div>
319 e7e5fa49 2022-12-30 thomas {{ end }}
320 e7e5fa49 2022-12-30 thomas {{ if srv->show_repo_owner }}
321 e7e5fa49 2022-12-30 thomas <div class="index_project_owner">
322 e7e5fa49 2022-12-30 thomas {{ repo_dir->owner }}
323 e7e5fa49 2022-12-30 thomas </div>
324 e7e5fa49 2022-12-30 thomas {{ end }}
325 e7e5fa49 2022-12-30 thomas {{ if srv->show_repo_age }}
326 e7e5fa49 2022-12-30 thomas <div class="index_project_age">
327 4cc0851e 2023-10-08 thomas {{ render datetime(tp, repo_dir->age, TM_DIFF) }}
328 e7e5fa49 2022-12-30 thomas </div>
329 e7e5fa49 2022-12-30 thomas {{ end }}
330 e7e5fa49 2022-12-30 thomas <div class="navs_wrapper">
331 e7e5fa49 2022-12-30 thomas <div class="navs">
332 e7e5fa49 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &summary) }}">summary</a>
333 e7e5fa49 2022-12-30 thomas {{ " | " }}
334 e7e5fa49 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &briefs) }}">briefs</a>
335 e7e5fa49 2022-12-30 thomas {{ " | " }}
336 e7e5fa49 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &commits) }}">commits</a>
337 e7e5fa49 2022-12-30 thomas {{ " | " }}
338 e7e5fa49 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &tags) }}">tags</a>
339 e7e5fa49 2022-12-30 thomas {{ " | " }}
340 e7e5fa49 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &tree) }}">tree</a>
341 d6795e9f 2022-12-30 thomas {{ " | " }}
342 d6795e9f 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &rss) }}">rss</a>
343 e7e5fa49 2022-12-30 thomas </div>
344 fdd79f2f 2023-09-12 thomas <hr />
345 e7e5fa49 2022-12-30 thomas </div>
346 e7e5fa49 2022-12-30 thomas </div>
347 e7e5fa49 2022-12-30 thomas {{ end }}
348 e7e5fa49 2022-12-30 thomas
349 e7e5fa49 2022-12-30 thomas {{ define gotweb_render_briefs(struct template *tp) }}
350 e7e5fa49 2022-12-30 thomas {!
351 e7e5fa49 2022-12-30 thomas struct request *c = tp->tp_arg;
352 e7e5fa49 2022-12-30 thomas struct transport *t = c->t;
353 e7e5fa49 2022-12-30 thomas struct querystring *qs = c->t->qs;
354 e7e5fa49 2022-12-30 thomas struct repo_commit *rc;
355 e7e5fa49 2022-12-30 thomas struct repo_dir *repo_dir = t->repo_dir;
356 feaddee6 2023-12-03 thomas struct gotweb_url diff_url, patch_url, tree_url;
357 e7e5fa49 2022-12-30 thomas char *tmp;
358 e7e5fa49 2022-12-30 thomas
359 e7e5fa49 2022-12-30 thomas diff_url = (struct gotweb_url){
360 e7e5fa49 2022-12-30 thomas .action = DIFF,
361 feaddee6 2023-12-03 thomas .index_page = -1,
362 feaddee6 2023-12-03 thomas .page = -1,
363 feaddee6 2023-12-03 thomas .path = repo_dir->name,
364 feaddee6 2023-12-03 thomas .headref = qs->headref,
365 feaddee6 2023-12-03 thomas };
366 feaddee6 2023-12-03 thomas patch_url = (struct gotweb_url){
367 feaddee6 2023-12-03 thomas .action = PATCH,
368 e7e5fa49 2022-12-30 thomas .index_page = -1,
369 e7e5fa49 2022-12-30 thomas .page = -1,
370 e7e5fa49 2022-12-30 thomas .path = repo_dir->name,
371 e7e5fa49 2022-12-30 thomas .headref = qs->headref,
372 e7e5fa49 2022-12-30 thomas };
373 e7e5fa49 2022-12-30 thomas tree_url = (struct gotweb_url){
374 e7e5fa49 2022-12-30 thomas .action = TREE,
375 e7e5fa49 2022-12-30 thomas .index_page = -1,
376 e7e5fa49 2022-12-30 thomas .page = -1,
377 e7e5fa49 2022-12-30 thomas .path = repo_dir->name,
378 e7e5fa49 2022-12-30 thomas .headref = qs->headref,
379 e7e5fa49 2022-12-30 thomas };
380 e7e5fa49 2022-12-30 thomas !}
381 fdd79f2f 2023-09-12 thomas <header class='subtitle'>
382 fdd79f2f 2023-09-12 thomas <h2>Commit Briefs</h2>
383 fdd79f2f 2023-09-12 thomas </header>
384 e7e5fa49 2022-12-30 thomas <div id="briefs_content">
385 e7e5fa49 2022-12-30 thomas {{ tailq-foreach rc &t->repo_commits entry }}
386 e7e5fa49 2022-12-30 thomas {!
387 e7e5fa49 2022-12-30 thomas diff_url.commit = rc->commit_id;
388 feaddee6 2023-12-03 thomas patch_url.commit = rc->commit_id;
389 e7e5fa49 2022-12-30 thomas tree_url.commit = rc->commit_id;
390 e7e5fa49 2022-12-30 thomas
391 64d39587 2023-01-14 thomas tmp = strchr(rc->committer, '<');
392 e7e5fa49 2022-12-30 thomas if (tmp)
393 e7e5fa49 2022-12-30 thomas *tmp = '\0';
394 e7e5fa49 2022-12-30 thomas
395 e7e5fa49 2022-12-30 thomas tmp = strchr(rc->commit_msg, '\n');
396 e7e5fa49 2022-12-30 thomas if (tmp)
397 e7e5fa49 2022-12-30 thomas *tmp = '\0';
398 e7e5fa49 2022-12-30 thomas !}
399 fdd79f2f 2023-09-12 thomas <div class='brief'>
400 fdd79f2f 2023-09-12 thomas <p class='brief_meta'>
401 fdd79f2f 2023-09-12 thomas <span class='briefs_age'>
402 4cc0851e 2023-10-08 thomas {{ render datetime(tp, rc->committer_time, TM_DIFF) }}
403 fdd79f2f 2023-09-12 thomas </span>
404 fdd79f2f 2023-09-12 thomas {{" "}}
405 fdd79f2f 2023-09-12 thomas <span class="briefs_author">
406 fdd79f2f 2023-09-12 thomas {{ rc->committer }}
407 fdd79f2f 2023-09-12 thomas </span>
408 fdd79f2f 2023-09-12 thomas </p>
409 fdd79f2f 2023-09-12 thomas <p class="briefs_log">
410 fdd79f2f 2023-09-12 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &diff_url) }}">
411 fdd79f2f 2023-09-12 thomas {{ rc->commit_msg }}
412 fdd79f2f 2023-09-12 thomas </a>
413 fdd79f2f 2023-09-12 thomas {{ if rc->refs_str }}
414 fdd79f2f 2023-09-12 thomas {{ " " }} <span class="refs_str">({{ rc->refs_str }})</span>
415 fdd79f2f 2023-09-12 thomas {{ end }}
416 fdd79f2f 2023-09-12 thomas </a>
417 fdd79f2f 2023-09-12 thomas </p>
418 e7e5fa49 2022-12-30 thomas </div>
419 e7e5fa49 2022-12-30 thomas <div class="navs_wrapper">
420 e7e5fa49 2022-12-30 thomas <div class="navs">
421 e7e5fa49 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &diff_url) }}">diff</a>
422 e7e5fa49 2022-12-30 thomas {{ " | " }}
423 feaddee6 2023-12-03 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &patch_url) }}">patch</a>
424 feaddee6 2023-12-03 thomas {{ " | " }}
425 e7e5fa49 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &tree_url) }}">tree</a>
426 e7e5fa49 2022-12-30 thomas </div>
427 e7e5fa49 2022-12-30 thomas </div>
428 fdd79f2f 2023-09-12 thomas <hr />
429 e7e5fa49 2022-12-30 thomas {{ end }}
430 20bab626 2023-02-03 thomas {{ render gotweb_render_more(tp, BRIEFS) }}
431 2f4f0731 2022-12-30 thomas </div>
432 2f4f0731 2022-12-30 thomas {{ end }}
433 2f4f0731 2022-12-30 thomas
434 20bab626 2023-02-03 thomas {{ define gotweb_render_more(struct template *tp, int action) }}
435 20bab626 2023-02-03 thomas {!
436 20bab626 2023-02-03 thomas struct request *c = tp->tp_arg;
437 20bab626 2023-02-03 thomas struct transport *t = c->t;
438 20bab626 2023-02-03 thomas struct querystring *qs = t->qs;
439 20bab626 2023-02-03 thomas struct gotweb_url more = {
440 20bab626 2023-02-03 thomas .action = action,
441 20bab626 2023-02-03 thomas .index_page = -1,
442 20bab626 2023-02-03 thomas .path = qs->path,
443 20bab626 2023-02-03 thomas .commit = t->more_id,
444 20bab626 2023-02-03 thomas .headref = qs->headref,
445 882ee74d 2023-09-14 thomas .file = qs->file,
446 20bab626 2023-02-03 thomas };
447 20bab626 2023-02-03 thomas !}
448 20bab626 2023-02-03 thomas {{ if t->more_id }}
449 20bab626 2023-02-03 thomas <div id="np_wrapper">
450 20bab626 2023-02-03 thomas <div id="nav_more">
451 20bab626 2023-02-03 thomas <a href="{{ render gotweb_render_url(c, &more) }}">
452 bd6e9c73 2023-02-03 thomas More&nbsp;&darr;
453 20bab626 2023-02-03 thomas </a>
454 20bab626 2023-02-03 thomas </div>
455 20bab626 2023-02-03 thomas </div>
456 20bab626 2023-02-03 thomas {{ end }}
457 20bab626 2023-02-03 thomas {{ end }}
458 20bab626 2023-02-03 thomas
459 2f4f0731 2022-12-30 thomas {{ define gotweb_render_navs(struct template *tp) }}
460 2f4f0731 2022-12-30 thomas {!
461 2f4f0731 2022-12-30 thomas struct request *c = tp->tp_arg;
462 2f4f0731 2022-12-30 thomas struct transport *t = c->t;
463 2f4f0731 2022-12-30 thomas struct gotweb_url prev, next;
464 2f4f0731 2022-12-30 thomas int have_prev, have_next;
465 2f4f0731 2022-12-30 thomas
466 2f4f0731 2022-12-30 thomas gotweb_get_navs(c, &prev, &have_prev, &next, &have_next);
467 2f4f0731 2022-12-30 thomas !}
468 2f4f0731 2022-12-30 thomas <div id="np_wrapper">
469 2f4f0731 2022-12-30 thomas <div id="nav_prev">
470 2f4f0731 2022-12-30 thomas {{ if have_prev }}
471 2f4f0731 2022-12-30 thomas <a href="{{ render gotweb_render_url(c, &prev) }}">
472 2f4f0731 2022-12-30 thomas Previous
473 2f4f0731 2022-12-30 thomas </a>
474 2f4f0731 2022-12-30 thomas {{ end }}
475 2f4f0731 2022-12-30 thomas </div>
476 2f4f0731 2022-12-30 thomas <div id="nav_next">
477 2f4f0731 2022-12-30 thomas {{ if have_next }}
478 2f4f0731 2022-12-30 thomas <a href="{{ render gotweb_render_url(c, &next) }}">
479 2f4f0731 2022-12-30 thomas Next
480 2f4f0731 2022-12-30 thomas </a>
481 2f4f0731 2022-12-30 thomas {{ end }}
482 2f4f0731 2022-12-30 thomas </div>
483 e7e5fa49 2022-12-30 thomas </div>
484 2f4f0731 2022-12-30 thomas {{ finally }}
485 2f4f0731 2022-12-30 thomas {!
486 2f4f0731 2022-12-30 thomas free(t->next_id);
487 2f4f0731 2022-12-30 thomas t->next_id = NULL;
488 2f4f0731 2022-12-30 thomas free(t->prev_id);
489 2f4f0731 2022-12-30 thomas t->prev_id = NULL;
490 2f4f0731 2022-12-30 thomas !}
491 e7e5fa49 2022-12-30 thomas {{ end }}
492 7ade8b27 2022-12-30 thomas
493 7ade8b27 2022-12-30 thomas {{ define gotweb_render_commits(struct template *tp) }}
494 7ade8b27 2022-12-30 thomas {!
495 7ade8b27 2022-12-30 thomas struct request *c = tp->tp_arg;
496 7ade8b27 2022-12-30 thomas struct transport *t = c->t;
497 7ade8b27 2022-12-30 thomas struct repo_dir *repo_dir = t->repo_dir;
498 7ade8b27 2022-12-30 thomas struct repo_commit *rc;
499 feaddee6 2023-12-03 thomas struct gotweb_url diff, patch, tree;
500 7ade8b27 2022-12-30 thomas
501 7ade8b27 2022-12-30 thomas diff = (struct gotweb_url){
502 7ade8b27 2022-12-30 thomas .action = DIFF,
503 7ade8b27 2022-12-30 thomas .index_page = -1,
504 7ade8b27 2022-12-30 thomas .page = -1,
505 7ade8b27 2022-12-30 thomas .path = repo_dir->name,
506 7ade8b27 2022-12-30 thomas };
507 feaddee6 2023-12-03 thomas patch = (struct gotweb_url){
508 feaddee6 2023-12-03 thomas .action = PATCH,
509 feaddee6 2023-12-03 thomas .index_page = -1,
510 feaddee6 2023-12-03 thomas .page = -1,
511 feaddee6 2023-12-03 thomas .path = repo_dir->name,
512 feaddee6 2023-12-03 thomas };
513 7ade8b27 2022-12-30 thomas tree = (struct gotweb_url){
514 7ade8b27 2022-12-30 thomas .action = TREE,
515 7ade8b27 2022-12-30 thomas .index_page = -1,
516 7ade8b27 2022-12-30 thomas .page = -1,
517 7ade8b27 2022-12-30 thomas .path = repo_dir->name,
518 7ade8b27 2022-12-30 thomas };
519 7ade8b27 2022-12-30 thomas !}
520 fdd79f2f 2023-09-12 thomas <header class="subtitle">
521 fdd79f2f 2023-09-12 thomas <h2>Commits</h2>
522 fdd79f2f 2023-09-12 thomas </header>
523 7ade8b27 2022-12-30 thomas <div class="commits_content">
524 7ade8b27 2022-12-30 thomas {{ tailq-foreach rc &t->repo_commits entry }}
525 7ade8b27 2022-12-30 thomas {!
526 7ade8b27 2022-12-30 thomas diff.commit = rc->commit_id;
527 feaddee6 2023-12-03 thomas patch.commit = rc->commit_id;
528 7ade8b27 2022-12-30 thomas tree.commit = rc->commit_id;
529 7ade8b27 2022-12-30 thomas !}
530 57cfad1e 2023-12-01 thomas <div class="page_header_wrapper">
531 57cfad1e 2023-12-01 thomas <dl>
532 fdd79f2f 2023-09-12 thomas <dt>Commit:</dt>
533 fdd79f2f 2023-09-12 thomas <dd><code class="commit-id">{{ rc->commit_id }}</code></dd>
534 fdd79f2f 2023-09-12 thomas <dt>From:</dt>
535 fdd79f2f 2023-09-12 thomas <dd>{{ rc->author }}</dd>
536 54ffadaf 2023-01-14 thomas {{ if strcmp(rc->committer, rc->author) != 0 }}
537 fdd79f2f 2023-09-12 thomas <dt>Via:</dt>
538 fdd79f2f 2023-09-12 thomas <dd>{{ rc->committer }}</dd>
539 54ffadaf 2023-01-14 thomas {{ end }}
540 fdd79f2f 2023-09-12 thomas <dt>Date:</dt>
541 fdd79f2f 2023-09-12 thomas <dd>
542 4cc0851e 2023-10-08 thomas {{ render datetime(tp, rc->committer_time, TM_LONG) }}
543 fdd79f2f 2023-09-12 thomas </dd>
544 fdd79f2f 2023-09-12 thomas </dl>
545 7ade8b27 2022-12-30 thomas </div>
546 fdd79f2f 2023-09-12 thomas <hr />
547 bbf94fd6 2023-01-02 thomas <div class="commit">
548 bbf94fd6 2023-01-02 thomas {{ "\n" }}
549 bbf94fd6 2023-01-02 thomas {{ rc->commit_msg }}
550 bbf94fd6 2023-01-02 thomas </div>
551 7ade8b27 2022-12-30 thomas <div class="navs_wrapper">
552 7ade8b27 2022-12-30 thomas <div class="navs">
553 7ade8b27 2022-12-30 thomas <a href="{{ render gotweb_render_url(c, &diff) }}">diff</a>
554 feaddee6 2023-12-03 thomas {{ " | " }}
555 feaddee6 2023-12-03 thomas <a href="{{ render gotweb_render_url(c, &patch) }}">patch</a>
556 7ade8b27 2022-12-30 thomas {{ " | " }}
557 7ade8b27 2022-12-30 thomas <a href="{{ render gotweb_render_url(c, &tree) }}">tree</a>
558 7ade8b27 2022-12-30 thomas </div>
559 7ade8b27 2022-12-30 thomas </div>
560 fdd79f2f 2023-09-12 thomas <hr />
561 7ade8b27 2022-12-30 thomas {{ end }}
562 20bab626 2023-02-03 thomas {{ render gotweb_render_more(tp, COMMITS) }}
563 b82440e1 2023-01-06 thomas </div>
564 b82440e1 2023-01-06 thomas {{ end }}
565 b82440e1 2023-01-06 thomas
566 161663e7 2023-03-11 thomas {{ define gotweb_render_blob(struct template *tp) }}
567 b82440e1 2023-01-06 thomas {!
568 b82440e1 2023-01-06 thomas struct request *c = tp->tp_arg;
569 b82440e1 2023-01-06 thomas struct transport *t = c->t;
570 54f5c7d0 2023-12-01 thomas struct querystring *qs = t->qs;
571 161663e7 2023-03-11 thomas struct got_blob_object *blob = t->blob;
572 b82440e1 2023-01-06 thomas struct repo_commit *rc = TAILQ_FIRST(&t->repo_commits);
573 54f5c7d0 2023-12-01 thomas struct gotweb_url briefs_url, blame_url, raw_url;
574 54f5c7d0 2023-12-01 thomas
575 54f5c7d0 2023-12-01 thomas memset(&briefs_url, 0, sizeof(briefs_url));
576 54f5c7d0 2023-12-01 thomas briefs_url.index_page = -1,
577 54f5c7d0 2023-12-01 thomas briefs_url.page = -1,
578 54f5c7d0 2023-12-01 thomas briefs_url.action = BRIEFS,
579 54f5c7d0 2023-12-01 thomas briefs_url.path = qs->path,
580 54f5c7d0 2023-12-01 thomas briefs_url.commit = qs->commit,
581 54f5c7d0 2023-12-01 thomas briefs_url.folder = qs->folder,
582 54f5c7d0 2023-12-01 thomas briefs_url.file = qs->file,
583 54f5c7d0 2023-12-01 thomas
584 54f5c7d0 2023-12-01 thomas memcpy(&blame_url, &briefs_url, sizeof(blame_url));
585 54f5c7d0 2023-12-01 thomas blame_url.action = BLAME;
586 54f5c7d0 2023-12-01 thomas
587 54f5c7d0 2023-12-01 thomas memcpy(&raw_url, &briefs_url, sizeof(raw_url));
588 54f5c7d0 2023-12-01 thomas raw_url.action = BLOBRAW;
589 b82440e1 2023-01-06 thomas !}
590 fdd79f2f 2023-09-12 thomas <header class="subtitle">
591 fdd79f2f 2023-09-12 thomas <h2>Blob</h2>
592 fdd79f2f 2023-09-12 thomas </header>
593 b82440e1 2023-01-06 thomas <div id="blob_content">
594 57cfad1e 2023-12-01 thomas <div class="page_header_wrapper">
595 57cfad1e 2023-12-01 thomas <dl>
596 fdd79f2f 2023-09-12 thomas <dt>Date:</dt>
597 fdd79f2f 2023-09-12 thomas <dd>
598 4cc0851e 2023-10-08 thomas {{ render datetime(tp, rc->committer_time, TM_LONG) }}
599 fdd79f2f 2023-09-12 thomas </dd>
600 fdd79f2f 2023-09-12 thomas <dt>Message:</dt>
601 fdd79f2f 2023-09-12 thomas <dd class="commit-msg">{{ rc->commit_msg }}</dd>
602 54f5c7d0 2023-12-01 thomas <dt>Actions:</dt>
603 54f5c7d0 2023-12-01 thomas <dd>
604 54f5c7d0 2023-12-01 thomas <a href="{{ render gotweb_render_url(c, &briefs_url) }}">
605 54f5c7d0 2023-12-01 thomas History
606 54f5c7d0 2023-12-01 thomas </a>
607 54f5c7d0 2023-12-01 thomas {{" | "}}
608 54f5c7d0 2023-12-01 thomas <a href="{{ render gotweb_render_url(c, &blame_url) }}">
609 54f5c7d0 2023-12-01 thomas Blame
610 54f5c7d0 2023-12-01 thomas </a>
611 54f5c7d0 2023-12-01 thomas {{" | "}}
612 54f5c7d0 2023-12-01 thomas <a href="{{ render gotweb_render_url(c, &raw_url) }}">
613 54f5c7d0 2023-12-01 thomas Raw File
614 54f5c7d0 2023-12-01 thomas </a>
615 54f5c7d0 2023-12-01 thomas </dd>
616 fdd79f2f 2023-09-12 thomas </dl>
617 b82440e1 2023-01-06 thomas </div>
618 fdd79f2f 2023-09-12 thomas <hr />
619 b82440e1 2023-01-06 thomas <div id="blob">
620 b82440e1 2023-01-06 thomas <pre>
621 b82440e1 2023-01-06 thomas {{ render got_output_blob_by_lines(tp, blob, gotweb_render_blob_line) }}
622 b82440e1 2023-01-06 thomas </pre>
623 b82440e1 2023-01-06 thomas </div>
624 7ade8b27 2022-12-30 thomas </div>
625 d6795e9f 2022-12-30 thomas {{ end }}
626 d6795e9f 2022-12-30 thomas
627 b82440e1 2023-01-06 thomas {{ define gotweb_render_blob_line(struct template *tp, const char *line,
628 b82440e1 2023-01-06 thomas size_t no) }}
629 b82440e1 2023-01-06 thomas {!
630 b82440e1 2023-01-06 thomas char lineno[16];
631 b82440e1 2023-01-06 thomas int r;
632 b82440e1 2023-01-06 thomas
633 b82440e1 2023-01-06 thomas r = snprintf(lineno, sizeof(lineno), "%zu", no);
634 b82440e1 2023-01-06 thomas if (r < 0 || (size_t)r >= sizeof(lineno))
635 b82440e1 2023-01-06 thomas return -1;
636 b82440e1 2023-01-06 thomas !}
637 b82440e1 2023-01-06 thomas <div class="blob_line" id="line{{ lineno }}">
638 fdd79f2f 2023-09-12 thomas <a href="#line{{ lineno }}">{{ lineno }}</a>
639 991e3353 2023-12-01 thomas {{" "}}
640 fdd79f2f 2023-09-12 thomas <span class="blob_code">{{ line }}</span>
641 3c14c1f2 2023-01-06 thomas </div>
642 3c14c1f2 2023-01-06 thomas {{ end }}
643 3c14c1f2 2023-01-06 thomas
644 3c14c1f2 2023-01-06 thomas {{ define gotweb_render_tree(struct template *tp) }}
645 3c14c1f2 2023-01-06 thomas {!
646 34875d49 2023-12-08 thomas const struct got_error *error;
647 3c14c1f2 2023-01-06 thomas struct request *c = tp->tp_arg;
648 3c14c1f2 2023-01-06 thomas struct transport *t = c->t;
649 34875d49 2023-12-08 thomas struct querystring *qs = t->qs;
650 3c14c1f2 2023-01-06 thomas struct repo_commit *rc = TAILQ_FIRST(&t->repo_commits);
651 34875d49 2023-12-08 thomas struct gotweb_url url;
652 34875d49 2023-12-08 thomas char *readme = NULL;
653 34875d49 2023-12-08 thomas int binary;
654 34875d49 2023-12-08 thomas const uint8_t *buf;
655 34875d49 2023-12-08 thomas size_t len;
656 3c14c1f2 2023-01-06 thomas !}
657 fdd79f2f 2023-09-12 thomas <header class='subtitle'>
658 fdd79f2f 2023-09-12 thomas <h2>Tree</h2>
659 fdd79f2f 2023-09-12 thomas </header>
660 3c14c1f2 2023-01-06 thomas <div id="tree_content">
661 57cfad1e 2023-12-01 thomas <div class="page_header_wrapper">
662 57cfad1e 2023-12-01 thomas <dl>
663 fdd79f2f 2023-09-12 thomas <dt>Tree:</dt>
664 fdd79f2f 2023-09-12 thomas <dd><code class="commit-id">{{ rc->tree_id }}</code></dd>
665 fdd79f2f 2023-09-12 thomas <dt>Date:</dt>
666 fdd79f2f 2023-09-12 thomas <dd>
667 4cc0851e 2023-10-08 thomas {{ render datetime(tp, rc->committer_time, TM_LONG) }}
668 fdd79f2f 2023-09-12 thomas </dd>
669 fdd79f2f 2023-09-12 thomas <dt>Message:</dt>
670 cbe7b7d7 2023-10-08 thomas <dd class="commit-msg">{{ rc->commit_msg }}</dd>
671 fdd79f2f 2023-09-12 thomas </dl>
672 3c14c1f2 2023-01-06 thomas </div>
673 fdd79f2f 2023-09-12 thomas <hr />
674 fdd79f2f 2023-09-12 thomas <table id="tree">
675 34875d49 2023-12-08 thomas {{ render got_output_repo_tree(c, &readme, gotweb_render_tree_item) }}
676 fdd79f2f 2023-09-12 thomas </table>
677 34875d49 2023-12-08 thomas {{ if readme }}
678 34875d49 2023-12-08 thomas {!
679 34875d49 2023-12-08 thomas error = got_open_blob_for_output(&t->blob, &t->fd, &binary, c,
680 34875d49 2023-12-08 thomas qs->folder, readme, qs->commit);
681 34875d49 2023-12-08 thomas if (error) {
682 34875d49 2023-12-08 thomas free(readme);
683 34875d49 2023-12-08 thomas return (-1);
684 34875d49 2023-12-08 thomas }
685 34875d49 2023-12-08 thomas
686 34875d49 2023-12-08 thomas memset(&url, 0, sizeof(url));
687 34875d49 2023-12-08 thomas url.index_page = -1;
688 34875d49 2023-12-08 thomas url.page = -1;
689 34875d49 2023-12-08 thomas url.action = BLOB;
690 34875d49 2023-12-08 thomas url.path = t->qs->path;
691 34875d49 2023-12-08 thomas url.file = readme;
692 34875d49 2023-12-08 thomas url.folder = t->qs->folder;
693 34875d49 2023-12-08 thomas url.commit = t->qs->commit;
694 34875d49 2023-12-08 thomas !}
695 34875d49 2023-12-08 thomas {{ if !binary }}
696 34875d49 2023-12-08 thomas <h2>
697 34875d49 2023-12-08 thomas <a href="{{ render gotweb_render_url(c, &url) }}">
698 34875d49 2023-12-08 thomas {{ readme }}
699 34875d49 2023-12-08 thomas </a>
700 34875d49 2023-12-08 thomas </h2>
701 34875d49 2023-12-08 thomas <pre>
702 34875d49 2023-12-08 thomas {!
703 34875d49 2023-12-08 thomas for (;;) {
704 34875d49 2023-12-08 thomas error = got_object_blob_read_block(&len, t->blob);
705 34875d49 2023-12-08 thomas if (error) {
706 34875d49 2023-12-08 thomas free(readme);
707 34875d49 2023-12-08 thomas return (-1);
708 34875d49 2023-12-08 thomas }
709 34875d49 2023-12-08 thomas if (len == 0)
710 34875d49 2023-12-08 thomas break;
711 34875d49 2023-12-08 thomas buf = got_object_blob_get_read_buf(t->blob);
712 34875d49 2023-12-08 thomas if (tp_write_htmlescape(tp, buf, len) == -1) {
713 34875d49 2023-12-08 thomas free(readme);
714 34875d49 2023-12-08 thomas return (-1);
715 34875d49 2023-12-08 thomas }
716 34875d49 2023-12-08 thomas }
717 34875d49 2023-12-08 thomas !}
718 34875d49 2023-12-08 thomas </pre>
719 34875d49 2023-12-08 thomas {{ end }}
720 34875d49 2023-12-08 thomas {{ end }}
721 3c14c1f2 2023-01-06 thomas </div>
722 34875d49 2023-12-08 thomas {{ finally }}
723 34875d49 2023-12-08 thomas {! free(readme); !}
724 3c14c1f2 2023-01-06 thomas {{ end }}
725 3c14c1f2 2023-01-06 thomas
726 3c14c1f2 2023-01-06 thomas {{ define gotweb_render_tree_item(struct template *tp,
727 3c14c1f2 2023-01-06 thomas struct got_tree_entry *te) }}
728 3c14c1f2 2023-01-06 thomas {!
729 3c14c1f2 2023-01-06 thomas struct request *c = tp->tp_arg;
730 3c14c1f2 2023-01-06 thomas struct transport *t = c->t;
731 3c14c1f2 2023-01-06 thomas struct querystring *qs = t->qs;
732 3c14c1f2 2023-01-06 thomas struct repo_commit *rc = TAILQ_FIRST(&t->repo_commits);
733 3c14c1f2 2023-01-06 thomas const char *modestr = "";
734 3c14c1f2 2023-01-06 thomas const char *name;
735 3c14c1f2 2023-01-06 thomas const char *folder;
736 3c14c1f2 2023-01-06 thomas char *dir = NULL;
737 3c14c1f2 2023-01-06 thomas mode_t mode;
738 3c14c1f2 2023-01-06 thomas struct gotweb_url url = {
739 3c14c1f2 2023-01-06 thomas .index_page = -1,
740 3c14c1f2 2023-01-06 thomas .page = -1,
741 3c14c1f2 2023-01-06 thomas .commit = rc->commit_id,
742 3c14c1f2 2023-01-06 thomas .path = qs->path,
743 3c14c1f2 2023-01-06 thomas };
744 3c14c1f2 2023-01-06 thomas
745 3c14c1f2 2023-01-06 thomas name = got_tree_entry_get_name(te);
746 3c14c1f2 2023-01-06 thomas mode = got_tree_entry_get_mode(te);
747 3c14c1f2 2023-01-06 thomas
748 3c14c1f2 2023-01-06 thomas folder = qs->folder ? qs->folder : "";
749 3c14c1f2 2023-01-06 thomas if (S_ISDIR(mode)) {
750 3c14c1f2 2023-01-06 thomas if (asprintf(&dir, "%s/%s", folder, name) == -1)
751 3c14c1f2 2023-01-06 thomas return (-1);
752 3c14c1f2 2023-01-06 thomas
753 3c14c1f2 2023-01-06 thomas url.action = TREE;
754 3c14c1f2 2023-01-06 thomas url.folder = dir;
755 3c14c1f2 2023-01-06 thomas } else {
756 3c14c1f2 2023-01-06 thomas url.action = BLOB;
757 3c14c1f2 2023-01-06 thomas url.folder = folder;
758 3c14c1f2 2023-01-06 thomas url.file = name;
759 3c14c1f2 2023-01-06 thomas }
760 3c14c1f2 2023-01-06 thomas
761 3c14c1f2 2023-01-06 thomas if (got_object_tree_entry_is_submodule(te))
762 3c14c1f2 2023-01-06 thomas modestr = "$";
763 3c14c1f2 2023-01-06 thomas else if (S_ISLNK(mode))
764 3c14c1f2 2023-01-06 thomas modestr = "@";
765 3c14c1f2 2023-01-06 thomas else if (S_ISDIR(mode))
766 3c14c1f2 2023-01-06 thomas modestr = "/";
767 3c14c1f2 2023-01-06 thomas else if (mode & S_IXUSR)
768 3c14c1f2 2023-01-06 thomas modestr = "*";
769 3c14c1f2 2023-01-06 thomas !}
770 fdd79f2f 2023-09-12 thomas <tr class="tree_wrapper">
771 3c14c1f2 2023-01-06 thomas {{ if S_ISDIR(mode) }}
772 fdd79f2f 2023-09-12 thomas <td class="tree_line" colspan=2>
773 3c14c1f2 2023-01-06 thomas <a href="{{ render gotweb_render_url(c, &url) }}">
774 3c14c1f2 2023-01-06 thomas {{ name }}{{ modestr }}
775 3c14c1f2 2023-01-06 thomas </a>
776 fdd79f2f 2023-09-12 thomas </td>
777 3c14c1f2 2023-01-06 thomas {{ else }}
778 fdd79f2f 2023-09-12 thomas <td class="tree_line">
779 3c14c1f2 2023-01-06 thomas <a href="{{ render gotweb_render_url(c, &url) }}">
780 3c14c1f2 2023-01-06 thomas {{ name }}{{ modestr }}
781 3c14c1f2 2023-01-06 thomas </a>
782 fdd79f2f 2023-09-12 thomas </td>
783 fdd79f2f 2023-09-12 thomas <td class="tree_line_blank">
784 3c14c1f2 2023-01-06 thomas {! url.action = COMMITS; !}
785 3c14c1f2 2023-01-06 thomas <a href="{{ render gotweb_render_url(c, &url) }}">
786 3c14c1f2 2023-01-06 thomas commits
787 3c14c1f2 2023-01-06 thomas </a>
788 3c14c1f2 2023-01-06 thomas {{ " | " }}
789 3c14c1f2 2023-01-06 thomas {! url.action = BLAME; !}
790 3c14c1f2 2023-01-06 thomas <a href="{{ render gotweb_render_url(c, &url) }}">
791 3c14c1f2 2023-01-06 thomas blame
792 3c14c1f2 2023-01-06 thomas </a>
793 fdd79f2f 2023-09-12 thomas </td>
794 3c14c1f2 2023-01-06 thomas {{ end }}
795 fdd79f2f 2023-09-12 thomas </tr>
796 3c14c1f2 2023-01-06 thomas {{ finally }}
797 3c14c1f2 2023-01-06 thomas {!
798 3c14c1f2 2023-01-06 thomas free(dir);
799 617497a6 2023-01-09 thomas !}
800 617497a6 2023-01-09 thomas {{ end }}
801 617497a6 2023-01-09 thomas
802 b3ba36c3 2023-01-14 thomas {{ define gotweb_render_tags(struct template *tp) }}
803 617497a6 2023-01-09 thomas {!
804 617497a6 2023-01-09 thomas struct request *c = tp->tp_arg;
805 617497a6 2023-01-09 thomas struct transport *t = c->t;
806 617497a6 2023-01-09 thomas struct querystring *qs = t->qs;
807 617497a6 2023-01-09 thomas struct repo_tag *rt;
808 617497a6 2023-01-09 thomas int commit_found;
809 617497a6 2023-01-09 thomas
810 617497a6 2023-01-09 thomas commit_found = qs->commit == NULL;
811 3c14c1f2 2023-01-06 thomas !}
812 fdd79f2f 2023-09-12 thomas <header class='subtitle'>
813 fdd79f2f 2023-09-12 thomas <h2>Tags</h2>
814 fdd79f2f 2023-09-12 thomas </header>
815 617497a6 2023-01-09 thomas <div id="tags_content">
816 617497a6 2023-01-09 thomas {{ if t->tag_count == 0 }}
817 617497a6 2023-01-09 thomas <div id="err_content">
818 617497a6 2023-01-09 thomas This repository contains no tags
819 617497a6 2023-01-09 thomas </div>
820 617497a6 2023-01-09 thomas {{ else }}
821 617497a6 2023-01-09 thomas {{ tailq-foreach rt &t->repo_tags entry }}
822 617497a6 2023-01-09 thomas {{ if commit_found || !strcmp(qs->commit, rt->commit_id) }}
823 617497a6 2023-01-09 thomas {! commit_found = 1; !}
824 617497a6 2023-01-09 thomas {{ render tag_item(tp, rt) }}
825 617497a6 2023-01-09 thomas {{ end }}
826 617497a6 2023-01-09 thomas {{ end }}
827 617497a6 2023-01-09 thomas {{ if t->next_id || t->prev_id }}
828 20bab626 2023-02-03 thomas {! qs->action = TAGS; !}
829 617497a6 2023-01-09 thomas {{ render gotweb_render_navs(tp) }}
830 617497a6 2023-01-09 thomas {{ end }}
831 617497a6 2023-01-09 thomas {{ end }}
832 617497a6 2023-01-09 thomas </div>
833 b82440e1 2023-01-06 thomas {{ end }}
834 b82440e1 2023-01-06 thomas
835 617497a6 2023-01-09 thomas {{ define tag_item(struct template *tp, struct repo_tag *rt) }}
836 617497a6 2023-01-09 thomas {!
837 617497a6 2023-01-09 thomas struct request *c = tp->tp_arg;
838 617497a6 2023-01-09 thomas struct transport *t = c->t;
839 617497a6 2023-01-09 thomas struct repo_dir *repo_dir = t->repo_dir;
840 617497a6 2023-01-09 thomas char *tag_name = rt->tag_name;
841 617497a6 2023-01-09 thomas char *msg = rt->tag_commit;
842 617497a6 2023-01-09 thomas char *nl;
843 617497a6 2023-01-09 thomas struct gotweb_url url = {
844 617497a6 2023-01-09 thomas .action = TAG,
845 617497a6 2023-01-09 thomas .index_page = -1,
846 617497a6 2023-01-09 thomas .page = -1,
847 617497a6 2023-01-09 thomas .path = repo_dir->name,
848 617497a6 2023-01-09 thomas .commit = rt->commit_id,
849 617497a6 2023-01-09 thomas };
850 617497a6 2023-01-09 thomas
851 617497a6 2023-01-09 thomas if (strncmp(tag_name, "refs/tags/", 10) == 0)
852 617497a6 2023-01-09 thomas tag_name += 10;
853 617497a6 2023-01-09 thomas
854 617497a6 2023-01-09 thomas if (msg) {
855 617497a6 2023-01-09 thomas nl = strchr(msg, '\n');
856 617497a6 2023-01-09 thomas if (nl)
857 617497a6 2023-01-09 thomas *nl = '\0';
858 617497a6 2023-01-09 thomas }
859 617497a6 2023-01-09 thomas !}
860 617497a6 2023-01-09 thomas <div class="tag_age">
861 4cc0851e 2023-10-08 thomas {{ render datetime(tp, rt->tagger_time, TM_DIFF) }}
862 617497a6 2023-01-09 thomas </div>
863 fdd79f2f 2023-09-12 thomas <div class="tag_name">{{ tag_name }}</div>
864 617497a6 2023-01-09 thomas <div class="tag_log">
865 617497a6 2023-01-09 thomas <a href="{{ render gotweb_render_url(c, &url) }}">
866 617497a6 2023-01-09 thomas {{ msg }}
867 617497a6 2023-01-09 thomas </a>
868 617497a6 2023-01-09 thomas </div>
869 617497a6 2023-01-09 thomas <div class="navs_wrapper">
870 617497a6 2023-01-09 thomas <div class="navs">
871 617497a6 2023-01-09 thomas <a href="{{ render gotweb_render_url(c, &url) }}">tag</a>
872 617497a6 2023-01-09 thomas {{ " | " }}
873 617497a6 2023-01-09 thomas {! url.action = BRIEFS; !}
874 617497a6 2023-01-09 thomas <a href="{{ render gotweb_render_url(c, &url) }}">commit briefs</a>
875 617497a6 2023-01-09 thomas {{ " | " }}
876 617497a6 2023-01-09 thomas {! url.action = COMMITS; !}
877 617497a6 2023-01-09 thomas <a href="{{ render gotweb_render_url(c, &url) }}">commits</a>
878 617497a6 2023-01-09 thomas </div>
879 617497a6 2023-01-09 thomas </div>
880 fdd79f2f 2023-09-12 thomas <hr />
881 617497a6 2023-01-09 thomas {{ end }}
882 145ca42a 2023-01-09 thomas
883 145ca42a 2023-01-09 thomas {{ define gotweb_render_tag(struct template *tp) }}
884 145ca42a 2023-01-09 thomas {!
885 145ca42a 2023-01-09 thomas struct request *c = tp->tp_arg;
886 145ca42a 2023-01-09 thomas struct transport *t = c->t;
887 145ca42a 2023-01-09 thomas struct repo_tag *rt;
888 145ca42a 2023-01-09 thomas const char *tag_name;
889 617497a6 2023-01-09 thomas
890 145ca42a 2023-01-09 thomas rt = TAILQ_LAST(&t->repo_tags, repo_tags_head);
891 145ca42a 2023-01-09 thomas tag_name = rt->tag_name;
892 145ca42a 2023-01-09 thomas
893 145ca42a 2023-01-09 thomas if (strncmp(tag_name, "refs/", 5) == 0)
894 145ca42a 2023-01-09 thomas tag_name += 5;
895 145ca42a 2023-01-09 thomas !}
896 fdd79f2f 2023-09-12 thomas <header class="subtitle">
897 fdd79f2f 2023-09-12 thomas <h2>Tag</h2>
898 fdd79f2f 2023-09-12 thomas </header>
899 145ca42a 2023-01-09 thomas <div id="tags_content">
900 57cfad1e 2023-12-01 thomas <div class="page_header_wrapper">
901 57cfad1e 2023-12-01 thomas <dl>
902 fdd79f2f 2023-09-12 thomas <dt>Commit:</dt>
903 fdd79f2f 2023-09-12 thomas <dd>
904 fdd79f2f 2023-09-12 thomas <code class="commit-id">{{ rt->commit_id }}</code>
905 145ca42a 2023-01-09 thomas {{ " " }}
906 145ca42a 2023-01-09 thomas <span class="refs_str">({{ tag_name }})</span>
907 fdd79f2f 2023-09-12 thomas </dd>
908 fdd79f2f 2023-09-12 thomas <dt>Tagger:</dt>
909 fdd79f2f 2023-09-12 thomas <dd>{{ rt->tagger }}</dd>
910 fdd79f2f 2023-09-12 thomas <dt>Date:</dt>
911 fdd79f2f 2023-09-12 thomas <dd>
912 4cc0851e 2023-10-08 thomas {{ render datetime(tp, rt->tagger_time, TM_LONG)}}
913 fdd79f2f 2023-09-12 thomas </dd>
914 fdd79f2f 2023-09-12 thomas <dt>Message:</dt>
915 fdd79f2f 2023-09-12 thomas <dd class="commit-msg">{{ rt->commit_msg }}</dd>
916 fdd79f2f 2023-09-12 thomas </dl>
917 fdd79f2f 2023-09-12 thomas <hr />
918 fdd79f2f 2023-09-12 thomas <pre id="tag_commit">
919 145ca42a 2023-01-09 thomas {{ rt->tag_commit }}
920 fdd79f2f 2023-09-12 thomas </pre>
921 dccd05b4 2023-01-10 thomas </div>
922 dccd05b4 2023-01-10 thomas </div>
923 dccd05b4 2023-01-10 thomas {{ end }}
924 dccd05b4 2023-01-10 thomas
925 161663e7 2023-03-11 thomas {{ define gotweb_render_diff(struct template *tp) }}
926 dccd05b4 2023-01-10 thomas {!
927 dccd05b4 2023-01-10 thomas struct request *c = tp->tp_arg;
928 dccd05b4 2023-01-10 thomas struct transport *t = c->t;
929 184e6e6f 2023-12-03 thomas struct querystring *qs = t->qs;
930 161663e7 2023-03-11 thomas FILE *fp = t->fp;
931 dccd05b4 2023-01-10 thomas struct repo_commit *rc = TAILQ_FIRST(&t->repo_commits);
932 dccd05b4 2023-01-10 thomas char *line = NULL;
933 dccd05b4 2023-01-10 thomas size_t linesize = 0;
934 dccd05b4 2023-01-10 thomas ssize_t linelen;
935 184e6e6f 2023-12-03 thomas struct gotweb_url patch_url, tree_url = {
936 184e6e6f 2023-12-03 thomas .action = TREE,
937 184e6e6f 2023-12-03 thomas .index_page = -1,
938 184e6e6f 2023-12-03 thomas .page = -1,
939 184e6e6f 2023-12-03 thomas .path = qs->path,
940 184e6e6f 2023-12-03 thomas .commit = rc->commit_id,
941 184e6e6f 2023-12-03 thomas };
942 184e6e6f 2023-12-03 thomas
943 184e6e6f 2023-12-03 thomas memcpy(&patch_url, &tree_url, sizeof(patch_url));
944 184e6e6f 2023-12-03 thomas patch_url.action = PATCH;
945 dccd05b4 2023-01-10 thomas !}
946 fdd79f2f 2023-09-12 thomas <header class="subtitle">
947 fdd79f2f 2023-09-12 thomas <h2>Commit Diff</h2>
948 fdd79f2f 2023-09-12 thomas </header>
949 dccd05b4 2023-01-10 thomas <div id="diff_content">
950 57cfad1e 2023-12-01 thomas <div class="page_header_wrapper">
951 57cfad1e 2023-12-01 thomas <dl>
952 fdd79f2f 2023-09-12 thomas <dt>Commit:</dt>
953 fdd79f2f 2023-09-12 thomas <dd><code class="commit-id">{{ rc->commit_id }}</code></dd>
954 fdd79f2f 2023-09-12 thomas <dt>From:</dt>
955 fdd79f2f 2023-09-12 thomas <dd>{{ rc->author }}</dd>
956 f7ee7604 2023-01-14 thomas {{ if strcmp(rc->committer, rc->author) != 0 }}
957 fdd79f2f 2023-09-12 thomas <dt>Via:</dt>
958 fdd79f2f 2023-09-12 thomas <dd>{{ rc->committer }}</dd>
959 f7ee7604 2023-01-14 thomas {{ end }}
960 fdd79f2f 2023-09-12 thomas <dt>Date:</dt>
961 fdd79f2f 2023-09-12 thomas <dd>
962 4cc0851e 2023-10-08 thomas {{ render datetime(tp, rc->committer_time, TM_LONG) }}
963 fdd79f2f 2023-09-12 thomas </dd>
964 fdd79f2f 2023-09-12 thomas <dt>Message:</dt>
965 fdd79f2f 2023-09-12 thomas <dd class="commit-msg">{{ rc->commit_msg }}</dd>
966 184e6e6f 2023-12-03 thomas <dt>Actions:</dt>
967 184e6e6f 2023-12-03 thomas <dd>
968 184e6e6f 2023-12-03 thomas <a href="{{ render gotweb_render_url(c, &patch_url) }}">
969 184e6e6f 2023-12-03 thomas Patch
970 184e6e6f 2023-12-03 thomas </a>
971 184e6e6f 2023-12-03 thomas {{" | "}}
972 184e6e6f 2023-12-03 thomas <a href="{{ render gotweb_render_url(c, &tree_url) }}">
973 184e6e6f 2023-12-03 thomas Tree
974 184e6e6f 2023-12-03 thomas </a>
975 184e6e6f 2023-12-03 thomas </dd>
976 fdd79f2f 2023-09-12 thomas </dl>
977 145ca42a 2023-01-09 thomas </div>
978 fdd79f2f 2023-09-12 thomas <hr />
979 fdd79f2f 2023-09-12 thomas <pre id="diff">
980 dccd05b4 2023-01-10 thomas {{ while (linelen = getline(&line, &linesize, fp)) != -1 }}
981 dccd05b4 2023-01-10 thomas {{ render diff_line(tp, line) }}
982 dccd05b4 2023-01-10 thomas {{ end }}
983 fdd79f2f 2023-09-12 thomas </pre>
984 145ca42a 2023-01-09 thomas </div>
985 dccd05b4 2023-01-10 thomas {{ finally }}
986 dccd05b4 2023-01-10 thomas {! free(line); !}
987 145ca42a 2023-01-09 thomas {{ end }}
988 145ca42a 2023-01-09 thomas
989 dccd05b4 2023-01-10 thomas {{ define diff_line(struct template *tp, char *line )}}
990 dccd05b4 2023-01-10 thomas {!
991 dccd05b4 2023-01-10 thomas const char *color = NULL;
992 dccd05b4 2023-01-10 thomas char *nl;
993 dccd05b4 2023-01-10 thomas
994 dccd05b4 2023-01-10 thomas if (!strncmp(line, "-", 1))
995 dccd05b4 2023-01-10 thomas color = "diff_minus";
996 dccd05b4 2023-01-10 thomas else if (!strncmp(line, "+", 1))
997 dccd05b4 2023-01-10 thomas color = "diff_plus";
998 dccd05b4 2023-01-10 thomas else if (!strncmp(line, "@@", 2))
999 dccd05b4 2023-01-10 thomas color = "diff_chunk_header";
1000 dccd05b4 2023-01-10 thomas else if (!strncmp(line, "commit +", 8) ||
1001 dccd05b4 2023-01-10 thomas !strncmp(line, "commit -", 8) ||
1002 dccd05b4 2023-01-10 thomas !strncmp(line, "blob +", 6) ||
1003 dccd05b4 2023-01-10 thomas !strncmp(line, "blob -", 6) ||
1004 dccd05b4 2023-01-10 thomas !strncmp(line, "file +", 6) ||
1005 dccd05b4 2023-01-10 thomas !strncmp(line, "file -", 6))
1006 dccd05b4 2023-01-10 thomas color = "diff_meta";
1007 dccd05b4 2023-01-10 thomas else if (!strncmp(line, "from:", 5) || !strncmp(line, "via:", 4))
1008 dccd05b4 2023-01-10 thomas color = "diff_author";
1009 dccd05b4 2023-01-10 thomas else if (!strncmp(line, "date:", 5))
1010 dccd05b4 2023-01-10 thomas color = "diff_date";
1011 dccd05b4 2023-01-10 thomas
1012 dccd05b4 2023-01-10 thomas nl = strchr(line, '\n');
1013 dccd05b4 2023-01-10 thomas if (nl)
1014 dccd05b4 2023-01-10 thomas *nl = '\0';
1015 dccd05b4 2023-01-10 thomas !}
1016 fdd79f2f 2023-09-12 thomas <span class="diff_line {{ color }}">{{ line }}</span>{{"\n"}}
1017 dccd05b4 2023-01-10 thomas {{ end }}
1018 dccd05b4 2023-01-10 thomas
1019 00abe30b 2023-01-14 thomas {{ define gotweb_render_branches(struct template *tp,
1020 00abe30b 2023-01-14 thomas struct got_reflist_head *refs) }}
1021 00abe30b 2023-01-14 thomas {!
1022 00abe30b 2023-01-14 thomas struct got_reflist_entry *re;
1023 00abe30b 2023-01-14 thomas !}
1024 fdd79f2f 2023-09-12 thomas <header class='subtitle'>
1025 fdd79f2f 2023-09-12 thomas <h2>Branches</h2>
1026 fdd79f2f 2023-09-12 thomas </header>
1027 00abe30b 2023-01-14 thomas <div id="branches_content">
1028 00abe30b 2023-01-14 thomas {{ tailq-foreach re refs entry }}
1029 00abe30b 2023-01-14 thomas {{ if !got_ref_is_symbolic(re->ref) }}
1030 00abe30b 2023-01-14 thomas {{ render branch(tp, re) }}
1031 00abe30b 2023-01-14 thomas {{ end }}
1032 00abe30b 2023-01-14 thomas {{ end }}
1033 00abe30b 2023-01-14 thomas </div>
1034 00abe30b 2023-01-14 thomas {{ end }}
1035 00abe30b 2023-01-14 thomas
1036 00abe30b 2023-01-14 thomas {{ define branch(struct template *tp, struct got_reflist_entry *re) }}
1037 00abe30b 2023-01-14 thomas {!
1038 00abe30b 2023-01-14 thomas const struct got_error *err;
1039 00abe30b 2023-01-14 thomas struct request *c = tp->tp_arg;
1040 00abe30b 2023-01-14 thomas struct querystring *qs = c->t->qs;
1041 00abe30b 2023-01-14 thomas const char *refname;
1042 53bf32b8 2023-01-23 thomas time_t age;
1043 00abe30b 2023-01-14 thomas struct gotweb_url url = {
1044 00abe30b 2023-01-14 thomas .action = SUMMARY,
1045 00abe30b 2023-01-14 thomas .index_page = -1,
1046 00abe30b 2023-01-14 thomas .page = -1,
1047 00abe30b 2023-01-14 thomas .path = qs->path,
1048 00abe30b 2023-01-14 thomas };
1049 00abe30b 2023-01-14 thomas
1050 00abe30b 2023-01-14 thomas refname = got_ref_get_name(re->ref);
1051 00abe30b 2023-01-14 thomas
1052 53bf32b8 2023-01-23 thomas err = got_get_repo_age(&age, c, refname);
1053 00abe30b 2023-01-14 thomas if (err) {
1054 00abe30b 2023-01-14 thomas log_warnx("%s: %s", __func__, err->msg);
1055 00abe30b 2023-01-14 thomas return -1;
1056 00abe30b 2023-01-14 thomas }
1057 00abe30b 2023-01-14 thomas
1058 00abe30b 2023-01-14 thomas if (strncmp(refname, "refs/heads/", 11) == 0)
1059 00abe30b 2023-01-14 thomas refname += 11;
1060 00abe30b 2023-01-14 thomas
1061 00abe30b 2023-01-14 thomas url.headref = refname;
1062 00abe30b 2023-01-14 thomas !}
1063 fdd79f2f 2023-09-12 thomas <section class="branches_wrapper">
1064 53bf32b8 2023-01-23 thomas <div class="branches_age">
1065 4cc0851e 2023-10-08 thomas {{ render datetime(tp, age, TM_DIFF) }}
1066 53bf32b8 2023-01-23 thomas </div>
1067 00abe30b 2023-01-14 thomas <div class="branch">
1068 00abe30b 2023-01-14 thomas <a href="{{ render gotweb_render_url(c, &url) }}">{{ refname }}</a>
1069 00abe30b 2023-01-14 thomas </div>
1070 00abe30b 2023-01-14 thomas <div class="navs_wrapper">
1071 00abe30b 2023-01-14 thomas <div class="navs">
1072 00abe30b 2023-01-14 thomas <a href="{{ render gotweb_render_url(c, &url) }}">summary</a>
1073 00abe30b 2023-01-14 thomas {{" | "}}
1074 00abe30b 2023-01-14 thomas {! url.action = BRIEFS; !}
1075 00abe30b 2023-01-14 thomas <a href="{{ render gotweb_render_url(c, &url) }}">commit briefs</a>
1076 00abe30b 2023-01-14 thomas {{" | "}}
1077 00abe30b 2023-01-14 thomas {! url.action = COMMITS; !}
1078 00abe30b 2023-01-14 thomas <a href="{{ render gotweb_render_url(c, &url) }}">commits</a>
1079 00abe30b 2023-01-14 thomas </div>
1080 00abe30b 2023-01-14 thomas </div>
1081 fdd79f2f 2023-09-12 thomas <hr />
1082 fdd79f2f 2023-09-12 thomas </section>
1083 18e466eb 2023-01-14 thomas {{ end }}
1084 18e466eb 2023-01-14 thomas
1085 161663e7 2023-03-11 thomas {{ define gotweb_render_summary(struct template *tp) }}
1086 18e466eb 2023-01-14 thomas {!
1087 18e466eb 2023-01-14 thomas struct request *c = tp->tp_arg;
1088 18e466eb 2023-01-14 thomas struct server *srv = c->srv;
1089 18e466eb 2023-01-14 thomas struct transport *t = c->t;
1090 161663e7 2023-03-11 thomas struct got_reflist_head *refs = &t->refs;
1091 18e466eb 2023-01-14 thomas !}
1092 feaddee6 2023-12-03 thomas <dl id="summary_wrapper" class="page_header_wrapper">
1093 18e466eb 2023-01-14 thomas {{ if srv->show_repo_description }}
1094 fdd79f2f 2023-09-12 thomas <dt>Description:</dt>
1095 fdd79f2f 2023-09-12 thomas <dd>{{ t->repo_dir->description }}</dd>
1096 18e466eb 2023-01-14 thomas {{ end }}
1097 18e466eb 2023-01-14 thomas {{ if srv->show_repo_owner }}
1098 fdd79f2f 2023-09-12 thomas <dt>Owner:</dt>
1099 fdd79f2f 2023-09-12 thomas <dd>{{ t->repo_dir->owner }}</dd>
1100 18e466eb 2023-01-14 thomas {{ end }}
1101 18e466eb 2023-01-14 thomas {{ if srv->show_repo_age }}
1102 fdd79f2f 2023-09-12 thomas <dt>Last Change:</dt>
1103 fdd79f2f 2023-09-12 thomas <dd>
1104 4cc0851e 2023-10-08 thomas {{ render datetime(tp, t->repo_dir->age, TM_DIFF) }}
1105 fdd79f2f 2023-09-12 thomas </dd>
1106 18e466eb 2023-01-14 thomas {{ end }}
1107 18e466eb 2023-01-14 thomas {{ if srv->show_repo_cloneurl }}
1108 fdd79f2f 2023-09-12 thomas <dt>Clone URL:</dt>
1109 fdd79f2f 2023-09-12 thomas <dd><pre class="clone-url">{{ t->repo_dir->url }}</pre></dd>
1110 18e466eb 2023-01-14 thomas {{ end }}
1111 fdd79f2f 2023-09-12 thomas </dl>
1112 18e466eb 2023-01-14 thomas {{ render gotweb_render_briefs(tp) }}
1113 18e466eb 2023-01-14 thomas {{ render gotweb_render_branches(tp, refs) }}
1114 3b8c462a 2023-12-08 thomas {{ render gotweb_render_tags(tp) }}
1115 00abe30b 2023-01-14 thomas {{ end }}
1116 00abe30b 2023-01-14 thomas
1117 1cd5d437 2023-01-15 thomas {{ define gotweb_render_blame(struct template *tp) }}
1118 1cd5d437 2023-01-15 thomas {!
1119 1cd5d437 2023-01-15 thomas const struct got_error *err;
1120 1cd5d437 2023-01-15 thomas struct request *c = tp->tp_arg;
1121 1cd5d437 2023-01-15 thomas struct transport *t = c->t;
1122 4f4afeeb 2023-12-03 thomas struct querystring *qs = t->qs;
1123 1cd5d437 2023-01-15 thomas struct repo_commit *rc = TAILQ_FIRST(&t->repo_commits);
1124 4f4afeeb 2023-12-03 thomas struct gotweb_url briefs_url, blob_url, raw_url;
1125 4f4afeeb 2023-12-03 thomas
1126 4f4afeeb 2023-12-03 thomas memset(&briefs_url, 0, sizeof(briefs_url));
1127 4f4afeeb 2023-12-03 thomas briefs_url.index_page = -1,
1128 4f4afeeb 2023-12-03 thomas briefs_url.page = -1,
1129 4f4afeeb 2023-12-03 thomas briefs_url.action = BRIEFS,
1130 4f4afeeb 2023-12-03 thomas briefs_url.path = qs->path,
1131 4f4afeeb 2023-12-03 thomas briefs_url.commit = qs->commit,
1132 4f4afeeb 2023-12-03 thomas briefs_url.folder = qs->folder,
1133 4f4afeeb 2023-12-03 thomas briefs_url.file = qs->file,
1134 4f4afeeb 2023-12-03 thomas
1135 4f4afeeb 2023-12-03 thomas memcpy(&blob_url, &briefs_url, sizeof(blob_url));
1136 4f4afeeb 2023-12-03 thomas blob_url.action = BLOB;
1137 4f4afeeb 2023-12-03 thomas
1138 4f4afeeb 2023-12-03 thomas memcpy(&raw_url, &briefs_url, sizeof(raw_url));
1139 4f4afeeb 2023-12-03 thomas raw_url.action = BLOBRAW;
1140 1cd5d437 2023-01-15 thomas !}
1141 fdd79f2f 2023-09-12 thomas <header class="subtitle">
1142 fdd79f2f 2023-09-12 thomas <h2>Blame</h2>
1143 fdd79f2f 2023-09-12 thomas </header>
1144 1cd5d437 2023-01-15 thomas <div id="blame_content">
1145 57cfad1e 2023-12-01 thomas <div class="page_header_wrapper">
1146 57cfad1e 2023-12-01 thomas <dl>
1147 fdd79f2f 2023-09-12 thomas <dt>Date:</dt>
1148 fdd79f2f 2023-09-12 thomas <dd>
1149 4cc0851e 2023-10-08 thomas {{ render datetime(tp, rc->committer_time, TM_LONG) }}
1150 fdd79f2f 2023-09-12 thomas </dd>
1151 fdd79f2f 2023-09-12 thomas <dt>Message:</dt>
1152 fdd79f2f 2023-09-12 thomas <dd class="commit-msg">{{ rc->commit_msg }}</dd>
1153 4f4afeeb 2023-12-03 thomas <dt>Actions:</dt>
1154 4f4afeeb 2023-12-03 thomas <dd>
1155 4f4afeeb 2023-12-03 thomas <a href="{{ render gotweb_render_url(c, &briefs_url) }}">
1156 4f4afeeb 2023-12-03 thomas History
1157 4f4afeeb 2023-12-03 thomas </a>
1158 4f4afeeb 2023-12-03 thomas {{" | "}}
1159 4f4afeeb 2023-12-03 thomas <a href="{{ render gotweb_render_url(c, &blob_url) }}">
1160 4f4afeeb 2023-12-03 thomas Blob
1161 4f4afeeb 2023-12-03 thomas </a>
1162 4f4afeeb 2023-12-03 thomas {{" | "}}
1163 4f4afeeb 2023-12-03 thomas <a href="{{ render gotweb_render_url(c, &raw_url) }}">
1164 4f4afeeb 2023-12-03 thomas Raw File
1165 4f4afeeb 2023-12-03 thomas </a>
1166 4f4afeeb 2023-12-03 thomas </dd>
1167 fdd79f2f 2023-09-12 thomas </dl>
1168 1cd5d437 2023-01-15 thomas </div>
1169 fdd79f2f 2023-09-12 thomas <hr />
1170 fdd79f2f 2023-09-12 thomas <pre id="blame">
1171 1cd5d437 2023-01-15 thomas {!
1172 1cd5d437 2023-01-15 thomas err = got_output_file_blame(c, &blame_line);
1173 aa2aecab 2023-05-25 thomas if (err && err->code != GOT_ERR_CANCELLED)
1174 1cd5d437 2023-01-15 thomas log_warnx("%s: got_output_file_blame: %s", __func__,
1175 1cd5d437 2023-01-15 thomas err->msg);
1176 aa2aecab 2023-05-25 thomas if (err)
1177 1cd5d437 2023-01-15 thomas return (-1);
1178 1cd5d437 2023-01-15 thomas !}
1179 fdd79f2f 2023-09-12 thomas </pre>
1180 1cd5d437 2023-01-15 thomas </div>
1181 1cd5d437 2023-01-15 thomas {{ end }}
1182 1cd5d437 2023-01-15 thomas
1183 1cd5d437 2023-01-15 thomas {{ define blame_line(struct template *tp, const char *line,
1184 1cd5d437 2023-01-15 thomas struct blame_line *bline, int lprec, int lcur) }}
1185 1cd5d437 2023-01-15 thomas {!
1186 1cd5d437 2023-01-15 thomas struct request *c = tp->tp_arg;
1187 1cd5d437 2023-01-15 thomas struct transport *t = c->t;
1188 1cd5d437 2023-01-15 thomas struct repo_dir *repo_dir = t->repo_dir;
1189 1cd5d437 2023-01-15 thomas char *committer, *s;
1190 1cd5d437 2023-01-15 thomas struct gotweb_url url = {
1191 1cd5d437 2023-01-15 thomas .action = DIFF,
1192 1cd5d437 2023-01-15 thomas .index_page = -1,
1193 1cd5d437 2023-01-15 thomas .page = -1,
1194 1cd5d437 2023-01-15 thomas .path = repo_dir->name,
1195 1cd5d437 2023-01-15 thomas .commit = bline->id_str,
1196 1cd5d437 2023-01-15 thomas };
1197 1cd5d437 2023-01-15 thomas
1198 1cd5d437 2023-01-15 thomas s = strchr(bline->committer, '<');
1199 1cd5d437 2023-01-15 thomas committer = s ? s + 1 : bline->committer;
1200 1cd5d437 2023-01-15 thomas
1201 1cd5d437 2023-01-15 thomas s = strchr(committer, '@');
1202 1cd5d437 2023-01-15 thomas if (s)
1203 1cd5d437 2023-01-15 thomas *s = '\0';
1204 1cd5d437 2023-01-15 thomas !}
1205 83d26b5a 2023-12-03 thomas <div class="blame_line">
1206 83d26b5a 2023-12-03 thomas <span class="blame_number">{{ printf "%*d ", lprec, lcur }}</span>
1207 83d26b5a 2023-12-03 thomas <span class="blame_hash">
1208 1cd5d437 2023-01-15 thomas <a href="{{ render gotweb_render_url(c, &url) }}">
1209 1cd5d437 2023-01-15 thomas {{ printf "%.8s", bline->id_str }}
1210 1cd5d437 2023-01-15 thomas </a>
1211 83d26b5a 2023-12-03 thomas </span>
1212 83d26b5a 2023-12-03 thomas {{" "}}
1213 83d26b5a 2023-12-03 thomas <span class="blame_date">{{ bline->datebuf }}</span>
1214 83d26b5a 2023-12-03 thomas {{" "}}
1215 83d26b5a 2023-12-03 thomas <span class="blame_author">{{ printf "%.9s", committer }}</span>
1216 83d26b5a 2023-12-03 thomas {{" "}}
1217 83d26b5a 2023-12-03 thomas <span class="blame_code">{{ line }}</span>
1218 1cd5d437 2023-01-15 thomas </div>
1219 feaddee6 2023-12-03 thomas {{ end }}
1220 feaddee6 2023-12-03 thomas
1221 feaddee6 2023-12-03 thomas {{ define gotweb_render_patch(struct template *tp) }}
1222 feaddee6 2023-12-03 thomas {!
1223 feaddee6 2023-12-03 thomas struct request *c = tp->tp_arg;
1224 feaddee6 2023-12-03 thomas struct transport *t = c->t;
1225 feaddee6 2023-12-03 thomas struct repo_commit *rc = TAILQ_FIRST(&t->repo_commits);
1226 feaddee6 2023-12-03 thomas struct tm tm;
1227 feaddee6 2023-12-03 thomas char buf[BUFSIZ], datebuf[64];
1228 feaddee6 2023-12-03 thomas size_t r;
1229 feaddee6 2023-12-03 thomas
1230 feaddee6 2023-12-03 thomas if (gmtime_r(&rc->committer_time, &tm) == NULL ||
1231 feaddee6 2023-12-03 thomas strftime(datebuf, sizeof(datebuf), "%a %b %d %T %Y UTC", &tm) == 0)
1232 feaddee6 2023-12-03 thomas return (-1);
1233 feaddee6 2023-12-03 thomas !}
1234 feaddee6 2023-12-03 thomas commit {{ rc->commit_id }} {{ "\n" }}
1235 feaddee6 2023-12-03 thomas from: {{ rc->author | unsafe }} {{ "\n" }}
1236 feaddee6 2023-12-03 thomas {{ if strcmp(rc->committer, rc->author) != 0 }}
1237 feaddee6 2023-12-03 thomas via: {{ rc->committer | unsafe }} {{ "\n" }}
1238 1cd5d437 2023-01-15 thomas {{ end }}
1239 feaddee6 2023-12-03 thomas date: {{ datebuf }} {{ "\n" }}
1240 feaddee6 2023-12-03 thomas {{ "\n" }}
1241 feaddee6 2023-12-03 thomas {{ rc->commit_msg | unsafe }} {{ "\n" }}
1242 feaddee6 2023-12-03 thomas {!
1243 feaddee6 2023-12-03 thomas if (template_flush(tp) == -1)
1244 feaddee6 2023-12-03 thomas return (-1);
1245 feaddee6 2023-12-03 thomas for (;;) {
1246 feaddee6 2023-12-03 thomas r = fread(buf, 1, sizeof(buf), t->fp);
1247 feaddee6 2023-12-03 thomas if (fcgi_write(c, buf, r) == -1 ||
1248 feaddee6 2023-12-03 thomas r != sizeof(buf))
1249 feaddee6 2023-12-03 thomas break;
1250 feaddee6 2023-12-03 thomas }
1251 feaddee6 2023-12-03 thomas !}
1252 feaddee6 2023-12-03 thomas {{ end }}
1253 1cd5d437 2023-01-15 thomas
1254 d6795e9f 2022-12-30 thomas {{ define gotweb_render_rss(struct template *tp) }}
1255 d6795e9f 2022-12-30 thomas {!
1256 d6795e9f 2022-12-30 thomas struct request *c = tp->tp_arg;
1257 d6795e9f 2022-12-30 thomas struct server *srv = c->srv;
1258 d6795e9f 2022-12-30 thomas struct transport *t = c->t;
1259 d6795e9f 2022-12-30 thomas struct repo_dir *repo_dir = t->repo_dir;
1260 d6795e9f 2022-12-30 thomas struct repo_tag *rt;
1261 d6795e9f 2022-12-30 thomas struct gotweb_url summary = {
1262 d6795e9f 2022-12-30 thomas .action = SUMMARY,
1263 d6795e9f 2022-12-30 thomas .index_page = -1,
1264 d6795e9f 2022-12-30 thomas .page = -1,
1265 d6795e9f 2022-12-30 thomas .path = repo_dir->name,
1266 d6795e9f 2022-12-30 thomas };
1267 d6795e9f 2022-12-30 thomas !}
1268 d6795e9f 2022-12-30 thomas <?xml version="1.0" encoding="UTF-8"?>
1269 d6795e9f 2022-12-30 thomas <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
1270 d6795e9f 2022-12-30 thomas <channel>
1271 d6795e9f 2022-12-30 thomas <title>Tags of {{ repo_dir->name }}</title>
1272 d6795e9f 2022-12-30 thomas <link>
1273 d6795e9f 2022-12-30 thomas <![CDATA[
1274 d6795e9f 2022-12-30 thomas {{ render gotweb_render_absolute_url(c, &summary) }}
1275 d6795e9f 2022-12-30 thomas ]]>
1276 d6795e9f 2022-12-30 thomas </link>
1277 d6795e9f 2022-12-30 thomas {{ if srv->show_repo_description }}
1278 d6795e9f 2022-12-30 thomas <description>{{ repo_dir->description }}</description>
1279 d6795e9f 2022-12-30 thomas {{ end }}
1280 d6795e9f 2022-12-30 thomas {{ tailq-foreach rt &t->repo_tags entry }}
1281 d6795e9f 2022-12-30 thomas {{ render rss_tag_item(tp, rt) }}
1282 d6795e9f 2022-12-30 thomas {{ end }}
1283 d6795e9f 2022-12-30 thomas </channel>
1284 d6795e9f 2022-12-30 thomas </rss>
1285 d6795e9f 2022-12-30 thomas {{ end }}
1286 d6795e9f 2022-12-30 thomas
1287 d6795e9f 2022-12-30 thomas {{ define rss_tag_item(struct template *tp, struct repo_tag *rt) }}
1288 d6795e9f 2022-12-30 thomas {!
1289 d6795e9f 2022-12-30 thomas struct request *c = tp->tp_arg;
1290 d6795e9f 2022-12-30 thomas struct transport *t = c->t;
1291 d6795e9f 2022-12-30 thomas struct repo_dir *repo_dir = t->repo_dir;
1292 10fa70e2 2023-10-08 thomas struct tm tm;
1293 10fa70e2 2023-10-08 thomas char rfc822[128];
1294 10fa70e2 2023-10-08 thomas int r;
1295 d6795e9f 2022-12-30 thomas char *tag_name = rt->tag_name;
1296 d6795e9f 2022-12-30 thomas struct gotweb_url tag = {
1297 d6795e9f 2022-12-30 thomas .action = TAG,
1298 d6795e9f 2022-12-30 thomas .index_page = -1,
1299 d6795e9f 2022-12-30 thomas .page = -1,
1300 d6795e9f 2022-12-30 thomas .path = repo_dir->name,
1301 d6795e9f 2022-12-30 thomas .commit = rt->commit_id,
1302 d6795e9f 2022-12-30 thomas };
1303 d6795e9f 2022-12-30 thomas
1304 d6795e9f 2022-12-30 thomas if (strncmp(tag_name, "refs/tags/", 10) == 0)
1305 d6795e9f 2022-12-30 thomas tag_name += 10;
1306 10fa70e2 2023-10-08 thomas
1307 10fa70e2 2023-10-08 thomas if (gmtime_r(&rt->tagger_time, &tm) == NULL)
1308 10fa70e2 2023-10-08 thomas return -1;
1309 10fa70e2 2023-10-08 thomas r = strftime(rfc822, sizeof(rfc822), "%a, %d %b %Y %H:%M:%S GMT", &tm);
1310 10fa70e2 2023-10-08 thomas if (r == 0)
1311 10fa70e2 2023-10-08 thomas return 0;
1312 d6795e9f 2022-12-30 thomas !}
1313 d6795e9f 2022-12-30 thomas <item>
1314 d6795e9f 2022-12-30 thomas <title>{{ repo_dir->name }} {{" "}} {{ tag_name }}</title>
1315 d6795e9f 2022-12-30 thomas <link>
1316 d6795e9f 2022-12-30 thomas <![CDATA[
1317 d6795e9f 2022-12-30 thomas {{ render gotweb_render_absolute_url(c, &tag) }}
1318 d6795e9f 2022-12-30 thomas ]]>
1319 d6795e9f 2022-12-30 thomas </link>
1320 d6795e9f 2022-12-30 thomas <description>
1321 d6795e9f 2022-12-30 thomas <![CDATA[<pre>{{ rt->tag_commit }}</pre>]]>
1322 d6795e9f 2022-12-30 thomas </description>
1323 d6795e9f 2022-12-30 thomas {{ render rss_author(tp, rt->tagger) }}
1324 d6795e9f 2022-12-30 thomas <guid isPermaLink="false">{{ rt->commit_id }}</guid>
1325 d6795e9f 2022-12-30 thomas <pubDate>
1326 10fa70e2 2023-10-08 thomas {{ rfc822 }}
1327 d6795e9f 2022-12-30 thomas </pubDate>
1328 d6795e9f 2022-12-30 thomas </item>
1329 7ade8b27 2022-12-30 thomas {{ end }}
1330 d6795e9f 2022-12-30 thomas
1331 d6795e9f 2022-12-30 thomas {{ define rss_author(struct template *tp, char *author) }}
1332 d6795e9f 2022-12-30 thomas {!
1333 d6795e9f 2022-12-30 thomas char *t, *mail;
1334 d6795e9f 2022-12-30 thomas
1335 d6795e9f 2022-12-30 thomas /* what to do if the author name contains a paren? */
1336 d6795e9f 2022-12-30 thomas if (strchr(author, '(') != NULL || strchr(author, ')') != NULL)
1337 d6795e9f 2022-12-30 thomas return 0;
1338 d6795e9f 2022-12-30 thomas
1339 d6795e9f 2022-12-30 thomas t = strchr(author, '<');
1340 d6795e9f 2022-12-30 thomas if (t == NULL)
1341 d6795e9f 2022-12-30 thomas return 0;
1342 d6795e9f 2022-12-30 thomas *t = '\0';
1343 d6795e9f 2022-12-30 thomas mail = t+1;
1344 d6795e9f 2022-12-30 thomas
1345 d6795e9f 2022-12-30 thomas while (isspace((unsigned char)*--t))
1346 d6795e9f 2022-12-30 thomas *t = '\0';
1347 d6795e9f 2022-12-30 thomas
1348 d6795e9f 2022-12-30 thomas t = strchr(mail, '>');
1349 d6795e9f 2022-12-30 thomas if (t == NULL)
1350 d6795e9f 2022-12-30 thomas return 0;
1351 d6795e9f 2022-12-30 thomas *t = '\0';
1352 d6795e9f 2022-12-30 thomas !}
1353 d6795e9f 2022-12-30 thomas <author>
1354 d6795e9f 2022-12-30 thomas {{ mail }} {{" "}} ({{ author }})
1355 d6795e9f 2022-12-30 thomas </author>
1356 d6795e9f 2022-12-30 thomas {{ end }}