chiark / gitweb /
Remove some obsolete code
[disorder] / server / cgi.c
1 /*
2  * This file is part of DisOrder.
3  * Copyright (C) 2004-2008 Richard Kettlewell
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18  * USA
19  */
20
21 #include <config.h>
22 #include "types.h"
23
24 #include <string.h>
25 #include <stdio.h>
26 #include <unistd.h>
27 #include <stdlib.h>
28 #include <errno.h>
29 #include <sys/stat.h>
30 #include <stddef.h>
31 #include <fcntl.h>
32 #include <unistd.h>
33 #include <pcre.h>
34 #include <limits.h>
35 #include <fnmatch.h>
36 #include <ctype.h>
37
38 #include "mem.h"
39 #include "log.h"
40 #include "hex.h"
41 #include "charset.h"
42 #include "configuration.h"
43 #include "table.h"
44 #include "syscalls.h"
45 #include "kvp.h"
46 #include "vector.h"
47 #include "split.h"
48 #include "inputline.h"
49 #include "regsub.h"
50 #include "defs.h"
51 #include "sink.h"
52 #include "server-cgi.h"
53 #include "printf.h"
54 #include "mime.h"
55 #include "unicode.h"
56 #include "hash.h"
57
58 struct kvp *cgi_args;
59
60 /* options */
61 struct column {
62   struct column *next;
63   char *name;
64   int ncolumns;
65   char **columns;
66 };
67
68 /* macros */
69 struct cgi_macro {
70   int nargs;
71   char **args;
72   const char *value;
73 };
74
75 #define RELIST(x) struct re *x, **x##_tail = &x
76
77 static int have_read_options;
78 static struct kvp *labels;
79 static struct column *columns;
80
81 static void include_options(const char *name);
82 static void cgi_expand_parsed(const char *name,
83                               struct cgi_element *head,
84                               const struct cgi_expansion *expansions,
85                               size_t nexpansions,
86                               cgi_1sink *output,
87                               void *u);
88
89 void cgi_header(struct sink *output, const char *name, const char *value) {
90   sink_printf(output, "%s: %s\r\n", name, value);
91 }
92
93 void cgi_body(struct sink *output) {
94   sink_printf(output, "\r\n");
95 }
96
97 /*
98 Local Variables:
99 c-basic-offset:2
100 comment-column:40
101 End:
102 */