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 3c14c1f2 2023-01-06 thomas
37 e7e5fa49 2022-12-30 thomas #include "proc.h"
38 e7e5fa49 2022-12-30 thomas
39 e7e5fa49 2022-12-30 thomas #include "gotwebd.h"
40 e7e5fa49 2022-12-30 thomas #include "tmpl.h"
41 e7e5fa49 2022-12-30 thomas
42 b82440e1 2023-01-06 thomas static int gotweb_render_blob_line(struct template *, const char *, size_t);
43 3c14c1f2 2023-01-06 thomas static int gotweb_render_tree_item(struct template *, struct got_tree_entry *);
44 1cd5d437 2023-01-15 thomas static int blame_line(struct template *, const char *, struct blame_line *,
45 1cd5d437 2023-01-15 thomas int, int);
46 20bab626 2023-02-03 thomas
47 20bab626 2023-02-03 thomas static inline int gotweb_render_more(struct template *, int);
48 b82440e1 2023-01-06 thomas
49 dccd05b4 2023-01-10 thomas static inline int diff_line(struct template *, char *);
50 617497a6 2023-01-09 thomas static inline int tag_item(struct template *, struct repo_tag *);
51 00abe30b 2023-01-14 thomas static inline int branch(struct template *, struct got_reflist_entry *);
52 d6795e9f 2022-12-30 thomas static inline int rss_tag_item(struct template *, struct repo_tag *);
53 d6795e9f 2022-12-30 thomas static inline int rss_author(struct template *, char *);
54 d6795e9f 2022-12-30 thomas
55 e7e5fa49 2022-12-30 thomas !}
56 e7e5fa49 2022-12-30 thomas
57 e7e5fa49 2022-12-30 thomas {{ define gotweb_render_header(struct template *tp) }}
58 e7e5fa49 2022-12-30 thomas {!
59 e7e5fa49 2022-12-30 thomas struct request *c = tp->tp_arg;
60 e7e5fa49 2022-12-30 thomas struct server *srv = c->srv;
61 e7e5fa49 2022-12-30 thomas struct querystring *qs = c->t->qs;
62 e7e5fa49 2022-12-30 thomas struct gotweb_url u_path;
63 3191e256 2022-12-30 thomas const char *prfx = c->document_uri;
64 e7e5fa49 2022-12-30 thomas const char *css = srv->custom_css;
65 e7e5fa49 2022-12-30 thomas
66 e7e5fa49 2022-12-30 thomas memset(&u_path, 0, sizeof(u_path));
67 e7e5fa49 2022-12-30 thomas u_path.index_page = -1;
68 e7e5fa49 2022-12-30 thomas u_path.page = -1;
69 e7e5fa49 2022-12-30 thomas u_path.action = SUMMARY;
70 e7e5fa49 2022-12-30 thomas !}
71 e7e5fa49 2022-12-30 thomas <!doctype html>
72 e7e5fa49 2022-12-30 thomas <html>
73 e7e5fa49 2022-12-30 thomas <head>
74 e7e5fa49 2022-12-30 thomas <meta charset="utf-8" />
75 e7e5fa49 2022-12-30 thomas <title>{{ srv->site_name }}</title>
76 e7e5fa49 2022-12-30 thomas <meta name="viewport" content="initial-scale=.75" />
77 e7e5fa49 2022-12-30 thomas <meta name="msapplication-TileColor" content="#da532c" />
78 e7e5fa49 2022-12-30 thomas <meta name="theme-color" content="#ffffff"/>
79 e7e5fa49 2022-12-30 thomas <link rel="apple-touch-icon" sizes="180x180" href="{{ prfx }}apple-touch-icon.png" />
80 e7e5fa49 2022-12-30 thomas <link rel="icon" type="image/png" sizes="32x32" href="{{ prfx }}favicon-32x32.png" />
81 e7e5fa49 2022-12-30 thomas <link rel="icon" type="image/png" sizes="16x16" href="{{ prfx }}favicon-16x16.png" />
82 e7e5fa49 2022-12-30 thomas <link rel="manifest" href="{{ prfx }}site.webmanifest"/>
83 e7e5fa49 2022-12-30 thomas <link rel="mask-icon" href="{{ prfx }}safari-pinned-tab.svg" />
84 e7e5fa49 2022-12-30 thomas <link rel="stylesheet" type="text/css" href="{{ prfx }}{{ css }}" />
85 e7e5fa49 2022-12-30 thomas </head>
86 e7e5fa49 2022-12-30 thomas <body>
87 e7e5fa49 2022-12-30 thomas <div id="gw_body">
88 e7e5fa49 2022-12-30 thomas <div id="header">
89 e7e5fa49 2022-12-30 thomas <div id="got_link">
90 e7e5fa49 2022-12-30 thomas <a href="{{ srv->logo_url }}" target="_blank">
91 e7e5fa49 2022-12-30 thomas <img src="{{ prfx }}{{ srv->logo }}" />
92 e7e5fa49 2022-12-30 thomas </a>
93 e7e5fa49 2022-12-30 thomas </div>
94 e7e5fa49 2022-12-30 thomas </div>
95 e7e5fa49 2022-12-30 thomas <div id="site_path">
96 e7e5fa49 2022-12-30 thomas <div id="site_link">
97 e7e5fa49 2022-12-30 thomas <a href="?index_page={{ printf "%d", qs->index_page }}">
98 e7e5fa49 2022-12-30 thomas {{ srv->site_link }}
99 e7e5fa49 2022-12-30 thomas </a>
100 e7e5fa49 2022-12-30 thomas {{ if qs->path }}
101 e7e5fa49 2022-12-30 thomas {! u_path.path = qs->path; !}
102 e7e5fa49 2022-12-30 thomas {{ " / " }}
103 e7e5fa49 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &u_path)}}">
104 e7e5fa49 2022-12-30 thomas {{ qs->path }}
105 e7e5fa49 2022-12-30 thomas </a>
106 e7e5fa49 2022-12-30 thomas {{ end }}
107 e7e5fa49 2022-12-30 thomas {{ if qs->action != INDEX }}
108 e7e5fa49 2022-12-30 thomas {{ " / " }}{{ gotweb_action_name(qs->action) }}
109 e7e5fa49 2022-12-30 thomas {{ end }}
110 e7e5fa49 2022-12-30 thomas </div>
111 e7e5fa49 2022-12-30 thomas </div>
112 e7e5fa49 2022-12-30 thomas <div id="content">
113 e7e5fa49 2022-12-30 thomas {{ end }}
114 e7e5fa49 2022-12-30 thomas
115 e7e5fa49 2022-12-30 thomas {{ define gotweb_render_footer(struct template *tp) }}
116 e7e5fa49 2022-12-30 thomas {!
117 e7e5fa49 2022-12-30 thomas struct request *c = tp->tp_arg;
118 e7e5fa49 2022-12-30 thomas struct server *srv = c->srv;
119 e7e5fa49 2022-12-30 thomas !}
120 e7e5fa49 2022-12-30 thomas <div id="site_owner_wrapper">
121 e7e5fa49 2022-12-30 thomas <div id="site_owner">
122 e7e5fa49 2022-12-30 thomas {{ if srv->show_site_owner }}
123 e7e5fa49 2022-12-30 thomas {{ srv->site_owner }}
124 e7e5fa49 2022-12-30 thomas {{ end }}
125 e7e5fa49 2022-12-30 thomas </div>
126 e7e5fa49 2022-12-30 thomas </div>
127 e7e5fa49 2022-12-30 thomas </div>
128 e7e5fa49 2022-12-30 thomas </div>
129 e7e5fa49 2022-12-30 thomas </body>
130 e7e5fa49 2022-12-30 thomas </html>
131 e7e5fa49 2022-12-30 thomas {{ end }}
132 e7e5fa49 2022-12-30 thomas
133 e7e5fa49 2022-12-30 thomas {{ define gotweb_render_repo_table_hdr(struct template *tp) }}
134 e7e5fa49 2022-12-30 thomas {!
135 e7e5fa49 2022-12-30 thomas struct request *c = tp->tp_arg;
136 e7e5fa49 2022-12-30 thomas struct server *srv = c->srv;
137 e7e5fa49 2022-12-30 thomas !}
138 e7e5fa49 2022-12-30 thomas <div id="index_header">
139 e7e5fa49 2022-12-30 thomas <div id="index_header_project">
140 e7e5fa49 2022-12-30 thomas Project
141 e7e5fa49 2022-12-30 thomas </div>
142 e7e5fa49 2022-12-30 thomas {{ if srv->show_repo_description }}
143 e7e5fa49 2022-12-30 thomas <div id="index_header_description">
144 e7e5fa49 2022-12-30 thomas Description
145 e7e5fa49 2022-12-30 thomas </div>
146 e7e5fa49 2022-12-30 thomas {{ end }}
147 e7e5fa49 2022-12-30 thomas {{ if srv->show_repo_owner }}
148 e7e5fa49 2022-12-30 thomas <div id="index_header_owner">
149 e7e5fa49 2022-12-30 thomas Owner
150 e7e5fa49 2022-12-30 thomas </div>
151 e7e5fa49 2022-12-30 thomas {{ end }}
152 e7e5fa49 2022-12-30 thomas {{ if srv->show_repo_age }}
153 e7e5fa49 2022-12-30 thomas <div id="index_header_age">
154 e7e5fa49 2022-12-30 thomas Last Change
155 e7e5fa49 2022-12-30 thomas </div>
156 e7e5fa49 2022-12-30 thomas {{ end }}
157 e7e5fa49 2022-12-30 thomas </div>
158 e7e5fa49 2022-12-30 thomas {{ end }}
159 e7e5fa49 2022-12-30 thomas
160 e7e5fa49 2022-12-30 thomas {{ define gotweb_render_repo_fragment(struct template *tp, struct repo_dir *repo_dir) }}
161 e7e5fa49 2022-12-30 thomas {!
162 e7e5fa49 2022-12-30 thomas struct request *c = tp->tp_arg;
163 e7e5fa49 2022-12-30 thomas struct server *srv = c->srv;
164 e7e5fa49 2022-12-30 thomas struct gotweb_url summary = {
165 e7e5fa49 2022-12-30 thomas .action = SUMMARY,
166 e7e5fa49 2022-12-30 thomas .index_page = -1,
167 e7e5fa49 2022-12-30 thomas .page = -1,
168 e7e5fa49 2022-12-30 thomas .path = repo_dir->name,
169 e7e5fa49 2022-12-30 thomas }, briefs = {
170 e7e5fa49 2022-12-30 thomas .action = BRIEFS,
171 e7e5fa49 2022-12-30 thomas .index_page = -1,
172 e7e5fa49 2022-12-30 thomas .page = -1,
173 e7e5fa49 2022-12-30 thomas .path = repo_dir->name,
174 e7e5fa49 2022-12-30 thomas }, commits = {
175 e7e5fa49 2022-12-30 thomas .action = COMMITS,
176 e7e5fa49 2022-12-30 thomas .index_page = -1,
177 e7e5fa49 2022-12-30 thomas .page = -1,
178 e7e5fa49 2022-12-30 thomas .path = repo_dir->name,
179 e7e5fa49 2022-12-30 thomas }, tags = {
180 e7e5fa49 2022-12-30 thomas .action = TAGS,
181 e7e5fa49 2022-12-30 thomas .index_page = -1,
182 e7e5fa49 2022-12-30 thomas .page = -1,
183 e7e5fa49 2022-12-30 thomas .path = repo_dir->name,
184 e7e5fa49 2022-12-30 thomas }, tree = {
185 e7e5fa49 2022-12-30 thomas .action = TREE,
186 e7e5fa49 2022-12-30 thomas .index_page = -1,
187 e7e5fa49 2022-12-30 thomas .page = -1,
188 e7e5fa49 2022-12-30 thomas .path = repo_dir->name,
189 d6795e9f 2022-12-30 thomas }, rss = {
190 d6795e9f 2022-12-30 thomas .action = RSS,
191 d6795e9f 2022-12-30 thomas .index_page = -1,
192 d6795e9f 2022-12-30 thomas .page = -1,
193 d6795e9f 2022-12-30 thomas .path = repo_dir->name,
194 e7e5fa49 2022-12-30 thomas };
195 e7e5fa49 2022-12-30 thomas !}
196 e7e5fa49 2022-12-30 thomas <div class="index_wrapper">
197 e7e5fa49 2022-12-30 thomas <div class="index_project">
198 e7e5fa49 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &summary) }}">{{ repo_dir->name }}</a>
199 e7e5fa49 2022-12-30 thomas </div>
200 e7e5fa49 2022-12-30 thomas {{ if srv->show_repo_description }}
201 e7e5fa49 2022-12-30 thomas <div class="index_project_description">
202 e7e5fa49 2022-12-30 thomas {{ repo_dir->description }}
203 e7e5fa49 2022-12-30 thomas </div>
204 e7e5fa49 2022-12-30 thomas {{ end }}
205 e7e5fa49 2022-12-30 thomas {{ if srv->show_repo_owner }}
206 e7e5fa49 2022-12-30 thomas <div class="index_project_owner">
207 e7e5fa49 2022-12-30 thomas {{ repo_dir->owner }}
208 e7e5fa49 2022-12-30 thomas </div>
209 e7e5fa49 2022-12-30 thomas {{ end }}
210 e7e5fa49 2022-12-30 thomas {{ if srv->show_repo_age }}
211 e7e5fa49 2022-12-30 thomas <div class="index_project_age">
212 53bf32b8 2023-01-23 thomas {{ render gotweb_render_age(tp, repo_dir->age, TM_DIFF) }}
213 e7e5fa49 2022-12-30 thomas </div>
214 e7e5fa49 2022-12-30 thomas {{ end }}
215 e7e5fa49 2022-12-30 thomas <div class="navs_wrapper">
216 e7e5fa49 2022-12-30 thomas <div class="navs">
217 e7e5fa49 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &summary) }}">summary</a>
218 e7e5fa49 2022-12-30 thomas {{ " | " }}
219 e7e5fa49 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &briefs) }}">briefs</a>
220 e7e5fa49 2022-12-30 thomas {{ " | " }}
221 e7e5fa49 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &commits) }}">commits</a>
222 e7e5fa49 2022-12-30 thomas {{ " | " }}
223 e7e5fa49 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &tags) }}">tags</a>
224 e7e5fa49 2022-12-30 thomas {{ " | " }}
225 e7e5fa49 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &tree) }}">tree</a>
226 d6795e9f 2022-12-30 thomas {{ " | " }}
227 d6795e9f 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &rss) }}">rss</a>
228 e7e5fa49 2022-12-30 thomas </div>
229 e7e5fa49 2022-12-30 thomas <div class="dotted_line"></div>
230 e7e5fa49 2022-12-30 thomas </div>
231 e7e5fa49 2022-12-30 thomas </div>
232 e7e5fa49 2022-12-30 thomas {{ end }}
233 e7e5fa49 2022-12-30 thomas
234 e7e5fa49 2022-12-30 thomas {{ define gotweb_render_briefs(struct template *tp) }}
235 e7e5fa49 2022-12-30 thomas {!
236 e7e5fa49 2022-12-30 thomas const struct got_error *error;
237 e7e5fa49 2022-12-30 thomas struct request *c = tp->tp_arg;
238 e7e5fa49 2022-12-30 thomas struct server *srv = c->srv;
239 e7e5fa49 2022-12-30 thomas struct transport *t = c->t;
240 e7e5fa49 2022-12-30 thomas struct querystring *qs = c->t->qs;
241 e7e5fa49 2022-12-30 thomas struct repo_commit *rc;
242 e7e5fa49 2022-12-30 thomas struct repo_dir *repo_dir = t->repo_dir;
243 e7e5fa49 2022-12-30 thomas struct gotweb_url diff_url, tree_url;
244 e7e5fa49 2022-12-30 thomas char *tmp;
245 e7e5fa49 2022-12-30 thomas
246 e7e5fa49 2022-12-30 thomas diff_url = (struct gotweb_url){
247 e7e5fa49 2022-12-30 thomas .action = DIFF,
248 e7e5fa49 2022-12-30 thomas .index_page = -1,
249 e7e5fa49 2022-12-30 thomas .page = -1,
250 e7e5fa49 2022-12-30 thomas .path = repo_dir->name,
251 e7e5fa49 2022-12-30 thomas .headref = qs->headref,
252 e7e5fa49 2022-12-30 thomas };
253 e7e5fa49 2022-12-30 thomas tree_url = (struct gotweb_url){
254 e7e5fa49 2022-12-30 thomas .action = TREE,
255 e7e5fa49 2022-12-30 thomas .index_page = -1,
256 e7e5fa49 2022-12-30 thomas .page = -1,
257 e7e5fa49 2022-12-30 thomas .path = repo_dir->name,
258 e7e5fa49 2022-12-30 thomas .headref = qs->headref,
259 e7e5fa49 2022-12-30 thomas };
260 e7e5fa49 2022-12-30 thomas
261 e7e5fa49 2022-12-30 thomas if (qs->action == SUMMARY) {
262 e7e5fa49 2022-12-30 thomas qs->action = BRIEFS;
263 e7e5fa49 2022-12-30 thomas error = got_get_repo_commits(c, D_MAXSLCOMMDISP);
264 e7e5fa49 2022-12-30 thomas } else
265 e7e5fa49 2022-12-30 thomas error = got_get_repo_commits(c, srv->max_commits_display);
266 e7e5fa49 2022-12-30 thomas if (error)
267 e7e5fa49 2022-12-30 thomas return -1;
268 e7e5fa49 2022-12-30 thomas !}
269 e7e5fa49 2022-12-30 thomas <div id="briefs_title_wrapper">
270 e7e5fa49 2022-12-30 thomas <div id="briefs_title">Commit Briefs</div>
271 e7e5fa49 2022-12-30 thomas </div>
272 e7e5fa49 2022-12-30 thomas <div id="briefs_content">
273 e7e5fa49 2022-12-30 thomas {{ tailq-foreach rc &t->repo_commits entry }}
274 e7e5fa49 2022-12-30 thomas {!
275 e7e5fa49 2022-12-30 thomas diff_url.commit = rc->commit_id;
276 e7e5fa49 2022-12-30 thomas tree_url.commit = rc->commit_id;
277 e7e5fa49 2022-12-30 thomas
278 64d39587 2023-01-14 thomas tmp = strchr(rc->committer, '<');
279 e7e5fa49 2022-12-30 thomas if (tmp)
280 e7e5fa49 2022-12-30 thomas *tmp = '\0';
281 e7e5fa49 2022-12-30 thomas
282 e7e5fa49 2022-12-30 thomas tmp = strchr(rc->commit_msg, '\n');
283 e7e5fa49 2022-12-30 thomas if (tmp)
284 e7e5fa49 2022-12-30 thomas *tmp = '\0';
285 e7e5fa49 2022-12-30 thomas !}
286 e7e5fa49 2022-12-30 thomas <div class="briefs_age">
287 e7e5fa49 2022-12-30 thomas {{ render gotweb_render_age(tp, rc->committer_time, TM_DIFF) }}
288 e7e5fa49 2022-12-30 thomas </div>
289 e7e5fa49 2022-12-30 thomas <div class="briefs_author">
290 64d39587 2023-01-14 thomas {{ rc->committer }}
291 e7e5fa49 2022-12-30 thomas </div>
292 e7e5fa49 2022-12-30 thomas <div class="briefs_log">
293 e7e5fa49 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &diff_url) }}">
294 e7e5fa49 2022-12-30 thomas {{ rc->commit_msg }}
295 e7e5fa49 2022-12-30 thomas </a>
296 e7e5fa49 2022-12-30 thomas {{ if rc->refs_str }}
297 e7e5fa49 2022-12-30 thomas {{ " " }} <span class="refs_str">({{ rc->refs_str }})</span>
298 e7e5fa49 2022-12-30 thomas {{ end }}
299 e7e5fa49 2022-12-30 thomas </a>
300 e7e5fa49 2022-12-30 thomas </div>
301 e7e5fa49 2022-12-30 thomas <div class="navs_wrapper">
302 e7e5fa49 2022-12-30 thomas <div class="navs">
303 e7e5fa49 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &diff_url) }}">diff</a>
304 e7e5fa49 2022-12-30 thomas {{ " | " }}
305 e7e5fa49 2022-12-30 thomas <a href="{{ render gotweb_render_url(tp->tp_arg, &tree_url) }}">tree</a>
306 e7e5fa49 2022-12-30 thomas </div>
307 e7e5fa49 2022-12-30 thomas </div>
308 e7e5fa49 2022-12-30 thomas <div class="dotted_line"></div>
309 e7e5fa49 2022-12-30 thomas {{ end }}
310 20bab626 2023-02-03 thomas {{ render gotweb_render_more(tp, BRIEFS) }}
311 2f4f0731 2022-12-30 thomas </div>
312 2f4f0731 2022-12-30 thomas {{ end }}
313 2f4f0731 2022-12-30 thomas
314 20bab626 2023-02-03 thomas {{ define gotweb_render_more(struct template *tp, int action) }}
315 20bab626 2023-02-03 thomas {!
316 20bab626 2023-02-03 thomas struct request *c = tp->tp_arg;
317 20bab626 2023-02-03 thomas struct transport *t = c->t;
318 20bab626 2023-02-03 thomas struct querystring *qs = t->qs;
319 20bab626 2023-02-03 thomas struct gotweb_url more = {
320 20bab626 2023-02-03 thomas .action = action,
321 20bab626 2023-02-03 thomas .index_page = -1,
322 20bab626 2023-02-03 thomas .path = qs->path,
323 20bab626 2023-02-03 thomas .commit = t->more_id,
324 20bab626 2023-02-03 thomas .headref = qs->headref,
325 20bab626 2023-02-03 thomas };
326 20bab626 2023-02-03 thomas !}
327 20bab626 2023-02-03 thomas {{ if t->more_id }}
328 20bab626 2023-02-03 thomas <div id="np_wrapper">
329 20bab626 2023-02-03 thomas <div id="nav_more">
330 20bab626 2023-02-03 thomas <a href="{{ render gotweb_render_url(c, &more) }}">
331 bd6e9c73 2023-02-03 thomas More&nbsp;&darr;
332 20bab626 2023-02-03 thomas </a>
333 20bab626 2023-02-03 thomas </div>
334 20bab626 2023-02-03 thomas </div>
335 20bab626 2023-02-03 thomas {{ end }}
336 20bab626 2023-02-03 thomas {{ end }}
337 20bab626 2023-02-03 thomas
338 2f4f0731 2022-12-30 thomas {{ define gotweb_render_navs(struct template *tp) }}
339 2f4f0731 2022-12-30 thomas {!
340 2f4f0731 2022-12-30 thomas struct request *c = tp->tp_arg;
341 2f4f0731 2022-12-30 thomas struct transport *t = c->t;
342 2f4f0731 2022-12-30 thomas struct gotweb_url prev, next;
343 2f4f0731 2022-12-30 thomas int have_prev, have_next;
344 2f4f0731 2022-12-30 thomas
345 2f4f0731 2022-12-30 thomas gotweb_get_navs(c, &prev, &have_prev, &next, &have_next);
346 2f4f0731 2022-12-30 thomas !}
347 2f4f0731 2022-12-30 thomas <div id="np_wrapper">
348 2f4f0731 2022-12-30 thomas <div id="nav_prev">
349 2f4f0731 2022-12-30 thomas {{ if have_prev }}
350 2f4f0731 2022-12-30 thomas <a href="{{ render gotweb_render_url(c, &prev) }}">
351 2f4f0731 2022-12-30 thomas Previous
352 2f4f0731 2022-12-30 thomas </a>
353 2f4f0731 2022-12-30 thomas {{ end }}
354 2f4f0731 2022-12-30 thomas </div>
355 2f4f0731 2022-12-30 thomas <div id="nav_next">
356 2f4f0731 2022-12-30 thomas {{ if have_next }}
357 2f4f0731 2022-12-30 thomas <a href="{{ render gotweb_render_url(c, &next) }}">
358 2f4f0731 2022-12-30 thomas Next
359 2f4f0731 2022-12-30 thomas </a>
360 2f4f0731 2022-12-30 thomas {{ end }}
361 2f4f0731 2022-12-30 thomas </div>
362 e7e5fa49 2022-12-30 thomas </div>
363 2f4f0731 2022-12-30 thomas {{ finally }}
364 2f4f0731 2022-12-30 thomas {!
365 2f4f0731 2022-12-30 thomas free(t->next_id);
366 2f4f0731 2022-12-30 thomas t->next_id = NULL;
367 2f4f0731 2022-12-30 thomas free(t->prev_id);
368 2f4f0731 2022-12-30 thomas t->prev_id = NULL;
369 2f4f0731 2022-12-30 thomas !}
370 e7e5fa49 2022-12-30 thomas {{ end }}
371 7ade8b27 2022-12-30 thomas
372 7ade8b27 2022-12-30 thomas {{ define gotweb_render_commits(struct template *tp) }}
373 7ade8b27 2022-12-30 thomas {!
374 7ade8b27 2022-12-30 thomas struct request *c = tp->tp_arg;
375 7ade8b27 2022-12-30 thomas struct transport *t = c->t;
376 7ade8b27 2022-12-30 thomas struct repo_dir *repo_dir = t->repo_dir;
377 7ade8b27 2022-12-30 thomas struct repo_commit *rc;
378 7ade8b27 2022-12-30 thomas struct gotweb_url diff, tree;
379 7ade8b27 2022-12-30 thomas
380 7ade8b27 2022-12-30 thomas diff = (struct gotweb_url){
381 7ade8b27 2022-12-30 thomas .action = DIFF,
382 7ade8b27 2022-12-30 thomas .index_page = -1,
383 7ade8b27 2022-12-30 thomas .page = -1,
384 7ade8b27 2022-12-30 thomas .path = repo_dir->name,
385 7ade8b27 2022-12-30 thomas };
386 7ade8b27 2022-12-30 thomas tree = (struct gotweb_url){
387 7ade8b27 2022-12-30 thomas .action = TREE,
388 7ade8b27 2022-12-30 thomas .index_page = -1,
389 7ade8b27 2022-12-30 thomas .page = -1,
390 7ade8b27 2022-12-30 thomas .path = repo_dir->name,
391 7ade8b27 2022-12-30 thomas };
392 7ade8b27 2022-12-30 thomas !}
393 7ade8b27 2022-12-30 thomas <div class="commits_title_wrapper">
394 7ade8b27 2022-12-30 thomas <div class="commits_title">Commits</div>
395 7ade8b27 2022-12-30 thomas </div>
396 7ade8b27 2022-12-30 thomas <div class="commits_content">
397 7ade8b27 2022-12-30 thomas {{ tailq-foreach rc &t->repo_commits entry }}
398 7ade8b27 2022-12-30 thomas {!
399 7ade8b27 2022-12-30 thomas diff.commit = rc->commit_id;
400 7ade8b27 2022-12-30 thomas tree.commit = rc->commit_id;
401 7ade8b27 2022-12-30 thomas !}
402 7ade8b27 2022-12-30 thomas <div class="commits_header_wrapper">
403 7ade8b27 2022-12-30 thomas <div class="commits_header">
404 7ade8b27 2022-12-30 thomas <div class="header_commit_title">Commit:</div>
405 7ade8b27 2022-12-30 thomas <div class="header_commit">{{ rc->commit_id }}</div>
406 54ffadaf 2023-01-14 thomas <div class="header_author_title">From:</div>
407 7ade8b27 2022-12-30 thomas <div class="header_author">{{ rc->author }}</div>
408 54ffadaf 2023-01-14 thomas {{ if strcmp(rc->committer, rc->author) != 0 }}
409 54ffadaf 2023-01-14 thomas <div class="header_author_title">Via:</div>
410 54ffadaf 2023-01-14 thomas <div class="header_author">{{ rc->committer }}</div>
411 54ffadaf 2023-01-14 thomas {{ end }}
412 7ade8b27 2022-12-30 thomas <div class="header_age_title">Date:</div>
413 7ade8b27 2022-12-30 thomas <div class="header_age">
414 7ade8b27 2022-12-30 thomas {{ render gotweb_render_age(tp, rc->committer_time, TM_LONG) }}
415 7ade8b27 2022-12-30 thomas </div>
416 7ade8b27 2022-12-30 thomas </div>
417 7ade8b27 2022-12-30 thomas </div>
418 bbf94fd6 2023-01-02 thomas <div class="dotted_line"></div>
419 bbf94fd6 2023-01-02 thomas <div class="commit">
420 bbf94fd6 2023-01-02 thomas {{ "\n" }}
421 bbf94fd6 2023-01-02 thomas {{ rc->commit_msg }}
422 bbf94fd6 2023-01-02 thomas </div>
423 7ade8b27 2022-12-30 thomas <div class="navs_wrapper">
424 7ade8b27 2022-12-30 thomas <div class="navs">
425 7ade8b27 2022-12-30 thomas <a href="{{ render gotweb_render_url(c, &diff) }}">diff</a>
426 7ade8b27 2022-12-30 thomas {{ " | " }}
427 7ade8b27 2022-12-30 thomas <a href="{{ render gotweb_render_url(c, &tree) }}">tree</a>
428 7ade8b27 2022-12-30 thomas </div>
429 7ade8b27 2022-12-30 thomas </div>
430 7ade8b27 2022-12-30 thomas <div class="dotted_line"></div>
431 7ade8b27 2022-12-30 thomas {{ end }}
432 20bab626 2023-02-03 thomas {{ render gotweb_render_more(tp, COMMITS) }}
433 b82440e1 2023-01-06 thomas </div>
434 b82440e1 2023-01-06 thomas {{ end }}
435 b82440e1 2023-01-06 thomas
436 b82440e1 2023-01-06 thomas {{ define gotweb_render_blob(struct template *tp,
437 b82440e1 2023-01-06 thomas struct got_blob_object *blob) }}
438 b82440e1 2023-01-06 thomas {!
439 b82440e1 2023-01-06 thomas struct request *c = tp->tp_arg;
440 b82440e1 2023-01-06 thomas struct transport *t = c->t;
441 b82440e1 2023-01-06 thomas struct repo_commit *rc = TAILQ_FIRST(&t->repo_commits);
442 b82440e1 2023-01-06 thomas !}
443 b82440e1 2023-01-06 thomas <div id="blob_title_wrapper">
444 b82440e1 2023-01-06 thomas <div id="blob_title">Blob</div>
445 b82440e1 2023-01-06 thomas </div>
446 b82440e1 2023-01-06 thomas <div id="blob_content">
447 b82440e1 2023-01-06 thomas <div id="blob_header_wrapper">
448 b82440e1 2023-01-06 thomas <div id="blob_header">
449 b82440e1 2023-01-06 thomas <div class="header_age_title">Date:</div>
450 b82440e1 2023-01-06 thomas <div class="header_age">
451 b82440e1 2023-01-06 thomas {{ render gotweb_render_age(tp, rc->committer_time, TM_LONG) }}
452 b82440e1 2023-01-06 thomas </div>
453 b82440e1 2023-01-06 thomas <div id="header_commit_msg_title">Message:</div>
454 b82440e1 2023-01-06 thomas <div id="header_commit_msg">{{ rc->commit_msg }}</div>
455 b82440e1 2023-01-06 thomas </div>
456 b82440e1 2023-01-06 thomas </div>
457 b82440e1 2023-01-06 thomas <div class="dotted_line"></div>
458 b82440e1 2023-01-06 thomas <div id="blob">
459 b82440e1 2023-01-06 thomas <pre>
460 b82440e1 2023-01-06 thomas {{ render got_output_blob_by_lines(tp, blob, gotweb_render_blob_line) }}
461 b82440e1 2023-01-06 thomas </pre>
462 b82440e1 2023-01-06 thomas </div>
463 7ade8b27 2022-12-30 thomas </div>
464 d6795e9f 2022-12-30 thomas {{ end }}
465 d6795e9f 2022-12-30 thomas
466 b82440e1 2023-01-06 thomas {{ define gotweb_render_blob_line(struct template *tp, const char *line,
467 b82440e1 2023-01-06 thomas size_t no) }}
468 b82440e1 2023-01-06 thomas {!
469 b82440e1 2023-01-06 thomas char lineno[16];
470 b82440e1 2023-01-06 thomas int r;
471 b82440e1 2023-01-06 thomas
472 b82440e1 2023-01-06 thomas r = snprintf(lineno, sizeof(lineno), "%zu", no);
473 b82440e1 2023-01-06 thomas if (r < 0 || (size_t)r >= sizeof(lineno))
474 b82440e1 2023-01-06 thomas return -1;
475 b82440e1 2023-01-06 thomas !}
476 b82440e1 2023-01-06 thomas <div class="blob_line" id="line{{ lineno }}">
477 b82440e1 2023-01-06 thomas <div class="blob_number">
478 b82440e1 2023-01-06 thomas <a href="#line{{ lineno }}">{{ lineno }}</a>
479 b82440e1 2023-01-06 thomas </div>
480 b82440e1 2023-01-06 thomas <div class="blob_code">{{ line }}</div>
481 3c14c1f2 2023-01-06 thomas </div>
482 3c14c1f2 2023-01-06 thomas {{ end }}
483 3c14c1f2 2023-01-06 thomas
484 3c14c1f2 2023-01-06 thomas {{ define gotweb_render_tree(struct template *tp) }}
485 3c14c1f2 2023-01-06 thomas {!
486 3c14c1f2 2023-01-06 thomas struct request *c = tp->tp_arg;
487 3c14c1f2 2023-01-06 thomas struct transport *t = c->t;
488 3c14c1f2 2023-01-06 thomas struct repo_commit *rc = TAILQ_FIRST(&t->repo_commits);
489 3c14c1f2 2023-01-06 thomas !}
490 3c14c1f2 2023-01-06 thomas <div id="tree_title_wrapper">
491 3c14c1f2 2023-01-06 thomas <div id="tree_title">Tree</div>
492 3c14c1f2 2023-01-06 thomas </div>
493 3c14c1f2 2023-01-06 thomas <div id="tree_content">
494 3c14c1f2 2023-01-06 thomas <div id="tree_header_wrapper">
495 3c14c1f2 2023-01-06 thomas <div id="tree_header">
496 3c14c1f2 2023-01-06 thomas <div id="header_tree_title">Tree:</div>
497 3c14c1f2 2023-01-06 thomas <div id="header_tree">{{ rc->tree_id }}</div>
498 3c14c1f2 2023-01-06 thomas <div class="header_age_title">Date:</div>
499 3c14c1f2 2023-01-06 thomas <div class="header_age">
500 3c14c1f2 2023-01-06 thomas {{ render gotweb_render_age(tp, rc->committer_time, TM_LONG) }}
501 3c14c1f2 2023-01-06 thomas </div>
502 3c14c1f2 2023-01-06 thomas <div id="header_commit_msg_title">Message:</div>
503 3c14c1f2 2023-01-06 thomas <div id="header_commit_msg">{{ rc->commit_msg }}</div>
504 3c14c1f2 2023-01-06 thomas </div>
505 3c14c1f2 2023-01-06 thomas </div>
506 3c14c1f2 2023-01-06 thomas <div class="dotted_line"></div>
507 3c14c1f2 2023-01-06 thomas <div id="tree">
508 3c14c1f2 2023-01-06 thomas {{ render got_output_repo_tree(c, gotweb_render_tree_item) }}
509 3c14c1f2 2023-01-06 thomas </div>
510 3c14c1f2 2023-01-06 thomas </div>
511 3c14c1f2 2023-01-06 thomas {{ end }}
512 3c14c1f2 2023-01-06 thomas
513 3c14c1f2 2023-01-06 thomas {{ define gotweb_render_tree_item(struct template *tp,
514 3c14c1f2 2023-01-06 thomas struct got_tree_entry *te) }}
515 3c14c1f2 2023-01-06 thomas {!
516 3c14c1f2 2023-01-06 thomas struct request *c = tp->tp_arg;
517 3c14c1f2 2023-01-06 thomas struct transport *t = c->t;
518 3c14c1f2 2023-01-06 thomas struct querystring *qs = t->qs;
519 3c14c1f2 2023-01-06 thomas struct repo_commit *rc = TAILQ_FIRST(&t->repo_commits);
520 3c14c1f2 2023-01-06 thomas const char *modestr = "";
521 3c14c1f2 2023-01-06 thomas const char *name;
522 3c14c1f2 2023-01-06 thomas const char *folder;
523 3c14c1f2 2023-01-06 thomas char *dir = NULL;
524 3c14c1f2 2023-01-06 thomas mode_t mode;
525 3c14c1f2 2023-01-06 thomas struct gotweb_url url = {
526 3c14c1f2 2023-01-06 thomas .index_page = -1,
527 3c14c1f2 2023-01-06 thomas .page = -1,
528 3c14c1f2 2023-01-06 thomas .commit = rc->commit_id,
529 3c14c1f2 2023-01-06 thomas .path = qs->path,
530 3c14c1f2 2023-01-06 thomas };
531 3c14c1f2 2023-01-06 thomas
532 3c14c1f2 2023-01-06 thomas name = got_tree_entry_get_name(te);
533 3c14c1f2 2023-01-06 thomas mode = got_tree_entry_get_mode(te);
534 3c14c1f2 2023-01-06 thomas
535 3c14c1f2 2023-01-06 thomas folder = qs->folder ? qs->folder : "";
536 3c14c1f2 2023-01-06 thomas if (S_ISDIR(mode)) {
537 3c14c1f2 2023-01-06 thomas if (asprintf(&dir, "%s/%s", folder, name) == -1)
538 3c14c1f2 2023-01-06 thomas return (-1);
539 3c14c1f2 2023-01-06 thomas
540 3c14c1f2 2023-01-06 thomas url.action = TREE;
541 3c14c1f2 2023-01-06 thomas url.folder = dir;
542 3c14c1f2 2023-01-06 thomas } else {
543 3c14c1f2 2023-01-06 thomas url.action = BLOB;
544 3c14c1f2 2023-01-06 thomas url.folder = folder;
545 3c14c1f2 2023-01-06 thomas url.file = name;
546 3c14c1f2 2023-01-06 thomas }
547 3c14c1f2 2023-01-06 thomas
548 3c14c1f2 2023-01-06 thomas if (got_object_tree_entry_is_submodule(te))
549 3c14c1f2 2023-01-06 thomas modestr = "$";
550 3c14c1f2 2023-01-06 thomas else if (S_ISLNK(mode))
551 3c14c1f2 2023-01-06 thomas modestr = "@";
552 3c14c1f2 2023-01-06 thomas else if (S_ISDIR(mode))
553 3c14c1f2 2023-01-06 thomas modestr = "/";
554 3c14c1f2 2023-01-06 thomas else if (mode & S_IXUSR)
555 3c14c1f2 2023-01-06 thomas modestr = "*";
556 3c14c1f2 2023-01-06 thomas !}
557 3c14c1f2 2023-01-06 thomas <div class="tree_wrapper">
558 3c14c1f2 2023-01-06 thomas {{ if S_ISDIR(mode) }}
559 3c14c1f2 2023-01-06 thomas <div class="tree_line">
560 3c14c1f2 2023-01-06 thomas <a href="{{ render gotweb_render_url(c, &url) }}">
561 3c14c1f2 2023-01-06 thomas {{ name }}{{ modestr }}
562 3c14c1f2 2023-01-06 thomas </a>
563 3c14c1f2 2023-01-06 thomas </div>
564 3c14c1f2 2023-01-06 thomas <div class="tree_line_blank">&nbsp;</div>
565 3c14c1f2 2023-01-06 thomas {{ else }}
566 3c14c1f2 2023-01-06 thomas <div class="tree_line">
567 3c14c1f2 2023-01-06 thomas <a href="{{ render gotweb_render_url(c, &url) }}">
568 3c14c1f2 2023-01-06 thomas {{ name }}{{ modestr }}
569 3c14c1f2 2023-01-06 thomas </a>
570 3c14c1f2 2023-01-06 thomas </div>
571 3c14c1f2 2023-01-06 thomas <div class="tree_line_blank">
572 3c14c1f2 2023-01-06 thomas {! url.action = COMMITS; !}
573 3c14c1f2 2023-01-06 thomas <a href="{{ render gotweb_render_url(c, &url) }}">
574 3c14c1f2 2023-01-06 thomas commits
575 3c14c1f2 2023-01-06 thomas </a>
576 3c14c1f2 2023-01-06 thomas {{ " | " }}
577 3c14c1f2 2023-01-06 thomas {! url.action = BLAME; !}
578 3c14c1f2 2023-01-06 thomas <a href="{{ render gotweb_render_url(c, &url) }}">
579 3c14c1f2 2023-01-06 thomas blame
580 3c14c1f2 2023-01-06 thomas </a>
581 3c14c1f2 2023-01-06 thomas </div>
582 3c14c1f2 2023-01-06 thomas {{ end }}
583 b82440e1 2023-01-06 thomas </div>
584 3c14c1f2 2023-01-06 thomas {{ finally }}
585 3c14c1f2 2023-01-06 thomas {!
586 3c14c1f2 2023-01-06 thomas free(dir);
587 617497a6 2023-01-09 thomas !}
588 617497a6 2023-01-09 thomas {{ end }}
589 617497a6 2023-01-09 thomas
590 b3ba36c3 2023-01-14 thomas {{ define gotweb_render_tags(struct template *tp) }}
591 617497a6 2023-01-09 thomas {!
592 617497a6 2023-01-09 thomas struct request *c = tp->tp_arg;
593 617497a6 2023-01-09 thomas struct transport *t = c->t;
594 617497a6 2023-01-09 thomas struct querystring *qs = t->qs;
595 617497a6 2023-01-09 thomas struct repo_tag *rt;
596 617497a6 2023-01-09 thomas int commit_found;
597 617497a6 2023-01-09 thomas
598 617497a6 2023-01-09 thomas commit_found = qs->commit == NULL;
599 3c14c1f2 2023-01-06 thomas !}
600 617497a6 2023-01-09 thomas <div id="tags_title_wrapper">
601 617497a6 2023-01-09 thomas <div id="tags_title">Tags</div>
602 617497a6 2023-01-09 thomas </div>
603 617497a6 2023-01-09 thomas <div id="tags_content">
604 617497a6 2023-01-09 thomas {{ if t->tag_count == 0 }}
605 617497a6 2023-01-09 thomas <div id="err_content">
606 617497a6 2023-01-09 thomas This repository contains no tags
607 617497a6 2023-01-09 thomas </div>
608 617497a6 2023-01-09 thomas {{ else }}
609 617497a6 2023-01-09 thomas {{ tailq-foreach rt &t->repo_tags entry }}
610 617497a6 2023-01-09 thomas {{ if commit_found || !strcmp(qs->commit, rt->commit_id) }}
611 617497a6 2023-01-09 thomas {! commit_found = 1; !}
612 617497a6 2023-01-09 thomas {{ render tag_item(tp, rt) }}
613 617497a6 2023-01-09 thomas {{ end }}
614 617497a6 2023-01-09 thomas {{ end }}
615 617497a6 2023-01-09 thomas {{ if t->next_id || t->prev_id }}
616 20bab626 2023-02-03 thomas {! qs->action = TAGS; !}
617 617497a6 2023-01-09 thomas {{ render gotweb_render_navs(tp) }}
618 617497a6 2023-01-09 thomas {{ end }}
619 617497a6 2023-01-09 thomas {{ end }}
620 617497a6 2023-01-09 thomas </div>
621 b82440e1 2023-01-06 thomas {{ end }}
622 b82440e1 2023-01-06 thomas
623 617497a6 2023-01-09 thomas {{ define tag_item(struct template *tp, struct repo_tag *rt) }}
624 617497a6 2023-01-09 thomas {!
625 617497a6 2023-01-09 thomas struct request *c = tp->tp_arg;
626 617497a6 2023-01-09 thomas struct transport *t = c->t;
627 617497a6 2023-01-09 thomas struct repo_dir *repo_dir = t->repo_dir;
628 617497a6 2023-01-09 thomas char *tag_name = rt->tag_name;
629 617497a6 2023-01-09 thomas char *msg = rt->tag_commit;
630 617497a6 2023-01-09 thomas char *nl;
631 617497a6 2023-01-09 thomas struct gotweb_url url = {
632 617497a6 2023-01-09 thomas .action = TAG,
633 617497a6 2023-01-09 thomas .index_page = -1,
634 617497a6 2023-01-09 thomas .page = -1,
635 617497a6 2023-01-09 thomas .path = repo_dir->name,
636 617497a6 2023-01-09 thomas .commit = rt->commit_id,
637 617497a6 2023-01-09 thomas };
638 617497a6 2023-01-09 thomas
639 617497a6 2023-01-09 thomas if (strncmp(tag_name, "refs/tags/", 10) == 0)
640 617497a6 2023-01-09 thomas tag_name += 10;
641 617497a6 2023-01-09 thomas
642 617497a6 2023-01-09 thomas if (msg) {
643 617497a6 2023-01-09 thomas nl = strchr(msg, '\n');
644 617497a6 2023-01-09 thomas if (nl)
645 617497a6 2023-01-09 thomas *nl = '\0';
646 617497a6 2023-01-09 thomas }
647 617497a6 2023-01-09 thomas !}
648 617497a6 2023-01-09 thomas <div class="tag_age">
649 617497a6 2023-01-09 thomas {{ render gotweb_render_age(tp, rt->tagger_time, TM_DIFF) }}
650 617497a6 2023-01-09 thomas </div>
651 617497a6 2023-01-09 thomas <div class="tag">{{ tag_name }}</div>
652 617497a6 2023-01-09 thomas <div class="tag_log">
653 617497a6 2023-01-09 thomas <a href="{{ render gotweb_render_url(c, &url) }}">
654 617497a6 2023-01-09 thomas {{ msg }}
655 617497a6 2023-01-09 thomas </a>
656 617497a6 2023-01-09 thomas </div>
657 617497a6 2023-01-09 thomas <div class="navs_wrapper">
658 617497a6 2023-01-09 thomas <div class="navs">
659 617497a6 2023-01-09 thomas <a href="{{ render gotweb_render_url(c, &url) }}">tag</a>
660 617497a6 2023-01-09 thomas {{ " | " }}
661 617497a6 2023-01-09 thomas {! url.action = BRIEFS; !}
662 617497a6 2023-01-09 thomas <a href="{{ render gotweb_render_url(c, &url) }}">commit briefs</a>
663 617497a6 2023-01-09 thomas {{ " | " }}
664 617497a6 2023-01-09 thomas {! url.action = COMMITS; !}
665 617497a6 2023-01-09 thomas <a href="{{ render gotweb_render_url(c, &url) }}">commits</a>
666 617497a6 2023-01-09 thomas </div>
667 617497a6 2023-01-09 thomas </div>
668 617497a6 2023-01-09 thomas <div class="dotted_line"></div>
669 617497a6 2023-01-09 thomas {{ end }}
670 145ca42a 2023-01-09 thomas
671 145ca42a 2023-01-09 thomas {{ define gotweb_render_tag(struct template *tp) }}
672 145ca42a 2023-01-09 thomas {!
673 145ca42a 2023-01-09 thomas struct request *c = tp->tp_arg;
674 145ca42a 2023-01-09 thomas struct transport *t = c->t;
675 145ca42a 2023-01-09 thomas struct repo_tag *rt;
676 145ca42a 2023-01-09 thomas const char *tag_name;
677 617497a6 2023-01-09 thomas
678 145ca42a 2023-01-09 thomas rt = TAILQ_LAST(&t->repo_tags, repo_tags_head);
679 145ca42a 2023-01-09 thomas tag_name = rt->tag_name;
680 145ca42a 2023-01-09 thomas
681 145ca42a 2023-01-09 thomas if (strncmp(tag_name, "refs/", 5) == 0)
682 145ca42a 2023-01-09 thomas tag_name += 5;
683 145ca42a 2023-01-09 thomas !}
684 145ca42a 2023-01-09 thomas <div id="tags_title_wrapper">
685 145ca42a 2023-01-09 thomas <div id="tags_title">Tag</div>
686 145ca42a 2023-01-09 thomas </div>
687 145ca42a 2023-01-09 thomas <div id="tags_content">
688 145ca42a 2023-01-09 thomas <div id="tag_header_wrapper">
689 145ca42a 2023-01-09 thomas <div id="tag_header">
690 145ca42a 2023-01-09 thomas <div class="header_commit_title">Commit:</div>
691 145ca42a 2023-01-09 thomas <div class="header_commit">
692 145ca42a 2023-01-09 thomas {{ rt->commit_id }}
693 145ca42a 2023-01-09 thomas {{ " " }}
694 145ca42a 2023-01-09 thomas <span class="refs_str">({{ tag_name }})</span>
695 145ca42a 2023-01-09 thomas </div>
696 145ca42a 2023-01-09 thomas <div class="header_author_title">Tagger:</div>
697 145ca42a 2023-01-09 thomas <div class="header_author">{{ rt->tagger }}</div>
698 145ca42a 2023-01-09 thomas <div class="header_age_title">Date:</div>
699 145ca42a 2023-01-09 thomas <div class="header_age">
700 145ca42a 2023-01-09 thomas {{ render gotweb_render_age(tp, rt->tagger_time, TM_LONG)}}
701 145ca42a 2023-01-09 thomas </div>
702 145ca42a 2023-01-09 thomas <div id="header_commit_msg_title">Message:</div>
703 145ca42a 2023-01-09 thomas <div id="header_commit_msg">{{ rt->commit_msg }}</div>
704 145ca42a 2023-01-09 thomas </div>
705 145ca42a 2023-01-09 thomas <div class="dotted_line"></div>
706 145ca42a 2023-01-09 thomas <div id="tag_commit">
707 145ca42a 2023-01-09 thomas {{ "\n" }}
708 145ca42a 2023-01-09 thomas {{ rt->tag_commit }}
709 dccd05b4 2023-01-10 thomas </div>
710 dccd05b4 2023-01-10 thomas </div>
711 dccd05b4 2023-01-10 thomas </div>
712 dccd05b4 2023-01-10 thomas {{ end }}
713 dccd05b4 2023-01-10 thomas
714 dccd05b4 2023-01-10 thomas {{ define gotweb_render_diff(struct template *tp, FILE *fp) }}
715 dccd05b4 2023-01-10 thomas {!
716 dccd05b4 2023-01-10 thomas struct request *c = tp->tp_arg;
717 dccd05b4 2023-01-10 thomas struct transport *t = c->t;
718 dccd05b4 2023-01-10 thomas struct repo_commit *rc = TAILQ_FIRST(&t->repo_commits);
719 dccd05b4 2023-01-10 thomas char *line = NULL;
720 dccd05b4 2023-01-10 thomas size_t linesize = 0;
721 dccd05b4 2023-01-10 thomas ssize_t linelen;
722 dccd05b4 2023-01-10 thomas !}
723 dccd05b4 2023-01-10 thomas <div id="diff_title_wrapper">
724 dccd05b4 2023-01-10 thomas <div id="diff_title">Commit Diff</div>
725 dccd05b4 2023-01-10 thomas </div>
726 dccd05b4 2023-01-10 thomas <div id="diff_content">
727 dccd05b4 2023-01-10 thomas <div id="diff_header_wrapper">
728 dccd05b4 2023-01-10 thomas <div id="diff_header">
729 dccd05b4 2023-01-10 thomas <div class="header_commit_title">Commit:</div>
730 dccd05b4 2023-01-10 thomas <div class="header_commit">{{ rc->commit_id }}</div>
731 f7ee7604 2023-01-14 thomas <div class="header_author_title">From:</div>
732 dccd05b4 2023-01-10 thomas <div class="header_author">{{ rc->author }}</div>
733 f7ee7604 2023-01-14 thomas {{ if strcmp(rc->committer, rc->author) != 0 }}
734 f7ee7604 2023-01-14 thomas <div class="header_author_title">Via:</div>
735 f7ee7604 2023-01-14 thomas <div class="header_author">{{ rc->committer }}</div>
736 f7ee7604 2023-01-14 thomas {{ end }}
737 dccd05b4 2023-01-10 thomas <div class="header_age_title">Date:</div>
738 dccd05b4 2023-01-10 thomas <div class="header_age">
739 dccd05b4 2023-01-10 thomas {{ render gotweb_render_age(tp, rc->committer_time, TM_LONG) }}
740 dccd05b4 2023-01-10 thomas </div>
741 283e0dd7 2023-02-23 thomas <div id="header_commit_msg_title">Message:</div>
742 dccd05b4 2023-01-10 thomas <div id="header_commit_msg">{{ rc->commit_msg }}</div>
743 145ca42a 2023-01-09 thomas </div>
744 145ca42a 2023-01-09 thomas </div>
745 dccd05b4 2023-01-10 thomas <div class="dotted_line"></div>
746 dccd05b4 2023-01-10 thomas <div id="diff">
747 dccd05b4 2023-01-10 thomas {{ "\n" }}
748 dccd05b4 2023-01-10 thomas {{ while (linelen = getline(&line, &linesize, fp)) != -1 }}
749 dccd05b4 2023-01-10 thomas {{ render diff_line(tp, line) }}
750 dccd05b4 2023-01-10 thomas {{ end }}
751 dccd05b4 2023-01-10 thomas </div>
752 145ca42a 2023-01-09 thomas </div>
753 dccd05b4 2023-01-10 thomas {{ finally }}
754 dccd05b4 2023-01-10 thomas {! free(line); !}
755 145ca42a 2023-01-09 thomas {{ end }}
756 145ca42a 2023-01-09 thomas
757 dccd05b4 2023-01-10 thomas {{ define diff_line(struct template *tp, char *line )}}
758 dccd05b4 2023-01-10 thomas {!
759 dccd05b4 2023-01-10 thomas const char *color = NULL;
760 dccd05b4 2023-01-10 thomas char *nl;
761 dccd05b4 2023-01-10 thomas
762 dccd05b4 2023-01-10 thomas if (!strncmp(line, "-", 1))
763 dccd05b4 2023-01-10 thomas color = "diff_minus";
764 dccd05b4 2023-01-10 thomas else if (!strncmp(line, "+", 1))
765 dccd05b4 2023-01-10 thomas color = "diff_plus";
766 dccd05b4 2023-01-10 thomas else if (!strncmp(line, "@@", 2))
767 dccd05b4 2023-01-10 thomas color = "diff_chunk_header";
768 dccd05b4 2023-01-10 thomas else if (!strncmp(line, "commit +", 8) ||
769 dccd05b4 2023-01-10 thomas !strncmp(line, "commit -", 8) ||
770 dccd05b4 2023-01-10 thomas !strncmp(line, "blob +", 6) ||
771 dccd05b4 2023-01-10 thomas !strncmp(line, "blob -", 6) ||
772 dccd05b4 2023-01-10 thomas !strncmp(line, "file +", 6) ||
773 dccd05b4 2023-01-10 thomas !strncmp(line, "file -", 6))
774 dccd05b4 2023-01-10 thomas color = "diff_meta";
775 dccd05b4 2023-01-10 thomas else if (!strncmp(line, "from:", 5) || !strncmp(line, "via:", 4))
776 dccd05b4 2023-01-10 thomas color = "diff_author";
777 dccd05b4 2023-01-10 thomas else if (!strncmp(line, "date:", 5))
778 dccd05b4 2023-01-10 thomas color = "diff_date";
779 dccd05b4 2023-01-10 thomas
780 dccd05b4 2023-01-10 thomas nl = strchr(line, '\n');
781 dccd05b4 2023-01-10 thomas if (nl)
782 dccd05b4 2023-01-10 thomas *nl = '\0';
783 dccd05b4 2023-01-10 thomas !}
784 dccd05b4 2023-01-10 thomas <div class="diff_line {{ color }}">{{ line }}</div>
785 dccd05b4 2023-01-10 thomas {{ end }}
786 dccd05b4 2023-01-10 thomas
787 00abe30b 2023-01-14 thomas {{ define gotweb_render_branches(struct template *tp,
788 00abe30b 2023-01-14 thomas struct got_reflist_head *refs) }}
789 00abe30b 2023-01-14 thomas {!
790 00abe30b 2023-01-14 thomas struct got_reflist_entry *re;
791 00abe30b 2023-01-14 thomas !}
792 00abe30b 2023-01-14 thomas <div id="branches_title_wrapper">
793 00abe30b 2023-01-14 thomas <div id="branches_title">Branches</div>
794 00abe30b 2023-01-14 thomas </div>
795 00abe30b 2023-01-14 thomas <div id="branches_content">
796 00abe30b 2023-01-14 thomas {{ tailq-foreach re refs entry }}
797 00abe30b 2023-01-14 thomas {{ if !got_ref_is_symbolic(re->ref) }}
798 00abe30b 2023-01-14 thomas {{ render branch(tp, re) }}
799 00abe30b 2023-01-14 thomas {{ end }}
800 00abe30b 2023-01-14 thomas {{ end }}
801 00abe30b 2023-01-14 thomas </div>
802 00abe30b 2023-01-14 thomas {{ end }}
803 00abe30b 2023-01-14 thomas
804 00abe30b 2023-01-14 thomas {{ define branch(struct template *tp, struct got_reflist_entry *re) }}
805 00abe30b 2023-01-14 thomas {!
806 00abe30b 2023-01-14 thomas const struct got_error *err;
807 00abe30b 2023-01-14 thomas struct request *c = tp->tp_arg;
808 00abe30b 2023-01-14 thomas struct querystring *qs = c->t->qs;
809 00abe30b 2023-01-14 thomas const char *refname;
810 53bf32b8 2023-01-23 thomas time_t age;
811 00abe30b 2023-01-14 thomas struct gotweb_url url = {
812 00abe30b 2023-01-14 thomas .action = SUMMARY,
813 00abe30b 2023-01-14 thomas .index_page = -1,
814 00abe30b 2023-01-14 thomas .page = -1,
815 00abe30b 2023-01-14 thomas .path = qs->path,
816 00abe30b 2023-01-14 thomas };
817 00abe30b 2023-01-14 thomas
818 00abe30b 2023-01-14 thomas refname = got_ref_get_name(re->ref);
819 00abe30b 2023-01-14 thomas
820 53bf32b8 2023-01-23 thomas err = got_get_repo_age(&age, c, refname);
821 00abe30b 2023-01-14 thomas if (err) {
822 00abe30b 2023-01-14 thomas log_warnx("%s: %s", __func__, err->msg);
823 00abe30b 2023-01-14 thomas return -1;
824 00abe30b 2023-01-14 thomas }
825 00abe30b 2023-01-14 thomas
826 00abe30b 2023-01-14 thomas if (strncmp(refname, "refs/heads/", 11) == 0)
827 00abe30b 2023-01-14 thomas refname += 11;
828 00abe30b 2023-01-14 thomas
829 00abe30b 2023-01-14 thomas url.headref = refname;
830 00abe30b 2023-01-14 thomas !}
831 00abe30b 2023-01-14 thomas <div class="branches_wrapper">
832 53bf32b8 2023-01-23 thomas <div class="branches_age">
833 53bf32b8 2023-01-23 thomas {{ render gotweb_render_age(tp, age, TM_DIFF) }}
834 53bf32b8 2023-01-23 thomas </div>
835 00abe30b 2023-01-14 thomas <div class="branches_space">&nbsp;</div>
836 00abe30b 2023-01-14 thomas <div class="branch">
837 00abe30b 2023-01-14 thomas <a href="{{ render gotweb_render_url(c, &url) }}">{{ refname }}</a>
838 00abe30b 2023-01-14 thomas </div>
839 00abe30b 2023-01-14 thomas <div class="navs_wrapper">
840 00abe30b 2023-01-14 thomas <div class="navs">
841 00abe30b 2023-01-14 thomas <a href="{{ render gotweb_render_url(c, &url) }}">summary</a>
842 00abe30b 2023-01-14 thomas {{" | "}}
843 00abe30b 2023-01-14 thomas {! url.action = BRIEFS; !}
844 00abe30b 2023-01-14 thomas <a href="{{ render gotweb_render_url(c, &url) }}">commit briefs</a>
845 00abe30b 2023-01-14 thomas {{" | "}}
846 00abe30b 2023-01-14 thomas {! url.action = COMMITS; !}
847 00abe30b 2023-01-14 thomas <a href="{{ render gotweb_render_url(c, &url) }}">commits</a>
848 00abe30b 2023-01-14 thomas </div>
849 00abe30b 2023-01-14 thomas </div>
850 00abe30b 2023-01-14 thomas <div class="dotted_line"></div>
851 00abe30b 2023-01-14 thomas </div>
852 18e466eb 2023-01-14 thomas {{ end }}
853 18e466eb 2023-01-14 thomas
854 18e466eb 2023-01-14 thomas {{ define gotweb_render_summary(struct template *tp,
855 18e466eb 2023-01-14 thomas struct got_reflist_head *refs) }}
856 18e466eb 2023-01-14 thomas {!
857 18e466eb 2023-01-14 thomas struct request *c = tp->tp_arg;
858 18e466eb 2023-01-14 thomas struct server *srv = c->srv;
859 18e466eb 2023-01-14 thomas struct transport *t = c->t;
860 18e466eb 2023-01-14 thomas !}
861 18e466eb 2023-01-14 thomas <div id="summary_wrapper">
862 18e466eb 2023-01-14 thomas {{ if srv->show_repo_description }}
863 18e466eb 2023-01-14 thomas <div id="description_title">Description:</div>
864 18e466eb 2023-01-14 thomas <div id="description">{{ t->repo_dir->description }}</div>
865 18e466eb 2023-01-14 thomas {{ end }}
866 18e466eb 2023-01-14 thomas {{ if srv->show_repo_owner }}
867 18e466eb 2023-01-14 thomas <div id="repo_owner_title">Owner:</div>
868 18e466eb 2023-01-14 thomas <div id="repo_owner">{{ t->repo_dir->owner }}</div>
869 18e466eb 2023-01-14 thomas {{ end }}
870 18e466eb 2023-01-14 thomas {{ if srv->show_repo_age }}
871 18e466eb 2023-01-14 thomas <div id="last_change_title">Last Change:</div>
872 53bf32b8 2023-01-23 thomas <div id="last_change">
873 53bf32b8 2023-01-23 thomas {{ render gotweb_render_age(tp, t->repo_dir->age, TM_DIFF) }}
874 53bf32b8 2023-01-23 thomas </div>
875 18e466eb 2023-01-14 thomas {{ end }}
876 18e466eb 2023-01-14 thomas {{ if srv->show_repo_cloneurl }}
877 18e466eb 2023-01-14 thomas <div id="cloneurl_title">Clone URL:</div>
878 18e466eb 2023-01-14 thomas <div id="cloneurl">{{ t->repo_dir->url }}</div>
879 18e466eb 2023-01-14 thomas {{ end }}
880 18e466eb 2023-01-14 thomas </div>
881 18e466eb 2023-01-14 thomas {{ render gotweb_render_briefs(tp) }}
882 18e466eb 2023-01-14 thomas {{ render gotweb_render_tags(tp) }}
883 18e466eb 2023-01-14 thomas {{ render gotweb_render_branches(tp, refs) }}
884 00abe30b 2023-01-14 thomas {{ end }}
885 00abe30b 2023-01-14 thomas
886 1cd5d437 2023-01-15 thomas {{ define gotweb_render_blame(struct template *tp) }}
887 1cd5d437 2023-01-15 thomas {!
888 1cd5d437 2023-01-15 thomas const struct got_error *err;
889 1cd5d437 2023-01-15 thomas struct request *c = tp->tp_arg;
890 1cd5d437 2023-01-15 thomas struct transport *t = c->t;
891 1cd5d437 2023-01-15 thomas struct repo_commit *rc = TAILQ_FIRST(&t->repo_commits);
892 1cd5d437 2023-01-15 thomas !}
893 1cd5d437 2023-01-15 thomas <div id="blame_title_wrapper">
894 1cd5d437 2023-01-15 thomas <div id="blame_title">Blame</div>
895 1cd5d437 2023-01-15 thomas </div>
896 1cd5d437 2023-01-15 thomas <div id="blame_content">
897 1cd5d437 2023-01-15 thomas <div id="blame_header_wrapper">
898 1cd5d437 2023-01-15 thomas <div id="blame_header">
899 1cd5d437 2023-01-15 thomas <div class="header_age_title">Date:</div>
900 1cd5d437 2023-01-15 thomas <div class="header_age">
901 1cd5d437 2023-01-15 thomas {{ render gotweb_render_age(tp, rc->committer_time, TM_LONG) }}
902 1cd5d437 2023-01-15 thomas </div>
903 1cd5d437 2023-01-15 thomas <div id="header_commit_msg_title">Message:</div>
904 1cd5d437 2023-01-15 thomas <div id="header_commit_msg">{{ rc->commit_msg }}</div>
905 1cd5d437 2023-01-15 thomas </div>
906 1cd5d437 2023-01-15 thomas </div>
907 1cd5d437 2023-01-15 thomas <div class="dotted_line"></div>
908 1cd5d437 2023-01-15 thomas <div id="blame">
909 1cd5d437 2023-01-15 thomas {{ "\n" }}
910 1cd5d437 2023-01-15 thomas {!
911 1cd5d437 2023-01-15 thomas err = got_output_file_blame(c, &blame_line);
912 1cd5d437 2023-01-15 thomas if (err) {
913 1cd5d437 2023-01-15 thomas log_warnx("%s: got_output_file_blame: %s", __func__,
914 1cd5d437 2023-01-15 thomas err->msg);
915 1cd5d437 2023-01-15 thomas return (-1);
916 1cd5d437 2023-01-15 thomas }
917 1cd5d437 2023-01-15 thomas !}
918 1cd5d437 2023-01-15 thomas </div>
919 1cd5d437 2023-01-15 thomas </div>
920 1cd5d437 2023-01-15 thomas {{ end }}
921 1cd5d437 2023-01-15 thomas
922 1cd5d437 2023-01-15 thomas {{ define blame_line(struct template *tp, const char *line,
923 1cd5d437 2023-01-15 thomas struct blame_line *bline, int lprec, int lcur) }}
924 1cd5d437 2023-01-15 thomas {!
925 1cd5d437 2023-01-15 thomas struct request *c = tp->tp_arg;
926 1cd5d437 2023-01-15 thomas struct transport *t = c->t;
927 1cd5d437 2023-01-15 thomas struct repo_dir *repo_dir = t->repo_dir;
928 1cd5d437 2023-01-15 thomas char *committer, *s;
929 1cd5d437 2023-01-15 thomas struct gotweb_url url = {
930 1cd5d437 2023-01-15 thomas .action = DIFF,
931 1cd5d437 2023-01-15 thomas .index_page = -1,
932 1cd5d437 2023-01-15 thomas .page = -1,
933 1cd5d437 2023-01-15 thomas .path = repo_dir->name,
934 1cd5d437 2023-01-15 thomas .commit = bline->id_str,
935 1cd5d437 2023-01-15 thomas };
936 1cd5d437 2023-01-15 thomas
937 1cd5d437 2023-01-15 thomas s = strchr(bline->committer, '<');
938 1cd5d437 2023-01-15 thomas committer = s ? s + 1 : bline->committer;
939 1cd5d437 2023-01-15 thomas
940 1cd5d437 2023-01-15 thomas s = strchr(committer, '@');
941 1cd5d437 2023-01-15 thomas if (s)
942 1cd5d437 2023-01-15 thomas *s = '\0';
943 1cd5d437 2023-01-15 thomas !}
944 1cd5d437 2023-01-15 thomas <div class="blame_wrapper">
945 1cd5d437 2023-01-15 thomas <div class="blame_number">{{ printf "%.*d", lprec, lcur }}</div>
946 1cd5d437 2023-01-15 thomas <div class="blame_hash">
947 1cd5d437 2023-01-15 thomas <a href="{{ render gotweb_render_url(c, &url) }}">
948 1cd5d437 2023-01-15 thomas {{ printf "%.8s", bline->id_str }}
949 1cd5d437 2023-01-15 thomas </a>
950 1cd5d437 2023-01-15 thomas </div>
951 1cd5d437 2023-01-15 thomas <div class="blame_date">{{ bline->datebuf }}</div>
952 1cd5d437 2023-01-15 thomas <div class="blame_author">{{ printf "%.9s", committer }}</div>
953 1cd5d437 2023-01-15 thomas <div class="blame_code">{{ line }}</div>
954 1cd5d437 2023-01-15 thomas </div>
955 1cd5d437 2023-01-15 thomas {{ end }}
956 1cd5d437 2023-01-15 thomas
957 d6795e9f 2022-12-30 thomas {{ define gotweb_render_rss(struct template *tp) }}
958 d6795e9f 2022-12-30 thomas {!
959 d6795e9f 2022-12-30 thomas struct request *c = tp->tp_arg;
960 d6795e9f 2022-12-30 thomas struct server *srv = c->srv;
961 d6795e9f 2022-12-30 thomas struct transport *t = c->t;
962 d6795e9f 2022-12-30 thomas struct repo_dir *repo_dir = t->repo_dir;
963 d6795e9f 2022-12-30 thomas struct repo_tag *rt;
964 d6795e9f 2022-12-30 thomas struct gotweb_url summary = {
965 d6795e9f 2022-12-30 thomas .action = SUMMARY,
966 d6795e9f 2022-12-30 thomas .index_page = -1,
967 d6795e9f 2022-12-30 thomas .page = -1,
968 d6795e9f 2022-12-30 thomas .path = repo_dir->name,
969 d6795e9f 2022-12-30 thomas };
970 d6795e9f 2022-12-30 thomas !}
971 d6795e9f 2022-12-30 thomas <?xml version="1.0" encoding="UTF-8"?>
972 d6795e9f 2022-12-30 thomas <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
973 d6795e9f 2022-12-30 thomas <channel>
974 d6795e9f 2022-12-30 thomas <title>Tags of {{ repo_dir->name }}</title>
975 d6795e9f 2022-12-30 thomas <link>
976 d6795e9f 2022-12-30 thomas <![CDATA[
977 d6795e9f 2022-12-30 thomas {{ render gotweb_render_absolute_url(c, &summary) }}
978 d6795e9f 2022-12-30 thomas ]]>
979 d6795e9f 2022-12-30 thomas </link>
980 d6795e9f 2022-12-30 thomas {{ if srv->show_repo_description }}
981 d6795e9f 2022-12-30 thomas <description>{{ repo_dir->description }}</description>
982 d6795e9f 2022-12-30 thomas {{ end }}
983 d6795e9f 2022-12-30 thomas {{ tailq-foreach rt &t->repo_tags entry }}
984 d6795e9f 2022-12-30 thomas {{ render rss_tag_item(tp, rt) }}
985 d6795e9f 2022-12-30 thomas {{ end }}
986 d6795e9f 2022-12-30 thomas </channel>
987 d6795e9f 2022-12-30 thomas </rss>
988 d6795e9f 2022-12-30 thomas {{ end }}
989 d6795e9f 2022-12-30 thomas
990 d6795e9f 2022-12-30 thomas {{ define rss_tag_item(struct template *tp, struct repo_tag *rt) }}
991 d6795e9f 2022-12-30 thomas {!
992 d6795e9f 2022-12-30 thomas struct request *c = tp->tp_arg;
993 d6795e9f 2022-12-30 thomas struct transport *t = c->t;
994 d6795e9f 2022-12-30 thomas struct repo_dir *repo_dir = t->repo_dir;
995 d6795e9f 2022-12-30 thomas char *tag_name = rt->tag_name;
996 d6795e9f 2022-12-30 thomas struct gotweb_url tag = {
997 d6795e9f 2022-12-30 thomas .action = TAG,
998 d6795e9f 2022-12-30 thomas .index_page = -1,
999 d6795e9f 2022-12-30 thomas .page = -1,
1000 d6795e9f 2022-12-30 thomas .path = repo_dir->name,
1001 d6795e9f 2022-12-30 thomas .commit = rt->commit_id,
1002 d6795e9f 2022-12-30 thomas };
1003 d6795e9f 2022-12-30 thomas
1004 d6795e9f 2022-12-30 thomas if (strncmp(tag_name, "refs/tags/", 10) == 0)
1005 d6795e9f 2022-12-30 thomas tag_name += 10;
1006 d6795e9f 2022-12-30 thomas !}
1007 d6795e9f 2022-12-30 thomas <item>
1008 d6795e9f 2022-12-30 thomas <title>{{ repo_dir->name }} {{" "}} {{ tag_name }}</title>
1009 d6795e9f 2022-12-30 thomas <link>
1010 d6795e9f 2022-12-30 thomas <![CDATA[
1011 d6795e9f 2022-12-30 thomas {{ render gotweb_render_absolute_url(c, &tag) }}
1012 d6795e9f 2022-12-30 thomas ]]>
1013 d6795e9f 2022-12-30 thomas </link>
1014 d6795e9f 2022-12-30 thomas <description>
1015 d6795e9f 2022-12-30 thomas <![CDATA[<pre>{{ rt->tag_commit }}</pre>]]>
1016 d6795e9f 2022-12-30 thomas </description>
1017 d6795e9f 2022-12-30 thomas {{ render rss_author(tp, rt->tagger) }}
1018 d6795e9f 2022-12-30 thomas <guid isPermaLink="false">{{ rt->commit_id }}</guid>
1019 d6795e9f 2022-12-30 thomas <pubDate>
1020 d6795e9f 2022-12-30 thomas {{ render gotweb_render_age(tp, rt->tagger_time, TM_RFC822) }}
1021 d6795e9f 2022-12-30 thomas </pubDate>
1022 d6795e9f 2022-12-30 thomas </item>
1023 7ade8b27 2022-12-30 thomas {{ end }}
1024 d6795e9f 2022-12-30 thomas
1025 d6795e9f 2022-12-30 thomas {{ define rss_author(struct template *tp, char *author) }}
1026 d6795e9f 2022-12-30 thomas {!
1027 d6795e9f 2022-12-30 thomas char *t, *mail;
1028 d6795e9f 2022-12-30 thomas
1029 d6795e9f 2022-12-30 thomas /* what to do if the author name contains a paren? */
1030 d6795e9f 2022-12-30 thomas if (strchr(author, '(') != NULL || strchr(author, ')') != NULL)
1031 d6795e9f 2022-12-30 thomas return 0;
1032 d6795e9f 2022-12-30 thomas
1033 d6795e9f 2022-12-30 thomas t = strchr(author, '<');
1034 d6795e9f 2022-12-30 thomas if (t == NULL)
1035 d6795e9f 2022-12-30 thomas return 0;
1036 d6795e9f 2022-12-30 thomas *t = '\0';
1037 d6795e9f 2022-12-30 thomas mail = t+1;
1038 d6795e9f 2022-12-30 thomas
1039 d6795e9f 2022-12-30 thomas while (isspace((unsigned char)*--t))
1040 d6795e9f 2022-12-30 thomas *t = '\0';
1041 d6795e9f 2022-12-30 thomas
1042 d6795e9f 2022-12-30 thomas t = strchr(mail, '>');
1043 d6795e9f 2022-12-30 thomas if (t == NULL)
1044 d6795e9f 2022-12-30 thomas return 0;
1045 d6795e9f 2022-12-30 thomas *t = '\0';
1046 d6795e9f 2022-12-30 thomas !}
1047 d6795e9f 2022-12-30 thomas <author>
1048 d6795e9f 2022-12-30 thomas {{ mail }} {{" "}} ({{ author }})
1049 d6795e9f 2022-12-30 thomas </author>
1050 d6795e9f 2022-12-30 thomas {{ end }}