X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=w32log.h;h=9f3f6b7969d6813b14d198b9dcf72e88b0e2abb1;hp=75da1c59d2716d606a262772067ca52bc9760499;hb=3939d3eae875607c76d7bb3314ff6ca6d0590f40;hpb=43da0ce639b1cf540198b2f63e790d9127725343 diff --git a/w32log.h b/w32log.h index 75da1c59..9f3f6b79 100644 --- a/w32log.h +++ b/w32log.h @@ -1,6 +1,6 @@ -#ifndef _W32LOG_H -#define _W32LOG_H -#define W32LOG_H_VERSION "$Id: w32log.h,v 1.1.1.1 2001/05/15 13:59:07 oes Exp $" +#ifndef W32LOG_H_INCLUDED +#define W32LOG_H_INCLUDED +#define W32LOG_H_VERSION "$Id: w32log.h,v 1.7 2001/07/29 18:43:08 jongfoster Exp $" /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/w32log.h,v $ @@ -34,6 +34,49 @@ * * Revisions : * $Log: w32log.h,v $ + * Revision 1.7 2001/07/29 18:43:08 jongfoster + * Changing #ifdef _FILENAME_H to FILENAME_H_INCLUDED, to conform to + * ANSI C rules. + * + * Revision 1.6 2001/07/13 14:04:59 oes + * Removed all #ifdef PCRS + * + * Revision 1.5 2001/06/07 23:08:12 jongfoster + * Forward and ACL edit options removed. + * + * Revision 1.4 2001/05/31 21:37:11 jongfoster + * GUI changes to rename "permissions file" to "actions file". + * + * Revision 1.3 2001/05/29 09:50:24 jongfoster + * Unified blocklist/imagelist/permissionslist. + * File format is still under discussion, but the internal changes + * are (mostly) done. + * + * Also modified interceptor behaviour: + * - We now intercept all URLs beginning with one of the following + * prefixes (and *only* these prefixes): + * * http://i.j.b/ + * * http://ijbswa.sf.net/config/ + * * http://ijbswa.sourceforge.net/config/ + * - New interceptors "home page" - go to http://i.j.b/ to see it. + * - Internal changes so that intercepted and fast redirect pages + * are not replaced with an image. + * - Interceptors now have the option to send a binary page direct + * to the client. (i.e. ijb-send-banner uses this) + * - Implemented show-url-info interceptor. (Which is why I needed + * the above interceptors changes - a typical URL is + * "http://i.j.b/show-url-info?url=www.somesite.com/banner.gif". + * The previous mechanism would not have intercepted that, and + * if it had been intercepted then it then it would have replaced + * it with an image.) + * + * Revision 1.2 2001/05/26 00:28:36 jongfoster + * Automatic reloading of config file. + * Removed obsolete SIGHUP support (Unix) and Reload menu option (Win32). + * Most of the global variables have been moved to a new + * struct configuration_spec, accessed through csp->config->globalname + * Most of the globals remaining are used by the Win32 GUI. + * * Revision 1.1.1.1 2001/05/15 13:59:07 oes * Initial import of version 2.9.3 source tree * @@ -77,25 +120,14 @@ extern int g_nFontSize; /* FIXME: this is a kludge */ -extern const char * g_blockfile; -extern const char * g_permissions_file; -extern const char * g_forwardfile; -#ifdef ACL_FILES -extern const char * g_aclfile; -#endif /* def ACL_FILES */ -#ifdef USE_IMAGE_LIST -extern const char * g_imagefile; -#endif /* def USE_IMAGE_LIST */ -#ifdef PCRS +extern const char * g_actions_file; extern const char * g_re_filterfile; -#endif -#ifdef TRUST_FILES +#ifdef FEATURE_TRUST extern const char * g_trustfile; -#endif /* def TRUST_FILES */ +#endif /* def FEATURE_TRUST */ /* FIXME: end kludge */ - extern int LogPutString(const char *pszText); extern BOOL InitLogWindow(void); extern void TermLogWindow(void); @@ -110,7 +142,7 @@ extern const char w32log_h_rcs[]; } /* extern "C" */ #endif -#endif /* ndef _W32LOG_H */ +#endif /* ndef W32LOG_H_INCLUDED */ /*