View the DQSD CVS repository here:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/
Update of /cvsroot/dqsd/dqsd/searches
In directory sc8-pr-cvs1:/tmp/cvs-serv8995/searches
Modified Files:
fe.xml
Log Message:
updated fe.xml per Matthew McDougal and a couple of other changes
Index: fe.xml
===================================================================
RCS file: /cvsroot/dqsd/dqsd/searches/fe.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** fe.xml 25 Oct 2002 16:59:04 -0000 1.6
--- fe.xml 19 Dec 2002 05:21:07 -0000 1.7
***************
*** 10,14 ****
--- 10,16 ----
<table class="helpboxDescTable">
<tr><td>fe D</td></tr>
+ <tr><td>fe doc</td></tr>
<tr><td>fe sym</td></tr>
+ <tr><td>fe num</td></tr>
</table>
</description>
***************
*** 21,30 ****
if( nullArgs("fe",q) )
return false;
! else
! {
! q = q.toLowerCase();
! if ( /^[a-z]$/i.test(q) || ( q == 'sym' ) || ( q == 'num' ) )
! openSearchWindow("http://www.filext.com/" + q + ".htm");
! else
nullArgs("fe","?");
}
--- 23,37 ----
if( nullArgs("fe",q) )
return false;
!
! q = q.toLowerCase();
! if (q == 'sym' || q == 'num') {
! openSearchWindow("http://www.filext.com/" + q + ".htm");
! } else if (/^[a-z]/i.test(q)) {
! openSearchWindow("http://www.filext.com/" + q.charAt(0) + ".htm");
! } else if (/^[0-9]/i.test(q)) {
! openSearchWindow("http://www.filext.com/num.htm");
! } else if (/^[\w_]/i.test(q)) {
! openSearchWindow("http://www.filext.com/sym.htm");
! } else {
nullArgs("fe","?");
}
-------------------------------------------------------
This SF.NET email is sponsored by: Order your Holiday Geek Presents Now!
Green Lasers, Hip Geek T-Shirts, Remote Control Tanks, Caffeinated Soap,
MP3 Players, XBox Games, Flying Saucers, WebCams, Smart Putty.
T H I N K G E E K . C O M http://www.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/