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-serv23236
Modified Files:
helpbox.js
Log Message:
An attempt to fix this error:
An error ([object Error]/The remote procedure call failed.) occurred while trying to
run the search "about()"
Index: helpbox.js
===================================================================
RCS file: /cvsroot/dqsd/dqsd/helpbox.js,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** helpbox.js 13 Jul 2002 13:34:50 -0000 1.31
--- helpbox.js 26 Jul 2002 21:02:50 -0000 1.32
***************
*** 127,136 ****
}
! var oVersion = getVersionFromVersionFile( "version.xml" );
! sVersion = new Array( oVersion.majorHi, oVersion.majorLo, oVersion.minorHi,
oVersion.minorLo ).join('.');
txt = txt.replace(/\r\n/g, '\n');
txt = txt.replace(/%lv/g, sVersion );
! txt = txt.replace(/%ld/g, oVersion.date );
txt = txt.replace(/\n\*/g, '<li />');
txt = txt.replace(/\nVer/, '</b><br />Ver');
--- 127,145 ----
}
! sVersion = '';
! sVersionDate = '';
! // Try to read the version information several times, in case there's a problem
! for ( var iGetVersion = 0; (iGetVersion < 5) && (typeof sVersion == 'undefined'
|| sVersion == null || sVersion == ''); iGetVersion++ )
! {
! try {
! var oVersion = getVersionFromVersionFile( "version.xml" );
! sVersion = new Array( oVersion.majorHi, oVersion.majorLo, oVersion.minorHi,
oVersion.minorLo ).join('.');
! sVersionDate = oVersion.date;
! } catch(e) {}
! }
txt = txt.replace(/\r\n/g, '\n');
txt = txt.replace(/%lv/g, sVersion );
! txt = txt.replace(/%ld/g, sVersionDate );
txt = txt.replace(/\n\*/g, '<li />');
txt = txt.replace(/\nVer/, '</b><br />Ver');
-------------------------------------------------------
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/