[Idrs-commit] CVS: Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units Body.java,1.10,1.11
Brought to you by:
bigman921
|
From: Marc B. <big...@us...> - 2003-03-26 23:04:03
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units
In directory sc8-pr-cvs1:/tmp/cvs-serv6946/dev/src/net/sourceforge/idrs/deploy/compile/units
Modified Files:
Body.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: Body.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Body.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** Body.java 26 Mar 2003 21:33:04 -0000 1.10
--- Body.java 26 Mar 2003 23:03:21 -0000 1.11
***************
*** 248,251 ****
--- 248,255 ----
state.getCurrentLine().addChunk(new NavCurChunk(val));
}
+
+ public void navCurForm(String val, Attributes atts) throws Exception {
+ state.getCurrentLine().addChunk(new NavCurFormChunk(val));
+ }
/**
|