From: Richard Kettlewell Date: Wed, 7 May 2008 20:04:05 +0000 (+0100) Subject: Remove some obsolete code X-Git-Tag: 4.0~76^2~47 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/commitdiff_plain/15091f766f1e8c380d2a7f752c387a2cecaf5bb1 Remove some obsolete code --- diff --git a/server/cgi.c b/server/cgi.c index ff45ae7..92c39ec 100644 --- a/server/cgi.c +++ b/server/cgi.c @@ -94,51 +94,6 @@ void cgi_body(struct sink *output) { sink_printf(output, "\r\n"); } -const char *cgi_label(const char *key) { - const char *label; - - read_options(); - if(!(label = kvp_get(labels, key))) { - /* No label found */ - if(!strncmp(key, "images.", 7)) { - static const char *url_static; - /* images.X defaults to X.png */ - - if(!url_static) - url_static = cgi_label("url.static"); - byte_xasprintf((char **)&label, "%s%s.png", url_static, key + 7); - } else if((label = strchr(key, '.'))) - /* X.Y defaults to Y */ - ++label; - else - /* otherwise default to label name */ - label = key; - } - return label; -} - -int cgi_label_exists(const char *key) { - read_options(); - return kvp_get(labels, key) ? 1 : 0; -} - -char **cgi_columns(const char *name, int *ncolumns) { - struct column *c; - - read_options(); - for(c = columns; c && strcmp(name, c->name); c = c->next) - ; - if(c) { - if(ncolumns) - *ncolumns = c->ncolumns; - return c->columns; - } else { - if(ncolumns) - *ncolumns = 0; - return 0; - } -} - /* Local Variables: c-basic-offset:2