[Idrs-commit] CVS: Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units Body.java,1.5,1.6 Db.java,
Brought to you by:
bigman921
|
From: Marc B. <big...@us...> - 2002-09-16 15:19:45
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units
In directory usw-pr-cvs1:/tmp/cvs-serv11935/dev/src/net/sourceforge/idrs/deploy/compile/units
Modified Files:
Body.java Db.java
Log Message:
Added data paging support, fixed hot deployment bug
Index: Body.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Body.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Body.java 9 Sep 2002 21:27:44 -0000 1.5
--- Body.java 16 Sep 2002 15:19:42 -0000 1.6
***************
*** 154,157 ****
--- 154,165 ----
}
+ public void navNext(String val, Attributes atts) throws Exception {
+ state.getCurrentLine().addChunk(new NavNextChunk(val));
+ }
+
+ public void navPrev(String val, Attributes atts) throws Exception {
+ state.getCurrentLine().addChunk(new NavPrevChunk(val));
+ }
+
/**
* Handles the formInput tag
***************
*** 209,212 ****
--- 217,222 ----
state.getReport().getBody().seal();
}
+
+
Index: Db.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Db.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Db.java 9 Sep 2002 21:27:44 -0000 1.5
--- Db.java 16 Sep 2002 15:19:42 -0000 1.6
***************
*** 100,103 ****
--- 100,106 ----
db.setNumRecs(Integer.parseInt(val));
}
+ else {
+ db.setNumRecs(-1);
+ }
}
|