Replace dansguardian_ignore_date by dansguardian_filter_out_date that behave as the name implies.
Initialize the variables used when reading a redirector log with a custom format.
SET(sarg_VERSION 2)
SET(sarg_REVISION "3-pre5")
SET(sarg_BUILD "")
-SET(sarg_BUILDDATE "Jun-09-2010")
+SET(sarg_BUILDDATE "Jun-10-2010")
INCLUDE(AddFileDependencies)
INCLUDE(CheckIncludeFile)
SARG ChangeLog
-Jun-09-2009 Version 2.3-pre5
+Jun-10-2009 Version 2.3-pre5
- LDAP usertab added.
Now you can have your users in a LDAP Server.
Use these tags in sarg.conf: LDAPHost, LDAPPort, LDAPBindDN, LDAPBindPW,
- Sarg can output the internal css inlined in the reports. It replaces the css.tpl distributed with the sources.
- Command line option -l is optional. The input log files may be named on the command line without prefixing them with -l. It allows the use of wildcards in the command line.
- Accept unlimited URL length in the redirector log (thanks to Joseph L Casale).
+ - Replace redirector_ignore_date by redirector_filter_out_date that behave as the name implies.
+ - Replace dansguardian_ignore_date by dansguardian_filter_out_date that behave as the name implies.
Feb-10-2010 Version 2.2.7.1
- Fixed compilation error reported by some compilers due to an sizeof in a fprintf (thanks to Maxim Britov and Renato Botelho).
sprintf(wdata,"%s%02d%s",year,atoi(mon),day);
idata = atoi(wdata);
- if(DansguardianIgnoreDate) {
+ if(DansguardianFilterOutDate) {
if(idata < dfrom && idata > duntil)
continue;
}
return;
}
- if (getparam_bool("redirector_ignore_date",buf,&RedirectorIgnoreDate)>0) return;
- if (getparam_bool("squidguard_ignore_date",buf,&RedirectorIgnoreDate)>0) {
- debuga(_("squidguard_ignore_date is deprecated and has been replaced by redirector_ignore_date. Please update your configuration file.\n"));
+ if (getparam_bool("redirector_filter_out_date",buf,&RedirectorFilterOutDate)>0) return;
+ if (getparam_bool("redirector_ignore_date",buf,&RedirectorFilterOutDate)>0) {
+ /*
+ Due to an old bug in sarg before version 2.3, the option was having the opposite action than implied by the name.
+ */
+ debuga(_("redirector_ignore_date is deprecated and has been replaced by redirector_filter_out_date that does the action implied by its name as opposed to redirector_ignore_date. Please update your configuration file.\n"));
+ RedirectorFilterOutDate=!RedirectorFilterOutDate;
+ return;
+ }
+ if (getparam_bool("squidguard_ignore_date",buf,&RedirectorFilterOutDate)>0) {
+ debuga(_("squidguard_ignore_date is deprecated and has been replaced by redirector_filter_out_date that does the action implied by its name as opposed to squidguard_ignore_date. Please update your configuration file.\n"));
+ RedirectorFilterOutDate=!RedirectorFilterOutDate;
return;
}
- if (getparam_bool("dansguardian_ignore_date",buf,&DansguardianIgnoreDate)>0) return;
+ if (getparam_bool("dansguardian_filter_out_date",buf,&DansguardianFilterOutDate)>0) return;
+ if (getparam_bool("dansguardian_ignore_date",buf,&DansguardianFilterOutDate)>0) {
+ debuga(_("dansguardian_ignore_date is deprecated and has been replaced by dansguardian_filter_out_date that does the action implied by its name as opposed to dansguardian_ignore_date. Please update your configuration file.\n"));
+ DansguardianFilterOutDate=!DansguardianFilterOutDate;
+ return;
+ }
if (getparam_string("ulimit",buf,Ulimit,sizeof(Ulimit))>0) return;
bool ShowReadStatistics;
char IndexSortOrder[5];
char DansGuardianConf[MAXLEN];
-bool DansguardianIgnoreDate;
+bool DansguardianFilterOutDate;
char SquidGuardConf[MAXLEN];
char SquidGuarddbHome[255];
char RedirectorLogFormat[4096];
int NRedirectorLogs;
char RedirectorLogs[MAX_REDIRECTOR_LOGS][MAX_REDIRECTOR_FILELEN];
int RedirectorLogFromCmdLine;
-bool RedirectorIgnoreDate;
+bool RedirectorFilterOutDate;
bool ShowSargInfo;
bool BytesInSitesUsersReport;
bool ShowSargLogo;
-#define VERSION PACKAGE_VERSION" Jun-09-2010"
+#define VERSION PACKAGE_VERSION" Jun-10-2010"
#define PGM PACKAGE_NAME
#define URL "http://sarg.sourceforge.net"
IndexTree=INDEX_TREE_FILE;
strcpy(RealtimeTypes,"GET,PUT,CONNECT");
RealtimeUnauthRec=REALTIME_UNAUTH_REC_SHOW;
- RedirectorIgnoreDate=false;
- DansguardianIgnoreDate=false;
+ RedirectorFilterOutDate=true;
+ DansguardianFilterOutDate=true;
DataFileUrl=DATAFILEURL_IP;
strcpy(MaxElapsed,"28800000");
BytesInSitesUsersReport=0;
msgstr ""
"Project-Id-Version: sarg 2.3-pre1\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "Зарежда файла с изключенията от"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "Не мога да намеря файла"
msgstr ""
"Project-Id-Version: sarg 2.3\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "Llegint log de l'agent d'usuari"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "reports"
msgstr ""
"Project-Id-Version: sarg 2.3\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "Načítám soubor vyjímek z"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "Nemohu otevřít soubor"
msgstr ""
"Project-Id-Version: sarg 2.3\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "Lade Ausschlussdatei aus"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "Kann Datei nicht oeffnen"
msgstr ""
"Project-Id-Version: sarg 2.3\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "Φόρτωση αρχείου εξαιρέσεων από"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "Δεν μπορώ να διαβάσω το αρχείο"
msgstr ""
"Project-Id-Version: sarg 2.3\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "Cargando archivo de exclusiones desde"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "No se puede abrir archivo"
# Frédéric Marchal <fmarchal@perso.be>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: sarg 2.3-pre3\n"
+"Project-Id-Version: sarg 2.3-pre5\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
-"PO-Revision-Date: 2010-06-09 07:35+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
+"PO-Revision-Date: 2010-06-10 09:39+0200\n"
"Last-Translator: Frédéric Marchal <fmarchal@perso.be>\n"
"Language-Team: French <traduc@traduc.org>\n"
"MIME-Version: 1.0\n"
"redirector_log_format. Veuillez mettre à jour votre fichier de "
"configuration.\n"
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+"redirector_ignore_date est abandonné et a été remplacé par "
+"redirector_filter_out_date qui fait ce que son nom indique contrairement à "
+"redirector_ignore_date. Veuillez mettre à jour votre fichier de "
+"configuration.\n"
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
msgstr ""
"squidguard_ignore_date est abandonné et a été remplacé par "
-"redirector_ignore_date. Veuillez mettre à jour votre fichier de "
+"redirector_filter_out_date qui fait ce que son nom indique contrairement à "
+"squidguard_ignore_date. Veuillez mettre à jour votre fichier de "
"configuration.\n"
-#: getconf.c:645 getconf.c:650
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
+msgstr ""
+"dansguardian_ignore_date est abandonné et a été remplacé par "
+"dansguardian_filter_out_date qui fait ce que son nom indique contrairement à "
+"dansguardian_ignore_date. Veuillez mettre à jour votre fichier de "
+"configuration.\n"
+
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr "Le paramètre «byte_cost» du fichier de configuration est incorrect\n"
-#: getconf.c:657
+#: getconf.c:671
#, c-format
msgid "SARG: Unknown option %s\n"
msgstr "SARG: Option inconnue : %s\n"
-#: getconf.c:667
+#: getconf.c:681
#, c-format
msgid "Loading configuration from %s\n"
msgstr "Lecture du fichier de configuration %s\n"
-#: getconf.c:670
+#: getconf.c:684
#, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "(getconf) Impossible d'ouvrir le fichier %s\n"
#: squidguard_report.c:79
#, c-format
msgid "Not enough memory to read the processed redirector log\n"
-msgstr "Pas assez de mémoire pour lire le fichier intermédiaire du journal du redirecteur\n"
+msgstr ""
+"Pas assez de mémoire pour lire le fichier intermédiaire du journal du "
+"redirecteur\n"
#: squidguard_report.c:83 squidguard_report.c:87
msgid "Redirector report"
msgstr ""
"Project-Id-Version: sarg 2.3\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "Kizaró file beolvasása a"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "Megnyithatatlan file"
msgstr ""
"Project-Id-Version: sarg 2.3\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "Menyertakan file exclude dari"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "Tak bisa buka file"
msgstr ""
"Project-Id-Version: sarg 2.3\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "Caricamento exclude file da"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "Non riesco ad aprire il file"
msgstr ""
"Project-Id-Version: sarg 2.3\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "以下から排除するファイルを読み込んでいます"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "ファイルをオープンできません"
msgstr ""
"Project-Id-Version: sarg 2.3-pre1\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: 2010-04-25 20:35+0300\n"
"Last-Translator: Juris Valdovskis <juris@dc.lv>\n"
"Language-Team: Latvian <translation-team-lv@lists.sourceforge.net>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "Ielādēju izņēmumu failu no"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "Nevar atvērt failu"
msgstr ""
"Project-Id-Version: sarg 2.3\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: 2010-03-31 12:00+0100\n"
"Last-Translator: Erwin Poeze <erwin.poeze@gmail.com>\n"
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "Laden uitzondering bestand uit"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "Kan bestand niet openen"
msgstr ""
"Project-Id-Version: sarg 2.3\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "Czytam plik wykluczenia z"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "Nie moїna otworzyж pliku"
msgstr ""
"Project-Id-Version: sarg 2.3\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "Carregando arquivo de exclusao"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "Erro no open do arquivo"
msgstr ""
"Project-Id-Version: sarg 2.3\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "Se incarca fisierul de excluderi din"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "Nu poate fi deshis fisierul"
msgstr ""
"Project-Id-Version: sarg 2.3-pre1\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: 2010-05-13 18:22+0200\n"
"Last-Translator: Pavel Maryanov <acid@jack.kiev.ua>\n"
"Language-Team: Russian <gnu@mx.ru>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "Загрузка исключений из"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "Не могу открыть файл"
msgstr ""
"Project-Id-Version: sarg 2.3\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "Načítávam súbor výnimok z"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "Nedá sa otvoriť súbor"
msgstr ""
"Project-Id-Version: sarg 2.3\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "Ucitavanje exclude datoteke iz"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "Nemoguce otvoriti datoteku ili je los putokaz"
msgstr ""
"Project-Id-Version: sarg 2.3\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "Exclude dosyasi okunuyor"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "Dosya acilamiyor"
msgstr ""
"Project-Id-Version: sarg 2.3\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr ""
-#: getconf.c:657
+#: getconf.c:671
#, fuzzy, c-format
msgid "SARG: Unknown option %s\n"
msgstr "Unknown option"
-#: getconf.c:667
+#: getconf.c:681
#, fuzzy, c-format
msgid "Loading configuration from %s\n"
msgstr "Завантаження виключень їз"
-#: getconf.c:670
+#: getconf.c:684
#, fuzzy, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "Не можу відкрити файл"
msgstr ""
"Project-Id-Version: sarg 2.3-pre3\n"
"Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-09 07:34+0200\n"
+"POT-Creation-Date: 2010-06-10 09:39+0200\n"
"PO-Revision-Date: 2010-05-26 09:15+0800\n"
"Last-Translator: Zhixiang Ren <kurt998@gmail.com>\n"
"Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
"redirector_log_format. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:601
+#: getconf.c:604
+#, c-format
+msgid ""
+"redirector_ignore_date is deprecated and has been replaced by "
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to redirector_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:609
#, c-format
msgid ""
"squidguard_ignore_date is deprecated and has been replaced by "
-"redirector_ignore_date. Please update your configuration file.\n"
+"redirector_filter_out_date that does the action implied by its name as "
+"opposed to squidguard_ignore_date. Please update your configuration file.\n"
+msgstr ""
+
+#: getconf.c:616
+#, c-format
+msgid ""
+"dansguardian_ignore_date is deprecated and has been replaced by "
+"dansguardian_filter_out_date that does the action implied by its name as "
+"opposed to dansguardian_ignore_date. Please update your configuration file.\n"
msgstr ""
-#: getconf.c:645 getconf.c:650
+#: getconf.c:659 getconf.c:664
#, c-format
msgid "The \"byte_cost\" parameter of the configuration file is invalid\n"
msgstr "ÅäÖÃÎļþµÄ\"byte_cost\"²ÎÊýÎÞЧ\n"
-#: getconf.c:657
+#: getconf.c:671
#, c-format
msgid "SARG: Unknown option %s\n"
msgstr "SARG:δ֪µÄÑ¡Ïî%s\n"
-#: getconf.c:667
+#: getconf.c:681
#, c-format
msgid "Loading configuration from %s\n"
msgstr "¼ÓÔØÅäÖÃÎļþ´Ó%s\n"
-#: getconf.c:670
+#: getconf.c:684
#, c-format
msgid "(getconf) Cannot open file %s\n"
msgstr "£¨getconf£©ÎÞ·¨´ò¿ªÎļþ %s\n"
#
#dansguardian_conf none
-# TAG: dansguardian_ignore_date on|off
-# 'on' must use the record even the date range is different from the used in squid access.log file.
-# 'off' must use the record only if the date range is in the irange used in squid access.log file.
+# TAG: dansguardian_filter_out_date on|off
+# This option replaces dansguardian_ignore_date whose name was not appropriate with respect to its action.
+# Note the change of parameter value compared with the old option.
+# 'off' use the record even if its date is outside of the range found in the input log file.
+# 'on' use the record only if its date is in the range found in the input log file.
#
-#dansguardian_ignore_date off
+#dansguardian_filter_out_date on
# TAG: squidguard_conf file
# path to squidGuard.conf file
#
#redirector_log /usr/local/squidGuard/var/logs/urls.log
-# TAG: redirector_ignore_date on|off
-# was named squidguard_ignore_date before sarg 2.3 but was renamed as it is not specific to squidGuard.
-# Set to 'on' to use the record even if the date is different from the date in the access log file.
-# Set to 'off' to use the record only if the date is within the range found in the access log file.
+# TAG: redirector_filter_out_date on|off
+# This option replaces squidguard_ignore_date and redirector_ignore_date whose names were not
+# appropriate with respect to their action.
+# Note the change of parameter value compared with the old options.
+# 'off' use the record even if its date is outside of the range found in the input log file.
+# 'on' use the record only if its date is in the range found in the input log file.
#
-#redirector_ignore_date off
+#redirector_filter_out_date on
# TAG: redirector_log_format
# Format string for web proxy redirector logs.
year=0;
mon=0;
day=0;
+ hour[0]='\0';
+ source[0]='\0';
+ list[0]='\0';
+ ip[0]='\0';
+ user[0]='\0';
+ url[0]='\0';
while(strcmp(leks,"end") != 0) {
if (getword(leks,sizeof(leks),&gwarea1,'#')<0 || getword(sep,sizeof(sep),&gwarea1,'#')<0) {
debuga(_("Maybe you have a broken record or garbage in your %s file\n"),wentp);
exit(EXIT_FAILURE);
}
strcpy(hour,res);
+ } else if(strcmp(leks,"source") == 0) {
+ if (strlen(res)>=sizeof(source)) {
+ debuga(_("Banning source name too long in redirector log file %s\n"),wentp);
+ exit(EXIT_FAILURE);
+ }
+ strcpy(source,res);
} else if(strcmp(leks,"list") == 0) {
if (strlen(res)>=sizeof(list)) {
debuga(_("Banning list name too long in redirector log file %s\n"),wentp);
//sprintf(warea,"%04d%02d%02d",year,mon,day);
- if(RedirectorIgnoreDate) {
+ if(RedirectorFilterOutDate) {
idata = year*10000+mon*100+day;
if(idata < dfrom || idata > duntil)
continue;
if(Ip2Name && id_is_ip) ip2name(user,sizeof(user));
user_find(uinfo->label,MAX_USER_LEN, user);
}
- fprintf(fp_ou,"%s\t%04d%02d%02d\t%s\t%s\t%s\t%s/%s\n",uinfo->id,year,mon,day,hour,ip,url,source,list);
+ fprintf(fp_ou,"%s\t%04d%02d%02d\t%s\t%s\t%s\t",uinfo->id,year,mon,day,hour,ip,url);
+ if (source[0] && list[0])
+ fprintf(fp_ou,"%s/%s\n",source,list);
+ else if (source[0])
+ fprintf(fp_ou,"%s\n",source);
+ else
+ fprintf(fp_ou,"%s\n",list);
squidguard_count++;
}
fclose(fp_in);