You can subscribe to this list here.
| 2003 |
Jan
|
Feb
(160) |
Mar
(119) |
Apr
(111) |
May
(118) |
Jun
(101) |
Jul
(304) |
Aug
(113) |
Sep
(140) |
Oct
(137) |
Nov
(87) |
Dec
(122) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(78) |
Feb
(125) |
Mar
(131) |
Apr
(59) |
May
(121) |
Jun
(166) |
Jul
(150) |
Aug
(137) |
Sep
(73) |
Oct
(58) |
Nov
(27) |
Dec
(60) |
| 2005 |
Jan
(131) |
Feb
(84) |
Mar
(36) |
Apr
(8) |
May
(28) |
Jun
(20) |
Jul
(10) |
Aug
(72) |
Sep
(76) |
Oct
(34) |
Nov
(3) |
Dec
(29) |
| 2006 |
Jan
(13) |
Feb
(92) |
Mar
(7) |
Apr
(1) |
May
(1) |
Jun
(2) |
Jul
(4) |
Aug
(17) |
Sep
(5) |
Oct
(2) |
Nov
(8) |
Dec
(12) |
| 2007 |
Jan
(28) |
Feb
(15) |
Mar
|
Apr
|
May
(8) |
Jun
(4) |
Jul
(5) |
Aug
(8) |
Sep
(20) |
Oct
(38) |
Nov
(65) |
Dec
(92) |
| 2008 |
Jan
(21) |
Feb
(56) |
Mar
(27) |
Apr
(174) |
May
(25) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Brian S. <xue...@us...> - 2006-02-06 16:53:30
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32668 Modified Files: Tag: b0_22_2 installer.nsi Log Message: Explain how to decode the language IDs used in NSIS compiler messages. Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2 Index: installer.nsi =================================================================== RCS file: /cvsroot/popfile/windows/installer.nsi,v retrieving revision 1.242.4.3 retrieving revision 1.242.4.4 diff -C2 -d -r1.242.4.3 -r1.242.4.4 *** installer.nsi 19 Dec 2005 11:45:36 -0000 1.242.4.3 --- installer.nsi 6 Feb 2006 16:53:18 -0000 1.242.4.4 *************** *** 27,31 **** # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 27,31 ---- # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # *************** *** 72,75 **** --- 72,79 ---- ; (if the default multi-language installer is compiled). ; + ; There may be further warnings which mention "PFI_LANG_NSISDL_PLURAL" is not set in one or + ; more language tables. The 'pfi-languages.nsh' file lists all of the language table codes + ; used by the POPFile installer and other NSIS-based utilities. + ; ; NOTE: The language selection menu order used in this script assumes that the NSIS MUI ; 'Japanese.nsh' language file has been patched to use 'Nihongo' instead of 'Japanese' *************** *** 1616,1622 **** ; do not support different account types, we treat this error as if user has 'Admin' rights. ! ClearErrors ! UserInfo::GetName ! IfErrors 0 got_name ; Assume Win9x system, so user has 'Admin' rights --- 1620,1626 ---- ; do not support different account types, we treat this error as if user has 'Admin' rights. ! ClearErrors ! UserInfo::GetName ! IfErrors 0 got_name ; Assume Win9x system, so user has 'Admin' rights *************** *** 1628,1632 **** got_name: ! Pop $G_WINUSERNAME StrCmp $G_WINUSERNAME "" 0 get_usertype StrCpy $G_WINUSERNAME "UnknownUser" --- 1632,1636 ---- got_name: ! Pop $G_WINUSERNAME StrCmp $G_WINUSERNAME "" 0 get_usertype StrCpy $G_WINUSERNAME "UnknownUser" *************** *** 1634,1638 **** get_usertype: UserInfo::GetAccountType ! Pop $G_WINUSERTYPE StrCmp $G_WINUSERTYPE "Admin" exit StrCmp $G_WINUSERTYPE "Power" not_admin --- 1638,1642 ---- get_usertype: UserInfo::GetAccountType ! Pop $G_WINUSERTYPE StrCmp $G_WINUSERTYPE "Admin" exit StrCmp $G_WINUSERTYPE "Power" not_admin |
|
From: Brian S. <xue...@us...> - 2006-02-06 16:52:12
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32195 Modified Files: Tag: b0_22_2 installer-SecMinPerl-body.nsh installer-SecPOPFile-body.nsh installer-SecPOPFile-func.nsh installer-Uninstall.nsh Log Message: Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2 Index: installer-SecPOPFile-body.nsh =================================================================== RCS file: /cvsroot/popfile/windows/installer-SecPOPFile-body.nsh,v retrieving revision 1.3.2.4 retrieving revision 1.3.2.5 diff -C2 -d -r1.3.2.4 -r1.3.2.5 *** installer-SecPOPFile-body.nsh 19 Dec 2005 11:45:36 -0000 1.3.2.4 --- installer-SecPOPFile-body.nsh 6 Feb 2006 16:52:03 -0000 1.3.2.5 *************** *** 8,17 **** # in a separate file (see 'installer-SecPOPFile-func.nsh') # ! # Copyright (c) 2005 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 8,17 ---- # in a separate file (see 'installer-SecPOPFile-func.nsh') # ! # Copyright (c) 2005-2006 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # Index: installer-SecPOPFile-func.nsh =================================================================== RCS file: /cvsroot/popfile/windows/installer-SecPOPFile-func.nsh,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -C2 -d -r1.1.2.3 -r1.1.2.4 *** installer-SecPOPFile-func.nsh 19 Dec 2005 11:45:36 -0000 1.1.2.3 --- installer-SecPOPFile-func.nsh 6 Feb 2006 16:52:03 -0000 1.1.2.4 *************** *** 4,13 **** # used by the 'installer-SecPOPFile-body.nsh' file. # ! # Copyright (c) 2005 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 4,13 ---- # used by the 'installer-SecPOPFile-body.nsh' file. # ! # Copyright (c) 2005-2006 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # Index: installer-SecMinPerl-body.nsh =================================================================== RCS file: /cvsroot/popfile/windows/installer-SecMinPerl-body.nsh,v retrieving revision 1.2.2.4 retrieving revision 1.2.2.5 diff -C2 -d -r1.2.2.4 -r1.2.2.5 *** installer-SecMinPerl-body.nsh 19 Dec 2005 11:45:36 -0000 1.2.2.4 --- installer-SecMinPerl-body.nsh 6 Feb 2006 16:52:03 -0000 1.2.2.5 *************** *** 10,19 **** # optional POPFile component. # ! # Copyright (c) 2005 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 10,19 ---- # optional POPFile component. # ! # Copyright (c) 2005-2006 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # Index: installer-Uninstall.nsh =================================================================== RCS file: /cvsroot/popfile/windows/installer-Uninstall.nsh,v retrieving revision 1.4.2.4 retrieving revision 1.4.2.5 diff -C2 -d -r1.4.2.4 -r1.4.2.5 *** installer-Uninstall.nsh 19 Dec 2005 11:45:36 -0000 1.4.2.4 --- installer-Uninstall.nsh 6 Feb 2006 16:52:03 -0000 1.4.2.5 *************** *** 4,13 **** # NSIS 'installer.nsi' script used to create the POPFile installer. # ! # Copyright (c) 2005 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 4,13 ---- # NSIS 'installer.nsi' script used to create the POPFile installer. # ! # Copyright (c) 2005-2006 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # *************** *** 91,97 **** ; running the uninstaller (e.g. so we can check ownership of any local 'User Data' we find) ! ClearErrors ! UserInfo::GetName ! IfErrors 0 got_name ; Assume Win9x system, so user has 'Admin' rights --- 91,97 ---- ; running the uninstaller (e.g. so we can check ownership of any local 'User Data' we find) ! ClearErrors ! UserInfo::GetName ! IfErrors 0 got_name ; Assume Win9x system, so user has 'Admin' rights *************** *** 103,107 **** got_name: ! Pop $G_WINUSERNAME StrCmp $G_WINUSERNAME "" 0 get_usertype StrCpy $G_WINUSERNAME "UnknownUser" --- 103,107 ---- got_name: ! Pop $G_WINUSERNAME StrCmp $G_WINUSERNAME "" 0 get_usertype StrCpy $G_WINUSERNAME "UnknownUser" *************** *** 109,113 **** get_usertype: UserInfo::GetAccountType ! Pop $G_WINUSERTYPE StrCmp $G_WINUSERTYPE "Admin" start_uninstall StrCmp $G_WINUSERTYPE "Power" start_uninstall --- 109,113 ---- get_usertype: UserInfo::GetAccountType ! Pop $G_WINUSERTYPE StrCmp $G_WINUSERTYPE "Admin" start_uninstall StrCmp $G_WINUSERTYPE "Power" start_uninstall |
|
From: Brian S. <xue...@us...> - 2006-02-06 16:30:15
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21377 Modified Files: Tag: b0_22_2 CBP.nsh Log Message: Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2 Index: CBP.nsh =================================================================== RCS file: /cvsroot/popfile/windows/CBP.nsh,v retrieving revision 1.33.4.2 retrieving revision 1.33.4.3 diff -C2 -d -r1.33.4.2 -r1.33.4.3 *** CBP.nsh 19 Dec 2005 11:45:36 -0000 1.33.4.2 --- CBP.nsh 6 Feb 2006 16:30:05 -0000 1.33.4.3 *************** *** 11,15 **** # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 11,15 ---- # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # *************** *** 314,321 **** StrCpy ${CBP_L_RESULT} ${CBP_L_TEMP} 7 StrCmp ${CBP_L_RESULT} "corpus " got_flat_corpus ! StrCpy ${CBP_L_RESULT} ${CBP_L_TEMP} 13 StrCmp ${CBP_L_RESULT} "bayes_corpus " got_bdb_corpus ! StrCpy ${CBP_L_RESULT} ${CBP_L_TEMP} 18 StrCmp ${CBP_L_RESULT} "database_database " got_sql_corpus --- 314,321 ---- StrCpy ${CBP_L_RESULT} ${CBP_L_TEMP} 7 StrCmp ${CBP_L_RESULT} "corpus " got_flat_corpus ! StrCpy ${CBP_L_RESULT} ${CBP_L_TEMP} 13 StrCmp ${CBP_L_RESULT} "bayes_corpus " got_bdb_corpus ! StrCpy ${CBP_L_RESULT} ${CBP_L_TEMP} 18 StrCmp ${CBP_L_RESULT} "database_database " got_sql_corpus *************** *** 1108,1112 **** ; WARNING: ! ; This 'FileWrite' uses a string which is only SIX characters less than the maximum allowed ! FileWrite ${L_INI_HANDLE} \ --- 1108,1112 ---- ; WARNING: ! ; This 'FileWrite' uses a string which is a few dozen chars less than the maximum allowed ! FileWrite ${L_INI_HANDLE} \ *************** *** 1115,1126 **** # CBP.ini --- generated by the 'CBP_CreateINIfile' function${MB_NL}\ #${MB_NL}\ ! # Copyright (c) 2003-2004 John Graham-Cumming${MB_NL}\ #${MB_NL}\ # This file is part of POPFile${MB_NL}\ #${MB_NL}\ ! # POPFile is free software; you can redistribute it and/or modify${MB_NL}\ ! # it under the terms of the GNU General Public License as published by${MB_NL}\ ! # the Free Software Foundation; either version 2 of the License, or${MB_NL}\ ! # (at your option) any later version.${MB_NL}\ #${MB_NL}\ # POPFile is distributed in the hope that it will be useful,${MB_NL}\ --- 1115,1125 ---- # CBP.ini --- generated by the 'CBP_CreateINIfile' function${MB_NL}\ #${MB_NL}\ ! # Copyright (c) 2003-2005 John Graham-Cumming${MB_NL}\ #${MB_NL}\ # This file is part of POPFile${MB_NL}\ #${MB_NL}\ ! # POPFile is free software; you can redistribute it and/or modify it${MB_NL}\ ! # under the terms of version 2 of the GNU General Public License as${MB_NL}\ ! # published by the Free Software Foundation.${MB_NL}\ #${MB_NL}\ # POPFile is distributed in the hope that it will be useful,${MB_NL}\ |
|
From: Brian S. <xue...@us...> - 2006-02-06 16:26:12
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18652 Modified Files: Tag: b0_22_2 adduser-EmailConfig.nsh adduser-Uninstall.nsh adduser-Version.nsh adduser.nsi Log Message: Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2 Index: adduser-Uninstall.nsh =================================================================== RCS file: /cvsroot/popfile/windows/adduser-Uninstall.nsh,v retrieving revision 1.2.2.3 retrieving revision 1.2.2.4 diff -C2 -d -r1.2.2.3 -r1.2.2.4 *** adduser-Uninstall.nsh 19 Dec 2005 11:45:36 -0000 1.2.2.3 --- adduser-Uninstall.nsh 6 Feb 2006 16:26:03 -0000 1.2.2.4 *************** *** 4,13 **** # script (adduser.nsi) used to build the 'Add POPFile User' wizard. # ! # Copyright (c) 2005 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 4,13 ---- # script (adduser.nsi) used to build the 'Add POPFile User' wizard. # ! # Copyright (c) 2005-2006 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # *************** *** 75,81 **** ; running the uninstaller so we can check if the email settings can be safely restored ! ClearErrors ! UserInfo::GetName ! IfErrors 0 got_name ; Assume Win9x system, so user has 'Admin' rights --- 75,81 ---- ; running the uninstaller so we can check if the email settings can be safely restored ! ClearErrors ! UserInfo::GetName ! IfErrors 0 got_name ; Assume Win9x system, so user has 'Admin' rights *************** *** 87,91 **** got_name: ! Pop $G_WINUSERNAME StrCmp $G_WINUSERNAME "" 0 get_usertype StrCpy $G_WINUSERNAME "UnknownUser" --- 87,91 ---- got_name: ! Pop $G_WINUSERNAME StrCmp $G_WINUSERNAME "" 0 get_usertype StrCpy $G_WINUSERNAME "UnknownUser" *************** *** 93,97 **** get_usertype: UserInfo::GetAccountType ! Pop $G_WINUSERTYPE StrCmp $G_WINUSERTYPE "Admin" exit StrCmp $G_WINUSERTYPE "Power" exit --- 93,97 ---- get_usertype: UserInfo::GetAccountType ! Pop $G_WINUSERTYPE StrCmp $G_WINUSERTYPE "Admin" exit StrCmp $G_WINUSERTYPE "Power" exit Index: adduser-EmailConfig.nsh =================================================================== RCS file: /cvsroot/popfile/windows/adduser-EmailConfig.nsh,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -C2 -d -r1.1.2.3 -r1.1.2.4 *** adduser-EmailConfig.nsh 19 Dec 2005 11:45:36 -0000 1.1.2.3 --- adduser-EmailConfig.nsh 6 Feb 2006 16:26:03 -0000 1.1.2.4 *************** *** 5,14 **** # when offering to reconfigure email accounts. # ! # Copyright (c) 2005 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 5,14 ---- # when offering to reconfigure email accounts. # ! # Copyright (c) 2005-2006 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # Index: adduser-Version.nsh =================================================================== RCS file: /cvsroot/popfile/windows/adduser-Version.nsh,v retrieving revision 1.6.2.5 retrieving revision 1.6.2.6 diff -C2 -d -r1.6.2.5 -r1.6.2.6 *** adduser-Version.nsh 27 Sep 2005 11:47:33 -0000 1.6.2.5 --- adduser-Version.nsh 6 Feb 2006 16:26:03 -0000 1.6.2.6 *************** *** 7,11 **** #-------------------------------------------------------------------------- ! !define C_PFI_VERSION "0.2.75" #-------------------------------------------------------------------------- --- 7,11 ---- #-------------------------------------------------------------------------- ! !define C_PFI_VERSION "0.2.77" #-------------------------------------------------------------------------- Index: adduser.nsi =================================================================== RCS file: /cvsroot/popfile/windows/adduser.nsi,v retrieving revision 1.59.4.5 retrieving revision 1.59.4.6 diff -C2 -d -r1.59.4.5 -r1.59.4.6 *** adduser.nsi 19 Dec 2005 11:45:36 -0000 1.59.4.5 --- adduser.nsi 6 Feb 2006 16:26:03 -0000 1.59.4.6 *************** *** 8,17 **** # be done using this wizard. # ! # Copyright (c) 2004-2005 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 8,17 ---- # be done using this wizard. # ! # Copyright (c) 2004-2006 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # |
|
From: Brian S. <xue...@us...> - 2006-02-06 16:19:43
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16726 Modified Files: Tag: b0_22_2 ioA.ini ioB.ini ioC.ini ioE.ini ioF.ini ioG.ini Log Message: Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2 Index: ioF.ini =================================================================== RCS file: /cvsroot/popfile/windows/ioF.ini,v retrieving revision 1.5.6.1 retrieving revision 1.5.6.2 diff -C2 -d -r1.5.6.1 -r1.5.6.2 *** ioF.ini 19 Dec 2005 11:45:36 -0000 1.5.6.1 --- ioF.ini 6 Feb 2006 16:19:34 -0000 1.5.6.2 *************** *** 1,58 **** ! #------------------------------------------------------------------- ! # ! # ioF.ini --- This file is used by "adduser.nsi", one of the NSIS scripts ! # used to create the Windows installer for POPFile. This file ! # defines the layout of the custom page used to list the email ! # clients found in the registry. ! # ! # Copyright (c) 2003-2004 John Graham-Cumming ! # ! # This file is part of POPFile ! # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as ! # published by the Free Software Foundation. ! # ! # POPFile is distributed in the hope that it will be useful, ! # but WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! # GNU General Public License for more details. ! # ! # You should have received a copy of the GNU General Public License ! # along with POPFile; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! # ! #------------------------------------------------------------------- ! ! [Settings] ! NumFields=3 ! BackEnabled=1 ! CancelEnabled=0 ! ! [Field 1] ! Type=label ! Text= ! Left=0 ! Right=300 ! Top=0 ! Bottom=40 ! ! [Field 2] ! Type=text ! Left=0 ! Right=300 ! Top=43 ! Bottom=79 ! Flags=READONLY|MULTILINE|VSCROLL ! ! [Field 3] ! Type=label ! Text= ! Left=0 ! Right=300 ! Top=83 ! Bottom=139 ! ! #-------------------- ! # End of ioF.ini ! #-------------------- --- 1,58 ---- ! #------------------------------------------------------------------- ! # ! # ioF.ini --- This file is used by "adduser.nsi", one of the NSIS scripts ! # used to create the Windows installer for POPFile. This file ! # defines the layout of the custom page used to list the email ! # clients found in the registry. ! # ! # Copyright (c) 2003-2005 John Graham-Cumming ! # ! # This file is part of POPFile ! # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. ! # ! # POPFile is distributed in the hope that it will be useful, ! # but WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! # GNU General Public License for more details. ! # ! # You should have received a copy of the GNU General Public License ! # along with POPFile; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! # ! #------------------------------------------------------------------- ! ! [Settings] ! NumFields=3 ! BackEnabled=1 ! CancelEnabled=0 ! ! [Field 1] ! Type=label ! Text= ! Left=0 ! Right=300 ! Top=0 ! Bottom=40 ! ! [Field 2] ! Type=text ! Left=0 ! Right=300 ! Top=43 ! Bottom=79 ! Flags=READONLY|MULTILINE|VSCROLL ! ! [Field 3] ! Type=label ! Text= ! Left=0 ! Right=300 ! Top=83 ! Bottom=139 ! ! #-------------------- ! # End of ioF.ini ! #-------------------- Index: ioC.ini =================================================================== RCS file: /cvsroot/popfile/windows/ioC.ini,v retrieving revision 1.13.6.1 retrieving revision 1.13.6.2 diff -C2 -d -r1.13.6.1 -r1.13.6.2 *** ioC.ini 19 Dec 2005 11:45:36 -0000 1.13.6.1 --- ioC.ini 6 Feb 2006 16:19:34 -0000 1.13.6.2 *************** *** 1,103 **** ! #------------------------------------------------------------------- ! # ! # ioC.ini --- This file is used by "adduser.nsi", one of the NSIS scripts ! # used to create the Windows installer for POPFile. This file ! # defines the layout of the custom page which offers to start ! # POPFile. ! # ! # Copyright (c) 2003-2004 John Graham-Cumming ! # ! # This file is part of POPFile ! # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as ! # published by the Free Software Foundation. ! # ! # POPFile is distributed in the hope that it will be useful, ! # but WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! # GNU General Public License for more details. ! # ! # You should have received a copy of the GNU General Public License ! # along with POPFile; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! # ! #------------------------------------------------------------------- ! ! [Settings] ! NumFields=8 ! BackEnabled=0 ! CancelEnabled=0 ! ! [Field 1] ! Type=GroupBox ! Text= ! Left=0 ! Right=300 ! Top=0 ! Bottom=70 ! ! [Field 2] ! Type=RadioButton ! Text= ! Left=5 ! Right=298 ! Top=10 ! Bottom=26 ! Flags=Group ! State=0 ! ! [Field 3] ! Type=RadioButton ! Text= ! Left=5 ! Right=298 ! Top=30 ! Bottom=46 ! State=0 ! ! [Field 4] ! Type=RadioButton ! Text= ! Left=5 ! Right=298 ! Top=50 ! Bottom=66 ! State=1 ! ! [Field 5] ! Type=GroupBox ! Text= ! Left=0 ! Right=300 ! Top=75 ! Bottom=139 ! Flags=Group ! ! [Field 6] ! Type=Label ! Text= ! Left=5 ! Right=298 ! Top=85 ! Bottom=101 ! ! [Field 7] ! Type=Label ! Text= ! Left=5 ! Right=298 ! Top=103 ! Bottom=119 ! ! [Field 8] ! Type=Label ! Text= ! Left=5 ! Right=298 ! Top=121 ! Bottom=137 ! ! #-------------------- ! # End of ioC.ini ! #-------------------- --- 1,103 ---- ! #------------------------------------------------------------------- ! # ! # ioC.ini --- This file is used by "adduser.nsi", one of the NSIS scripts ! # used to create the Windows installer for POPFile. This file ! # defines the layout of the custom page which offers to start ! # POPFile. ! # ! # Copyright (c) 2003-2005 John Graham-Cumming ! # ! # This file is part of POPFile ! # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. ! # ! # POPFile is distributed in the hope that it will be useful, ! # but WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! # GNU General Public License for more details. ! # ! # You should have received a copy of the GNU General Public License ! # along with POPFile; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! # ! #------------------------------------------------------------------- ! ! [Settings] ! NumFields=8 ! BackEnabled=0 ! CancelEnabled=0 ! ! [Field 1] ! Type=GroupBox ! Text= ! Left=0 ! Right=300 ! Top=0 ! Bottom=70 ! ! [Field 2] ! Type=RadioButton ! Text= ! Left=5 ! Right=298 ! Top=10 ! Bottom=26 ! Flags=Group ! State=0 ! ! [Field 3] ! Type=RadioButton ! Text= ! Left=5 ! Right=298 ! Top=30 ! Bottom=46 ! State=0 ! ! [Field 4] ! Type=RadioButton ! Text= ! Left=5 ! Right=298 ! Top=50 ! Bottom=66 ! State=1 ! ! [Field 5] ! Type=GroupBox ! Text= ! Left=0 ! Right=300 ! Top=75 ! Bottom=139 ! Flags=Group ! ! [Field 6] ! Type=Label ! Text= ! Left=5 ! Right=298 ! Top=85 ! Bottom=101 ! ! [Field 7] ! Type=Label ! Text= ! Left=5 ! Right=298 ! Top=103 ! Bottom=119 ! ! [Field 8] ! Type=Label ! Text= ! Left=5 ! Right=298 ! Top=121 ! Bottom=137 ! ! #-------------------- ! # End of ioC.ini ! #-------------------- Index: ioA.ini =================================================================== RCS file: /cvsroot/popfile/windows/ioA.ini,v retrieving revision 1.19.6.1 retrieving revision 1.19.6.2 diff -C2 -d -r1.19.6.1 -r1.19.6.2 *** ioA.ini 19 Dec 2005 11:45:36 -0000 1.19.6.1 --- ioA.ini 6 Feb 2006 16:19:34 -0000 1.19.6.2 *************** *** 1,89 **** ! #------------------------------------------------------------------- ! # ! # ioA.ini --- This file is used by "adduser.nsi", one of the NSIS scripts ! # used to create the Windows installer for POPFile. This file ! # defines the layout of the custom page used to choose the port ! # and startup options. ! # ! # Copyright (c) 2002-2004 John Graham-Cumming ! # ! # This file is part of POPFile ! # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as ! # published by the Free Software Foundation. ! # ! # POPFile is distributed in the hope that it will be useful, ! # but WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! # GNU General Public License for more details. ! # ! # You should have received a copy of the GNU General Public License ! # along with POPFile; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! # ! #------------------------------------------------------------------- ! ! [Settings] ! NumFields=7 ! ! [Field 1] ! Type=label ! Text= ! Left=0 ! Right=300 ! Top=0 ! Bottom=16 ! ! [Field 2] ! Type=combobox ! ListItems=110|111|8110|8111 ! Left=0 ! Right=70 ! Top=17 ! Bottom=72 ! ! [Field 3] ! Type=label ! Text= ! Left=0 ! Right=300 ! Top=38 ! Bottom=54 ! ! [Field 4] ! Type=combobox ! ListItems=8080|8081|9090|9091 ! Left=0 ! Right=70 ! Top=55 ! Bottom=110 ! ! [Field 5] ! Type=checkbox ! Text= ! Left=0 ! Right=300 ! Top=70 ! Bottom=94 ! State=1 ! ! [Field 6] ! Type=GroupBox ! Text= ! Left=0 ! Right=300 ! Top=100 ! Bottom=140 ! ! [Field 7] ! Type=label ! Text= ! Left=5 ! Right=298 ! Top=115 ! Bottom=139 ! ! #-------------------- ! # End of ioA.ini ! #-------------------- --- 1,89 ---- ! #------------------------------------------------------------------- ! # ! # ioA.ini --- This file is used by "adduser.nsi", one of the NSIS scripts ! # used to create the Windows installer for POPFile. This file ! # defines the layout of the custom page used to choose the port ! # and startup options. ! # ! # Copyright (c) 2002-2005 John Graham-Cumming ! # ! # This file is part of POPFile ! # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. ! # ! # POPFile is distributed in the hope that it will be useful, ! # but WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! # GNU General Public License for more details. ! # ! # You should have received a copy of the GNU General Public License ! # along with POPFile; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! # ! #------------------------------------------------------------------- ! ! [Settings] ! NumFields=7 ! ! [Field 1] ! Type=label ! Text= ! Left=0 ! Right=300 ! Top=0 ! Bottom=16 ! ! [Field 2] ! Type=combobox ! ListItems=110|111|8110|8111 ! Left=0 ! Right=70 ! Top=17 ! Bottom=72 ! ! [Field 3] ! Type=label ! Text= ! Left=0 ! Right=300 ! Top=38 ! Bottom=54 ! ! [Field 4] ! Type=combobox ! ListItems=8080|8081|9090|9091 ! Left=0 ! Right=70 ! Top=55 ! Bottom=110 ! ! [Field 5] ! Type=checkbox ! Text= ! Left=0 ! Right=300 ! Top=70 ! Bottom=94 ! State=1 ! ! [Field 6] ! Type=GroupBox ! Text= ! Left=0 ! Right=300 ! Top=100 ! Bottom=140 ! ! [Field 7] ! Type=label ! Text= ! Left=5 ! Right=298 ! Top=115 ! Bottom=139 ! ! #-------------------- ! # End of ioA.ini ! #-------------------- Index: ioG.ini =================================================================== RCS file: /cvsroot/popfile/windows/ioG.ini,v retrieving revision 1.5.6.1 retrieving revision 1.5.6.2 diff -C2 -d -r1.5.6.1 -r1.5.6.2 *** ioG.ini 19 Dec 2005 11:45:36 -0000 1.5.6.1 --- ioG.ini 6 Feb 2006 16:19:34 -0000 1.5.6.2 *************** *** 1,47 **** ! #------------------------------------------------------------------- ! # ! # ioG.ini --- This file is used by "installer.nsi", one of the NSIS scripts ! # used to create the Windows installer for POPFile. This file ! # defines the layout of the custom page used for messages. ! # ! # Copyright (c) 2003-2004 John Graham-Cumming ! # ! # This file is part of POPFile ! # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as ! # published by the Free Software Foundation. ! # ! # POPFile is distributed in the hope that it will be useful, ! # but WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! # GNU General Public License for more details. ! # ! # You should have received a copy of the GNU General Public License ! # along with POPFile; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! # ! #------------------------------------------------------------------- ! ! [Settings] ! NumFields=2 ! ! [Field 1] ! Type=label ! Text= ! Left=0 ! Right=300 ! Top=0 ! Bottom=72 ! ! [Field 2] ! Type=label ! Text= ! Left=0 ! Right=300 ! Top=75 ! Bottom=139 ! ! #-------------------- ! # End of ioG.ini ! #-------------------- --- 1,47 ---- ! #------------------------------------------------------------------- ! # ! # ioG.ini --- This file is used by "installer.nsi", one of the NSIS scripts ! # used to create the Windows installer for POPFile. This file ! # defines the layout of the custom page used for messages. ! # ! # Copyright (c) 2003-2005 John Graham-Cumming ! # ! # This file is part of POPFile ! # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. ! # ! # POPFile is distributed in the hope that it will be useful, ! # but WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! # GNU General Public License for more details. ! # ! # You should have received a copy of the GNU General Public License ! # along with POPFile; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! # ! #------------------------------------------------------------------- ! ! [Settings] ! NumFields=2 ! ! [Field 1] ! Type=label ! Text= ! Left=0 ! Right=300 ! Top=0 ! Bottom=72 ! ! [Field 2] ! Type=label ! Text= ! Left=0 ! Right=300 ! Top=75 ! Bottom=139 ! ! #-------------------- ! # End of ioG.ini ! #-------------------- Index: ioE.ini =================================================================== RCS file: /cvsroot/popfile/windows/ioE.ini,v retrieving revision 1.4.6.1 retrieving revision 1.4.6.2 diff -C2 -d -r1.4.6.1 -r1.4.6.2 *** ioE.ini 19 Dec 2005 11:45:36 -0000 1.4.6.1 --- ioE.ini 6 Feb 2006 16:19:34 -0000 1.4.6.2 *************** *** 1,130 **** ! #------------------------------------------------------------------- ! # ! # ioE.ini --- This file is used by "adduser.nsi", one of the NSIS scripts ! # used to create the Windows installer for POPFile. This file ! # defines the layout of the custom page used to configure the ! # Eudora personalities. ! # ! # Copyright (c) 2003-2004 John Graham-Cumming ! # ! # This file is part of POPFile ! # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as ! # published by the Free Software Foundation. ! # ! # POPFile is distributed in the hope that it will be useful, ! # but WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! # GNU General Public License for more details. ! # ! # You should have received a copy of the GNU General Public License ! # along with POPFile; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! # ! #------------------------------------------------------------------- ! ! [Settings] ! NumFields=12 ! BackEnabled=1 ! CancelEnabled=0 ! ! [Field 1] ! Type=label ! Text= ! Left=0 ! Right=300 ! Top=0 ! Bottom=16 ! ! [Field 2] ! Type=checkbox ! Text= ! Left=0 ! Right=300 ! Top=18 ! Bottom=34 ! ! [Field 3] ! Type=label ! Text= ! Left=0 ! Right=300 ! Top=123 ! Bottom=139 ! ! [Field 4] ! Type=GroupBox ! Text= ! Left=0 ! Right=300 ! Top=38 ! Bottom=120 ! ! [Field 5] ! Type=label ! Text= ! Left=5 ! Right=95 ! Top=54 ! Bottom=70 ! ! [Field 6] ! Type=label ! Text= ! Left=5 ! Right=95 ! Top=71 ! Bottom=87 ! ! [Field 7] ! Type=label ! Text= ! Left=5 ! Right=95 ! Top=88 ! Bottom=104 ! ! [Field 8] ! Type=label ! Text= ! Left=5 ! Right=95 ! Top=105 ! Bottom=113 ! ! [Field 9] ! Type=label ! Text= ! Left=96 ! Right=298 ! Top=54 ! Bottom=70 ! ! [Field 10] ! Type=label ! Text= ! Left=96 ! Right=298 ! Top=71 ! Bottom=87 ! ! [Field 11] ! Type=label ! Text= ! Left=96 ! Right=298 ! Top=88 ! Bottom=104 ! ! [Field 12] ! Type=label ! Text= ! Left=96 ! Right=298 ! Top=105 ! Bottom=113 ! ! #-------------------- ! # End of ioE.ini ! #-------------------- --- 1,130 ---- ! #------------------------------------------------------------------- ! # ! # ioE.ini --- This file is used by "adduser.nsi", one of the NSIS scripts ! # used to create the Windows installer for POPFile. This file ! # defines the layout of the custom page used to configure the ! # Eudora personalities. ! # ! # Copyright (c) 2003-2005 John Graham-Cumming ! # ! # This file is part of POPFile ! # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. ! # ! # POPFile is distributed in the hope that it will be useful, ! # but WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! # GNU General Public License for more details. ! # ! # You should have received a copy of the GNU General Public License ! # along with POPFile; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! # ! #------------------------------------------------------------------- ! ! [Settings] ! NumFields=12 ! BackEnabled=1 ! CancelEnabled=0 ! ! [Field 1] ! Type=label ! Text= ! Left=0 ! Right=300 ! Top=0 ! Bottom=16 ! ! [Field 2] ! Type=checkbox ! Text= ! Left=0 ! Right=300 ! Top=18 ! Bottom=34 ! ! [Field 3] ! Type=label ! Text= ! Left=0 ! Right=300 ! Top=123 ! Bottom=139 ! ! [Field 4] ! Type=GroupBox ! Text= ! Left=0 ! Right=300 ! Top=38 ! Bottom=120 ! ! [Field 5] ! Type=label ! Text= ! Left=5 ! Right=95 ! Top=54 ! Bottom=70 ! ! [Field 6] ! Type=label ! Text= ! Left=5 ! Right=95 ! Top=71 ! Bottom=87 ! ! [Field 7] ! Type=label ! Text= ! Left=5 ! Right=95 ! Top=88 ! Bottom=104 ! ! [Field 8] ! Type=label ! Text= ! Left=5 ! Right=95 ! Top=105 ! Bottom=113 ! ! [Field 9] ! Type=label ! Text= ! Left=96 ! Right=298 ! Top=54 ! Bottom=70 ! ! [Field 10] ! Type=label ! Text= ! Left=96 ! Right=298 ! Top=71 ! Bottom=87 ! ! [Field 11] ! Type=label ! Text= ! Left=96 ! Right=298 ! Top=88 ! Bottom=104 ! ! [Field 12] ! Type=label ! Text= ! Left=96 ! Right=298 ! Top=105 ! Bottom=113 ! ! #-------------------- ! # End of ioE.ini ! #-------------------- Index: ioB.ini =================================================================== RCS file: /cvsroot/popfile/windows/ioB.ini,v retrieving revision 1.14.6.1 retrieving revision 1.14.6.2 diff -C2 -d -r1.14.6.1 -r1.14.6.2 *** ioB.ini 19 Dec 2005 11:45:36 -0000 1.14.6.1 --- ioB.ini 6 Feb 2006 16:19:34 -0000 1.14.6.2 *************** *** 1,163 **** ! #------------------------------------------------------------------- ! # ! # ioB.ini --- This file is used by "adduser.nsi", one of the NSIS scripts ! # used to create the Windows installer for POPFile. This file ! # defines the layout of the custom page used to configure the ! # Outlook Express and Outlook accounts. ! # ! # Copyright (c) 2003-2004 John Graham-Cumming ! # ! # This file is part of POPFile ! # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as ! # published by the Free Software Foundation. ! # ! # POPFile is distributed in the hope that it will be useful, ! # but WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! # GNU General Public License for more details. ! # ! # You should have received a copy of the GNU General Public License ! # along with POPFile; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! # ! #------------------------------------------------------------------- ! ! [Settings] ! NumFields=17 ! BackEnabled=1 ! CancelEnabled=0 ! ! [Field 1] ! Type=Label ! Text= ! Left=0 ! Right=298 ! Top=0 ! Bottom=8 ! ! [Field 2] ! Type=GroupBox ! Left=0 ! Right=300 ! Top=6 ! Bottom=117 ! ! [Field 3] ! Type=Label ! Text= ! Left=0 ! Right=300 ! Top=120 ! Bottom=139 ! ! [Field 4] ! Type=Label ! Text= ! Left=15 ! Right=71 ! Top=12 ! Bottom=20 ! ! [Field 5] ! Type=Label ! Text= ! Left=73 ! Right=171 ! Top=12 ! Bottom=20 ! ! [Field 6] ! Type=Label ! Text= ! Left=173 ! Right=239 ! Top=12 ! Bottom=20 ! ! [Field 7] ! Type=Label ! Text= ! Left=241 ! Right=298 ! Top=12 ! Bottom=20 ! ! [Field 8] ! Type=Text ! Left=11 ! Right=71 ! Top=21 ! Bottom=115 ! Flags=READONLY|MULTILINE|NOWORDWRAP ! ! [Field 9] ! Type=Text ! Left=70 ! Right=171 ! Top=21 ! Bottom=115 ! Flags=READONLY|MULTILINE|NOWORDWRAP ! ! [Field 10] ! Type=Text ! Left=170 ! Right=239 ! Top=21 ! Bottom=115 ! Flags=READONLY|MULTILINE|NOWORDWRAP ! ! [Field 11] ! Type=Text ! Left=238 ! Right=298 ! Top=21 ! Bottom=115 ! Flags=READONLY|MULTILINE|NOWORDWRAP ! ! [Field 12] ! Type=CheckBox ! Left=2 ! Right=10 ! Top=23 ! Bottom=31 ! ! [Field 13] ! Type=CheckBox ! Left=2 ! Right=10 ! Top=39 ! Bottom=47 ! ! [Field 14] ! Type=CheckBox ! Left=2 ! Right=10 ! Top=55 ! Bottom=63 ! ! [Field 15] ! Type=CheckBox ! Left=2 ! Right=10 ! Top=71 ! Bottom=79 ! ! [Field 16] ! Type=CheckBox ! Left=2 ! Right=10 ! Top=87 ! Bottom=95 ! ! [Field 17] ! Type=CheckBox ! Left=2 ! Right=10 ! Top=103 ! Bottom=111 ! ! #-------------------- ! # End of ioB.ini ! #-------------------- --- 1,163 ---- ! #------------------------------------------------------------------- ! # ! # ioB.ini --- This file is used by "adduser.nsi", one of the NSIS scripts ! # used to create the Windows installer for POPFile. This file ! # defines the layout of the custom page used to configure the ! # Outlook Express and Outlook accounts. ! # ! # Copyright (c) 2003-2005 John Graham-Cumming ! # ! # This file is part of POPFile ! # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. ! # ! # POPFile is distributed in the hope that it will be useful, ! # but WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! # GNU General Public License for more details. ! # ! # You should have received a copy of the GNU General Public License ! # along with POPFile; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! # ! #------------------------------------------------------------------- ! ! [Settings] ! NumFields=17 ! BackEnabled=1 ! CancelEnabled=0 ! ! [Field 1] ! Type=Label ! Text= ! Left=0 ! Right=298 ! Top=0 ! Bottom=8 ! ! [Field 2] ! Type=GroupBox ! Left=0 ! Right=300 ! Top=6 ! Bottom=117 ! ! [Field 3] ! Type=Label ! Text= ! Left=0 ! Right=300 ! Top=120 ! Bottom=139 ! ! [Field 4] ! Type=Label ! Text= ! Left=15 ! Right=71 ! Top=12 ! Bottom=20 ! ! [Field 5] ! Type=Label ! Text= ! Left=73 ! Right=171 ! Top=12 ! Bottom=20 ! ! [Field 6] ! Type=Label ! Text= ! Left=173 ! Right=239 ! Top=12 ! Bottom=20 ! ! [Field 7] ! Type=Label ! Text= ! Left=241 ! Right=298 ! Top=12 ! Bottom=20 ! ! [Field 8] ! Type=Text ! Left=11 ! Right=71 ! Top=21 ! Bottom=115 ! Flags=READONLY|MULTILINE|NOWORDWRAP ! ! [Field 9] ! Type=Text ! Left=70 ! Right=171 ! Top=21 ! Bottom=115 ! Flags=READONLY|MULTILINE|NOWORDWRAP ! ! [Field 10] ! Type=Text ! Left=170 ! Right=239 ! Top=21 ! Bottom=115 ! Flags=READONLY|MULTILINE|NOWORDWRAP ! ! [Field 11] ! Type=Text ! Left=238 ! Right=298 ! Top=21 ! Bottom=115 ! Flags=READONLY|MULTILINE|NOWORDWRAP ! ! [Field 12] ! Type=CheckBox ! Left=2 ! Right=10 ! Top=23 ! Bottom=31 ! ! [Field 13] ! Type=CheckBox ! Left=2 ! Right=10 ! Top=39 ! Bottom=47 ! ! [Field 14] ! Type=CheckBox ! Left=2 ! Right=10 ! Top=55 ! Bottom=63 ! ! [Field 15] ! Type=CheckBox ! Left=2 ! Right=10 ! Top=71 ! Bottom=79 ! ! [Field 16] ! Type=CheckBox ! Left=2 ! Right=10 ! Top=87 ! Bottom=95 ! ! [Field 17] ! Type=CheckBox ! Left=2 ! Right=10 ! Top=103 ! Bottom=111 ! ! #-------------------- ! # End of ioB.ini ! #-------------------- |
|
From: Brian S. <xue...@us...> - 2006-02-06 16:13:36
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13866 Modified Files: Tag: b0_22_2 getssl.nsh Log Message: Update the link for the NSIS plugin (the wiki has been re-arranged again) Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2 Index: getssl.nsh =================================================================== RCS file: /cvsroot/popfile/windows/getssl.nsh,v retrieving revision 1.6.2.5 retrieving revision 1.6.2.6 diff -C2 -d -r1.6.2.5 -r1.6.2.6 *** getssl.nsh 19 Dec 2005 11:45:36 -0000 1.6.2.5 --- getssl.nsh 6 Feb 2006 16:13:24 -0000 1.6.2.6 *************** *** 9,18 **** # programs download and install the same SSL files. # ! # Copyright (c) 2005 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 9,18 ---- # programs download and install the same SSL files. # ! # Copyright (c) 2005-2006 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # *************** *** 41,45 **** ; ; The 'NSIS Wiki' page for the 'untgz' plugin (description, example and download links): ! ; http://nsis.sourceforge.net/wiki/UnTGZ ; ; Alternative download links can be found at the 'untgz' author's site: --- 41,45 ---- ; ; The 'NSIS Wiki' page for the 'untgz' plugin (description, example and download links): ! ; http://nsis.sourceforge.net/UnTGZ_plug-in ; ; Alternative download links can be found at the 'untgz' author's site: |
Update of /cvsroot/popfile/engine/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24076/tests Modified Files: Tag: b0_22_2 IMAP_test_server.pl Makefile TestBayes.tst TestBayesScript.tst TestConfiguration.tst TestHTML.script TestHTML.tst TestHTTP.tst TestHistory.tst TestIMAP.tst TestInsertScript.tst TestLogger.tst TestMQ.tst TestMailParse.tst TestModule.tst TestMutex.tst TestPOP3.tst TestPipeScript.tst TestProxy.tst TestWordMangle.tst TestXMLRPC.tst Log Message: Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2. Index: TestHTML.tst =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestHTML.tst,v retrieving revision 1.35 retrieving revision 1.35.6.1 diff -C2 -d -r1.35 -r1.35.6.1 *** TestHTML.tst 23 Sep 2004 07:37:06 -0000 1.35 --- TestHTML.tst 6 Feb 2006 15:19:10 -0000 1.35.6.1 *************** *** 3,14 **** # Tests for HTML.pm # ! # Copyright (c) 2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Tests for HTML.pm # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: IMAP_test_server.pl =================================================================== RCS file: /cvsroot/popfile/engine/tests/IMAP_test_server.pl,v retrieving revision 1.2 retrieving revision 1.2.4.1 diff -C2 -d -r1.2 -r1.2.4.1 *** IMAP_test_server.pl 16 Dec 2004 20:14:21 -0000 1.2 --- IMAP_test_server.pl 6 Feb 2006 15:19:10 -0000 1.2.4.1 *************** *** 3,14 **** # Tests for IMAP.pm # ! # Copyright (c) 2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Tests for IMAP.pm # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: TestBayes.tst =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestBayes.tst,v retrieving revision 1.56 retrieving revision 1.56.6.1 diff -C2 -d -r1.56 -r1.56.6.1 *** TestBayes.tst 6 Aug 2004 12:20:24 -0000 1.56 --- TestBayes.tst 6 Feb 2006 15:19:10 -0000 1.56.6.1 *************** *** 3,14 **** # Tests for Bayes.pm # ! # Copyright (c) 2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Tests for Bayes.pm # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: TestBayesScript.tst =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestBayesScript.tst,v retrieving revision 1.4 retrieving revision 1.4.6.1 diff -C2 -d -r1.4 -r1.4.6.1 *** TestBayesScript.tst 28 Jun 2004 11:12:15 -0000 1.4 --- TestBayesScript.tst 6 Feb 2006 15:19:10 -0000 1.4.6.1 *************** *** 3,14 **** # Tests for bayes.pl # ! # Copyright (c) 2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Tests for bayes.pl # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: Makefile =================================================================== RCS file: /cvsroot/popfile/engine/tests/Makefile,v retrieving revision 1.11 retrieving revision 1.11.8.1 diff -C2 -d -r1.11 -r1.11.8.1 *** Makefile 13 Dec 2003 19:25:45 -0000 1.11 --- Makefile 6 Feb 2006 15:19:10 -0000 1.11.8.1 *************** *** 4,15 **** # and for testing # ! # Copyright (c) 2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 4,14 ---- # and for testing # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: TestMutex.tst =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestMutex.tst,v retrieving revision 1.2 retrieving revision 1.2.4.1 diff -C2 -d -r1.2 -r1.2.4.1 *** TestMutex.tst 3 Dec 2004 15:04:31 -0000 1.2 --- TestMutex.tst 6 Feb 2006 15:19:10 -0000 1.2.4.1 *************** *** 3,14 **** # Tests for Mutex.pm # ! # Copyright (c) 2003-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Tests for Mutex.pm # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: TestConfiguration.tst =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestConfiguration.tst,v retrieving revision 1.19 retrieving revision 1.19.6.1 diff -C2 -d -r1.19 -r1.19.6.1 *** TestConfiguration.tst 2 Aug 2004 18:32:59 -0000 1.19 --- TestConfiguration.tst 6 Feb 2006 15:19:10 -0000 1.19.6.1 *************** *** 3,14 **** # Tests for Configuration.pm # ! # Copyright (c) 2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Tests for Configuration.pm # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: TestXMLRPC.tst =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestXMLRPC.tst,v retrieving revision 1.7 retrieving revision 1.7.6.1 diff -C2 -d -r1.7 -r1.7.6.1 *** TestXMLRPC.tst 28 Jul 2004 14:17:07 -0000 1.7 --- TestXMLRPC.tst 6 Feb 2006 15:19:10 -0000 1.7.6.1 *************** *** 3,14 **** # Tests for XMLRPC.pm # ! # Copyright (c) 2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Tests for XMLRPC.pm # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: TestWordMangle.tst =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestWordMangle.tst,v retrieving revision 1.9 retrieving revision 1.9.8.1 diff -C2 -d -r1.9 -r1.9.8.1 *** TestWordMangle.tst 29 Nov 2003 23:54:28 -0000 1.9 --- TestWordMangle.tst 6 Feb 2006 15:19:10 -0000 1.9.8.1 *************** *** 3,14 **** # Tests for WordMangle.pm # ! # Copyright (c) 2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Tests for WordMangle.pm # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: TestPipeScript.tst =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestPipeScript.tst,v retrieving revision 1.7 retrieving revision 1.7.6.1 diff -C2 -d -r1.7 -r1.7.6.1 *** TestPipeScript.tst 28 Jul 2004 14:17:07 -0000 1.7 --- TestPipeScript.tst 6 Feb 2006 15:19:10 -0000 1.7.6.1 *************** *** 3,14 **** # Tests for pipe.pl # ! # Copyright (c) 2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Tests for pipe.pl # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: TestLogger.tst =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestLogger.tst,v retrieving revision 1.10 retrieving revision 1.10.6.1 diff -C2 -d -r1.10 -r1.10.6.1 *** TestLogger.tst 28 Jun 2004 11:12:15 -0000 1.10 --- TestLogger.tst 6 Feb 2006 15:19:10 -0000 1.10.6.1 *************** *** 3,14 **** # Tests for Logger.pm # ! # Copyright (c) 2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Tests for Logger.pm # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: TestIMAP.tst =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestIMAP.tst,v retrieving revision 1.3 retrieving revision 1.3.4.1 diff -C2 -d -r1.3 -r1.3.4.1 *** TestIMAP.tst 16 Dec 2004 20:14:21 -0000 1.3 --- TestIMAP.tst 6 Feb 2006 15:19:10 -0000 1.3.4.1 *************** *** 3,14 **** # Tests for POP3.pm # ! # Copyright (c) 2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Tests for POP3.pm # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: TestMQ.tst =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestMQ.tst,v retrieving revision 1.5 retrieving revision 1.5.6.1 diff -C2 -d -r1.5 -r1.5.6.1 *** TestMQ.tst 23 Jun 2004 14:17:03 -0000 1.5 --- TestMQ.tst 6 Feb 2006 15:19:10 -0000 1.5.6.1 *************** *** 3,14 **** # Tests for MQ.pm # ! # Copyright (c) 2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Tests for MQ.pm # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: TestModule.tst =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestModule.tst,v retrieving revision 1.17 retrieving revision 1.17.6.1 diff -C2 -d -r1.17 -r1.17.6.1 *** TestModule.tst 7 Sep 2004 15:09:19 -0000 1.17 --- TestModule.tst 6 Feb 2006 15:19:10 -0000 1.17.6.1 *************** *** 3,14 **** # Tests for Module.pm # ! # Copyright (c) 2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Tests for Module.pm # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: TestMailParse.tst =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestMailParse.tst,v retrieving revision 1.43 retrieving revision 1.43.4.1 diff -C2 -d -r1.43 -r1.43.4.1 *** TestMailParse.tst 8 Dec 2004 01:45:32 -0000 1.43 --- TestMailParse.tst 6 Feb 2006 15:19:10 -0000 1.43.4.1 *************** *** 3,14 **** # Tests for MailParse.pm # ! # Copyright (c) 2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Tests for MailParse.pm # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: TestHTML.script =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestHTML.script,v retrieving revision 1.34 retrieving revision 1.34.6.1 diff -C2 -d -r1.34 -r1.34.6.1 *** TestHTML.script 10 Sep 2004 11:33:05 -0000 1.34 --- TestHTML.script 6 Feb 2006 15:19:10 -0000 1.34.6.1 *************** *** 3,14 **** # Test script for the HTML interface, loaded by TestHTML.tst # ! # Copyright (c) 2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Test script for the HTML interface, loaded by TestHTML.tst # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: TestInsertScript.tst =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestInsertScript.tst,v retrieving revision 1.6 retrieving revision 1.6.6.1 diff -C2 -d -r1.6 -r1.6.6.1 *** TestInsertScript.tst 28 Jun 2004 11:12:15 -0000 1.6 --- TestInsertScript.tst 6 Feb 2006 15:19:10 -0000 1.6.6.1 *************** *** 3,14 **** # Tests for insert.pl # ! # Copyright (c) 2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Tests for insert.pl # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: TestPOP3.tst =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestPOP3.tst,v retrieving revision 1.32 retrieving revision 1.32.6.1 diff -C2 -d -r1.32 -r1.32.6.1 *** TestPOP3.tst 10 Sep 2004 16:50:08 -0000 1.32 --- TestPOP3.tst 6 Feb 2006 15:19:10 -0000 1.32.6.1 *************** *** 3,14 **** # Tests for POP3.pm # ! # Copyright (c) 2003-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Tests for POP3.pm # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: TestHistory.tst =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestHistory.tst,v retrieving revision 1.12 retrieving revision 1.12.4.1 diff -C2 -d -r1.12 -r1.12.4.1 *** TestHistory.tst 16 Dec 2004 02:55:55 -0000 1.12 --- TestHistory.tst 6 Feb 2006 15:19:10 -0000 1.12.4.1 *************** *** 3,14 **** # Tests for History.pm # ! # Copyright (c) 2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Tests for History.pm # ! # Copyright (c) 2004-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: TestProxy.tst =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestProxy.tst,v retrieving revision 1.24 retrieving revision 1.24.6.1 diff -C2 -d -r1.24 -r1.24.6.1 *** TestProxy.tst 3 Sep 2004 15:35:40 -0000 1.24 --- TestProxy.tst 6 Feb 2006 15:19:10 -0000 1.24.6.1 *************** *** 3,14 **** # Tests for Proxy.pm # ! # Copyright (c) 2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Tests for Proxy.pm # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: TestHTTP.tst =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestHTTP.tst,v retrieving revision 1.9 retrieving revision 1.9.6.1 diff -C2 -d -r1.9 -r1.9.6.1 *** TestHTTP.tst 28 Jun 2004 11:12:15 -0000 1.9 --- TestHTTP.tst 6 Feb 2006 15:19:10 -0000 1.9.6.1 *************** *** 3,14 **** # Tests for HTTP.pm # ! # Copyright (c) 2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Tests for HTTP.pm # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, |
|
From: Joseph C. <tex...@us...> - 2006-02-06 15:19:25
|
Update of /cvsroot/popfile/engine/tests/languages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24076/tests/languages Modified Files: Tag: b0_22_2 English-UK.msg English.msg Francais.msg Log Message: Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2. Index: English-UK.msg =================================================================== RCS file: /cvsroot/popfile/engine/tests/languages/English-UK.msg,v retrieving revision 1.1 retrieving revision 1.1.8.1 diff -C2 -d -r1.1 -r1.1.8.1 *** English-UK.msg 20 Aug 2003 03:09:04 -0000 1.1 --- English-UK.msg 6 Feb 2006 15:19:10 -0000 1.1.8.1 *************** *** 1,10 **** ! # Copyright (c) 2001-2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 1,9 ---- ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: Francais.msg =================================================================== RCS file: /cvsroot/popfile/engine/tests/languages/Francais.msg,v retrieving revision 1.1 retrieving revision 1.1.8.1 diff -C2 -d -r1.1 -r1.1.8.1 *** Francais.msg 21 Aug 2003 17:07:06 -0000 1.1 --- Francais.msg 6 Feb 2006 15:19:10 -0000 1.1.8.1 *************** *** 1,10 **** ! # Copyright (c) 2001-2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 1,9 ---- ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: English.msg =================================================================== RCS file: /cvsroot/popfile/engine/tests/languages/English.msg,v retrieving revision 1.5 retrieving revision 1.5.8.1 diff -C2 -d -r1.5 -r1.5.8.1 *** English.msg 10 Oct 2003 20:03:19 -0000 1.5 --- English.msg 6 Feb 2006 15:19:10 -0000 1.5.8.1 *************** *** 1,10 **** ! # Copyright (c) 2001-2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 1,9 ---- ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, |
|
From: Joseph C. <tex...@us...> - 2006-02-06 15:19:22
|
Update of /cvsroot/popfile/engine/Test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24076/Test Modified Files: Tag: b0_22_2 MQReceiver.pm SimpleProxy.pm Log Message: Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2. Index: MQReceiver.pm =================================================================== RCS file: /cvsroot/popfile/engine/Test/MQReceiver.pm,v retrieving revision 1.5 retrieving revision 1.5.4.1 diff -C2 -d -r1.5 -r1.5.4.1 *** MQReceiver.pm 29 Nov 2004 16:43:55 -0000 1.5 --- MQReceiver.pm 6 Feb 2006 15:19:10 -0000 1.5.4.1 *************** *** 5,16 **** # Test::MQReceiver. Helper class for the TestMQ.tst suite. # ! # Copyright (c) 2003-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 5,15 ---- # Test::MQReceiver. Helper class for the TestMQ.tst suite. # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: SimpleProxy.pm =================================================================== RCS file: /cvsroot/popfile/engine/Test/SimpleProxy.pm,v retrieving revision 1.15 retrieving revision 1.15.4.1 diff -C2 -d -r1.15 -r1.15.4.1 *** SimpleProxy.pm 29 Nov 2004 16:43:55 -0000 1.15 --- SimpleProxy.pm 6 Feb 2006 15:19:10 -0000 1.15.4.1 *************** *** 8,19 **** # A simple test proxy server for testing Proxy::Proxy # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 8,18 ---- # A simple test proxy server for testing Proxy::Proxy # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, |
|
From: Joseph C. <tex...@us...> - 2006-02-06 15:16:12
|
Update of /cvsroot/popfile/engine/Classifier In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22000/Classifier Modified Files: Tag: b0_22_2 Bayes.pm MailParse.pm WordMangle.pm popfile.sql Log Message: Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2. Index: WordMangle.pm =================================================================== RCS file: /cvsroot/popfile/engine/Classifier/WordMangle.pm,v retrieving revision 1.40 retrieving revision 1.40.4.1 diff -C2 -d -r1.40 -r1.40.4.1 *** WordMangle.pm 17 Dec 2004 12:23:57 -0000 1.40 --- WordMangle.pm 6 Feb 2006 15:15:52 -0000 1.40.4.1 *************** *** 9,20 **** # WordMangle.pm --- Mangle words for better classification # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 9,19 ---- # WordMangle.pm --- Mangle words for better classification # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: Bayes.pm =================================================================== RCS file: /cvsroot/popfile/engine/Classifier/Bayes.pm,v retrieving revision 1.327.4.4 retrieving revision 1.327.4.5 diff -C2 -d -r1.327.4.4 -r1.327.4.5 *** Bayes.pm 26 Sep 2005 11:54:28 -0000 1.327.4.4 --- Bayes.pm 6 Feb 2006 15:15:52 -0000 1.327.4.5 *************** *** 9,20 **** # Bayes.pm --- Naive Bayes text classifier # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 9,19 ---- # Bayes.pm --- Naive Bayes text classifier # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: MailParse.pm =================================================================== RCS file: /cvsroot/popfile/engine/Classifier/MailParse.pm,v retrieving revision 1.216.4.2 retrieving revision 1.216.4.3 diff -C2 -d -r1.216.4.2 -r1.216.4.3 *** MailParse.pm 6 Feb 2006 09:18:39 -0000 1.216.4.2 --- MailParse.pm 6 Feb 2006 15:15:52 -0000 1.216.4.3 *************** *** 5,16 **** # MailParse.pm --- Parse a mail message or messages into words # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 5,15 ---- # MailParse.pm --- Parse a mail message or messages into words # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: popfile.sql =================================================================== RCS file: /cvsroot/popfile/engine/Classifier/popfile.sql,v retrieving revision 1.17 retrieving revision 1.17.6.1 diff -C2 -d -r1.17 -r1.17.6.1 *** popfile.sql 22 Sep 2004 12:00:03 -0000 1.17 --- popfile.sql 6 Feb 2006 15:15:52 -0000 1.17.6.1 *************** *** 4,15 **** -- popfile.schema - POPFile's database schema -- ! -- Copyright (c) 2003-2004 John Graham-Cumming -- -- This file is part of POPFile -- ! -- POPFile is free software; you can redistribute it and/or modify ! -- it under the terms of the GNU General Public License as published by ! -- the Free Software Foundation; either version 2 of the License, or ! -- (at your option) any later version. -- -- POPFile is distributed in the hope that it will be useful, --- 4,14 ---- -- popfile.schema - POPFile's database schema -- ! -- Copyright (c) 2003-2006 John Graham-Cumming -- -- This file is part of POPFile -- ! -- POPFile is free software; you can redistribute it and/or modify it ! -- under the terms version 2 of the GNU General Public License as ! -- published by the Free Software Foundation. -- -- POPFile is distributed in the hope that it will be useful, |
Update of /cvsroot/popfile/engine/POPFile In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22000/POPFile Modified Files: Tag: b0_22_2 API.pm Configuration.pm History.pm Loader.pm Logger.pm MQ.pm Module.pm Mutex.pm Log Message: Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2. Index: History.pm =================================================================== RCS file: /cvsroot/popfile/engine/POPFile/History.pm,v retrieving revision 1.29 retrieving revision 1.29.4.1 diff -C2 -d -r1.29 -r1.29.4.1 *** History.pm 16 Dec 2004 02:59:48 -0000 1.29 --- History.pm 6 Feb 2006 15:15:53 -0000 1.29.4.1 *************** *** 10,21 **** # database and on disk that store messages previously classified by POPFile. # ! # Copyright (c) 2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 10,20 ---- # database and on disk that store messages previously classified by POPFile. # ! # Copyright (c) 2004-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: Configuration.pm =================================================================== RCS file: /cvsroot/popfile/engine/POPFile/Configuration.pm,v retrieving revision 1.51 retrieving revision 1.51.4.1 diff -C2 -d -r1.51 -r1.51.4.1 *** Configuration.pm 29 Nov 2004 16:43:51 -0000 1.51 --- Configuration.pm 6 Feb 2006 15:15:53 -0000 1.51.4.1 *************** *** 12,23 **** # POPFile's command line parsing # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,22 ---- # POPFile's command line parsing # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: Loader.pm =================================================================== RCS file: /cvsroot/popfile/engine/POPFile/Loader.pm,v retrieving revision 1.26 retrieving revision 1.26.6.1 diff -C2 -d -r1.26 -r1.26.6.1 *** Loader.pm 3 Sep 2004 14:42:47 -0000 1.26 --- Loader.pm 6 Feb 2006 15:15:53 -0000 1.26.6.1 *************** *** 12,23 **** # utilities to assist in loading and executing modules # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,22 ---- # utilities to assist in loading and executing modules # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: Mutex.pm =================================================================== RCS file: /cvsroot/popfile/engine/POPFile/Mutex.pm,v retrieving revision 1.3 retrieving revision 1.3.4.1 diff -C2 -d -r1.3 -r1.3.4.1 *** Mutex.pm 7 Dec 2004 00:41:43 -0000 1.3 --- Mutex.pm 6 Feb 2006 15:15:53 -0000 1.3.4.1 *************** *** 6,17 **** # to a region on a per thread or per process basis. # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 6,16 ---- # to a region on a per thread or per process basis. # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: Module.pm =================================================================== RCS file: /cvsroot/popfile/engine/POPFile/Module.pm,v retrieving revision 1.42 retrieving revision 1.42.4.1 diff -C2 -d -r1.42 -r1.42.4.1 *** Module.pm 29 Nov 2004 16:43:51 -0000 1.42 --- Module.pm 6 Feb 2006 15:15:53 -0000 1.42.4.1 *************** *** 3,14 **** # This is POPFile's top level Module object. # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # This is POPFile's top level Module object. # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: MQ.pm =================================================================== RCS file: /cvsroot/popfile/engine/POPFile/MQ.pm,v retrieving revision 1.17 retrieving revision 1.17.6.1 diff -C2 -d -r1.17 -r1.17.6.1 *** MQ.pm 14 Sep 2004 20:05:40 -0000 1.17 --- MQ.pm 6 Feb 2006 15:15:53 -0000 1.17.6.1 *************** *** 40,51 **** # RELSE Sent when a session key is being released by a client # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 40,50 ---- # RELSE Sent when a session key is being released by a client # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: API.pm =================================================================== RCS file: /cvsroot/popfile/engine/POPFile/API.pm,v retrieving revision 1.7 retrieving revision 1.7.4.1 diff -C2 -d -r1.7 -r1.7.4.1 *** API.pm 29 Nov 2004 16:43:50 -0000 1.7 --- API.pm 6 Feb 2006 15:15:53 -0000 1.7.4.1 *************** *** 5,16 **** # API.pm -- The API to POPFile available through XML-RPC # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 5,15 ---- # API.pm -- The API to POPFile available through XML-RPC # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: Logger.pm =================================================================== RCS file: /cvsroot/popfile/engine/POPFile/Logger.pm,v retrieving revision 1.41 retrieving revision 1.41.6.1 diff -C2 -d -r1.41 -r1.41.6.1 *** Logger.pm 20 Sep 2004 13:36:40 -0000 1.41 --- Logger.pm 6 Feb 2006 15:15:53 -0000 1.41.6.1 *************** *** 10,21 **** # information to disk or to send it to the screen. # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 10,20 ---- # information to disk or to send it to the screen. # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, |
|
From: Joseph C. <tex...@us...> - 2006-02-06 15:16:06
|
Update of /cvsroot/popfile/engine/Services In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22000/Services Modified Files: Tag: b0_22_2 IMAP.pm Log Message: Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2. Index: IMAP.pm =================================================================== RCS file: /cvsroot/popfile/engine/Services/IMAP.pm,v retrieving revision 1.9 retrieving revision 1.9.4.1 diff -C2 -d -r1.9 -r1.9.4.1 *** IMAP.pm 16 Dec 2004 20:14:20 -0000 1.9 --- IMAP.pm 6 Feb 2006 15:15:53 -0000 1.9.4.1 *************** *** 8,19 **** # IMAP.pm --- a module to use POPFile for an IMAP connection. # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 8,18 ---- # IMAP.pm --- a module to use POPFile for an IMAP connection. # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, |
|
From: Joseph C. <tex...@us...> - 2006-02-06 15:16:06
|
Update of /cvsroot/popfile/engine/Devel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22000/Devel Modified Files: Tag: b0_22_2 TestCoverage.pm Log Message: Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2. Index: TestCoverage.pm =================================================================== RCS file: /cvsroot/popfile/engine/Devel/TestCoverage.pm,v retrieving revision 1.14 retrieving revision 1.14.6.1 diff -C2 -d -r1.14 -r1.14.6.1 *** TestCoverage.pm 8 Jun 2004 14:39:58 -0000 1.14 --- TestCoverage.pm 6 Feb 2006 15:15:52 -0000 1.14.6.1 *************** *** 3,14 **** # Devel::TestCoverage - Module to measure code coverage in the test suite # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 3,13 ---- # Devel::TestCoverage - Module to measure code coverage in the test suite # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, |
|
From: Joseph C. <tex...@us...> - 2006-02-06 15:16:05
|
Update of /cvsroot/popfile/engine/Platform In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22000/Platform Modified Files: Tag: b0_22_2 MSWin32.pm Log Message: Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2. Index: MSWin32.pm =================================================================== RCS file: /cvsroot/popfile/engine/Platform/MSWin32.pm,v retrieving revision 1.21 retrieving revision 1.21.4.1 diff -C2 -d -r1.21 -r1.21.4.1 *** MSWin32.pm 29 Nov 2004 16:43:52 -0000 1.21 --- MSWin32.pm 6 Feb 2006 15:15:53 -0000 1.21.4.1 *************** *** 9,20 **** # This module handles POPFile specifics on Windows # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 9,19 ---- # This module handles POPFile specifics on Windows # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, |
|
From: Joseph C. <tex...@us...> - 2006-02-06 15:16:04
|
Update of /cvsroot/popfile/engine/Proxy In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22000/Proxy Modified Files: Tag: b0_22_2 NNTP.pm POP3.pm Proxy.pm SMTP.pm Log Message: Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2. Index: POP3.pm =================================================================== RCS file: /cvsroot/popfile/engine/Proxy/POP3.pm,v retrieving revision 1.105.4.1 retrieving revision 1.105.4.2 diff -C2 -d -r1.105.4.1 -r1.105.4.2 *** POP3.pm 14 Sep 2005 19:30:29 -0000 1.105.4.1 --- POP3.pm 6 Feb 2006 15:15:53 -0000 1.105.4.2 *************** *** 10,21 **** # This module handles proxying the POP3 protocol for POPFile. # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 10,20 ---- # This module handles proxying the POP3 protocol for POPFile. # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: NNTP.pm =================================================================== RCS file: /cvsroot/popfile/engine/Proxy/NNTP.pm,v retrieving revision 1.36 retrieving revision 1.36.4.1 diff -C2 -d -r1.36 -r1.36.4.1 *** NNTP.pm 13 Dec 2004 15:23:42 -0000 1.36 --- NNTP.pm 6 Feb 2006 15:15:53 -0000 1.36.4.1 *************** *** 9,20 **** # This module handles proxying the NNTP protocol for POPFile. # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 9,19 ---- # This module handles proxying the NNTP protocol for POPFile. # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: Proxy.pm =================================================================== RCS file: /cvsroot/popfile/engine/Proxy/Proxy.pm,v retrieving revision 1.54 retrieving revision 1.54.4.1 diff -C2 -d -r1.54 -r1.54.4.1 *** Proxy.pm 29 Nov 2004 16:43:53 -0000 1.54 --- Proxy.pm 6 Feb 2006 15:15:53 -0000 1.54.4.1 *************** *** 5,16 **** # This module implements the base class for all POPFile proxy Modules # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 5,15 ---- # This module implements the base class for all POPFile proxy Modules # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: SMTP.pm =================================================================== RCS file: /cvsroot/popfile/engine/Proxy/SMTP.pm,v retrieving revision 1.38 retrieving revision 1.38.4.1 diff -C2 -d -r1.38 -r1.38.4.1 *** SMTP.pm 13 Dec 2004 15:23:42 -0000 1.38 --- SMTP.pm 6 Feb 2006 15:15:53 -0000 1.38.4.1 *************** *** 9,20 **** # This module handles proxying the SMTP protocol for POPFile. # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 9,19 ---- # This module handles proxying the SMTP protocol for POPFile. # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, |
|
From: Joseph C. <tex...@us...> - 2006-02-06 15:16:04
|
Update of /cvsroot/popfile/engine/UI In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22000/UI Modified Files: Tag: b0_22_2 HTML.pm HTTP.pm XMLRPC.pm Log Message: Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2. Index: HTML.pm =================================================================== RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v retrieving revision 1.311.4.6 retrieving revision 1.311.4.7 diff -C2 -d -r1.311.4.6 -r1.311.4.7 *** HTML.pm 6 Feb 2006 09:18:40 -0000 1.311.4.6 --- HTML.pm 6 Feb 2006 15:15:53 -0000 1.311.4.7 *************** *** 6,17 **** # This package contains an HTML UI for POPFile # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 6,16 ---- # This package contains an HTML UI for POPFile # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: XMLRPC.pm =================================================================== RCS file: /cvsroot/popfile/engine/UI/XMLRPC.pm,v retrieving revision 1.18 retrieving revision 1.18.4.1 diff -C2 -d -r1.18 -r1.18.4.1 *** XMLRPC.pm 29 Nov 2004 16:43:56 -0000 1.18 --- XMLRPC.pm 6 Feb 2006 15:15:54 -0000 1.18.4.1 *************** *** 10,21 **** # Classifier/Bayes.get_buckets # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 10,20 ---- # Classifier/Bayes.get_buckets # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: HTTP.pm =================================================================== RCS file: /cvsroot/popfile/engine/UI/HTTP.pm,v retrieving revision 1.27 retrieving revision 1.27.4.1 diff -C2 -d -r1.27 -r1.27.4.1 *** HTTP.pm 29 Nov 2004 16:43:55 -0000 1.27 --- HTTP.pm 6 Feb 2006 15:15:54 -0000 1.27.4.1 *************** *** 4,15 **** # modules that service requests over HTTP (e.g. the UI) # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 4,14 ---- # modules that service requests over HTTP (e.g. the UI) # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, |
|
From: Joseph C. <tex...@us...> - 2006-02-06 15:10:10
|
Update of /cvsroot/popfile/engine In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21336 Modified Files: Makefile bayes.pl color.pl coverage.pl insert.pl make_packing_list.pl pipe.pl popfile-check-setup.pl popfile-service.pl popfile-tray.pl popfile-windows.pl popfile.pl tests.pl traintest.pl vars.mak viewer.pl xval.pl Log Message: Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2. Index: popfile-tray.pl =================================================================== RCS file: /cvsroot/popfile/engine/popfile-tray.pl,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** popfile-tray.pl 19 Dec 2005 11:41:52 -0000 1.11 --- popfile-tray.pl 6 Feb 2006 15:09:54 -0000 1.12 *************** *** 10,19 **** # which category the message belongs in and much more... # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 10,19 ---- # which category the message belongs in and much more... # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # Index: popfile-windows.pl =================================================================== RCS file: /cvsroot/popfile/engine/popfile-windows.pl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** popfile-windows.pl 19 Dec 2005 11:41:52 -0000 1.7 --- popfile-windows.pl 6 Feb 2006 15:09:54 -0000 1.8 *************** *** 11,20 **** # popfileb.exe Run POPFile in the background # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 11,20 ---- # popfileb.exe Run POPFile in the background # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # Index: coverage.pl =================================================================== RCS file: /cvsroot/popfile/engine/coverage.pl,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** coverage.pl 19 Dec 2005 11:41:52 -0000 1.12 --- coverage.pl 6 Feb 2006 15:09:54 -0000 1.13 *************** *** 4,8 **** # coverage.pl - Calculate coverage data from LNE files # ! # Copyright (c) 2001-2003 John Graham-Cumming # # ---------------------------------------------------------------------------- --- 4,8 ---- # coverage.pl - Calculate coverage data from LNE files # ! # Copyright (c) 2001-2006 John Graham-Cumming # # ---------------------------------------------------------------------------- Index: color.pl =================================================================== RCS file: /cvsroot/popfile/engine/color.pl,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** color.pl 29 Nov 2004 16:43:39 -0000 1.8 --- color.pl 6 Feb 2006 15:09:54 -0000 1.9 *************** *** 4,8 **** # color.pl --- Used to view a colorized email message # ! # Copyright (c) 2001-2003 John Graham-Cumming # # ---------------------------------------------------------------------------- --- 4,8 ---- # color.pl --- Used to view a colorized email message # ! # Copyright (c) 2001-2006 John Graham-Cumming # # ---------------------------------------------------------------------------- Index: insert.pl =================================================================== RCS file: /cvsroot/popfile/engine/insert.pl,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** insert.pl 19 Dec 2005 11:41:52 -0000 1.40 --- insert.pl 6 Feb 2006 15:09:54 -0000 1.41 *************** *** 4,13 **** # insert.pl --- Inserts a mail message into a specific bucket # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 4,13 ---- # insert.pl --- Inserts a mail message into a specific bucket # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # Index: tests.pl =================================================================== RCS file: /cvsroot/popfile/engine/tests.pl,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** tests.pl 27 Dec 2004 14:54:26 -0000 1.49 --- tests.pl 6 Feb 2006 15:09:54 -0000 1.50 *************** *** 4,15 **** # tests.pl - Unit tests for POPFile # ! # Copyright (c) 2001-2003 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 4,14 ---- # tests.pl - Unit tests for POPFile # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, Index: pipe.pl =================================================================== RCS file: /cvsroot/popfile/engine/pipe.pl,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** pipe.pl 19 Dec 2005 11:41:52 -0000 1.16 --- pipe.pl 6 Feb 2006 15:09:54 -0000 1.17 *************** *** 5,14 **** # version on STDOUT # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 5,14 ---- # version on STDOUT # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # Index: Makefile =================================================================== RCS file: /cvsroot/popfile/engine/Makefile,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** Makefile 21 Aug 2005 22:17:46 -0000 1.43 --- Makefile 6 Feb 2006 15:09:54 -0000 1.44 *************** *** 4,8 **** # and for testing # ! # Copyright (c) 2003-2004 John Graham-Cumming include vars.mak --- 4,8 ---- # and for testing # ! # Copyright (c) 2003-2006 John Graham-Cumming include vars.mak *************** *** 63,67 **** winexe: popfile.exe popfileb.exe popfilef.exe popfileib.exe popfileif.exe trayicon.ico ../windows/POPFileIcon/popfile.ico popfile-service.exe ! COMMON_EXE_OPTIONS = --exe $@ --force --clean --dependent --xclude --icon ../windows/POPFileIcon/popfile.ico --icon trayicon.ico --script $< --info CompanyName="The POPFile Project" --info LegalCopyright="Copyright (c) 2003 John Graham-Cumming" --info ProductName=POPFile --info ProductVersion=$(POPFILE_VERSION).0 --info FileDescription=POPFile --info FileVersion=$(POPFILE_VERSION).0 ifeq ($(EXE_DEBUG),1) COMMON_EXE_OPTIONS += --debug --- 63,67 ---- winexe: popfile.exe popfileb.exe popfilef.exe popfileib.exe popfileif.exe trayicon.ico ../windows/POPFileIcon/popfile.ico popfile-service.exe ! COMMON_EXE_OPTIONS = --exe $@ --force --clean --dependent --xclude --icon ../windows/POPFileIcon/popfile.ico --icon trayicon.ico --script $< --info CompanyName="The POPFile Project" --info LegalCopyright="Copyright (c) 2006 John Graham-Cumming" --info ProductName=POPFile --info ProductVersion=$(POPFILE_VERSION).0 --info FileDescription=POPFile --info FileVersion=$(POPFILE_VERSION).0 ifeq ($(EXE_DEBUG),1) COMMON_EXE_OPTIONS += --debug Index: popfile-service.pl =================================================================== RCS file: /cvsroot/popfile/engine/popfile-service.pl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** popfile-service.pl 19 Dec 2005 11:41:52 -0000 1.6 --- popfile-service.pl 6 Feb 2006 15:09:54 -0000 1.7 *************** *** 10,19 **** # which category the message belongs in and much more... # ! # Copyright (c) 2003-2004 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 10,19 ---- # which category the message belongs in and much more... # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # Index: traintest.pl =================================================================== RCS file: /cvsroot/popfile/engine/traintest.pl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** traintest.pl 29 Nov 2004 16:43:39 -0000 1.7 --- traintest.pl 6 Feb 2006 15:09:54 -0000 1.8 *************** *** 4,8 **** # traintest.pl - Simulate training on errors using a saved archive. # ! # Copyright (c) 2001-2003 John Graham-Cumming # # ---------------------------------------------------------------------------- --- 4,8 ---- # traintest.pl - Simulate training on errors using a saved archive. # ! # Copyright (c) 2001-2006 John Graham-Cumming # # ---------------------------------------------------------------------------- Index: viewer.pl =================================================================== RCS file: /cvsroot/popfile/engine/viewer.pl,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** viewer.pl 29 Nov 2004 16:43:39 -0000 1.10 --- viewer.pl 6 Feb 2006 15:09:54 -0000 1.11 *************** *** 4,8 **** # viewer.pl --- Used to view information about bucket probabilities # ! # Copyright (c) 2001-2003 John Graham-Cumming # # ---------------------------------------------------------------------------- --- 4,8 ---- # viewer.pl --- Used to view information about bucket probabilities # ! # Copyright (c) 2001-2006 John Graham-Cumming # # ---------------------------------------------------------------------------- Index: vars.mak =================================================================== RCS file: /cvsroot/popfile/engine/vars.mak,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** vars.mak 19 Dec 2004 01:07:36 -0000 1.11 --- vars.mak 6 Feb 2006 15:09:54 -0000 1.12 *************** *** 4,8 **** # and for testing # ! # Copyright (c) 2003-2004 John Graham-Cumming export POPFILE_MAJOR_VERSION=0 --- 4,8 ---- # and for testing # ! # Copyright (c) 2003-2006 John Graham-Cumming export POPFILE_MAJOR_VERSION=0 Index: popfile-check-setup.pl =================================================================== RCS file: /cvsroot/popfile/engine/popfile-check-setup.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** popfile-check-setup.pl 19 Dec 2005 11:41:52 -0000 1.2 --- popfile-check-setup.pl 6 Feb 2006 15:09:54 -0000 1.3 *************** *** 7,16 **** # installed. # ! # Copyright (c) 2005 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 7,16 ---- # installed. # ! # Copyright (c) 2005-2006 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # Index: popfile.pl =================================================================== RCS file: /cvsroot/popfile/engine/popfile.pl,v retrieving revision 1.231 retrieving revision 1.232 diff -C2 -d -r1.231 -r1.232 *** popfile.pl 19 Dec 2005 11:41:52 -0000 1.231 --- popfile.pl 6 Feb 2006 15:09:54 -0000 1.232 *************** *** 9,18 **** # which category the message belongs in and much more... # ! # Copyright (c) 2001-2005 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 9,18 ---- # which category the message belongs in and much more... # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # Index: xval.pl =================================================================== RCS file: /cvsroot/popfile/engine/xval.pl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** xval.pl 29 Nov 2004 16:43:39 -0000 1.4 --- xval.pl 6 Feb 2006 15:09:54 -0000 1.5 *************** *** 4,8 **** # traintest.pl - Simulate training on errors using a saved archive. # ! # Copyright (c) 2001-2003 John Graham-Cumming # # ---------------------------------------------------------------------------- --- 4,8 ---- # traintest.pl - Simulate training on errors using a saved archive. # ! # Copyright (c) 2001-2006 John Graham-Cumming # # ---------------------------------------------------------------------------- Index: bayes.pl =================================================================== RCS file: /cvsroot/popfile/engine/bayes.pl,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** bayes.pl 19 Dec 2005 11:41:52 -0000 1.40 --- bayes.pl 6 Feb 2006 15:09:54 -0000 1.41 *************** *** 4,13 **** # bayes.pl --- Classify a mail message manually # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 4,13 ---- # bayes.pl --- Classify a mail message manually # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # Index: make_packing_list.pl =================================================================== RCS file: /cvsroot/popfile/engine/make_packing_list.pl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** make_packing_list.pl 19 Dec 2005 11:41:52 -0000 1.4 --- make_packing_list.pl 6 Feb 2006 15:09:54 -0000 1.5 *************** *** 6,15 **** # Builds the POPFile packing list of required modules # ! # Copyright (c) 2001-2004 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 6,15 ---- # Builds the POPFile packing list of required modules # ! # Copyright (c) 2001-2006 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # |
|
From: Brian S. <xue...@us...> - 2006-02-06 14:48:12
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13543 Modified Files: Tag: b0_22_2 pfi-library.nsh Log Message: Updated to support SQLite Database Status Check utility's "size" report. Index: pfi-library.nsh =================================================================== RCS file: /cvsroot/popfile/windows/pfi-library.nsh,v retrieving revision 1.53.4.2 retrieving revision 1.53.4.3 diff -C2 -d -r1.53.4.2 -r1.53.4.3 *** pfi-library.nsh 19 Dec 2005 11:45:36 -0000 1.53.4.2 --- pfi-library.nsh 6 Feb 2006 14:48:03 -0000 1.53.4.3 *************** *** 5,14 **** # to create (and test) the POPFile Windows installer. # ! # Copyright (c) 2003-2005 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 5,14 ---- # to create (and test) the POPFile Windows installer. # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # *************** *** 35,47 **** # (3) BACKUP defined in backup.nsi (POPFile 'User Data' Backup utility) # (4) DBSTATUS defined in test\pfidbstatus.nsi (POPFile SQLite Database Status Check) ! # (5) INSTALLER defined in installer.nsi (the main installer program, setup.exe) ! # (6) MSGCAPTURE defined in msgcapture.nsi (used to capture POPFile's console messages) ! # (7) PFIDIAG defined in test\pfidiag.nsi (helps diagnose installer-related problems) ! # (8) RESTORE defined in restore.nsi (POPFile 'User Data' Restore utility) ! # (9) RUNPOPFILE defined in runpopfile.nsi (simple front-end for popfile.exe) ! # (10) RUNSQLITE defined in runsqlite.nsi (simple front-end for sqlite.exe/sqlite3.exe) ! # (11) STOP_POPFILE defined in stop_popfile.nsi (the 'POPFile Silent Shutdown' utility) ! # (12) TRANSLATOR defined in test\translator.nsi (main installer translations testbed) ! # (13) TRANSLATOR_AUW defined in test\transAUW.nsi ('Add POPFile User' translations testbed) #-------------------------------------------------------------------------- --- 35,48 ---- # (3) BACKUP defined in backup.nsi (POPFile 'User Data' Backup utility) # (4) DBSTATUS defined in test\pfidbstatus.nsi (POPFile SQLite Database Status Check) ! # (5) IMAPUPDATER defined in add-ons\updateimap.nsi (POPFile 'IMAP Updater' wizard) ! # (6) INSTALLER defined in installer.nsi (the main installer program, setup.exe) ! # (7) MSGCAPTURE defined in msgcapture.nsi (used to capture POPFile's console messages) ! # (8) PFIDIAG defined in test\pfidiag.nsi (helps diagnose installer-related problems) ! # (9) RESTORE defined in restore.nsi (POPFile 'User Data' Restore utility) ! # (10) RUNPOPFILE defined in runpopfile.nsi (simple front-end for popfile.exe) ! # (11) RUNSQLITE defined in runsqlite.nsi (simple front-end for sqlite.exe/sqlite3.exe) ! # (12) STOP_POPFILE defined in stop_popfile.nsi (the 'POPFile Silent Shutdown' utility) ! # (13) TRANSLATOR defined in test\translator.nsi (main installer translations testbed) ! # (14) TRANSLATOR_AUW defined in test\transAUW.nsi ('Add POPFile User' translations testbed) #-------------------------------------------------------------------------- *************** *** 57,61 **** #-------------------------------------------------------------------------- ! !define C_PFI_LIBRARY_VERSION "0.1.9" #-------------------------------------------------------------------------- --- 58,62 ---- #-------------------------------------------------------------------------- ! !define C_PFI_LIBRARY_VERSION "0.1.12" #-------------------------------------------------------------------------- *************** *** 451,459 **** ; 4.01 4.72.2106.8 ; 4.01 SP1 4.72.3110.3 ! ; 5 5.00.2014.0216 ; 5.5 5.50.4134.0100 ; 6.0 Public Preview 6.0.2462.0000 ; 6.0 Public Preview Refresh 6.0.2479.0006 ! ; 6.0 RTM 6.0.2600.0000 StrCpy ${L_TEMP} ${L_REGDATA} 1 --- 452,460 ---- ; 4.01 4.72.2106.8 ; 4.01 SP1 4.72.3110.3 ! ; 5 5.00.2014.0216 ; 5.5 5.50.4134.0100 ; 6.0 Public Preview 6.0.2462.0000 ; 6.0 Public Preview Refresh 6.0.2479.0006 ! ; 6.0 RTM 6.0.2600.0000 StrCpy ${L_TEMP} ${L_REGDATA} 1 *************** *** 1293,1297 **** !macroend ! !ifdef ADDSSL | BACKUP | INSTALLER | RESTORE #-------------------------------------------------------------------------- # Installer Function: PFI_DumpLog --- 1294,1298 ---- !macroend ! !ifdef ADDSSL | BACKUP | IMAPUPDATER | INSTALLER | RESTORE #-------------------------------------------------------------------------- # Installer Function: PFI_DumpLog *************** *** 4143,4147 **** !macroend ! !ifndef DBSTATUS & PFIDIAG & RUNPOPFILE & RUNSQLITE & TRANSLATOR #-------------------------------------------------------------------------- # Installer Function: PFI_StrCheckDecimal --- 4144,4148 ---- !macroend ! !ifndef PFIDIAG & RUNPOPFILE & RUNSQLITE & TRANSLATOR #-------------------------------------------------------------------------- # Installer Function: PFI_StrCheckDecimal *************** *** 4226,4230 **** !macroend ! !ifndef ADDSSL & DBSTATUS & MSGCAPTURE & RUNSQLITE & STOP_POPFILE & TRANSLATOR #-------------------------------------------------------------------------- # Installer Function: PFI_StrStr --- 4227,4231 ---- !macroend ! !ifndef ADDSSL & DBSTATUS & IMAPUPDATER & MSGCAPTURE & RUNSQLITE & STOP_POPFILE & TRANSLATOR #-------------------------------------------------------------------------- # Installer Function: PFI_StrStr |
|
From: Brian S. <xue...@us...> - 2006-02-06 14:46:46
|
Update of /cvsroot/popfile/windows/add-ons In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13118 Modified Files: Tag: b0_22_2 addssl.nsi Log Message: Update the link to the NSIS wiki for the UnTGZ plugin. Disambiguate the comment about the applicability of the built-in SSL files. Mention the new multi-language support, the additional compiler warnings about PFI_LANG_NSISDL_PLURAL and how to interpret them. Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2 Index: addssl.nsi =================================================================== RCS file: /cvsroot/popfile/windows/add-ons/addssl.nsi,v retrieving revision 1.3.4.1 retrieving revision 1.3.4.2 diff -C2 -d -r1.3.4.1 -r1.3.4.2 *** addssl.nsi 2 Oct 2005 14:58:45 -0000 1.3.4.1 --- addssl.nsi 6 Feb 2006 14:46:36 -0000 1.3.4.2 *************** *** 24,35 **** # installer download and install the same SSL support files. # ! # Copyright (c) 2004-2005 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 24,34 ---- # installer download and install the same SSL support files. # ! # Copyright (c) 2004-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 71,75 **** ; ; The 'NSIS Wiki' page for the 'untgz' plugin (description, example and download links): ! ; http://nsis.sourceforge.net/wiki/UnTGZ ; ; Alternative download links can be found at the 'untgz' author's site: --- 70,74 ---- ; ; The 'NSIS Wiki' page for the 'untgz' plugin (description, example and download links): ! ; http://nsis.sourceforge.net/UnTGZ_plug-in ; ; Alternative download links can be found at the 'untgz' author's site: *************** *** 100,104 **** ; Winnipeg. ; ! ; The following local SSL files are compatible with POPFile 0.22.x: ; ; (1) ssl-0.22.x\IO-Socket-SSL.tar.gz (dated 01-Aug-2003) --- 99,103 ---- ; Winnipeg. ; ! ; The following local SSL files are compatible with POPFile 0.22.0, 0.22.1 and 0.22.2: ; ; (1) ssl-0.22.x\IO-Socket-SSL.tar.gz (dated 01-Aug-2003) *************** *** 121,124 **** --- 120,139 ---- #-------------------------------------------------------------------------- + # Language Support NSIS Compiler Warnings + #-------------------------------------------------------------------------- + # + # Expect 3 compiler warnings, all related to standard NSIS language files which are + # out-of-date (if the default multi-language 'SSL Setup' wizard is compiled). + # + # There may be further warnings which mention "PFI_LANG_NSISDL_PLURAL" is not set in one or + # more language tables. The '..\pfi-languages.nsh' file lists all of the language table codes + # used by the POPFile installer and other NSIS-based utilities. + # + # NOTE: The language selection menu order used in this script assumes that the NSIS MUI + # 'Japanese.nsh' language file has been patched to use 'Nihongo' instead of 'Japanese' + # [see 'SMALL NSIS PATCH REQUIRED' in the '..\pfi-languages.nsh' file] + #-------------------------------------------------------------------------- + + #-------------------------------------------------------------------------- # Compile-time command-line switches (used by 'makensis.exe') #-------------------------------------------------------------------------- *************** *** 166,170 **** Name "POPFile SSL Setup" ! !define C_PFI_VERSION "0.1.1" ; Mention the wizard's version number in the window title --- 181,185 ---- Name "POPFile SSL Setup" ! !define C_PFI_VERSION "0.1.5" ; Mention the wizard's version number in the window title *************** *** 233,237 **** VIAddVersionKey "Comments" "POPFile Homepage: http://getpopfile.org/" VIAddVersionKey "CompanyName" "The POPFile Project" ! VIAddVersionKey "LegalCopyright" "Copyright (c) 2005 John Graham-Cumming" VIAddVersionKey "FileDescription" "Installs SSL support for POPFile 0.22 or later" VIAddVersionKey "FileVersion" "${C_PFI_VERSION}" --- 248,252 ---- VIAddVersionKey "Comments" "POPFile Homepage: http://getpopfile.org/" VIAddVersionKey "CompanyName" "The POPFile Project" ! VIAddVersionKey "LegalCopyright" "Copyright (c) 2006 John Graham-Cumming" VIAddVersionKey "FileDescription" "Installs SSL support for POPFile 0.22 or later" VIAddVersionKey "FileVersion" "${C_PFI_VERSION}" |
|
From: Brian S. <xue...@us...> - 2006-02-06 14:22:54
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3299 Modified Files: Tag: b0_22_2 pfi-languages.nsh Log Message: List the language ID codes to make it easier to interpret the NSIS compiler warnings about missing/undefined language strings. Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2 Index: pfi-languages.nsh =================================================================== RCS file: /cvsroot/popfile/windows/pfi-languages.nsh,v retrieving revision 1.2.6.3 retrieving revision 1.2.6.4 diff -C2 -d -r1.2.6.3 -r1.2.6.4 *** pfi-languages.nsh 19 Dec 2005 11:45:36 -0000 1.2.6.3 --- pfi-languages.nsh 6 Feb 2006 14:22:39 -0000 1.2.6.4 *************** *** 10,14 **** # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 10,14 ---- # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # *************** *** 113,142 **** ; Currently a subset of the languages supported by NSIS MUI 1.70 (using the NSIS names) ! !insertmacro PFI_LANG_LOAD "Arabic" ! !insertmacro PFI_LANG_LOAD "Bulgarian" ! !insertmacro PFI_LANG_LOAD "Catalan" ! !insertmacro PFI_LANG_LOAD "SimpChinese" ! !insertmacro PFI_LANG_LOAD "TradChinese" ! !insertmacro PFI_LANG_LOAD "Czech" ! !insertmacro PFI_LANG_LOAD "Danish" ! !insertmacro PFI_LANG_LOAD "German" ! !insertmacro PFI_LANG_LOAD "Spanish" ! !insertmacro PFI_LANG_LOAD "French" ! !insertmacro PFI_LANG_LOAD "Greek" ! !insertmacro PFI_LANG_LOAD "Italian" ! !insertmacro PFI_LANG_LOAD "Korean" ! !insertmacro PFI_LANG_LOAD "Hungarian" ! !insertmacro PFI_LANG_LOAD "Dutch" ! !insertmacro PFI_LANG_LOAD "Japanese" ! !insertmacro PFI_LANG_LOAD "Norwegian" ! !insertmacro PFI_LANG_LOAD "Polish" ! !insertmacro PFI_LANG_LOAD "Portuguese" ! !insertmacro PFI_LANG_LOAD "PortugueseBR" ! !insertmacro PFI_LANG_LOAD "Russian" ! !insertmacro PFI_LANG_LOAD "Slovak" ! !insertmacro PFI_LANG_LOAD "Finnish" ! !insertmacro PFI_LANG_LOAD "Swedish" ! !insertmacro PFI_LANG_LOAD "Turkish" ! !insertmacro PFI_LANG_LOAD "Ukrainian" #-------------------------------------------------------------------------- --- 113,149 ---- ; Currently a subset of the languages supported by NSIS MUI 1.70 (using the NSIS names) ! ; NSIS 2.0 compiler error messages use language ID codes when referring to problems with ! ; language strings, e.g. ! ; ! ; LangString "PFI_LANG_NSISDL_PLURAL" is not set in language table of language 1041 ! ; ! ; Note: 'English' is 'Language 1033' ! ! !insertmacro PFI_LANG_LOAD "Arabic" ; Language 1025 ! !insertmacro PFI_LANG_LOAD "Bulgarian" ; Language 1026 ! !insertmacro PFI_LANG_LOAD "Catalan" ; Language 1027 ! !insertmacro PFI_LANG_LOAD "SimpChinese" ; Language 2052 ! !insertmacro PFI_LANG_LOAD "TradChinese" ; Language 1028 ! !insertmacro PFI_LANG_LOAD "Czech" ; Language 1029 ! !insertmacro PFI_LANG_LOAD "Danish" ; Language 1030 ! !insertmacro PFI_LANG_LOAD "German" ; Language 1031 ! !insertmacro PFI_LANG_LOAD "Spanish" ; Language 1034 ! !insertmacro PFI_LANG_LOAD "French" ; Language 1036 ! !insertmacro PFI_LANG_LOAD "Greek" ; Language 1032 ! !insertmacro PFI_LANG_LOAD "Italian" ; Language 1040 ! !insertmacro PFI_LANG_LOAD "Korean" ; Language 1042 ! !insertmacro PFI_LANG_LOAD "Hungarian" ; Language 1038 ! !insertmacro PFI_LANG_LOAD "Dutch" ; Language 1043 ! !insertmacro PFI_LANG_LOAD "Japanese" ; Language 1041 ! !insertmacro PFI_LANG_LOAD "Norwegian" ; Language 1044 ! !insertmacro PFI_LANG_LOAD "Polish" ; Language 1045 ! !insertmacro PFI_LANG_LOAD "Portuguese" ; Language 2070 ! !insertmacro PFI_LANG_LOAD "PortugueseBR" ; Language 1046 ! !insertmacro PFI_LANG_LOAD "Russian" ; Language 1049 ! !insertmacro PFI_LANG_LOAD "Slovak" ; Language 1051 ! !insertmacro PFI_LANG_LOAD "Finnish" ; Language 1035 ! !insertmacro PFI_LANG_LOAD "Swedish" ; Language 1053 ! !insertmacro PFI_LANG_LOAD "Turkish" ; Language 1055 ! !insertmacro PFI_LANG_LOAD "Ukrainian" ; Language 1058 #-------------------------------------------------------------------------- |
|
From: Brian S. <xue...@us...> - 2006-02-06 14:19:04
|
Update of /cvsroot/popfile/windows/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1117 Modified Files: Tag: b0_22_2 pfidbstatus.nsi Log Message: Add the size of the SQLite database to the report (use a NSIS plugin to find the size of the file in KB). Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2 Index: pfidbstatus.nsi =================================================================== RCS file: /cvsroot/popfile/windows/test/pfidbstatus.nsi,v retrieving revision 1.3.2.2 retrieving revision 1.3.2.3 diff -C2 -d -r1.3.2.2 -r1.3.2.3 *** pfidbstatus.nsi 13 Sep 2005 19:05:32 -0000 1.3.2.2 --- pfidbstatus.nsi 6 Feb 2006 14:18:44 -0000 1.3.2.3 *************** *** 12,23 **** # sqlite.exe version number before trying to execute any SQL. # ! # Copyright (c) 2005 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,22 ---- # sqlite.exe version number before trying to execute any SQL. # ! # Copyright (c) 2005-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 31,34 **** --- 30,76 ---- #------------------------------------------------------------------------------------------- + ; This version of the script has been tested with the "NSIS 2.0" compiler (final), + ; released 7 February 2004, with no "official" NSIS patches applied. This compiler + ; can be downloaded from http://prdownloads.sourceforge.net/nsis/nsis20.exe?download + + !define ${NSIS_VERSION}_found + + !ifndef v2.0_found + !warning \ + "$\r$\n\ + $\r$\n*** NSIS COMPILER WARNING:\ + $\r$\n***\ + $\r$\n*** This script has only been tested using the NSIS 2.0 compiler\ + $\r$\n*** and may not work properly with this NSIS ${NSIS_VERSION} compiler\ + $\r$\n***\ + $\r$\n*** The resulting 'installer' program should be tested carefully!\ + $\r$\n$\r$\n" + !endif + + !undef ${NSIS_VERSION}_found + + ;------------------------------------------------ + ; This script requires the 'GetSize' NSIS plugin + ;------------------------------------------------ + + ; This script uses a special NSIS plugin (GetSize) to find the size of the SQLite database. + ; + ; 'GetSize' plugin thread in the "NSIS Discussion" forum: + ; http://forums.winamp.com/showthread.php?threadid=224452 + ; + ; 'GetSize' plugin download link (from the above forum thread): + ; http://forums.winamp.com/attachment.php?postid=1756112 + ; + ; To compile this script, copy the 'getsize.dll' file to the standard NSIS plugins folder + ; (${NSISDIR}\Plugins\). The 'GetSize' source and example files can be unzipped to the + ; ${NSISDIR}\Contrib\GetSize\ folder if you wish, but this step is entirely optional. + ; + ; Tested with version 1.0 of the 'GetSize' plugin. + ; + ; The 'GetSize' plugin has not been added to the NSIS Wiki. The plugin's author decided + ; to include its functions in a much larger general purpose plugin (Locate). This enhanced + ; plugin (it is more than 3 times the size of 'GetSize') has been added to the NSIS Wiki: + ; http://nsis.sourceforge.net/Locate_plugin + #-------------------------------------------------------------------------- # Compile-time command-line switches (used by 'makensis.exe') *************** *** 93,115 **** #------------------------------------------------------------------------------------------- ! ; This version of the script has been tested with the "NSIS 2.0" compiler (final), ! ; released 7 February 2004, with no "official" NSIS patches applied. This compiler ! ; can be downloaded from http://prdownloads.sourceforge.net/nsis/nsis20.exe?download ! ! !define ${NSIS_VERSION}_found ! ! !ifndef v2.0_found ! !warning \ ! "$\r$\n\ ! $\r$\n*** NSIS COMPILER WARNING:\ ! $\r$\n***\ ! $\r$\n*** This script has only been tested using the NSIS 2.0 compiler\ ! $\r$\n*** and may not work properly with this NSIS ${NSIS_VERSION} compiler\ ! $\r$\n***\ ! $\r$\n*** The resulting 'installer' program should be tested carefully!\ ! $\r$\n$\r$\n" ! !endif ! !undef ${NSIS_VERSION}_found ;-------------------------------------------------------------------------- --- 135,143 ---- #------------------------------------------------------------------------------------------- ! ;-------------------------------------------------------------------------- ! ; Select LZMA compression (to generate smallest EXE file) ! ;-------------------------------------------------------------------------- ! SetCompressor lzma ;-------------------------------------------------------------------------- *************** *** 129,133 **** ;-------------------------------------------------------------------------- ! !define C_VERSION "0.0.4" ; see 'VIProductVersion' comment below for format details !define C_OUTFILE "pfidbstatus.exe" --- 157,161 ---- ;-------------------------------------------------------------------------- ! !define C_VERSION "0.0.8" ; see 'VIProductVersion' comment below for format details !define C_OUTFILE "pfidbstatus.exe" *************** *** 178,182 **** VIAddVersionKey "Comments" "POPFile Homepage: http://getpopfile.org/" VIAddVersionKey "CompanyName" "The POPFile Project" ! VIAddVersionKey "LegalCopyright" "Copyright (c) 2005 John Graham-Cumming" VIAddVersionKey "FileDescription" "Check the status of POPFile's SQLite database" VIAddVersionKey "FileVersion" "${C_VERSION}" --- 206,210 ---- VIAddVersionKey "Comments" "POPFile Homepage: http://getpopfile.org/" VIAddVersionKey "CompanyName" "The POPFile Project" ! VIAddVersionKey "LegalCopyright" "Copyright (c) 2006 John Graham-Cumming" VIAddVersionKey "FileDescription" "Check the status of POPFile's SQLite database" VIAddVersionKey "FileVersion" "${C_VERSION}" *************** *** 206,209 **** --- 234,238 ---- Var G_DBFORMAT ; SQLite database format ('2.x', '3.x' or an error string) Var G_DBSCHEMA ; SQLite database schema ( a number like '12' or an error string) + Var G_DBSIZE ; SQLite database file size (in KB) Var G_PLS_FIELD_1 ; used to customize language strings *************** *** 364,368 **** !insertmacro DBS_TEXT DBS_LANG_DBFORMAT "Database is in SQLite $G_DBFORMAT format" ! !insertmacro DBS_TEXT DBS_LANG_DBFORMATSCHEMA "$(DBS_LANG_DBFORMAT) and uses POPFile schema version $G_DBSCHEMA" !insertmacro DBS_TEXT DBS_LANG_DBSCHEMAERROR "SQLite error detected when extracting POPFile schema version:" --- 393,398 ---- !insertmacro DBS_TEXT DBS_LANG_DBFORMAT "Database is in SQLite $G_DBFORMAT format" ! !insertmacro DBS_TEXT DBS_LANG_DBSCHEMA ", uses schema version $G_DBSCHEMA" ! !insertmacro DBS_TEXT DBS_LANG_DBSIZE " and its size is $G_DBSIZE KB" !insertmacro DBS_TEXT DBS_LANG_DBSCHEMAERROR "SQLite error detected when extracting POPFile schema version:" *************** *** 402,405 **** --- 432,437 ---- !define L_TEMP $R9 + Push ${L_TEMP} + SetDetailsPrint textonly DetailPrint "$(DBS_LANG_RIGHTCLICK)" *************** *** 411,418 **** DetailPrint "" ! ClearErrors ! UserInfo::GetName ! IfErrors default_name ! Pop $G_WINUSERNAME StrCmp $G_WINUSERNAME "" 0 check_input --- 443,450 ---- DetailPrint "" ! ClearErrors ! UserInfo::GetName ! IfErrors default_name ! Pop $G_WINUSERNAME StrCmp $G_WINUSERNAME "" 0 check_input *************** *** 591,596 **** --- 623,639 ---- continue: + StrCpy $G_PLS_FIELD_2 $G_DATABASE StrCpy $G_DATABASE "$G_PLS_FIELD_1\$G_DATABASE" IfFileExists "$G_DATABASE\*.*" dir_not_file + Push $0 + Push $1 + Push $2 + getsize::GetSize "$G_PLS_FIELD_1" "/M=$G_PLS_FIELD_2 /G=0 /S=Kb" .r0 .r1 .r2 + Push $0 + Call InsertThousandSeparators + Pop $G_DBSIZE + Pop $2 + Pop $1 + Pop $0 DetailPrint "" DetailPrint "$(DBS_LANG_CHECKTHISONE)" *************** *** 700,704 **** StrCpy $G_DBSCHEMA "($G_DBSCHEMA)" DetailPrint "" ! DetailPrint "$(DBS_LANG_DBFORMAT)" DetailPrint "" DetailPrint "$(DBS_LANG_DBSCHEMAERROR)" --- 743,747 ---- StrCpy $G_DBSCHEMA "($G_DBSCHEMA)" DetailPrint "" ! DetailPrint "$(DBS_LANG_DBFORMAT)$(DBS_LANG_DBSIZE)" DetailPrint "" DetailPrint "$(DBS_LANG_DBSCHEMAERROR)" *************** *** 708,712 **** schema_ok: DetailPrint "" ! DetailPrint "$(DBS_LANG_DBFORMATSCHEMA)" check_integrity: --- 751,755 ---- schema_ok: DetailPrint "" ! DetailPrint "$(DBS_LANG_DBFORMAT)$(DBS_LANG_DBSCHEMA)$(DBS_LANG_DBSIZE)" check_integrity: *************** *** 770,773 **** --- 813,818 ---- Call HideFinalTimestamp + POP ${L_TEMP} + !undef L_TEMP *************** *** 775,778 **** --- 820,926 ---- #-------------------------------------------------------------------------- + # Installer Function: InsertThousandSeparators + # + # When large integers are displayed they can be hard to read (eg 1234567). This function + # inserts one or more "thousand" separators to make large integers easier to read + # (eg 1,234,567). + # + # If the input value isn't an unsigned decimal integer then the output string equals the input. + # + # This function uses the target system's OS setting for the "thousand" separator. This is the + # character (or characters) used to separate groups of digits to the left of the decimal point. + # + # Input: + # (top of stack) - input + # + # Output: + # (top of stack) - input value with separators inserted if appropriate + # + # Usage: + # Push "1234567" + # Call InsertThousandSeparators + # Pop $R0 ; $R0 will be "1,234,567" + # ; (assuming the 'English' setting for the "thousand" separator) + # + # Push "1234.567" + # Call InsertThousandSeparators + # Pop $R0 ; $R0 will be "1234.567" + # ; (no changes made because input contains a decimal point) + #-------------------------------------------------------------------------- + + Function InsertThousandSeparators + + !define L_INPUT $R9 ; the input string + !define L_RESULT $R8 ; the output string + + !define L_TEMP $1 ; temp variable (also used as .r1 in 'system' call) + !define L_COMMA $0 ; target system's "thousand" separator (used as .r0 in 'system' call) + + Exch ${L_INPUT} + Push ${L_RESULT} + Push ${L_TEMP} + Push ${L_COMMA} + + Push ${L_INPUT} + Call PFI_StrCheckDecimal + Pop ${L_TEMP} + StrCmp ${L_TEMP} "" no_commas + + ; Use the target system's "thousand" separator (this is ',' when 'English' locale selected) + + !define LOCALE_SYSTEM_DEFAULT 0x400 + !define LOCALE_STHOUSAND 0xF + !define MAX_PATH 260 ; upper limit for the length of the separator + + StrCpy ${L_COMMA} "" + + System::Call "kernel32::GetLocaleInfoA(i ${LOCALE_SYSTEM_DEFAULT}, i ${LOCALE_STHOUSAND}, t .r0, i ${MAX_PATH}) i r1" + + ; If the 'system' call returns an empty string use the default English separator + ; (or should we just use the empty string in case that is what is really required here?) + + StrCmp ${L_COMMA} "" 0 got_separator + StrCpy ${L_COMMA} "," + + got_separator: + + ; Input is an unsigned decimal integer (i.e. it contains only the characters 0 to 9) + + StrCpy ${L_RESULT} "" + + loop: + StrLen ${L_TEMP} ${L_INPUT} + IntCmp ${L_TEMP} 3 done done + StrCpy ${L_TEMP} ${L_INPUT} 3 -3 + StrCmp ${L_RESULT} "" first_group + StrCpy ${L_RESULT} ${L_TEMP}${L_COMMA}${L_RESULT} + + next_group: + StrCpy ${L_INPUT} ${L_INPUT} -3 + Goto loop + + first_group: + StrCpy ${L_RESULT} ${L_TEMP} + Goto next_group + + done: + StrCmp ${L_RESULT} "" no_commas + StrCpy ${L_INPUT} ${L_INPUT}${L_COMMA}${L_RESULT} + + no_commas: + Pop ${L_COMMA} + Pop ${L_TEMP} + Pop ${L_RESULT} + Exch ${L_INPUT} + + !undef L_INPUT + !undef L_RESULT + + !undef L_TEMP + !undef L_COMMA + + FunctionEnd + + #-------------------------------------------------------------------------- # Functions used to manipulate the contents of the details view #-------------------------------------------------------------------------- |
|
From: Brian S. <xue...@us...> - 2006-02-06 14:18:16
|
Update of /cvsroot/popfile/windows/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv368 Modified Files: Tag: b0_22_2 pfidiag.nsi Log Message: Update the link to the NSIS wiki for the ShellLink plugin. Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2 Index: pfidiag.nsi =================================================================== RCS file: /cvsroot/popfile/windows/test/pfidiag.nsi,v retrieving revision 1.8.4.2 retrieving revision 1.8.4.3 diff -C2 -d -r1.8.4.2 -r1.8.4.3 *** pfidiag.nsi 22 Sep 2005 19:35:03 -0000 1.8.4.2 --- pfidiag.nsi 6 Feb 2006 14:17:53 -0000 1.8.4.3 *************** *** 5,16 **** # by the Windows installer for POPFile v0.21.0 (or later). # ! # Copyright (c) 2004-2005 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 5,15 ---- # by the Windows installer for POPFile v0.21.0 (or later). # ! # Copyright (c) 2004-2006 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 54,58 **** ; ; The 'NSIS Wiki' page for the 'ShellLink' plugin (description, example and download links): ! ; http://nsis.sourceforge.net/wiki/ShellLink_plugin ; ; To compile this script, copy the 'ShellLink.dll' file to the standard NSIS plugins folder --- 53,57 ---- ; ; The 'NSIS Wiki' page for the 'ShellLink' plugin (description, example and download links): ! ; http://nsis.sourceforge.net/ShellLink_plugin ; ; To compile this script, copy the 'ShellLink.dll' file to the standard NSIS plugins folder *************** *** 100,108 **** #-------------------------------------------------------------------------- ;-------------------------------------------------------------------------- ; POPFile constants have been given names beginning with 'C_' (eg C_README) ;-------------------------------------------------------------------------- ! !define C_VERSION "0.0.57" !define C_OUTFILE "pfidiag.exe" --- 99,108 ---- #-------------------------------------------------------------------------- + ;-------------------------------------------------------------------------- ; POPFile constants have been given names beginning with 'C_' (eg C_README) ;-------------------------------------------------------------------------- ! !define C_VERSION "0.0.60" !define C_OUTFILE "pfidiag.exe" *************** *** 148,152 **** VIAddVersionKey "Comments" "POPFile Homepage: http://getpopfile.org/" VIAddVersionKey "CompanyName" "The POPFile Project" ! VIAddVersionKey "LegalCopyright" "Copyright (c) 2005 John Graham-Cumming" VIAddVersionKey "FileDescription" "PFI Diagnostic Utility" VIAddVersionKey "FileVersion" "${C_VERSION}" --- 148,152 ---- VIAddVersionKey "Comments" "POPFile Homepage: http://getpopfile.org/" VIAddVersionKey "CompanyName" "The POPFile Project" ! VIAddVersionKey "LegalCopyright" "Copyright (c) 2006 John Graham-Cumming" VIAddVersionKey "FileDescription" "PFI Diagnostic Utility" VIAddVersionKey "FileVersion" "${C_VERSION}" *************** *** 477,483 **** ; do not support different account types, we treat this error as if user has 'Admin' rights. ! ClearErrors ! UserInfo::GetName ! IfErrors 0 got_name ; Assume Win9x system, so user has 'Admin' rights --- 477,483 ---- ; do not support different account types, we treat this error as if user has 'Admin' rights. ! ClearErrors ! UserInfo::GetName ! IfErrors 0 got_name ; Assume Win9x system, so user has 'Admin' rights *************** *** 488,492 **** got_name: ! Pop $G_WINUSERNAME StrCmp $G_WINUSERNAME "" 0 get_usertype StrCpy $G_WINUSERNAME "UnknownUser" --- 488,492 ---- got_name: ! Pop $G_WINUSERNAME StrCmp $G_WINUSERNAME "" 0 get_usertype StrCpy $G_WINUSERNAME "UnknownUser" *************** *** 494,498 **** get_usertype: UserInfo::GetAccountType ! Pop ${L_WINUSERTYPE} StrCmp ${L_WINUSERTYPE} "Admin" section_end StrCmp ${L_WINUSERTYPE} "Power" section_end --- 494,498 ---- get_usertype: UserInfo::GetAccountType ! Pop ${L_WINUSERTYPE} StrCmp ${L_WINUSERTYPE} "Admin" section_end StrCmp ${L_WINUSERTYPE} "Power" section_end *************** *** 1427,1434 **** IfFileExists "${L_LNK_FOLDER}\${L_LNK_NAME}\*.*" look_again IntOp ${L_LNK_TOTAL} ${L_LNK_TOTAL} + 1 ! ShellLink::GetShortCutTarget "${L_LNK_FOLDER}\${L_LNK_NAME}" ! Pop ${L_SHORTCUT_TARGET} ! ShellLink::GetShortCutArgs "${L_LNK_FOLDER}\${L_LNK_NAME}" ! Pop ${L_SHORTCUT_ARGS} Push ${L_SHORTCUT_TARGET} --- 1427,1434 ---- IfFileExists "${L_LNK_FOLDER}\${L_LNK_NAME}\*.*" look_again IntOp ${L_LNK_TOTAL} ${L_LNK_TOTAL} + 1 ! ShellLink::GetShortCutTarget "${L_LNK_FOLDER}\${L_LNK_NAME}" ! Pop ${L_SHORTCUT_TARGET} ! ShellLink::GetShortCutArgs "${L_LNK_FOLDER}\${L_LNK_NAME}" ! Pop ${L_SHORTCUT_ARGS} Push ${L_SHORTCUT_TARGET} *************** *** 1445,1450 **** show_details: IntOp ${L_POPFILE_TOTAL} ${L_POPFILE_TOTAL} + 1 ! ShellLink::GetShortCutWorkingDirectory "${L_LNK_FOLDER}\${L_LNK_NAME}" ! Pop ${L_SHORTCUT_START_IN} DetailPrint "" DetailPrint "Shortcut name = < ${L_LNK_NAME} >" --- 1445,1450 ---- show_details: IntOp ${L_POPFILE_TOTAL} ${L_POPFILE_TOTAL} + 1 ! ShellLink::GetShortCutWorkingDirectory "${L_LNK_FOLDER}\${L_LNK_NAME}" ! Pop ${L_SHORTCUT_START_IN} DetailPrint "" DetailPrint "Shortcut name = < ${L_LNK_NAME} >" |
|
From: Brian S. <xue...@us...> - 2006-02-06 14:16:44
|
Update of /cvsroot/popfile/windows/languages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30466 Modified Files: Tag: b0_22_2 Portuguese-pfi.nsh Russian-pfi.nsh SimpChinese-pfi.nsh Slovak-pfi.nsh Spanish-pfi.nsh Swedish-pfi.nsh TradChinese-pfi.nsh Turkish-pfi.nsh Ukrainian-pfi.nsh Log Message: Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2 Index: Swedish-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Swedish-pfi.nsh,v retrieving revision 1.43.4.2 retrieving revision 1.43.4.3 diff -C2 -d -r1.43.4.2 -r1.43.4.3 *** Swedish-pfi.nsh 2 Oct 2005 14:57:14 -0000 1.43.4.2 --- Swedish-pfi.nsh 6 Feb 2006 14:16:32 -0000 1.43.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Klicka Nästa för att fortsätta" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Klicka Nästa för att fortsätta" Index: TradChinese-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/TradChinese-pfi.nsh,v retrieving revision 1.44.4.2 retrieving revision 1.44.4.3 diff -C2 -d -r1.44.4.2 -r1.44.4.3 *** TradChinese-pfi.nsh 2 Oct 2005 14:57:14 -0000 1.44.4.2 --- TradChinese-pfi.nsh 6 Feb 2006 14:16:32 -0000 1.44.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Click Next to continue" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Click Next to continue" Index: Spanish-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Spanish-pfi.nsh,v retrieving revision 1.48.4.2 retrieving revision 1.48.4.3 diff -C2 -d -r1.48.4.2 -r1.48.4.3 *** Spanish-pfi.nsh 2 Oct 2005 14:57:14 -0000 1.48.4.2 --- Spanish-pfi.nsh 6 Feb 2006 14:16:32 -0000 1.48.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Instalando archivos de lenguaje para IU de POPFile..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Presione Siguiente para continuar" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Instalando archivos de lenguaje para IU de POPFile..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Presione Siguiente para continuar" Index: SimpChinese-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/SimpChinese-pfi.nsh,v retrieving revision 1.43.4.2 retrieving revision 1.43.4.3 diff -C2 -d -r1.43.4.2 -r1.43.4.3 *** SimpChinese-pfi.nsh 2 Oct 2005 14:57:14 -0000 1.43.4.2 --- SimpChinese-pfi.nsh 6 Feb 2006 14:16:32 -0000 1.43.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Click Next to continue" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Click Next to continue" Index: Portuguese-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Portuguese-pfi.nsh,v retrieving revision 1.43.4.2 retrieving revision 1.43.4.3 diff -C2 -d -r1.43.4.2 -r1.43.4.3 *** Portuguese-pfi.nsh 2 Oct 2005 14:53:07 -0000 1.43.4.2 --- Portuguese-pfi.nsh 6 Feb 2006 14:16:32 -0000 1.43.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Clique em Seguinte para continuar" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Clique em Seguinte para continuar" Index: Slovak-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Slovak-pfi.nsh,v retrieving revision 1.43.4.2 retrieving revision 1.43.4.3 diff -C2 -d -r1.43.4.2 -r1.43.4.3 *** Slovak-pfi.nsh 2 Oct 2005 14:57:14 -0000 1.43.4.2 --- Slovak-pfi.nsh 6 Feb 2006 14:16:32 -0000 1.43.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Kliknite na Ïalej pre pokraèovanie" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Kliknite na Ïalej pre pokraèovanie" Index: Russian-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Russian-pfi.nsh,v retrieving revision 1.43.4.2 retrieving revision 1.43.4.3 diff -C2 -d -r1.43.4.2 -r1.43.4.3 *** Russian-pfi.nsh 2 Oct 2005 14:57:14 -0000 1.43.4.2 --- Russian-pfi.nsh 6 Feb 2006 14:16:32 -0000 1.43.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Íàæìèòå Äàëåå äëÿ ïðîäîëæåíèÿ óñòàíîâêè." --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Íàæìèòå Äàëåå äëÿ ïðîäîëæåíèÿ óñòàíîâêè." Index: Ukrainian-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Ukrainian-pfi.nsh,v retrieving revision 1.43.4.2 retrieving revision 1.43.4.3 diff -C2 -d -r1.43.4.2 -r1.43.4.3 *** Ukrainian-pfi.nsh 2 Oct 2005 14:57:14 -0000 1.43.4.2 --- Ukrainian-pfi.nsh 6 Feb 2006 14:16:32 -0000 1.43.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Íàòèñí³òü Äàë³ äëÿ ïðîäîâæåííÿ" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Íàòèñí³òü Äàë³ äëÿ ïðîäîâæåííÿ" Index: Turkish-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Turkish-pfi.nsh,v retrieving revision 1.32.4.2 retrieving revision 1.32.4.3 diff -C2 -d -r1.32.4.2 -r1.32.4.3 *** Turkish-pfi.nsh 2 Oct 2005 14:57:14 -0000 1.32.4.2 --- Turkish-pfi.nsh 6 Feb 2006 14:16:32 -0000 1.32.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Devam'a tiklayin." --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Devam'a tiklayin." |
|
From: Brian S. <xue...@us...> - 2006-02-06 14:11:52
|
Update of /cvsroot/popfile/windows/languages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28354 Modified Files: Tag: b0_22_2 French-pfi.nsh German-pfi.nsh Greek-pfi.nsh Hungarian-pfi.nsh Italian-pfi.nsh Japanese-pfi.nsh Korean-pfi.nsh Norwegian-pfi.nsh Polish-pfi.nsh Log Message: Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2 Index: French-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/French-pfi.nsh,v retrieving revision 1.45.4.2 retrieving revision 1.45.4.3 diff -C2 -d -r1.45.4.2 -r1.45.4.3 *** French-pfi.nsh 2 Oct 2005 14:48:51 -0000 1.45.4.2 --- French-pfi.nsh 6 Feb 2006 14:11:39 -0000 1.45.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installation des fichiers de langue de l'interface de POPFile..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Cliquez sur 'Suivant' pour continuer" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installation des fichiers de langue de l'interface de POPFile..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Cliquez sur 'Suivant' pour continuer" Index: Japanese-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Japanese-pfi.nsh,v retrieving revision 1.54.4.3 retrieving revision 1.54.4.4 diff -C2 -d -r1.54.4.3 -r1.54.4.4 *** Japanese-pfi.nsh 11 Oct 2005 15:10:07 -0000 1.54.4.3 --- Japanese-pfi.nsh 6 Feb 2006 14:11:39 -0000 1.54.4.4 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "POPFile UI ¾êt@CðCXg[..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "uÖvðNbNµÄ±sµÄº³¢B" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "POPFile UI ¾êt@CðCXg[..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "uÖvðNbNµÄ±sµÄº³¢B" Index: German-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/German-pfi.nsh,v retrieving revision 1.48.4.2 retrieving revision 1.48.4.3 diff -C2 -d -r1.48.4.2 -r1.48.4.3 *** German-pfi.nsh 2 Oct 2005 14:53:07 -0000 1.48.4.2 --- German-pfi.nsh 6 Feb 2006 14:11:39 -0000 1.48.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 159,163 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installiere Sprachdateien..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Klicken Sie auf Weiter um fortzufahren" --- 158,162 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installiere Sprachdateien..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Klicken Sie auf Weiter um fortzufahren" Index: Norwegian-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Norwegian-pfi.nsh,v retrieving revision 1.29.4.2 retrieving revision 1.29.4.3 diff -C2 -d -r1.29.4.2 -r1.29.4.3 *** Norwegian-pfi.nsh 2 Oct 2005 14:53:07 -0000 1.29.4.2 --- Norwegian-pfi.nsh 6 Feb 2006 14:11:39 -0000 1.29.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Trykk Neste for å begyne" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Trykk Neste for å begyne" Index: Korean-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Korean-pfi.nsh,v retrieving revision 1.44.4.2 retrieving revision 1.44.4.3 diff -C2 -d -r1.44.4.2 -r1.44.4.3 *** Korean-pfi.nsh 2 Oct 2005 14:53:07 -0000 1.44.4.2 --- Korean-pfi.nsh 6 Feb 2006 14:11:39 -0000 1.44.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "POPFile UI ¾ð¾î ÆÄÀÏ ¼³Ä¡ Áß..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "°è¼Ó ÁøÇàÇϱâ À§ÇØ '´ÙÀ½'À» ´©¸£½Ê½Ã¿À." --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "POPFile UI ¾ð¾î ÆÄÀÏ ¼³Ä¡ Áß..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "°è¼Ó ÁøÇàÇϱâ À§ÇØ '´ÙÀ½'À» ´©¸£½Ê½Ã¿À." Index: Italian-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Italian-pfi.nsh,v retrieving revision 1.33.4.2 retrieving revision 1.33.4.3 diff -C2 -d -r1.33.4.2 -r1.33.4.3 *** Italian-pfi.nsh 2 Oct 2005 14:53:07 -0000 1.33.4.2 --- Italian-pfi.nsh 6 Feb 2006 14:11:39 -0000 1.33.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Seleziona Seguente per continuare" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Seleziona Seguente per continuare" Index: Hungarian-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Hungarian-pfi.nsh,v retrieving revision 1.43.4.2 retrieving revision 1.43.4.3 diff -C2 -d -r1.43.4.2 -r1.43.4.3 *** Hungarian-pfi.nsh 2 Oct 2005 14:53:07 -0000 1.43.4.2 --- Hungarian-pfi.nsh 6 Feb 2006 14:11:39 -0000 1.43.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "A folytatáshoz nyomja meg a Tovább gombot" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "A folytatáshoz nyomja meg a Tovább gombot" Index: Polish-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Polish-pfi.nsh,v retrieving revision 1.36.4.2 retrieving revision 1.36.4.3 diff -C2 -d -r1.36.4.2 -r1.36.4.3 *** Polish-pfi.nsh 2 Oct 2005 14:53:07 -0000 1.36.4.2 --- Polish-pfi.nsh 6 Feb 2006 14:11:39 -0000 1.36.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Kliknij Dalej aby kontynuowaæ" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Kliknij Dalej aby kontynuowaæ" Index: Greek-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Greek-pfi.nsh,v retrieving revision 1.35.4.2 retrieving revision 1.35.4.3 diff -C2 -d -r1.35.4.2 -r1.35.4.3 *** Greek-pfi.nsh 2 Oct 2005 14:53:07 -0000 1.35.4.2 --- Greek-pfi.nsh 6 Feb 2006 14:11:39 -0000 1.35.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "ÊÜíôå êëéê óôï Åðüìåíï ãéá íá óõíå÷ßóåôå" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "ÊÜíôå êëéê óôï Åðüìåíï ãéá íá óõíå÷ßóåôå" |
|
From: Brian S. <xue...@us...> - 2006-02-06 14:07:51
|
Update of /cvsroot/popfile/windows/languages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26756 Modified Files: Tag: b0_22_2 Arabic-pfi.nsh Bulgarian-pfi.nsh Catalan-pfi.nsh Czech-pfi.nsh Danish-pfi.nsh Dutch-pfi.nsh English-pfi.nsh Finnish-pfi.nsh Log Message: Change GPL license to remove the option for the person using POPFile to license it under any version of the GPL other than v2 Index: Danish-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Danish-pfi.nsh,v retrieving revision 1.43.4.2 retrieving revision 1.43.4.3 diff -C2 -d -r1.43.4.2 -r1.43.4.3 *** Danish-pfi.nsh 2 Oct 2005 14:48:51 -0000 1.43.4.2 --- Danish-pfi.nsh 6 Feb 2006 14:07:25 -0000 1.43.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Tryk næste for at fortsætte" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Tryk næste for at fortsætte" Index: Czech-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Czech-pfi.nsh,v retrieving revision 1.38.4.2 retrieving revision 1.38.4.3 diff -C2 -d -r1.38.4.2 -r1.38.4.3 *** Czech-pfi.nsh 2 Oct 2005 14:48:51 -0000 1.38.4.2 --- Czech-pfi.nsh 6 Feb 2006 14:07:25 -0000 1.38.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Kliknìte na Dalí pro pokraèování" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Kliknìte na Dalí pro pokraèování" Index: English-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/English-pfi.nsh,v retrieving revision 1.45.4.2 retrieving revision 1.45.4.3 diff -C2 -d -r1.45.4.2 -r1.45.4.3 *** English-pfi.nsh 2 Oct 2005 14:48:51 -0000 1.45.4.2 --- English-pfi.nsh 6 Feb 2006 14:07:25 -0000 1.45.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 152,156 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Click Next to continue" --- 151,155 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Click Next to continue" Index: Catalan-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Catalan-pfi.nsh,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -C2 -d -r1.1.2.3 -r1.1.2.4 *** Catalan-pfi.nsh 2 Oct 2005 14:48:51 -0000 1.1.2.3 --- Catalan-pfi.nsh 6 Feb 2006 14:07:25 -0000 1.1.2.4 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Premi Següent per continuar" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Premi Següent per continuar" Index: Finnish-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Finnish-pfi.nsh,v retrieving revision 1.43.4.2 retrieving revision 1.43.4.3 diff -C2 -d -r1.43.4.2 -r1.43.4.3 *** Finnish-pfi.nsh 2 Oct 2005 14:48:51 -0000 1.43.4.2 --- Finnish-pfi.nsh 6 Feb 2006 14:07:25 -0000 1.43.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Klikkaa Seuraava jatkaaksesi" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Klikkaa Seuraava jatkaaksesi" Index: Dutch-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Dutch-pfi.nsh,v retrieving revision 1.43.4.2 retrieving revision 1.43.4.3 diff -C2 -d -r1.43.4.2 -r1.43.4.3 *** Dutch-pfi.nsh 2 Oct 2005 14:48:51 -0000 1.43.4.2 --- Dutch-pfi.nsh 6 Feb 2006 14:07:25 -0000 1.43.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Klik op Volgende om verder te gaan" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Klik op Volgende om verder te gaan" Index: Bulgarian-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Bulgarian-pfi.nsh,v retrieving revision 1.43.4.2 retrieving revision 1.43.4.3 diff -C2 -d -r1.43.4.2 -r1.43.4.3 *** Bulgarian-pfi.nsh 2 Oct 2005 14:48:51 -0000 1.43.4.2 --- Bulgarian-pfi.nsh 6 Feb 2006 14:07:25 -0000 1.43.4.3 *************** *** 8,19 **** # These strings are grouped according to the page/window and script where they are used # ! # Copyright (c) 2003-2004 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 8,18 ---- # These strings are grouped according to the page/window and script where they are used # ! # Copyright (c) 2003-2005 John Graham-Cumming # # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Íàòèñíåòå 'Íàïðåä', çà äà ïðîäúëæèòå." --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Íàòèñíåòå 'Íàïðåä', çà äà ïðîäúëæèòå." Index: Arabic-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Arabic-pfi.nsh,v retrieving revision 1.16.4.2 retrieving revision 1.16.4.3 diff -C2 -d -r1.16.4.2 -r1.16.4.3 *** Arabic-pfi.nsh 2 Oct 2005 14:48:51 -0000 1.16.4.2 --- Arabic-pfi.nsh 6 Feb 2006 14:07:25 -0000 1.16.4.3 *************** *** 12,19 **** # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, --- 12,18 ---- # This file is part of POPFile # ! # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as ! # published by the Free Software Foundation. # # POPFile is distributed in the hope that it will be useful, *************** *** 157,161 **** !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "ÊäÕíÈ ãáÝÇÊ ÇááÛÇÊ ÅÖÇÝíÉ..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "ÅÖÛØ ÇáÊÇáí ááãÊÇÈÚÉ" --- 156,160 ---- !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "ÊäÕíÈ ãáÝÇÊ ÇááÛÇÊ ÅÖÇÝíÉ..." ! ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "ÅÖÛØ ÇáÊÇáí ááãÊÇÈÚÉ" |