Glenn, I crown thee King of Regexps ! :) Is there any regexp in DQSD that you didn't build/enhance ?
> -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of > [EMAIL PROTECTED] > Sent: Wednesday, October 02, 2002 3:10 PM > To: [EMAIL PROTECTED] > Subject: [DQSD-CVS] dqsd ChangeLog.txt,1.129,1.130 > defer_tools.js,1.19,1.20 > > > View the DQSD CVS repository here: > http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/ > > Update of /cvsroot/dqsd/dqsd > In directory usw-pr-cvs1:/tmp/cvs-serv1223 > > Modified Files: > ChangeLog.txt defer_tools.js > Log Message: > Fixed parseArgs to not require spaces between comma-delimited > list of switches > > Index: ChangeLog.txt > =================================================================== > RCS file: /cvsroot/dqsd/dqsd/ChangeLog.txt,v > retrieving revision 1.129 > retrieving revision 1.130 > diff -C2 -d -r1.129 -r1.130 > *** ChangeLog.txt 1 Oct 2002 20:48:33 -0000 1.129 > --- ChangeLog.txt 2 Oct 2002 13:09:50 -0000 1.130 > *************** > *** 48,51 **** > --- 48,52 ---- > * Uppercase FORM elements were not being detected due to an > invalid xquery path > * Change search property name from 'menudisplay' to > 'aliasmenudisplay' > + * Fixed parseArgs to not require spaces between > comma-delimited list of switches > > > > Index: defer_tools.js > =================================================================== > RCS file: /cvsroot/dqsd/dqsd/defer_tools.js,v > retrieving revision 1.19 > retrieving revision 1.20 > diff -C2 -d -r1.19 -r1.20 > *** defer_tools.js 15 Sep 2002 23:31:03 -0000 1.19 > --- defer_tools.js 2 Oct 2002 13:09:50 -0000 1.20 > *************** > *** 166,172 **** > expandSwitches = 1; > > ! // In case the caller uses a comma-space delimited string > if (typeof expectedSwitches[0] == 'undefined') > ! expectedSwitches = expectedSwitches.split(', '); > > var switches = []; > --- 166,172 ---- > expandSwitches = 1; > > ! // In case the caller uses a delimited (;,<space>) string > if (typeof expectedSwitches[0] == 'undefined') > ! expectedSwitches = expectedSwitches.split( /[,;/\s]/ ); > > var switches = []; > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > DQSD-CVS mailing list > https://lists.sourceforge.net/lists/listinfo/dqsd-cvs > DQSD CVS repository: > http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/ > ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ DQSD-Devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/dqsd-devel
