comparison fragment-language.c @ 51:07b6887d3557

pasterd: split into individual pages While here add a similar mini.css theme as in imgup.
author David Demelier <markand@malikania.fr>
date Mon, 21 Dec 2020 18:22:44 +0100
parents
children fba88439ec0a
comparison
equal deleted inserted replaced
50:520f57836ff3 51:07b6887d3557
1 /*
2 * fragment-language.c -- language renderer
3 *
4 * Copyright (c) 2020 David Demelier <markand@malikania.fr>
5 *
6 * Permission to use, copy, modify, and/or distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18
19 #include <sys/types.h>
20 #include <stdarg.h>
21 #include <stdint.h>
22 #include <assert.h>
23
24 #include <kcgi.h>
25
26 #include "fragment-language.h"
27 #include "fragment.h"
28 #include "util.h"
29
30 struct template {
31 struct kreq *req;
32 const char *value;
33 bool selected;
34 };
35
36 static const char *keywords[] = {
37 "language",
38 "selected"
39 };
40
41 static int
42 template(size_t keyword, void *arg)
43 {
44 struct template *t = arg;
45
46 switch (keyword) {
47 case 0:
48 khttp_puts(t->req, t->value);
49 break;
50 case 1:
51 if (t->selected)
52 khttp_puts(t->req, "selected");
53 break;
54 default:
55 break;
56 }
57
58 return 1;
59 }
60
61 void
62 fragment_language(struct kreq *r, const char *language, bool selected)
63 {
64 assert(r);
65 assert(language);
66
67 struct template data = {
68 .req = r,
69 .value = language,
70 .selected = selected
71 };
72 struct ktemplate kt = {
73 .key = keywords,
74 .keysz = NELEM(keywords),
75 .cb = template,
76 .arg = &data
77 };
78
79 fragment(r, &kt, "fragments/language.html");
80 }