From: Brian S. <xue...@us...> - 2005-08-05 19:09:01
|
Update of /cvsroot/popfile/windows/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27580 Modified Files: pfidiag.nsi Log Message: Make it easier to maintain this utility by splitting the huge single 'section' into smaller ones and reducing the number of local variables. Index: pfidiag.nsi =================================================================== RCS file: /cvsroot/popfile/windows/test/pfidiag.nsi,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** pfidiag.nsi 5 Aug 2005 00:39:24 -0000 1.13 --- pfidiag.nsi 5 Aug 2005 19:08:53 -0000 1.14 *************** *** 45,48 **** --- 45,49 ---- !undef ${NSIS_VERSION}_found + ;------------------------------------------------ ; This script requires the 'ShellLink' NSIS plugin *************** *** 59,62 **** --- 60,64 ---- ; ${NSISDIR}\Contrib\ShellLink\ folder if you wish, but this step is entirely optional. [...1410 lines suppressed...] # specified folder and lists those that appear to start POPFile. # + # POPFile shortcuts are expected to use command-lines which include one of the following: + # + # (1) runpopfile.exe + # (2) popfile.exe + # (3) popfileb.exe + # (4) popfilef.exe + # (5) popfileib.exe + # (6) popfileif.exe + # (7) perl.exe popfile.pl + # (8) wperl.exe popfile.pl + # + # Additional command-line options may be supplied (to override some configuration settings). + # + # For simplicity this version of the function merely looks for the string "POPFile" in the + # shortcut's "target" command-line using a case-insensitive search. + # # Inputs: # (top of stack) - address of the folder containing the shortcuts to be analysed |