[Idrs-commit] CVS: Idrs/dev/src/net/sourceforge/idrs/core/servlet IdrsController.java,1.2,1.3
Brought to you by:
bigman921
|
From: Marc B. <big...@us...> - 2003-03-26 21:33:44
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/servlet
In directory sc8-pr-cvs1:/tmp/cvs-serv31636/dev/src/net/sourceforge/idrs/core/servlet
Modified Files:
IdrsController.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: IdrsController.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/servlet/IdrsController.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** IdrsController.java 17 Mar 2003 14:05:00 -0000 1.2
--- IdrsController.java 26 Mar 2003 21:33:09 -0000 1.3
***************
*** 62,66 ****
//loads all reports into the pooling system
! System.setOut(
new PrintStream(
new FileOutputStream(
--- 62,66 ----
//loads all reports into the pooling system
! /*System.setOut(
new PrintStream(
new FileOutputStream(
***************
*** 70,74 ****
new FileOutputStream(
new File("/usr/local/tomcat/logs/marc_err.txt"))));
! // System.out.println("in init");
init = new Init(svg);
--- 70,74 ----
new FileOutputStream(
new File("/usr/local/tomcat/logs/marc_err.txt"))));
! System.out.println("in init");*/
init = new Init(svg);
***************
*** 321,325 ****
}
} catch (Exception ignore) {
! dbCache.remove(db);
ignore.printStackTrace(System.out);
}
--- 321,327 ----
}
} catch (Exception ignore) {
! if (dbCache != null && dbCache.containsKey(db)) {
! dbCache.remove(db);
! }
ignore.printStackTrace(System.out);
}
|