[Idrs-commit] CVS: Idrs/dev/src/net/sourceforge/idrs/utils DB.java,1.14,1.15
Brought to you by:
bigman921
|
From: Marc B. <big...@us...> - 2003-03-26 21:33:45
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils
In directory sc8-pr-cvs1:/tmp/cvs-serv31636/dev/src/net/sourceforge/idrs/utils
Modified Files:
DB.java
Log Message:
refactored navigation tags, also added a <navcur> tag that generates a link that will kepp a page it it's current state, minus any specified parameters.
Index: DB.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/DB.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** DB.java 17 Mar 2003 14:05:00 -0000 1.14
--- DB.java 26 Mar 2003 21:33:11 -0000 1.15
***************
*** 794,798 ****
System.out.println("is cached? : " + this.wasCached);
! if (! this.wasCached ) {
System.out.println("in here");
if (! idrs.isError()) {
--- 794,798 ----
System.out.println("is cached? : " + this.wasCached);
! if (! this.wasCached || caches.get(this.name) == null) {
System.out.println("in here");
if (! idrs.isError()) {
|