X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=cgisimple.c;h=733c350095e644ad3e03d4400b5f7943405d4cc4;hb=d41f6d4cb807ee120d38e3108ef724f5053894bf;hp=1621baa255bde00de7edfd43c1cb31f151ca0951;hpb=59e68c837eaa393a3fa0bb979b9b1da23a93e841;p=privoxy.git diff --git a/cgisimple.c b/cgisimple.c index 1621baa2..733c3500 100644 --- a/cgisimple.c +++ b/cgisimple.c @@ -1,16 +1,16 @@ -const char cgisimple_rcs[] = "$Id: cgisimple.c,v 1.18 2002/03/12 01:44:49 oes Exp $"; +const char cgisimple_rcs[] = "$Id: cgisimple.c,v 1.22 2002/03/24 16:18:15 jongfoster Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/cgisimple.c,v $ * - * Purpose : Simple CGIs to get information about JunkBuster's + * Purpose : Simple CGIs to get information about Privoxy's * status. * * Functions declared include: * * * Copyright : Written by and Copyright (C) 2001 the SourceForge - * IJBSWA team. http://ijbswa.sourceforge.net + * Privoxy team. http://www.privoxy.org/ * * Based on the Internet Junkbuster originally written * by and Copyright (C) 1997 Anonymous Coders and @@ -36,6 +36,22 @@ const char cgisimple_rcs[] = "$Id: cgisimple.c,v 1.18 2002/03/12 01:44:49 oes Ex * * Revisions : * $Log: cgisimple.c,v $ + * Revision 1.22 2002/03/24 16:18:15 jongfoster + * Removing old logo + * + * Revision 1.21 2002/03/24 15:23:33 jongfoster + * Name changes + * + * Revision 1.20 2002/03/24 13:25:43 swa + * name change related issues + * + * Revision 1.19 2002/03/16 23:54:06 jongfoster + * Adding graceful termination feature, to help look for memory leaks. + * If you enable this (which, by design, has to be done by hand + * editing config.h) and then go to http://i.j.b/die, then the program + * will exit cleanly after the *next* request. It should free all the + * memory that was used. + * * Revision 1.18 2002/03/12 01:44:49 oes * Changed default for "blocked" image from jb logo to checkboard pattern * @@ -245,7 +261,7 @@ jb_err cgi_error_404(struct client_state *csp, return JB_ERR_MEMORY; } - rsp->status = strdup("404 JunkBuster configuration page not found"); + rsp->status = strdup("404 Privoxy configuration page not found"); if (rsp->status == NULL) { free_map(exports); @@ -261,7 +277,7 @@ jb_err cgi_error_404(struct client_state *csp, * * Function : cgi_die * - * Description : CGI function to shut down JunkBuster. + * Description : CGI function to shut down Privoxy. * NOTE: Turning this on in a production build * would be a BAD idea. An EXTREMELY BAD idea. * In short, don't do it. @@ -391,7 +407,7 @@ jb_err cgi_send_banner(struct client_state *csp, if (imagetype == 'a') /* auto */ { - /* Default to logo */ + /* Default to pattern */ imagetype = 'p'; #ifdef FEATURE_IMAGE_BLOCKING if ((csp->action->flags & ACTION_IMAGE_BLOCKER) != 0) @@ -418,11 +434,6 @@ jb_err cgi_send_banner(struct client_state *csp, rsp->content_length = image_blank_length; } - else if (imagetype == 'l') /* logo */ - { - rsp->body = bindup(image_logo_data, image_logo_length); - rsp->content_length = image_logo_length; - } else /* pattern */ { rsp->body = bindup(image_pattern_data, image_pattern_length); @@ -492,7 +503,7 @@ jb_err cgi_transparent_image(struct client_state *csp, * Function : cgi_show_version * * Description : CGI function that returns a a web page describing the - * file versions of IJB. + * file versions of Privoxy. * * Parameters : * 1 : csp = Current client state (buffers, headers, etc...) @@ -535,7 +546,7 @@ jb_err cgi_show_version(struct client_state *csp, * Function : cgi_show_status * * Description : CGI function that returns a a web page describing the - * current status of IJB. + * current status of Privoxy. * * Parameters : * 1 : csp = Current client state (buffers, headers, etc...) @@ -755,7 +766,7 @@ jb_err cgi_show_status(struct client_state *csp, * Function : cgi_show_url_info * * Description : CGI function that determines and shows which actions - * junkbuster will perform for a given url, and which + * Privoxy will perform for a given url, and which * matches starting from the defaults have lead to that. * * Parameters : @@ -1036,7 +1047,7 @@ jb_err cgi_robots_txt(struct client_state *csp, jb_err err; rsp->body = strdup( - "# This is the Internet Junkbuster control interface.\n" + "# This is the Privoxy control interface.\n" "# It isn't very useful to index it, and you're likely to break stuff.\n" "# So go away!\n" "\n"