X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=cgi.c;h=5195eac379c5ae43b5e19f3d921beef2b09b790e;hp=fca27d7f4ef1363052ee3bc19b610795f8f80bea;hb=070e904afa5;hpb=3010d66d9bf05c41787d589e6a9584dbbded8206 diff --git a/cgi.c b/cgi.c index fca27d7f..5195eac3 100644 --- a/cgi.c +++ b/cgi.c @@ -1,4 +1,4 @@ -const char cgi_rcs[] = "$Id: cgi.c,v 1.165 2016/05/03 13:22:30 fabiankeil Exp $"; +const char cgi_rcs[] = "$Id: cgi.c,v 1.168 2017/01/23 13:05:12 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/cgi.c,v $ @@ -8,7 +8,7 @@ const char cgi_rcs[] = "$Id: cgi.c,v 1.165 2016/05/03 13:22:30 fabiankeil Exp $" * This only contains the framework functions, the * actual handler functions are declared elsewhere. * - * Copyright : Written by and Copyright (C) 2001-2004, 2006-2008 + * Copyright : Written by and Copyright (C) 2001-2017 * members of the Privoxy team. http://www.privoxy.org/ * * Based on the Internet Junkbuster originally written @@ -101,10 +101,15 @@ static const struct cgi_dispatcher cgi_dispatchers[] = { "View the source code version numbers", TRUE }, #ifdef FEATURE_CLIENT_TAGS + /* + * This is marked as harmless because despite the description + * used in the menu the actual toggling is done through another + * path ("/toggle-client-tag"). + */ { "client-tags", cgi_show_client_tags, "View or toggle the tags that can be set based on the clients address", - FALSE }, + TRUE }, #endif { "show-request", cgi_show_request, @@ -120,6 +125,12 @@ static const struct cgi_dispatcher cgi_dispatchers[] = { "Toggle Privoxy on or off", FALSE }, #endif /* def FEATURE_TOGGLE */ +#ifdef FEATURE_CLIENT_TAGS + { "toggle-client-tag", + cgi_toggle_client_tag, + NULL, + FALSE }, +#endif #ifdef FEATURE_CGI_EDIT_ACTIONS { "edit-actions", /* Edit the actions list */ cgi_edit_actions, @@ -1040,6 +1051,8 @@ jb_err cgi_error_disabled(const struct client_state *csp, assert(csp); assert(rsp); + rsp->status = strdup_or_die("403 Request not trusted or feature disabled"); + if (NULL == (exports = default_exports(csp, "cgi-error-disabled"))) { return JB_ERR_MEMORY;