View the DQSD CVS repository here:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/
Update of /cvsroot/dqsd/dqsd/searches
In directory usw-pr-cvs1:/tmp/cvs-serv14155/searches
Modified Files:
chmodconv.xml
Log Message:
removed quotes that was messing up the conversion to numbers
Index: chmodconv.xml
===================================================================
RCS file: /cvsroot/dqsd/dqsd/searches/chmodconv.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** chmodconv.xml 13 Nov 2002 01:30:57 -0000 1.1
--- chmodconv.xml 13 Nov 2002 05:45:34 -0000 1.2
***************
*** 50,54 ****
var group = chmodconv_string_from_digit(q.charAt(1));
var other = chmodconv_string_from_digit(q.charAt(2))
! document.deff.q.value = ""+owner + group + other+"";
} else if (q.match(/^((r|-)(w|-)(x|-)){3}$/)) {
// calc num ie: 755
--- 50,54 ----
var group = chmodconv_string_from_digit(q.charAt(1));
var other = chmodconv_string_from_digit(q.charAt(2))
! document.deff.q.value = owner + group + other;
} else if (q.match(/^((r|-)(w|-)(x|-)){3}$/)) {
// calc num ie: 755
***************
*** 56,60 ****
var group = chmodconv_digit_from_string(q.substr(3, 3))*10;
var other = chmodconv_digit_from_string(q.substr(6, 3));
! document.deff.q.value = ""+owner + group + other+"";
} else {
nullArgs("chmodconv","?");
--- 56,60 ----
var group = chmodconv_digit_from_string(q.substr(3, 3))*10;
var other = chmodconv_digit_from_string(q.substr(6, 3));
! document.deff.q.value = owner + group + other;
} else {
nullArgs("chmodconv","?");
-------------------------------------------------------
This sf.net email is sponsored by: Are you worried about
your web server security? Click here for a FREE Thawte
Apache SSL Guide and answer your Apache SSL security
needs: http://www.gothawte.com/rd523.html
_______________________________________________
DQSD-CVS mailing list
https://lists.sourceforge.net/lists/listinfo/dqsd-cvs
DQSD CVS repository:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/