idrs-commit Mailing List for Internet Document and Report Server (Page 10)
Brought to you by:
bigman921
You can subscribe to this list here.
| 2002 |
Jan
(113) |
Feb
(34) |
Mar
(38) |
Apr
(63) |
May
|
Jun
|
Jul
|
Aug
(40) |
Sep
(26) |
Oct
(4) |
Nov
(5) |
Dec
(3) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(13) |
Feb
(15) |
Mar
(21) |
Apr
(7) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(71) |
Sep
(4) |
Oct
|
Nov
|
Dec
|
|
From: Marc B. <big...@us...> - 2002-04-13 16:06:41
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report
In directory usw-pr-cvs1:/tmp/cvs-serv29359/dev/src/net/sourceforge/idrs/core/report
Modified Files:
YesNo.java
Added Files:
GenTag.java InputChunk.java
Log Message:
added YesNo and formInput tags
--- NEW FILE: GenTag.java ---
/*
GenTag.java
Copyright (C) 2002 Marc Boorshtein
The contents of this file are subject to the Mozilla Public License Version 1.0 (the License);
you may not use this file except in compliance with the License. You may obtain a copy of the
License at http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific
language governing rights and limitations under the License.
*/
package net.sourceforge.idrs.core.report;
import java.io.Serializable;
import java.lang.reflect.*;
import net.sourceforge.idrs.script.embedable.*;
import net.sourceforge.idrs.script.*;
/**
*Base class for gengeration of html input tags
*/
public class GenTag implements Serializable {
public static final int SRC_PARAM=0;
public static final int SRC_DB=1;
public static final int SRC_PROP=2;
String src;
String owner;
int srcType;
String atts;
String name;
boolean nameIsScript;
boolean paramFirst;
/** Creates new YesNo
*@param name Name of input tag
*@param srcType One of the SRC constants. Where the data is coming from
*@param src The name of the source
*@param atts Extra attributes
*@param paramFirst Determine if a paramater will be checked first
*/
public GenTag(String name, int srcType, String src, String atts,boolean paramFirst) {
this.paramFirst = paramFirst;
this.name = name;
this.atts = atts;
if (name.charAt(0) == '=') {
this.nameIsScript = true;
this.name = name.substring(1);
}
this.srcType = srcType;
if (srcType == SRC_DB || srcType == SRC_PROP) {
this.owner = src.substring(0,src.indexOf('.'));
this.src = srcType == SRC_PROP ? "get" + src.substring(src.indexOf('.') + 1) : src.substring(src.indexOf('.') + 1);
}
else {
this.src = src;
}
}
/**
*Retrieves a value based on what the source is
*@param head IDRS
*@param name Name of tag
*@return value of tag
*/
protected boolean getValueBool(IDRSHead head,String name) throws Exception {
String sval;
String db,field;
switch (srcType) {
case SRC_PARAM : return (sval = head.getRequest().getParameter(src)) != null ? sval.equalsIgnoreCase("true") : false;
case SRC_DB : return getValDBBool(head,name);
case SRC_PROP : return getValObjBool(head,name);
default : return false;
}
}
/**
*Retrieves a value based on what the source is
*@param head IDRS
*@param name Name of tag
*@return value of tag
*/
protected boolean getValDBBool(IDRSHead head,String name) throws Exception {
String sval;
if (this.paramFirst) {
sval = head.getRequest().getParameter(name);
if (sval == null) {
return (sval = head.getFieldData(owner,src)) != null ? sval.equalsIgnoreCase("true") : false;
}
else {
return sval.equalsIgnoreCase("true");
}
}
else {
return (sval = head.getFieldData(owner,src)) != null ? sval.equalsIgnoreCase("true") : false;
}
}
/**
*Retrieves a value based on what the source is
*@param head IDRS
*@param name Name of tag
*@return value of tag
*/
protected boolean getValObjBool(IDRSHead head, String name) throws Exception {
String sval;
if (this.paramFirst) {
sval = head.getRequest().getParameter(name);
if (sval == null) {
return getPropDataBool(head);
}
else {
return sval.equalsIgnoreCase("true");
}
}
else {
return getPropDataBool(head);
}
}
/**
*Retrieves a value based on what the source is
*@param head IDRS
*@param name Name of tag
*@return value of tag
*/
protected String getValue(IDRSHead head,String name) throws Exception {
Object sval;
String db,field;
switch (srcType) {
case SRC_PARAM : return (sval = head.getRequest().getParameter(src)) != null ? sval.toString() : "";
case SRC_DB : return getValDB(head,name);
case SRC_PROP : return getValObj(head,name);
default : return "";
}
}
/**
*Uses reflection to retrieve data from a bean property
*/
protected boolean getPropDataBool(IDRSHead idrs) throws Exception {
Object obj = idrs.getObject(owner);
Class cls = obj.getClass();
Method meth = cls.getMethod(src,new Class[0]);
return ((Boolean) meth.invoke(obj,new Object[0])).booleanValue() ;
}
/**
*Uses reflection to retrieve data from a bean property
*/
protected Object getPropData(IDRSHead idrs) throws Exception {
Object obj = idrs.getObject(owner);
Class cls = obj.getClass();
Method meth = cls.getMethod(src,new Class[0]);
return meth.invoke(obj,new Object[0]);
}
/**
*Retrieves a value based on what the source is
*@param head IDRS
*@param name Name of tag
*@return value of tag
*/
protected String getValDB(IDRSHead head,String name) throws Exception {
String sval;
if (this.paramFirst) {
sval = head.getRequest().getParameter(name);
if (sval == null) {
return (sval = head.getFieldData(owner,src)) != null ? sval : "";
}
else {
return sval;
}
}
else {
return (sval = head.getFieldData(owner,src)) != null ? sval : "";
}
}
/**
*Retrieves a value based on what the source is
*@param head IDRS
*@param name Name of tag
*@return value of tag
*/
protected String getValObj(IDRSHead head,String name) throws Exception {
String sval;
if (this.paramFirst) {
sval = head.getRequest().getParameter(name);
if (sval == null) {
return getPropData(head).toString();
}
else {
return sval;
}
}
else {
return getPropData(head).toString();
}
}
}
--- NEW FILE: InputChunk.java ---
/*
* InputChunk.java
*
* Created on April 13, 2002, 9:57 AM
*/
package net.sourceforge.idrs.core.report;
/**
*
* @author mlb
* @version
*/
public class InputChunk extends net.sourceforge.idrs.core.report.GenTag implements net.sourceforge.idrs.core.report.Chunk, java.io.Serializable {
public static final int INPUT_TEXT = 0;
public static final int INPUT_CHECKBOX = 1;
public static final int INPUT_PASSWORD = 2;
public static final int INPUT_RADIO = 3;
public static final int INPUT_TEXTAREA = 4;
public static final int INPUT_HIDDEN = 5;
String value;
int type;
/** Creates new InputChunk
*@param name Name of input tag
*@param type One of the INPUT constants. Determines final tag type
*@param srcType One of the SRC constants. Where the data is coming from
*@param src The name of the source
*@param atts Extra attributes
*@param paramFirst Determine if a paramater will be checked first
*/
public InputChunk(String name, int type, int srcType, String src, String value, String atts,boolean paramFirst) {
super(name,srcType,src,atts, paramFirst);
this.value = value;
this.type = type;
}
public String toString(IDRSHead head) throws Exception {
StringBuffer tag = new StringBuffer();
String nm = nameIsScript ? head.getScriptContext().eval(name) : name;
switch (type) {
case INPUT_HIDDEN : getTextTag(nm,"HIDDEN",head,tag); break;
case INPUT_TEXT : getTextTag(nm,"TEXT",head,tag); break;
case INPUT_PASSWORD : getTextTag(nm,"PASSWORD",head,tag); break;
case INPUT_RADIO : getBoolTag(nm,"RADIO",head,tag); break;
case INPUT_CHECKBOX : getBoolTag(nm,"CHECKBOX",head,tag); break;
case INPUT_TEXTAREA : tag.append("<TEXTAREA NAME=\"").append(nm).append("\" ").append(atts).append(" >").append(getValue(head,nm)).append("</TEXTAREA>");
}
return tag.toString();
}
/**
*Generates a text style tag
*@param nm The name of the tag
*@param type The type of tags
*@param head The IDRS
*@param tag String Buffer containing tag to generate
*/
protected void getTextTag(String nm,String type, IDRSHead head,StringBuffer tag) throws Exception {
tag.append("<INPUT TYPE=\"").append(type).append("\" NAME=\"");
tag.append(nm).append("\" VALUE=\"").append(getValue(head,nm)).append("\" ");
tag.append(atts).append(" >");
}
/**
*Generates a boolean style tag
*@param nm The name of the tag
*@param type The type of tags
*@param head The IDRS
*@param tag String Buffer containing tag to generate
*/
protected void getBoolTag(String nm, String type, IDRSHead head,StringBuffer tag) throws Exception {
tag.append("<INPUT TYPE=\"").append(type).append("\" NAME=\"");
tag.append(nm).append("\" VALUE=\"").append(value).append("\" ");
tag.append(atts).append(getValue(head,nm).equalsIgnoreCase(value) ? "CHECKED" : "").append(" >");
}
}
Index: YesNo.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/YesNo.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** YesNo.java 11 Apr 2002 20:37:06 -0000 1.1
--- YesNo.java 13 Apr 2002 16:06:35 -0000 1.2
***************
*** 15,18 ****
--- 15,19 ----
import java.io.Serializable;
import java.lang.reflect.*;
+ import net.sourceforge.idrs.script.embedable.*;
import net.sourceforge.idrs.script.*;
***************
*** 20,40 ****
*Allows for the creation of a Yes/No option button with a current value retrieved from a request parameter, database value or bean property
*/
! public class YesNo implements net.sourceforge.idrs.core.report.Chunk {
public static final int NOT_SINGLE=-1;
public static final int SINGLE_YES=0;
public static final int SINGLE_NO=1;
- public static final int SRC_PARAM=0;
- public static final int SRC_DB=1;
- public static final int SRC_PROP=2;
- String src;
- String owner;
- int srcType;
- int single;
- String name;
-
! StringBuffer tag;
/** Creates new YesNo
--- 21,34 ----
*Allows for the creation of a Yes/No option button with a current value retrieved from a request parameter, database value or bean property
*/
! public class YesNo extends GenTag implements net.sourceforge.idrs.core.report.Chunk {
public static final int NOT_SINGLE=-1;
public static final int SINGLE_YES=0;
public static final int SINGLE_NO=1;
!
!
! int single;
/** Creates new YesNo
***************
*** 43,61 ****
*@param srcType One of the SRC constants. Where the data is coming from
*@param src The name of the source
*/
! public YesNo(String name, int single, int srcType, String src) {
! tag = new StringBuffer();
! this.name = name;
this.single = single;
- this.srcType = srcType;
-
- if (srcType == SRC_DB || srcType == SRC_PROP) {
- this.owner = src.substring(0,src.indexOf('.'));
- this.src = srcType == SRC_PROP ? "get" + src.substring(src.indexOf('.') + 1) : src.substring(src.indexOf('.') + 1);
- }
- else {
- this.src = src;
- }
}
/*
--- 37,49 ----
*@param srcType One of the SRC constants. Where the data is coming from
*@param src The name of the source
+ *@param atts Extra attributes
+ *@param paramFirst Determine if a paramater will be checked first
*/
! public YesNo(String name, int single, int srcType, String src,String atts,boolean paramFirst) {
! super(name,srcType,src,atts,paramFirst);
this.single = single;
}
+
+
/*
***************
*** 63,74 ****
*/
public String toString(IDRSHead head) throws Exception {
! tag.setLength(0);
! boolean yes = getValue(head);
if (single == NOT_SINGLE || single == SINGLE_YES) {
! tag.append("<INPUT TYPE=\"RADIO\" VALUE=\"true\" NAME=\"").append(name).append("\" ").append(yes ? "CHECKED" : "").append("> Yes ");
}
if (single == NOT_SINGLE || single == SINGLE_NO) {
! tag.append("<INPUT TYPE=\"RADIO\" VALUE=\"false\" NAME=\"").append(name).append("\" ").append(! yes ? "CHECKED" : "").append("> No ");
}
--- 51,64 ----
*/
public String toString(IDRSHead head) throws Exception {
! StringBuffer tag = new StringBuffer();
!
! String nm = nameIsScript ? head.getScriptContext().eval(name) : name;
! boolean yes = getValueBool(head,nm);
if (single == NOT_SINGLE || single == SINGLE_YES) {
! tag.append("<INPUT TYPE=\"RADIO\" VALUE=\"true\" NAME=\"").append(nm).append("\" ").append(yes ? "CHECKED" : "").append(atts).append("> Yes ");
}
if (single == NOT_SINGLE || single == SINGLE_NO) {
! tag.append("<INPUT TYPE=\"RADIO\" VALUE=\"false\" NAME=\"").append(nm).append("\" ").append(! yes ? "CHECKED" : "").append(atts).append("> No ");
}
***************
*** 76,103 ****
}
- /**
- *Retrieves a value based on what the source is
- */
- protected boolean getValue(IDRSHead head) throws Exception {
- String sval;
- String db,field;
- switch (srcType) {
- case SRC_PARAM : return (sval = head.getRequest().getParameter(src)) != null ? sval.equalsIgnoreCase("true") : false;
- case SRC_DB : return (sval = head.getFieldData(owner,src)) != null ? sval.equalsIgnoreCase("true") : false;
- case SRC_PROP : return getPropData(head);
- default : return false;
- }
- }
- /**
- *Uses reflection to retrieve data from a bean property
- */
- protected boolean getPropData(IDRSHead idrs) throws Exception {
-
- Object obj = idrs.getObject(owner);
- Class cls = obj.getClass();
- Method meth = cls.getMethod(src,new Class[0]);
- return ((Boolean) meth.invoke(obj,new Object[0])).booleanValue() ;
- }
}
--- 66,70 ----
|
|
From: Marc B. <big...@us...> - 2002-04-13 16:06:41
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/macro
In directory usw-pr-cvs1:/tmp/cvs-serv29359/dev/src/net/sourceforge/idrs/deploy/macro
Modified Files:
MacroToXML.java
Log Message:
added YesNo and formInput tags
Index: MacroToXML.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/macro/MacroToXML.java,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** MacroToXML.java 5 Apr 2002 14:37:52 -0000 1.16
--- MacroToXML.java 13 Apr 2002 16:06:35 -0000 1.17
***************
*** 36,39 ****
--- 36,40 ----
boolean inTag;
boolean wasScript;
+
String rmlNS;
Stack writeStack;
***************
*** 59,62 ****
--- 60,64 ----
textBuff = new StringBuffer();
wasScript = false;
+
this.rmlNS=rmlNS;
***************
*** 342,345 ****
--- 344,349 ----
int begin=0, end=0,tmp,retEnd;
+ int tokBegin, tokEnd;
+
char c;
c = tag.charAt(1);
***************
*** 370,380 ****
while (tok.hasMoreTokens() && tok.countTokens() != 1) {
token = tok.nextToken();
! out.write(token);
out.write("\"");
out.write(xmlEncode(tok.nextToken()));
out.write("\"");
! }
--- 374,442 ----
+
+ tokBegin = 0;
+ tokEnd = atts.indexOf("\"",tokBegin + 1);
+ boolean inQuote = false;
+
+
+ while (tokEnd != -1) {
+ //out.write("<i> " + atts.substring(tokBegin,tokEnd) + " " + inQuote + " </i>");
+
+
+ if (inQuote) {
+ out.write(atts.substring(tokBegin,tokEnd-1));
+ inQuote = false;
+ out.write(xmlEncode("\""));
+ }
+ else {
+ out.write(atts.substring(tokBegin,tokEnd));
+ out.write("\"");
+
+ }
+
+
+
+ tokBegin = tokEnd+1;
+ tokEnd = atts.indexOf("\"",tokBegin+1);
+ //out.write("<i> " + atts.substring(tokBegin,tokEnd) + " " + inQuote + " </i>");
+
+
+
+ if (atts.charAt(tokEnd-1) == '\\') {
+ out.write(xmlEncode(atts.substring(tokBegin,tokEnd-1)));
+ out.write(xmlEncode("\""));
+ inQuote = true;
+ }
+ else {
+ out.write(xmlEncode(atts.substring(tokBegin,tokEnd)));
+ inQuote = false;
+ out.write("\"");
+ }
+
+ /*
+ if (atts.charAt(tokBegin-2) == '\\') {
+ out.write(xmlEncode(atts.substring(tokBegin-1,tokEnd)));
+ out.write(xmlEncode(xmlEncode("\"")));
+ }
+ else {
+ out.write(xmlEncode(atts.substring(tokBegin,tokEnd)));
+ out.write("\"");
+ }*/
+
+ tokBegin = tokEnd + 1;
+ tokEnd = atts.indexOf("\"",tokBegin);
+
+ }
+ out.write(atts.substring(tokBegin));
+
+
+ /*
while (tok.hasMoreTokens() && tok.countTokens() != 1) {
token = tok.nextToken();
! out.write(xmlEncode(token));
out.write("\"");
out.write(xmlEncode(tok.nextToken()));
out.write("\"");
! }*/
***************
*** 435,439 ****
case '>' : buffer.append(">"); break;
case '\'' : buffer.append("'"); break;
! case '\"' : buffer.append("""); break;
default : buffer.append(txt.charAt(i));
}
--- 497,501 ----
case '>' : buffer.append(">"); break;
case '\'' : buffer.append("'"); break;
! case '"' : buffer.append("""); break;
default : buffer.append(txt.charAt(i));
}
|
|
From: Marc B. <big...@us...> - 2002-04-13 16:06:41
|
Update of /cvsroot/idrs/Idrs/dev/xml
In directory usw-pr-cvs1:/tmp/cvs-serv29359/dev/xml
Modified Files:
rmlTrans.xml
Log Message:
added YesNo and formInput tags
Index: rmlTrans.xml
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/xml/rmlTrans.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** rmlTrans.xml 5 Apr 2002 14:37:52 -0000 1.5
--- rmlTrans.xml 13 Apr 2002 16:06:35 -0000 1.6
***************
*** 33,36 ****
--- 33,38 ----
<trans:rml simple="true" ownLine="false">inputResults</trans:rml>
<trans:rml simple="true" ownLine="false">setProps</trans:rml>
+ <trans:rml simple="true" ownLine="false" >yesNo</trans:rml>
+ <trans:rml simple="true" ownLine="false" >formInput</trans:rml>
<!-- text tag -->
|
|
From: Marc B. <big...@us...> - 2002-04-13 16:06:41
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units
In directory usw-pr-cvs1:/tmp/cvs-serv29359/dev/src/net/sourceforge/idrs/deploy/compile/units
Modified Files:
Body.java
Log Message:
added YesNo and formInput tags
Index: Body.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Body.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Body.java 11 Apr 2002 20:37:06 -0000 1.3
--- Body.java 13 Apr 2002 16:06:35 -0000 1.4
***************
*** 120,127 ****
*/
public void yesNo(String val, Attributes atts) throws Exception {
! String name,srcType,single;
int isrcType,isingle;
name = atts.getValue("name");
single = atts.getValue("single");
if (single == null || single.equalsIgnoreCase("")) {
--- 120,131 ----
*/
public void yesNo(String val, Attributes atts) throws Exception {
! String name,srcType,single, attribs;
int isrcType,isingle;
+ boolean paramFirst = false;
name = atts.getValue("name");
+
+ paramFirst = atts.getValue("paramFirst") != null ? atts.getValue("paramFirst").equalsIgnoreCase("true") : false;
+
single = atts.getValue("single");
if (single == null || single.equalsIgnoreCase("")) {
***************
*** 132,135 ****
--- 136,143 ----
}
+
+ attribs = atts.getValue("atts");
+ attribs = (attribs != null) ? attribs : "";
+
srcType = atts.getValue("srcType");
if (srcType.equalsIgnoreCase("param")) isrcType = YesNo.SRC_PARAM;
***************
*** 137,141 ****
else isrcType = YesNo.SRC_PROP;
! state.getCurrentLine().addChunk(new YesNo(name,isingle,isrcType,val));
}
--- 145,187 ----
else isrcType = YesNo.SRC_PROP;
! state.getCurrentLine().addChunk(new YesNo(name,isingle,isrcType,val,attribs,paramFirst));
!
! }
!
! /**
! * Handles the formInput tag
! */
! public void formInput(String val, Attributes atts) throws Exception {
! String name,srcType,type, attribs,value;
! int isrcType,isingle,itype=-1;
! boolean paramFirst;
!
! paramFirst = atts.getValue("paramFirst") != null ? atts.getValue("paramFirst").equalsIgnoreCase("true") : false;
! System.out.println("Param First : " + paramFirst);
!
! value = atts.getValue("value");
!
! value = value != null ? value : "";
!
! name = atts.getValue("name");
! type = atts.getValue("type");
!
! itype = type.equalsIgnoreCase("hidden") ? InputChunk.INPUT_HIDDEN : itype;
! itype = type.equalsIgnoreCase("text") ? InputChunk.INPUT_TEXT : itype;
! itype = type.equalsIgnoreCase("password") ? InputChunk.INPUT_PASSWORD : itype;
! itype = type.equalsIgnoreCase("checkbox") ? InputChunk.INPUT_CHECKBOX : itype;
! itype = type.equalsIgnoreCase("radio") ? InputChunk.INPUT_RADIO : itype;
! itype = type.equalsIgnoreCase("textarea") ? InputChunk.INPUT_TEXTAREA : itype;
!
!
! attribs = atts.getValue("atts");
! attribs = (attribs != null) ? attribs : "";
!
! srcType = atts.getValue("srcType");
! if (srcType.equalsIgnoreCase("param")) isrcType = YesNo.SRC_PARAM;
! else if (srcType.equalsIgnoreCase("db")) isrcType = YesNo.SRC_DB;
! else isrcType = YesNo.SRC_PROP;
!
! state.getCurrentLine().addChunk(new InputChunk(name,itype,isrcType,val,value,attribs,paramFirst));
}
|
|
From: Marc B. <big...@us...> - 2002-04-13 16:06:40
|
Update of /cvsroot/idrs/Idrs/dev/lib In directory usw-pr-cvs1:/tmp/cvs-serv29359/dev/lib Modified Files: idrs.jar Log Message: added YesNo and formInput tags Index: idrs.jar =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/lib/idrs.jar,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 Binary files /tmp/cvsMsvctw and /tmp/cvsWulzCU differ |
|
From: Marc B. <big...@us...> - 2002-04-13 16:06:39
|
Update of /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils In directory usw-pr-cvs1:/tmp/cvs-serv29359/dev/docs/net/sourceforge/idrs/utils Modified Files: Application.html CleanUp.html DB.html IDRSPrinter.html ObjectStore.html RS.html RSMetaData.html ReqAttr.html ReqReq.html RequestWrapper.html UserInfo.html package-frame.html package-summary.html package-tree.html Log Message: added YesNo and formInput tags Index: Application.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/Application.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Application.html 5 Apr 2002 14:37:51 -0000 1.6 --- Application.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:44 EST 2002 --> <TITLE> Application --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:15 EDT 2002 --> <TITLE> Application Index: CleanUp.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/CleanUp.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** CleanUp.html 5 Apr 2002 14:37:51 -0000 1.6 --- CleanUp.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:44 EST 2002 --> <TITLE> CleanUp --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:15 EDT 2002 --> <TITLE> CleanUp Index: DB.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/DB.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** DB.html 5 Apr 2002 14:37:51 -0000 1.6 --- DB.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:44 EST 2002 --> <TITLE> DB --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:15 EDT 2002 --> <TITLE> DB Index: IDRSPrinter.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/IDRSPrinter.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** IDRSPrinter.html 5 Apr 2002 14:37:51 -0000 1.6 --- IDRSPrinter.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:45 EST 2002 --> <TITLE> IDRSPrinter --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:15 EDT 2002 --> <TITLE> IDRSPrinter Index: ObjectStore.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/ObjectStore.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ObjectStore.html 5 Apr 2002 14:37:51 -0000 1.6 --- ObjectStore.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:45 EST 2002 --> <TITLE> ObjectStore --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:15 EDT 2002 --> <TITLE> ObjectStore Index: RS.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/RS.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** RS.html 5 Apr 2002 14:37:51 -0000 1.6 --- RS.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:45 EST 2002 --> <TITLE> RS --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:16 EDT 2002 --> <TITLE> RS Index: RSMetaData.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/RSMetaData.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** RSMetaData.html 5 Apr 2002 14:37:51 -0000 1.6 --- RSMetaData.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:46 EST 2002 --> <TITLE> RSMetaData --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:18 EDT 2002 --> <TITLE> RSMetaData Index: ReqAttr.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/ReqAttr.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ReqAttr.html 5 Apr 2002 14:37:51 -0000 1.6 --- ReqAttr.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:45 EST 2002 --> <TITLE> ReqAttr --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:15 EDT 2002 --> <TITLE> ReqAttr Index: ReqReq.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/ReqReq.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ReqReq.html 5 Apr 2002 14:37:51 -0000 1.6 --- ReqReq.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:45 EST 2002 --> <TITLE> ReqReq --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:15 EDT 2002 --> <TITLE> ReqReq Index: RequestWrapper.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/RequestWrapper.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** RequestWrapper.html 5 Apr 2002 14:37:51 -0000 1.6 --- RequestWrapper.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:44 EST 2002 --> <TITLE> RequestWrapper --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:15 EDT 2002 --> <TITLE> RequestWrapper Index: UserInfo.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/UserInfo.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** UserInfo.html 5 Apr 2002 14:37:51 -0000 1.6 --- UserInfo.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:46 EST 2002 --> <TITLE> UserInfo --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:18 EDT 2002 --> <TITLE> UserInfo Index: package-frame.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/package-frame.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-frame.html 5 Apr 2002 14:37:51 -0000 1.6 --- package-frame.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.utils() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.utils() Index: package-summary.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/package-summary.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-summary.html 5 Apr 2002 14:37:51 -0000 1.6 --- package-summary.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.utils() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.utils() Index: package-tree.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/package-tree.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-tree.html 5 Apr 2002 14:37:51 -0000 1.6 --- package-tree.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.utils Class Hierarchy --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.utils Class Hierarchy |
|
From: Marc B. <big...@us...> - 2002-04-13 16:06:39
|
Update of /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/script/embedable In directory usw-pr-cvs1:/tmp/cvs-serv29359/dev/docs/net/sourceforge/idrs/script/embedable Modified Files: IDRSBeanShell.html IDRSJPython.html IDRSScriptLanguage.html IDRSShell.html package-frame.html package-summary.html package-tree.html Log Message: added YesNo and formInput tags Index: IDRSBeanShell.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/script/embedable/IDRSBeanShell.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** IDRSBeanShell.html 5 Apr 2002 14:37:50 -0000 1.6 --- IDRSBeanShell.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 --> <TITLE> IDRSBeanShell --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:22 EDT 2002 --> <TITLE> IDRSBeanShell Index: IDRSJPython.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/script/embedable/IDRSJPython.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** IDRSJPython.html 5 Apr 2002 14:37:50 -0000 1.6 --- IDRSJPython.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:49 EST 2002 --> <TITLE> IDRSJPython --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:22 EDT 2002 --> <TITLE> IDRSJPython Index: IDRSScriptLanguage.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/script/embedable/IDRSScriptLanguage.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** IDRSScriptLanguage.html 5 Apr 2002 14:37:50 -0000 1.6 --- IDRSScriptLanguage.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 --> <TITLE> IDRSScriptLanguage --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:22 EDT 2002 --> <TITLE> IDRSScriptLanguage Index: IDRSShell.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/script/embedable/IDRSShell.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** IDRSShell.html 5 Apr 2002 14:37:50 -0000 1.6 --- IDRSShell.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:49 EST 2002 --> <TITLE> IDRSShell --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:22 EDT 2002 --> <TITLE> IDRSShell Index: package-frame.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/script/embedable/package-frame.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-frame.html 5 Apr 2002 14:37:50 -0000 1.6 --- package-frame.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.script.embedable() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.script.embedable() Index: package-summary.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/script/embedable/package-summary.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-summary.html 5 Apr 2002 14:37:50 -0000 1.6 --- package-summary.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.script.embedable() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.script.embedable() Index: package-tree.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/script/embedable/package-tree.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-tree.html 5 Apr 2002 14:37:50 -0000 1.6 --- package-tree.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.script.embedable Class Hierarchy --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.script.embedable Class Hierarchy |
Update of /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/pool In directory usw-pr-cvs1:/tmp/cvs-serv29359/dev/docs/net/sourceforge/idrs/utils/pool Modified Files: ObjectPool.html POS.html PooledObject.html package-frame.html package-summary.html package-tree.html Log Message: added YesNo and formInput tags Index: ObjectPool.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/pool/ObjectPool.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ObjectPool.html 5 Apr 2002 14:37:51 -0000 1.6 --- ObjectPool.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:46 EST 2002 --> <TITLE> ObjectPool --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:18 EDT 2002 --> <TITLE> ObjectPool Index: POS.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/pool/POS.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** POS.html 5 Apr 2002 14:37:51 -0000 1.6 --- POS.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:47 EST 2002 --> <TITLE> POS --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:18 EDT 2002 --> <TITLE> POS Index: PooledObject.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/pool/PooledObject.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** PooledObject.html 5 Apr 2002 14:37:51 -0000 1.6 --- PooledObject.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:46 EST 2002 --> <TITLE> PooledObject --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:18 EDT 2002 --> <TITLE> PooledObject Index: package-frame.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/pool/package-frame.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-frame.html 5 Apr 2002 14:37:51 -0000 1.6 --- package-frame.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.utils.pool() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.utils.pool() Index: package-summary.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/pool/package-summary.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-summary.html 5 Apr 2002 14:37:51 -0000 1.6 --- package-summary.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.utils.pool() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.utils.pool() Index: package-tree.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/utils/pool/package-tree.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-tree.html 5 Apr 2002 14:37:51 -0000 1.6 --- package-tree.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.utils.pool Class Hierarchy --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.utils.pool Class Hierarchy |
|
From: Marc B. <big...@us...> - 2002-04-13 16:06:39
|
Update of /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units
In directory usw-pr-cvs1:/tmp/cvs-serv29359/dev/docs/net/sourceforge/idrs/deploy/compile/units
Modified Files:
Body.html Constructor.html Db.html Head.html IfChange.html
IfResults.html Method.html No.html Object.html Repeat.html
Rml.html SQL.html StoredProc.html VarList.html Yes.html
package-frame.html package-summary.html package-tree.html
Log Message:
added YesNo and formInput tags
Index: Body.html
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units/Body.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Body.html 11 Apr 2002 20:37:07 -0000 1.1
--- Body.html 13 Apr 2002 16:06:34 -0000 1.2
***************
*** 3,7 ****
<HTML>
<HEAD>
! <!-- Generated by javadoc on Fri Apr 05 09:37:47 EST 2002 -->
<TITLE>
Body
--- 3,7 ----
<HTML>
<HEAD>
! <!-- Generated by javadoc on Sat Apr 13 12:04:20 EDT 2002 -->
<TITLE>
Body
***************
*** 165,168 ****
--- 165,177 ----
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
+ <TD><CODE><B><A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#formInput(java.lang.String, org.xml.sax.Attributes)">formInput</A></B>(java.lang.String val,
+ org.xml.sax.Attributes atts)</CODE>
+
+ <BR>
+ Handles the formInput tag</TD>
+ </TR>
+ <TR BGCOLOR="white" CLASS="TableRowColor">
+ <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
+ <CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#inputResults(java.lang.String, org.xml.sax.Attributes)">inputResults</A></B>(java.lang.String val,
org.xml.sax.Attributes atts)</CODE>
***************
*** 222,225 ****
--- 231,243 ----
</TD>
</TR>
+ <TR BGCOLOR="white" CLASS="TableRowColor">
+ <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
+ <CODE> void</CODE></FONT></TD>
+ <TD><CODE><B><A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#yesNo(java.lang.String, org.xml.sax.Attributes)">yesNo</A></B>(java.lang.String val,
+ org.xml.sax.Attributes atts)</CODE>
+
+ <BR>
+ Handles the yesNo tag</TD>
+ </TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
***************
*** 380,383 ****
--- 398,433 ----
throws java.lang.Exception</PRE>
<DL>
+ <DD><DL>
+
+ <DD><CODE>java.lang.Exception</CODE></DL>
+ </DD>
+ </DL>
+ <HR>
+
+ <A NAME="yesNo(java.lang.String, org.xml.sax.Attributes)"><!-- --></A><H3>
+ yesNo</H3>
+ <PRE>
+ public void <B>yesNo</B>(java.lang.String val,
+ org.xml.sax.Attributes atts)
+ throws java.lang.Exception</PRE>
+ <DL>
+ <DD>Handles the yesNo tag
+ <P>
+ <DD><DL>
+
+ <DD><CODE>java.lang.Exception</CODE></DL>
+ </DD>
+ </DL>
+ <HR>
+
+ <A NAME="formInput(java.lang.String, org.xml.sax.Attributes)"><!-- --></A><H3>
+ formInput</H3>
+ <PRE>
+ public void <B>formInput</B>(java.lang.String val,
+ org.xml.sax.Attributes atts)
+ throws java.lang.Exception</PRE>
+ <DL>
+ <DD>Handles the formInput tag
+ <P>
<DD><DL>
Index: Constructor.html
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units/Constructor.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Constructor.html 11 Apr 2002 20:37:07 -0000 1.1
--- Constructor.html 13 Apr 2002 16:06:34 -0000 1.2
***************
*** 3,7 ****
<HTML>
<HEAD>
! <!-- Generated by javadoc on Fri Apr 05 09:37:47 EST 2002 -->
<TITLE>
Constructor
--- 3,7 ----
<HTML>
<HEAD>
! <!-- Generated by javadoc on Sat Apr 13 12:04:20 EDT 2002 -->
<TITLE>
Constructor
Index: Db.html
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units/Db.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Db.html 11 Apr 2002 20:37:07 -0000 1.1
--- Db.html 13 Apr 2002 16:06:34 -0000 1.2
***************
*** 3,7 ****
<HTML>
<HEAD>
! <!-- Generated by javadoc on Fri Apr 05 09:37:47 EST 2002 -->
<TITLE>
Db
--- 3,7 ----
<HTML>
<HEAD>
! <!-- Generated by javadoc on Sat Apr 13 12:04:20 EDT 2002 -->
<TITLE>
Db
Index: Head.html
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units/Head.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Head.html 11 Apr 2002 20:37:07 -0000 1.1
--- Head.html 13 Apr 2002 16:06:34 -0000 1.2
***************
*** 3,7 ****
<HTML>
<HEAD>
! <!-- Generated by javadoc on Fri Apr 05 09:37:47 EST 2002 -->
<TITLE>
Head
--- 3,7 ----
<HTML>
<HEAD>
! <!-- Generated by javadoc on Sat Apr 13 12:04:20 EDT 2002 -->
<TITLE>
Head
Index: IfChange.html
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units/IfChange.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** IfChange.html 11 Apr 2002 20:37:07 -0000 1.1
--- IfChange.html 13 Apr 2002 16:06:34 -0000 1.2
***************
*** 3,7 ****
<HTML>
<HEAD>
! <!-- Generated by javadoc on Fri Apr 05 09:37:47 EST 2002 -->
<TITLE>
IfChange
--- 3,7 ----
<HTML>
<HEAD>
! <!-- Generated by javadoc on Sat Apr 13 12:04:20 EDT 2002 -->
<TITLE>
IfChange
***************
*** 178,182 ****
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
! <TD><CODE><A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#echoScript(java.lang.String, org.xml.sax.Attributes)">echoScript</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#field(java.lang.String, org.xml.sax.Attributes)">field</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#inputResults(java.lang.String, org.xml.sax.Attributes)">inputResults</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#script(java.lang.String, org.xml.sax.Attributes)">script</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#text(java.lang.String, org.xml.sax.Attributes)">text</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#useMethod(java.lang.String, org.xml.sax.Attributes)">useMethod</A></CODE></TD>
</TR>
</TABLE>
--- 178,182 ----
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
! <TD><CODE><A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#echoScript(java.lang.String, org.xml.sax.Attributes)">echoScript</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#field(java.lang.String, org.xml.sax.Attributes)">field</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#formInput(java.lang.String, org.xml.sax.Attributes)">formInput</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#inputResults(java.lang.String, org.xml.sax.Attributes)">inputResults</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#script(java.lang.String, org.xml.sax.Attributes)">script</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#text(java.lang.String, org.xml.sax.Attributes)">text</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#useMethod(java.lang.String, org.xml.sax.Attributes)">useMethod</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#yesNo(java.lang.String, org.xml.sax.Attributes)">yesNo</A></CODE></TD>
</TR>
</TABLE>
Index: IfResults.html
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units/IfResults.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** IfResults.html 11 Apr 2002 20:37:07 -0000 1.1
--- IfResults.html 13 Apr 2002 16:06:34 -0000 1.2
***************
*** 3,7 ****
<HTML>
<HEAD>
! <!-- Generated by javadoc on Fri Apr 05 09:37:47 EST 2002 -->
<TITLE>
IfResults
--- 3,7 ----
<HTML>
<HEAD>
! <!-- Generated by javadoc on Sat Apr 13 12:04:20 EDT 2002 -->
<TITLE>
IfResults
Index: Method.html
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units/Method.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Method.html 11 Apr 2002 20:37:07 -0000 1.1
--- Method.html 13 Apr 2002 16:06:34 -0000 1.2
***************
*** 3,7 ****
<HTML>
<HEAD>
! <!-- Generated by javadoc on Fri Apr 05 09:37:47 EST 2002 -->
<TITLE>
Method
--- 3,7 ----
<HTML>
<HEAD>
! <!-- Generated by javadoc on Sat Apr 13 12:04:20 EDT 2002 -->
<TITLE>
Method
Index: No.html
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units/No.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** No.html 11 Apr 2002 20:37:07 -0000 1.1
--- No.html 13 Apr 2002 16:06:34 -0000 1.2
***************
*** 3,7 ****
<HTML>
<HEAD>
! <!-- Generated by javadoc on Fri Apr 05 09:37:47 EST 2002 -->
<TITLE>
No
--- 3,7 ----
<HTML>
<HEAD>
! <!-- Generated by javadoc on Sat Apr 13 12:04:20 EDT 2002 -->
<TITLE>
No
***************
*** 150,154 ****
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
! <TD><CODE><A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#echoScript(java.lang.String, org.xml.sax.Attributes)">echoScript</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#field(java.lang.String, org.xml.sax.Attributes)">field</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#inputResults(java.lang.String, org.xml.sax.Attributes)">inputResults</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#script(java.lang.String, org.xml.sax.Attributes)">script</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#text(java.lang.String, org.xml.sax.Attributes)">text</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#useMethod(java.lang.String, org.xml.sax.Attributes)">useMethod</A></CODE></TD>
</TR>
</TABLE>
--- 150,154 ----
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
! <TD><CODE><A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#echoScript(java.lang.String, org.xml.sax.Attributes)">echoScript</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#field(java.lang.String, org.xml.sax.Attributes)">field</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#formInput(java.lang.String, org.xml.sax.Attributes)">formInput</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#inputResults(java.lang.String, org.xml.sax.Attributes)">inputResults</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#script(java.lang.String, org.xml.sax.Attributes)">script</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#text(java.lang.String, org.xml.sax.Attributes)">text</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#useMethod(java.lang.String, org.xml.sax.Attributes)">useMethod</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#yesNo(java.lang.String, org.xml.sax.Attributes)">yesNo</A></CODE></TD>
</TR>
</TABLE>
Index: Object.html
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units/Object.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Object.html 11 Apr 2002 20:37:07 -0000 1.1
--- Object.html 13 Apr 2002 16:06:34 -0000 1.2
***************
*** 3,7 ****
<HTML>
<HEAD>
! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 -->
<TITLE>
Object
--- 3,7 ----
<HTML>
<HEAD>
! <!-- Generated by javadoc on Sat Apr 13 12:04:20 EDT 2002 -->
<TITLE>
Object
Index: Repeat.html
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units/Repeat.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Repeat.html 11 Apr 2002 20:37:07 -0000 1.1
--- Repeat.html 13 Apr 2002 16:06:34 -0000 1.2
***************
*** 3,7 ****
<HTML>
<HEAD>
! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 -->
<TITLE>
Repeat
--- 3,7 ----
<HTML>
<HEAD>
! <!-- Generated by javadoc on Sat Apr 13 12:04:20 EDT 2002 -->
<TITLE>
Repeat
***************
*** 210,214 ****
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
! <TD><CODE><A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#echoScript(java.lang.String, org.xml.sax.Attributes)">echoScript</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#field(java.lang.String, org.xml.sax.Attributes)">field</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#inputResults(java.lang.String, org.xml.sax.Attributes)">inputResults</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#script(java.lang.String, org.xml.sax.Attributes)">script</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#text(java.lang.String, org.xml.sax.Attributes)">text</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#useMethod(java.lang.String, org.xml.sax.Attributes)">useMethod</A></CODE></TD>
</TR>
</TABLE>
--- 210,214 ----
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
! <TD><CODE><A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#echoScript(java.lang.String, org.xml.sax.Attributes)">echoScript</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#field(java.lang.String, org.xml.sax.Attributes)">field</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#formInput(java.lang.String, org.xml.sax.Attributes)">formInput</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#inputResults(java.lang.String, org.xml.sax.Attributes)">inputResults</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#script(java.lang.String, org.xml.sax.Attributes)">script</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#text(java.lang.String, org.xml.sax.Attributes)">text</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#useMethod(java.lang.String, org.xml.sax.Attributes)">useMethod</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#yesNo(java.lang.String, org.xml.sax.Attributes)">yesNo</A></CODE></TD>
</TR>
</TABLE>
Index: Rml.html
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units/Rml.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Rml.html 11 Apr 2002 20:37:07 -0000 1.1
--- Rml.html 13 Apr 2002 16:06:34 -0000 1.2
***************
*** 3,7 ****
<HTML>
<HEAD>
! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 -->
<TITLE>
Rml
--- 3,7 ----
<HTML>
<HEAD>
! <!-- Generated by javadoc on Sat Apr 13 12:04:20 EDT 2002 -->
<TITLE>
Rml
Index: SQL.html
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units/SQL.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** SQL.html 11 Apr 2002 20:37:07 -0000 1.1
--- SQL.html 13 Apr 2002 16:06:34 -0000 1.2
***************
*** 3,7 ****
<HTML>
<HEAD>
! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 -->
<TITLE>
SQL
--- 3,7 ----
<HTML>
<HEAD>
! <!-- Generated by javadoc on Sat Apr 13 12:04:21 EDT 2002 -->
<TITLE>
SQL
Index: StoredProc.html
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units/StoredProc.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** StoredProc.html 11 Apr 2002 20:37:07 -0000 1.1
--- StoredProc.html 13 Apr 2002 16:06:34 -0000 1.2
***************
*** 3,7 ****
<HTML>
<HEAD>
! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 -->
<TITLE>
StoredProc
--- 3,7 ----
<HTML>
<HEAD>
! <!-- Generated by javadoc on Sat Apr 13 12:04:21 EDT 2002 -->
<TITLE>
StoredProc
Index: VarList.html
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units/VarList.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** VarList.html 11 Apr 2002 20:37:07 -0000 1.1
--- VarList.html 13 Apr 2002 16:06:34 -0000 1.2
***************
*** 3,7 ****
<HTML>
<HEAD>
! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 -->
<TITLE>
VarList
--- 3,7 ----
<HTML>
<HEAD>
! <!-- Generated by javadoc on Sat Apr 13 12:04:21 EDT 2002 -->
<TITLE>
VarList
Index: Yes.html
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units/Yes.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Yes.html 11 Apr 2002 20:37:07 -0000 1.1
--- Yes.html 13 Apr 2002 16:06:34 -0000 1.2
***************
*** 3,7 ****
<HTML>
<HEAD>
! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 -->
<TITLE>
Yes
--- 3,7 ----
<HTML>
<HEAD>
! <!-- Generated by javadoc on Sat Apr 13 12:04:21 EDT 2002 -->
<TITLE>
Yes
***************
*** 173,177 ****
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
! <TD><CODE><A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#echoScript(java.lang.String, org.xml.sax.Attributes)">echoScript</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#field(java.lang.String, org.xml.sax.Attributes)">field</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#inputResults(java.lang.String, org.xml.sax.Attributes)">inputResults</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#script(java.lang.String, org.xml.sax.Attributes)">script</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#text(java.lang.String, org.xml.sax.Attributes)">text</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#useMethod(java.lang.String, org.xml.sax.Attributes)">useMethod</A></CODE></TD>
</TR>
</TABLE>
--- 173,177 ----
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
! <TD><CODE><A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#echoScript(java.lang.String, org.xml.sax.Attributes)">echoScript</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#field(java.lang.String, org.xml.sax.Attributes)">field</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#formInput(java.lang.String, org.xml.sax.Attributes)">formInput</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#inputResults(java.lang.String, org.xml.sax.Attributes)">inputResults</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#script(java.lang.String, org.xml.sax.Attributes)">script</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#text(java.lang.String, org.xml.sax.Attributes)">text</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#useMethod(java.lang.String, org.xml.sax.Attributes)">useMethod</A>, <A HREF="../../../../../../net/sourceforge/idrs/deploy/compile/units/Body.html#yesNo(java.lang.String, org.xml.sax.Attributes)">yesNo</A></CODE></TD>
</TR>
</TABLE>
Index: package-frame.html
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units/package-frame.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** package-frame.html 11 Apr 2002 20:37:07 -0000 1.1
--- package-frame.html 13 Apr 2002 16:06:34 -0000 1.2
***************
*** 3,7 ****
<HTML>
<HEAD>
! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 -->
<TITLE>
net.sourceforge.idrs.deploy.compile.units()
--- 3,7 ----
<HTML>
<HEAD>
! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 -->
<TITLE>
net.sourceforge.idrs.deploy.compile.units()
Index: package-summary.html
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units/package-summary.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** package-summary.html 11 Apr 2002 20:37:07 -0000 1.1
--- package-summary.html 13 Apr 2002 16:06:34 -0000 1.2
***************
*** 3,7 ****
<HTML>
<HEAD>
! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 -->
<TITLE>
net.sourceforge.idrs.deploy.compile.units()
--- 3,7 ----
<HTML>
<HEAD>
! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 -->
<TITLE>
net.sourceforge.idrs.deploy.compile.units()
Index: package-tree.html
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units/package-tree.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** package-tree.html 11 Apr 2002 20:37:07 -0000 1.1
--- package-tree.html 13 Apr 2002 16:06:34 -0000 1.2
***************
*** 3,7 ****
<HTML>
<HEAD>
! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 -->
<TITLE>
net.sourceforge.idrs.deploy.compile.units Class Hierarchy
--- 3,7 ----
<HTML>
<HEAD>
! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 -->
<TITLE>
net.sourceforge.idrs.deploy.compile.units Class Hierarchy
|
|
From: Marc B. <big...@us...> - 2002-04-13 16:06:38
|
Update of /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/exceptions In directory usw-pr-cvs1:/tmp/cvs-serv29359/dev/docs/net/sourceforge/idrs/exceptions Modified Files: FailInit.html IllegalParameter.html NoConnection.html PageNotFound.html SystemBusy.html package-frame.html package-summary.html package-tree.html Log Message: added YesNo and formInput tags Index: FailInit.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/exceptions/FailInit.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** FailInit.html 5 Apr 2002 14:37:49 -0000 1.6 --- FailInit.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 --> <TITLE> FailInit --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:21 EDT 2002 --> <TITLE> FailInit Index: IllegalParameter.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/exceptions/IllegalParameter.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** IllegalParameter.html 5 Apr 2002 14:37:49 -0000 1.6 --- IllegalParameter.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 --> <TITLE> IllegalParameter --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:21 EDT 2002 --> <TITLE> IllegalParameter Index: NoConnection.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/exceptions/NoConnection.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** NoConnection.html 5 Apr 2002 14:37:49 -0000 1.6 --- NoConnection.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 --> <TITLE> NoConnection --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:21 EDT 2002 --> <TITLE> NoConnection Index: PageNotFound.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/exceptions/PageNotFound.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** PageNotFound.html 5 Apr 2002 14:37:49 -0000 1.6 --- PageNotFound.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 --> <TITLE> PageNotFound --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:21 EDT 2002 --> <TITLE> PageNotFound Index: SystemBusy.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/exceptions/SystemBusy.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** SystemBusy.html 5 Apr 2002 14:37:49 -0000 1.6 --- SystemBusy.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 --> <TITLE> SystemBusy --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:21 EDT 2002 --> <TITLE> SystemBusy Index: package-frame.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/exceptions/package-frame.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-frame.html 5 Apr 2002 14:37:49 -0000 1.6 --- package-frame.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.exceptions() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.exceptions() Index: package-summary.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/exceptions/package-summary.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-summary.html 5 Apr 2002 14:37:49 -0000 1.6 --- package-summary.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.exceptions() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.exceptions() Index: package-tree.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/exceptions/package-tree.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-tree.html 5 Apr 2002 14:37:49 -0000 1.6 --- package-tree.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.exceptions Class Hierarchy --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.exceptions Class Hierarchy |
Update of /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/script In directory usw-pr-cvs1:/tmp/cvs-serv29359/dev/docs/net/sourceforge/idrs/script Modified Files: DBShell.html IDRSScript.html IdrsDB.html package-frame.html package-summary.html package-tree.html Log Message: added YesNo and formInput tags Index: DBShell.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/script/DBShell.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** DBShell.html 5 Apr 2002 14:37:50 -0000 1.6 --- DBShell.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 --> <TITLE> DBShell --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:22 EDT 2002 --> <TITLE> DBShell Index: IDRSScript.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/script/IDRSScript.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** IDRSScript.html 5 Apr 2002 14:37:50 -0000 1.6 --- IDRSScript.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 --> <TITLE> IDRSScript --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:21 EDT 2002 --> <TITLE> IDRSScript Index: IdrsDB.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/script/IdrsDB.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** IdrsDB.html 5 Apr 2002 14:37:50 -0000 1.6 --- IdrsDB.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 --> <TITLE> IdrsDB --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:21 EDT 2002 --> <TITLE> IdrsDB Index: package-frame.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/script/package-frame.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-frame.html 5 Apr 2002 14:37:50 -0000 1.6 --- package-frame.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.script() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.script() Index: package-summary.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/script/package-summary.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-summary.html 5 Apr 2002 14:37:50 -0000 1.6 --- package-summary.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.script() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.script() Index: package-tree.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/script/package-tree.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-tree.html 5 Apr 2002 14:37:50 -0000 1.6 --- package-tree.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.script Class Hierarchy --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.script Class Hierarchy |
|
From: Marc B. <big...@us...> - 2002-04-13 16:06:38
|
Update of /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/jdbc In directory usw-pr-cvs1:/tmp/cvs-serv29359/dev/docs/net/sourceforge/idrs/jdbc Modified Files: JDBCInfo.html JDBCPool.html package-frame.html package-summary.html package-tree.html Log Message: added YesNo and formInput tags Index: JDBCInfo.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/jdbc/JDBCInfo.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** JDBCInfo.html 5 Apr 2002 14:37:49 -0000 1.6 --- JDBCInfo.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:44 EST 2002 --> <TITLE> JDBCInfo --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:14 EDT 2002 --> <TITLE> JDBCInfo Index: JDBCPool.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/jdbc/JDBCPool.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** JDBCPool.html 5 Apr 2002 14:37:49 -0000 1.6 --- JDBCPool.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:44 EST 2002 --> <TITLE> JDBCPool --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:15 EDT 2002 --> <TITLE> JDBCPool Index: package-frame.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/jdbc/package-frame.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-frame.html 5 Apr 2002 14:37:50 -0000 1.6 --- package-frame.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.jdbc() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.jdbc() Index: package-summary.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/jdbc/package-summary.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-summary.html 5 Apr 2002 14:37:50 -0000 1.6 --- package-summary.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.jdbc() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.jdbc() Index: package-tree.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/jdbc/package-tree.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-tree.html 5 Apr 2002 14:37:50 -0000 1.6 --- package-tree.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.jdbc Class Hierarchy --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.jdbc Class Hierarchy |
Update of /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/macro In directory usw-pr-cvs1:/tmp/cvs-serv29359/dev/docs/net/sourceforge/idrs/deploy/macro Modified Files: MacroToXML.html MacroToXMLHandler.html Tag.html package-frame.html package-summary.html package-tree.html Log Message: added YesNo and formInput tags Index: MacroToXML.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/macro/MacroToXML.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** MacroToXML.html 5 Apr 2002 14:37:49 -0000 1.6 --- MacroToXML.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 --> <TITLE> MacroToXML --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:21 EDT 2002 --> <TITLE> MacroToXML Index: MacroToXMLHandler.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/macro/MacroToXMLHandler.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** MacroToXMLHandler.html 5 Apr 2002 14:37:49 -0000 1.6 --- MacroToXMLHandler.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 --> <TITLE> MacroToXMLHandler --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:21 EDT 2002 --> <TITLE> MacroToXMLHandler Index: Tag.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/macro/Tag.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Tag.html 5 Apr 2002 14:37:49 -0000 1.6 --- Tag.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:48 EST 2002 --> <TITLE> Tag --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:21 EDT 2002 --> <TITLE> Tag Index: package-frame.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/macro/package-frame.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-frame.html 5 Apr 2002 14:37:49 -0000 1.6 --- package-frame.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.deploy.macro() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.deploy.macro() Index: package-summary.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/macro/package-summary.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-summary.html 5 Apr 2002 14:37:49 -0000 1.6 --- package-summary.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.deploy.macro() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.deploy.macro() Index: package-tree.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/macro/package-tree.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-tree.html 5 Apr 2002 14:37:49 -0000 1.6 --- package-tree.html 13 Apr 2002 16:06:34 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.deploy.macro Class Hierarchy --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:10 EDT 2002 --> <TITLE> net.sourceforge.idrs.deploy.macro Class Hierarchy |
Update of /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy In directory usw-pr-cvs1:/tmp/cvs-serv29359/dev/docs/net/sourceforge/idrs/deploy Modified Files: DocReset.html HotDeploy.html InsertToIDRS.html RMLDeploy.html package-frame.html package-summary.html package-tree.html Log Message: added YesNo and formInput tags Index: DocReset.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/DocReset.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** DocReset.html 5 Apr 2002 14:37:49 -0000 1.6 --- DocReset.html 13 Apr 2002 16:06:33 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:47 EST 2002 --> <TITLE> DocReset --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:19 EDT 2002 --> <TITLE> DocReset Index: HotDeploy.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/HotDeploy.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** HotDeploy.html 5 Apr 2002 14:37:49 -0000 1.6 --- HotDeploy.html 13 Apr 2002 16:06:33 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:47 EST 2002 --> <TITLE> HotDeploy --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:19 EDT 2002 --> <TITLE> HotDeploy Index: InsertToIDRS.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/InsertToIDRS.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** InsertToIDRS.html 5 Apr 2002 14:37:49 -0000 1.6 --- InsertToIDRS.html 13 Apr 2002 16:06:33 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:47 EST 2002 --> <TITLE> InsertToIDRS --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:19 EDT 2002 --> <TITLE> InsertToIDRS Index: RMLDeploy.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/RMLDeploy.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** RMLDeploy.html 5 Apr 2002 14:37:49 -0000 1.6 --- RMLDeploy.html 13 Apr 2002 16:06:33 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:47 EST 2002 --> <TITLE> RMLDeploy --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:19 EDT 2002 --> <TITLE> RMLDeploy Index: package-frame.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/package-frame.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-frame.html 5 Apr 2002 14:37:49 -0000 1.6 --- package-frame.html 13 Apr 2002 16:06:33 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.deploy() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:09 EDT 2002 --> <TITLE> net.sourceforge.idrs.deploy() Index: package-summary.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/package-summary.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-summary.html 5 Apr 2002 14:37:49 -0000 1.6 --- package-summary.html 13 Apr 2002 16:06:33 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.deploy() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:09 EDT 2002 --> <TITLE> net.sourceforge.idrs.deploy() Index: package-tree.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/package-tree.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** package-tree.html 5 Apr 2002 14:37:49 -0000 1.6 --- package-tree.html 13 Apr 2002 16:06:33 -0000 1.7 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.deploy Class Hierarchy --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:09 EDT 2002 --> <TITLE> net.sourceforge.idrs.deploy Class Hierarchy |
|
From: Marc B. <big...@us...> - 2002-04-13 16:06:37
|
Update of /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile In directory usw-pr-cvs1:/tmp/cvs-serv29359/dev/docs/net/sourceforge/idrs/deploy/compile Modified Files: Compiler.html CompilerState.html RMLHandler.html RmlCompiler.html TestCompilation.html package-frame.html package-summary.html package-tree.html Log Message: added YesNo and formInput tags Index: Compiler.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/Compiler.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Compiler.html 11 Apr 2002 20:37:07 -0000 1.1 --- Compiler.html 13 Apr 2002 16:06:34 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:47 EST 2002 --> <TITLE> Compiler --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:19 EDT 2002 --> <TITLE> Compiler Index: CompilerState.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/CompilerState.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** CompilerState.html 11 Apr 2002 20:37:07 -0000 1.1 --- CompilerState.html 13 Apr 2002 16:06:34 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:47 EST 2002 --> <TITLE> CompilerState --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:19 EDT 2002 --> <TITLE> CompilerState Index: RMLHandler.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/RMLHandler.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** RMLHandler.html 11 Apr 2002 20:37:07 -0000 1.1 --- RMLHandler.html 13 Apr 2002 16:06:34 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:47 EST 2002 --> <TITLE> RMLHandler --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:19 EDT 2002 --> <TITLE> RMLHandler Index: RmlCompiler.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/RmlCompiler.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** RmlCompiler.html 11 Apr 2002 20:37:07 -0000 1.1 --- RmlCompiler.html 13 Apr 2002 16:06:34 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:47 EST 2002 --> <TITLE> RmlCompiler --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:19 EDT 2002 --> <TITLE> RmlCompiler Index: TestCompilation.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/TestCompilation.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestCompilation.html 11 Apr 2002 20:37:07 -0000 1.1 --- TestCompilation.html 13 Apr 2002 16:06:34 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:47 EST 2002 --> <TITLE> TestCompilation --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:19 EDT 2002 --> <TITLE> TestCompilation Index: package-frame.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/package-frame.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** package-frame.html 11 Apr 2002 20:37:07 -0000 1.1 --- package-frame.html 13 Apr 2002 16:06:34 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.deploy.compile() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:09 EDT 2002 --> <TITLE> net.sourceforge.idrs.deploy.compile() Index: package-summary.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/package-summary.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** package-summary.html 11 Apr 2002 20:37:07 -0000 1.1 --- package-summary.html 13 Apr 2002 16:06:34 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.deploy.compile() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:09 EDT 2002 --> <TITLE> net.sourceforge.idrs.deploy.compile() Index: package-tree.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/package-tree.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** package-tree.html 11 Apr 2002 20:37:07 -0000 1.1 --- package-tree.html 13 Apr 2002 16:06:34 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.deploy.compile Class Hierarchy --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Sat Apr 13 12:04:09 EDT 2002 --> <TITLE> net.sourceforge.idrs.deploy.compile Class Hierarchy |
|
From: Marc B. <big...@us...> - 2002-04-11 21:08:33
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units
In directory usw-pr-cvs1:/tmp/cvs-serv4319/dev/src/net/sourceforge/idrs/deploy/compile/units
Modified Files:
Body.java
Log Message:
Added YesNo class, updated docs
Index: Body.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Body.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Body.java 4 Mar 2002 23:05:35 -0000 1.2
--- Body.java 11 Apr 2002 20:37:06 -0000 1.3
***************
*** 115,118 ****
--- 115,143 ----
state.getCurrentLine().addChunk(new TextChunk(val));
}
+
+ /**
+ * Handles the yesNo tag
+ */
+ public void yesNo(String val, Attributes atts) throws Exception {
+ String name,srcType,single;
+ int isrcType,isingle;
+
+ name = atts.getValue("name");
+ single = atts.getValue("single");
+ if (single == null || single.equalsIgnoreCase("")) {
+ isingle = YesNo.NOT_SINGLE;
+ }
+ else {
+ isingle = single.equalsIgnoreCase("yes") ? YesNo.SINGLE_YES : YesNo.SINGLE_NO;
+ }
+
+ srcType = atts.getValue("srcType");
+ if (srcType.equalsIgnoreCase("param")) isrcType = YesNo.SRC_PARAM;
+ else if (srcType.equalsIgnoreCase("db")) isrcType = YesNo.SRC_DB;
+ else isrcType = YesNo.SRC_PROP;
+
+ state.getCurrentLine().addChunk(new YesNo(name,isingle,isrcType,val));
+
+ }
/**
***************
*** 133,136 ****
--- 158,163 ----
state.getReport().getBody().seal();
}
+
+
}
|
|
From: Marc B. <big...@us...> - 2002-04-11 21:08:32
|
Update of /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/units In directory usw-pr-cvs1:/tmp/cvs-serv4319/dev/classes/net/sourceforge/idrs/deploy/compile/units Modified Files: Body.class Log Message: Added YesNo class, updated docs Index: Body.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/units/Body.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsghbPY3 and /tmp/cvscnERGX differ |
|
From: Marc B. <big...@us...> - 2002-04-11 21:08:31
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report
In directory usw-pr-cvs1:/tmp/cvs-serv4319/dev/src/net/sourceforge/idrs/core/report
Modified Files:
IDRSBody.java
Added Files:
YesNo.java
Log Message:
Added YesNo class, updated docs
--- NEW FILE: YesNo.java ---
/*
YesNo.java
Copyright (C) 2001 Marc Boorshtein
The contents of this file are subject to the Mozilla Public License Version 1.0 (the License);
you may not use this file except in compliance with the License. You may obtain a copy of the
License at http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific
language governing rights and limitations under the License.
*/
package net.sourceforge.idrs.core.report;
import java.io.Serializable;
import java.lang.reflect.*;
import net.sourceforge.idrs.script.*;
/**
*Allows for the creation of a Yes/No option button with a current value retrieved from a request parameter, database value or bean property
*/
public class YesNo implements net.sourceforge.idrs.core.report.Chunk {
public static final int NOT_SINGLE=-1;
public static final int SINGLE_YES=0;
public static final int SINGLE_NO=1;
public static final int SRC_PARAM=0;
public static final int SRC_DB=1;
public static final int SRC_PROP=2;
String src;
String owner;
int srcType;
int single;
String name;
StringBuffer tag;
/** Creates new YesNo
*@param name Name of input tag
*@param singe One of the SINGLE constants. Allows for a Yes/No to be broken up
*@param srcType One of the SRC constants. Where the data is coming from
*@param src The name of the source
*/
public YesNo(String name, int single, int srcType, String src) {
tag = new StringBuffer();
this.name = name;
this.single = single;
this.srcType = srcType;
if (srcType == SRC_DB || srcType == SRC_PROP) {
this.owner = src.substring(0,src.indexOf('.'));
this.src = srcType == SRC_PROP ? "get" + src.substring(src.indexOf('.') + 1) : src.substring(src.indexOf('.') + 1);
}
else {
this.src = src;
}
}
/*
*Returns the generated input tag
*/
public String toString(IDRSHead head) throws Exception {
tag.setLength(0);
boolean yes = getValue(head);
if (single == NOT_SINGLE || single == SINGLE_YES) {
tag.append("<INPUT TYPE=\"RADIO\" VALUE=\"true\" NAME=\"").append(name).append("\" ").append(yes ? "CHECKED" : "").append("> Yes ");
}
if (single == NOT_SINGLE || single == SINGLE_NO) {
tag.append("<INPUT TYPE=\"RADIO\" VALUE=\"false\" NAME=\"").append(name).append("\" ").append(! yes ? "CHECKED" : "").append("> No ");
}
return tag.toString();
}
/**
*Retrieves a value based on what the source is
*/
protected boolean getValue(IDRSHead head) throws Exception {
String sval;
String db,field;
switch (srcType) {
case SRC_PARAM : return (sval = head.getRequest().getParameter(src)) != null ? sval.equalsIgnoreCase("true") : false;
case SRC_DB : return (sval = head.getFieldData(owner,src)) != null ? sval.equalsIgnoreCase("true") : false;
case SRC_PROP : return getPropData(head);
default : return false;
}
}
/**
*Uses reflection to retrieve data from a bean property
*/
protected boolean getPropData(IDRSHead idrs) throws Exception {
Object obj = idrs.getObject(owner);
Class cls = obj.getClass();
Method meth = cls.getMethod(src,new Class[0]);
return ((Boolean) meth.invoke(obj,new Object[0])).booleanValue() ;
}
}
Index: IDRSBody.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/IDRSBody.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** IDRSBody.java 5 Apr 2002 14:37:51 -0000 1.5
--- IDRSBody.java 11 Apr 2002 20:37:06 -0000 1.6
***************
*** 91,97 ****
//output += ln.toString(head) + "\n";
ln.toString(head,buffer);
! /*
! if (buffer.charAt(buffer.length()-1)!='\n')
! buffer.append("\n");*/
}
}
--- 91,97 ----
//output += ln.toString(head) + "\n";
ln.toString(head,buffer);
!
! //if (buffer.charAt(buffer.length()-1)!='\n')
! buffer.append("\n");
}
}
|
|
From: Marc B. <big...@us...> - 2002-04-11 21:08:28
|
Update of /cvsroot/idrs/Idrs/dev/bin In directory usw-pr-cvs1:/tmp/cvs-serv4319/dev/bin Modified Files: idrs.jar Log Message: Added YesNo class, updated docs Index: idrs.jar =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/bin/idrs.jar,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 Binary files /tmp/cvsrRx1Xx and /tmp/cvsIiZesX differ |
|
From: Marc B. <big...@us...> - 2002-04-11 21:08:28
|
Update of /cvsroot/idrs/Idrs/dev/lib In directory usw-pr-cvs1:/tmp/cvs-serv4319/dev/lib Modified Files: idrs.jar Log Message: Added YesNo class, updated docs Index: idrs.jar =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/lib/idrs.jar,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 Binary files /tmp/cvs6VLPwD and /tmp/cvsEZrSGJ differ |
|
From: Marc B. <big...@us...> - 2002-04-11 21:08:25
|
Update of /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/report In directory usw-pr-cvs1:/tmp/cvs-serv4319/dev/classes/net/sourceforge/idrs/core/report Modified Files: IDRSBody.class Log Message: Added YesNo class, updated docs Index: IDRSBody.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/report/IDRSBody.class,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvsHt0Rnh and /tmp/cvswYr4Pq differ |
|
From: Marc B. <big...@us...> - 2002-04-11 20:33:27
|
Update of /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units In directory usw-pr-cvs1:/tmp/cvs-serv2373/units Log Message: Directory /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile/units added to the repository |
|
From: Marc B. <big...@us...> - 2002-04-11 20:33:14
|
Update of /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile In directory usw-pr-cvs1:/tmp/cvs-serv2275/compile Log Message: Directory /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/deploy/compile added to the repository |
|
From: Marc B. <big...@us...> - 2002-04-05 15:29:57
|
Update of /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/core In directory usw-pr-cvs1:/tmp/cvs-serv14497/dev/docs/net/sourceforge/idrs/core Modified Files: IDRSPool.html ScriptPool.html package-frame.html package-summary.html package-tree.html Log Message: bug fixes, documentation Index: IDRSPool.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/core/IDRSPool.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** IDRSPool.html 4 Mar 2002 23:05:32 -0000 1.5 --- IDRSPool.html 5 Apr 2002 14:37:47 -0000 1.6 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Mon Mar 04 18:04:01 EST 2002 --> <TITLE> IDRSPool --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> IDRSPool Index: ScriptPool.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/core/ScriptPool.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ScriptPool.html 4 Mar 2002 23:05:32 -0000 1.5 --- ScriptPool.html 5 Apr 2002 14:37:47 -0000 1.6 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Mon Mar 04 18:04:01 EST 2002 --> <TITLE> ScriptPool --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> ScriptPool Index: package-frame.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/core/package-frame.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** package-frame.html 4 Mar 2002 23:05:32 -0000 1.5 --- package-frame.html 5 Apr 2002 14:37:47 -0000 1.6 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Mon Mar 04 18:04:00 EST 2002 --> <TITLE> net.sourceforge.idrs.core() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:40 EST 2002 --> <TITLE> net.sourceforge.idrs.core() Index: package-summary.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/core/package-summary.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** package-summary.html 4 Mar 2002 23:05:32 -0000 1.5 --- package-summary.html 5 Apr 2002 14:37:47 -0000 1.6 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Mon Mar 04 18:04:00 EST 2002 --> <TITLE> net.sourceforge.idrs.core() --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.core() Index: package-tree.html =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/docs/net/sourceforge/idrs/core/package-tree.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** package-tree.html 4 Mar 2002 23:05:32 -0000 1.5 --- package-tree.html 5 Apr 2002 14:37:47 -0000 1.6 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Mon Mar 04 18:04:00 EST 2002 --> <TITLE> net.sourceforge.idrs.core Class Hierarchy --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Fri Apr 05 09:37:41 EST 2002 --> <TITLE> net.sourceforge.idrs.core Class Hierarchy |
|
From: Marc B. <big...@us...> - 2002-04-05 15:29:57
|
Update of /cvsroot/idrs/Idrs/dev/xml In directory usw-pr-cvs1:/tmp/cvs-serv14497/dev/xml Modified Files: rmlTrans.xml Log Message: bug fixes, documentation Index: rmlTrans.xml =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/xml/rmlTrans.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** rmlTrans.xml 23 Mar 2002 04:48:29 -0000 1.4 --- rmlTrans.xml 5 Apr 2002 14:37:52 -0000 1.5 *************** *** 15,18 **** --- 15,19 ---- <trans:rml simple="true" ownLine="false">dbDriver</trans:rml> <trans:rml simple="true" ownLine="false">dbName</trans:rml> + <trans:rml simple="true" ownLine="false">dirrection</trans:rml> <trans:rml simple="true" ownLine="false">dbUser</trans:rml> <trans:rml simple="true" ownLine="false">dbPass</trans:rml> *************** *** 22,26 **** <trans:rml simple="true" ownLine="true">storedProc</trans:rml> <trans:rml simple="true" ownLine="true">varlist</trans:rml> ! <trans:rml simple="false" ownLine="true">body</trans:rml> <trans:rml simple="true" ownLine="false">field</trans:rml> <trans:rml simple="true" ownLine="false">src</trans:rml> --- 23,27 ---- <trans:rml simple="true" ownLine="true">storedProc</trans:rml> <trans:rml simple="true" ownLine="true">varlist</trans:rml> ! <trans:rml simple="false" ownLine="false">body</trans:rml> <trans:rml simple="true" ownLine="false">field</trans:rml> <trans:rml simple="true" ownLine="false">src</trans:rml> *************** *** 50,52 **** <!-- Names Space of RML --> <trans:schemaNameSpace>rml</trans:schemaNameSpace> ! </trans:rmlTrans> \ No newline at end of file --- 51,53 ---- <!-- Names Space of RML --> <trans:schemaNameSpace>rml</trans:schemaNameSpace> ! </trans:rmlTrans> |