From 15091f766f1e8c380d2a7f752c387a2cecaf5bb1 Mon Sep 17 00:00:00 2001 Message-Id: <15091f766f1e8c380d2a7f752c387a2cecaf5bb1.1715322383.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 7 May 2008 21:04:05 +0100 Subject: [PATCH] Remove some obsolete code Organization: Straylight/Edgeware From: Richard Kettlewell --- server/cgi.c | 45 --------------------------------------------- 1 file changed, 45 deletions(-) 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 -- [mdw]