*
* Purpose : Windows GUI resource script.
*
- * Copyright : Written by and Copyright (C) 2001-2002 members of\r
- * the Privoxy team. http://privoxy.org/\r
+ * Copyright : Written by and Copyright (C) 2001-2002 members of
+ * the Privoxy team. http://privoxy.org/
*
* Based on the Internet Junkbuster originally written
* by and Copyright (C) 1997 Anonymous Coders and
*
* Revisions :
* $Log: w32.rc,v $
+ * Revision 1.13 2002/03/24 12:03:47 jongfoster
+ * Name change
+ *
* Revision 1.12 2001/07/30 22:16:07 jongfoster
* Tidying up #defines:
* - All feature #defines are now of the form FEATURE_xxx
MENUITEM "&Configuration...", ID_TOOLS_EDITCONFIG
MENUITEM SEPARATOR
MENUITEM "&Actions...", ID_TOOLS_EDITACTIONS
- MENUITEM "Perl &Regexps...", ID_TOOLS_EDITPERLRE
+ MENUITEM "&Filters...", ID_TOOLS_EDITFILTERS
#ifdef FEATURE_TRUST
MENUITEM "&Trust...", ID_TOOLS_EDITTRUST
#endif /* def FEATURE_TRUST */
MENUITEM "&Configuration...", ID_TOOLS_EDITCONFIG
MENUITEM SEPARATOR
MENUITEM "&Actions...", ID_TOOLS_EDITACTIONS
- MENUITEM "Perl &Regexps...", ID_TOOLS_EDITPERLRE
+ MENUITEM "&Filters...", ID_TOOLS_EDITFILTERS
#ifdef FEATURE_TRUST
MENUITEM "&Trust...", ID_TOOLS_EDITTRUST
#endif /* def FEATURE_TRUST */
-const char w32log_rcs[] = "$Id: w32log.c,v 1.19 2002/01/17 21:04:17 jongfoster Exp $";
+const char w32log_rcs[] = "$Id: w32log.c,v 1.20 2002/03/24 12:03:47 jongfoster Exp $";
/*********************************************************************
*
* File : $Source: /cvsroot/ijbswa/current/w32log.c,v $
*
* Revisions :
* $Log: w32log.c,v $
+ * Revision 1.20 2002/03/24 12:03:47 jongfoster
+ * Name change
+ *
* Revision 1.19 2002/01/17 21:04:17 jongfoster
* Replacing hard references to the URL of the config interface
* with #defines from project.h
EditFile(g_actions_file);
break;
- case ID_TOOLS_EDITPERLRE:
+ case ID_TOOLS_EDITFILTERS:
EditFile(g_re_filterfile);
break;
{
/* Only enable editors if there is a file to edit */
EnableMenuItem(hmenu, ID_TOOLS_EDITACTIONS, MF_BYCOMMAND | (g_actions_file ? MF_ENABLED : MF_GRAYED));
- EnableMenuItem(hmenu, ID_TOOLS_EDITPERLRE, MF_BYCOMMAND | (g_re_filterfile ? MF_ENABLED : MF_GRAYED));
+ EnableMenuItem(hmenu, ID_TOOLS_EDITFILTERS, MF_BYCOMMAND | (g_re_filterfile ? MF_ENABLED : MF_GRAYED));
#ifdef FEATURE_TRUST
EnableMenuItem(hmenu, ID_TOOLS_EDITTRUST, MF_BYCOMMAND | (g_trustfile ? MF_ENABLED : MF_GRAYED));
#endif /* def FEATURE_TRUST */
#ifndef W32RES_H_INCLUDED
#define W32RES_H_INCLUDED
-#define W32RES_H_VERSION "$Id: w32res.h,v 1.10 2001/07/30 22:08:36 jongfoster Exp $"
+#define W32RES_H_VERSION "$Id: w32res.h,v 1.11 2002/03/24 12:03:47 jongfoster Exp $"
/*********************************************************************
*
* File : $Source: /cvsroot/ijbswa/current/w32res.h,v $
*
* Revisions :
* $Log: w32res.h,v $
+ * Revision 1.11 2002/03/24 12:03:47 jongfoster
+ * Name change
+ *
* Revision 1.10 2001/07/30 22:08:36 jongfoster
* Tidying up #defines:
* - All feature #defines are now of the form FEATURE_xxx
/* Break these out so they are easier to extend, but keep consecutive */
#define ID_TOOLS_EDITCONFIG 5000
#define ID_TOOLS_EDITACTIONS 5001
-#define ID_TOOLS_EDITPERLRE 5002
+#define ID_TOOLS_EDITFILTERS 5002
#ifdef FEATURE_TRUST
#define ID_TOOLS_EDITTRUST 5003