idrs-commit Mailing List for Internet Document and Report Server (Page 8)
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-08-22 20:07:10
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script/embedable
In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/src/net/sourceforge/idrs/script/embedable
Modified Files:
IDRSShell.java
Log Message:
Synced development
Index: IDRSShell.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script/embedable/IDRSShell.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** IDRSShell.java 27 Feb 2002 23:56:32 -0000 1.4
--- IDRSShell.java 22 Aug 2002 20:06:37 -0000 1.5
***************
*** 148,151 ****
return idrs.getMultiPartRequest();
}
!
}
--- 148,184 ----
return idrs.getMultiPartRequest();
}
!
! /**
! *Tells the type of digest
! *@param plain Plain Text String
! */
! public String getDigest(String plain) throws Exception {
! return idrs.getDigest(plain);
! }
!
! /*
! /**
! *Creates an error in the request
! *@param err as string
! /
!
! public void createError(String err) {
! idrs.createError(err);
! }
!
! /**
! *Determines if there is an error
! *@return true if there is an error
! /
! public boolean isError() {
! return idrs.isError();
! }
!
! /**
! *Retrieves the error
! /
! public String getError() {
! return idrs.getError();
! }
! */
}
|
|
From: Marc B. <big...@us...> - 2002-08-22 20:07:09
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script
In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/src/net/sourceforge/idrs/script
Modified Files:
IDRSScript.java
Log Message:
Synced development
Index: IDRSScript.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script/IDRSScript.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** IDRSScript.java 14 Apr 2002 14:10:37 -0000 1.6
--- IDRSScript.java 22 Aug 2002 20:06:37 -0000 1.7
***************
*** 113,115 ****
--- 113,140 ----
public MultiPartRequest getMultiPartRequest() throws Exception;
+ /**
+ *Tells the type of digest
+ *@param plain Plain Text String
+ */
+ public String getDigest(String plain) throws Exception ;
+
+ /*
+ /**
+ *Creates an error in the request
+ *@param err as string
+ /
+
+ public void createError(String err);
+
+ /**
+ *Determines if there is an error
+ *@return true if there is an error
+ /
+ public boolean isError() ;
+
+ /**
+ *Retrieves the error
+ /
+ public String getError() ;
+ */
}
|
|
From: Marc B. <big...@us...> - 2002-08-22 20:07:08
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/jdbc
In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/src/net/sourceforge/idrs/jdbc
Modified Files:
JDBCInfo.java
Log Message:
Synced development
Index: JDBCInfo.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/jdbc/JDBCInfo.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** JDBCInfo.java 15 Sep 2001 19:25:22 -0000 1.3
--- JDBCInfo.java 22 Aug 2002 20:06:35 -0000 1.4
***************
*** 2,14 ****
JDBCInfo.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.jdbc;
--- 2,14 ----
JDBCInfo.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.jdbc;
***************
*** 19,38 ****
/**
! JDBCthis maintains useful information that describes
! JDBCPool. It contains this such as the pool name,
! the connection parameters, and the number of available
! connections.
*/
public class JDBCInfo {
!
protected String poolname, drivername, url, username, password;
!
public JDBCInfo() {}
!
/**
! Generates the jdbc information
! */
! public JDBCInfo(String poolname, String drivername, String url,
! String username, String password) {
setPoolname(poolname);
setDrivername(drivername);
--- 19,38 ----
/**
! * JDBCthis maintains useful information that describes
! * JDBCPool. It contains this such as the pool name,
! * the connection parameters, and the number of available
! * connections.
*/
public class JDBCInfo {
!
protected String poolname, drivername, url, username, password;
!
public JDBCInfo() {}
!
/**
! * Generates the jdbc information
! */
! public JDBCInfo(String poolname, String drivername, String url,
! String username, String password) {
setPoolname(poolname);
setDrivername(drivername);
***************
*** 41,124 ****
setPassword(password);
}
!
/**
! Retrieves the pool name
! */
! public String getPoolname() {
return this.poolname;
}
!
/**
! Sets the pool name
! @param name Name of pool
! */
! public void setPoolname(String name) {
this.poolname = name;
}
!
! /**
! Retrieves the pool driver
! */
public String getDrivername() {
return this.drivername;
}
!
/**
! Sets the pool driver
! @param drivername The driver
! */
! public void setDrivername (String drivername) {
this.drivername = drivername;
}
!
/**
! Retrieves the pool url
! */
! public String getUrl() {
return this.url;
}
!
/**
! Sets the pool url
! @param url The URL is used
! */
! public void setUrl (String url) {
this.url = url;
}
!
! /**
! Retrieves the user name specified
! */
public String getUsername() {
return this.username;
}
!
! /**
! Sets the user name specified
! @param username User name specified
! */
! public void setUsername (String username) {
this.username = username;
}
!
/**
! Retrieves the password specified
! */
! public String getPassword() {
return this.password;
}
!
/**
! Sets the Password specified
! @param password Password specified
! */
! public void setPassword (String password) {
this.password = password;
}
!
/**
! Generates a new connection based on the JDBC info
! */
! public Connection build() throws Exception {
Driver d = (Driver) (Class.forName(this.getDrivername()).newInstance());
Properties p = new Properties();
--- 41,124 ----
setPassword(password);
}
!
/**
! * Retrieves the pool name
! */
! public String getPoolname() {
return this.poolname;
}
!
/**
! * Sets the pool name
! * @param name Name of pool
! */
! public void setPoolname(String name) {
this.poolname = name;
}
!
! /**
! * Retrieves the pool driver
! */
public String getDrivername() {
return this.drivername;
}
!
/**
! * Sets the pool driver
! * @param drivername The driver
! */
! public void setDrivername(String drivername) {
this.drivername = drivername;
}
!
/**
! * Retrieves the pool url
! */
! public String getUrl() {
return this.url;
}
!
/**
! * Sets the pool url
! * @param url The URL is used
! */
! public void setUrl(String url) {
this.url = url;
}
!
! /**
! * Retrieves the user name specified
! */
public String getUsername() {
return this.username;
}
!
! /**
! * Sets the user name specified
! * @param username User name specified
! */
! public void setUsername(String username) {
this.username = username;
}
!
/**
! * Retrieves the password specified
! */
! public String getPassword() {
return this.password;
}
!
/**
! * Sets the Password specified
! * @param password Password specified
! */
! public void setPassword(String password) {
this.password = password;
}
!
/**
! * Generates a new connection based on the JDBC info
! */
! public Connection build() throws Exception {
Driver d = (Driver) (Class.forName(this.getDrivername()).newInstance());
Properties p = new Properties();
***************
*** 128,135 ****
return con;
}
!
public Object clone() {
return new JDBCInfo(poolname, drivername, url, username, password);
}
!
}
--- 128,135 ----
return con;
}
!
public Object clone() {
return new JDBCInfo(poolname, drivername, url, username, password);
}
!
}
|
|
From: Marc B. <big...@us...> - 2002-08-22 20:07:08
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units
In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/src/net/sourceforge/idrs/deploy/compile/units
Modified Files:
Db.java Head.java
Log Message:
Synced development
Index: Db.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Db.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Db.java 23 Mar 2002 04:48:28 -0000 1.3
--- Db.java 22 Aug 2002 20:06:34 -0000 1.4
***************
*** 77,81 ****
}
! public void dirrection(String val, Attributes att) throws Exception {
db.setDirection( val.equalsIgnoreCase("INPUT") ? DB.INPUT : DB.OUTPUT);
}
--- 77,81 ----
}
! public void direction(String val, Attributes att) throws Exception {
db.setDirection( val.equalsIgnoreCase("INPUT") ? DB.INPUT : DB.OUTPUT);
}
Index: Head.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Head.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Head.java 4 Mar 2002 23:05:35 -0000 1.2
--- Head.java 22 Aug 2002 20:06:34 -0000 1.3
***************
*** 73,77 ****
public void text(java.lang.String val, Attributes atts) throws Exception {
! this.state.getReport().getHead().addText(val);
}
--- 73,79 ----
public void text(java.lang.String val, Attributes atts) throws Exception {
! if (val.length() != 0) {
! this.state.getReport().getHead().addText(val);
! }
}
|
|
From: Marc B. <big...@us...> - 2002-08-22 20:07:08
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile
In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/src/net/sourceforge/idrs/deploy/compile
Modified Files:
RMLHandler.java
Log Message:
Synced development
Index: RMLHandler.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/RMLHandler.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** RMLHandler.java 5 Apr 2002 14:37:52 -0000 1.4
--- RMLHandler.java 22 Aug 2002 20:06:34 -0000 1.5
***************
*** 79,83 ****
compileClass = Class.forName(className);
this.isMethod=false;
! classes.put(className,compileClass);
}
catch (ClassNotFoundException cnf) {
--- 79,83 ----
compileClass = Class.forName(className);
this.isMethod=false;
! //classes.put(className,compileClass);
}
catch (ClassNotFoundException cnf) {
|
|
From: Marc B. <big...@us...> - 2002-08-22 20:07:08
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/servlet
In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/src/net/sourceforge/idrs/core/servlet
Modified Files:
IDRSServlet.java Init.java ReportStore.java
Added Files:
IteratorEnumeration.java
Log Message:
Synced development
--- NEW FILE: IteratorEnumeration.java ---
/*
* IteratorEnumeration.java
*
* Created on February 27, 2002, 3:36 PM
*/
package net.sourceforge.idrs.core.servlet;
import java.util.*;
/**
*
* @author mlb
* @version
*/
public class IteratorEnumeration implements java.util.Enumeration {
Iterator it;
/** Creates new IteratorEnumeration */
public IteratorEnumeration(Iterator it) {
this.it = it;
}
public boolean hasMoreElements() {
return it.hasNext();
}
public java.lang.Object nextElement() {
return it.next();
}
}
Index: IDRSServlet.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/servlet/IDRSServlet.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** IDRSServlet.java 14 Apr 2002 14:10:37 -0000 1.11
--- IDRSServlet.java 22 Aug 2002 20:06:33 -0000 1.12
***************
*** 2,14 ****
IDRSServlet.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.
[...1248 lines suppressed...]
! */
! public void errorPage(HttpServletRequest req, HttpServletResponse resp,Exception e)
! throws Exception {
!
! //forward to access denied page specified in the web.xml file
! //resp.setContentType("text/html");
! req.setAttribute("doc_Exception",e);
! req.getRequestDispatcher(init.getErrorPage()).forward(req, resp);
! }
}
+
class PoolInfo implements Cloneable {
! IDRSScriptLanguage idrss;
! IDRSRep rep;
! IDRSSecurity secure;
! HashMap conns;
! String docName;
!
}
Index: Init.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/servlet/Init.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** Init.java 14 Apr 2002 14:10:37 -0000 1.7
--- Init.java 22 Aug 2002 20:06:34 -0000 1.8
***************
*** 2,10 ****
Init.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
--- 2,10 ----
Init.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
***************
*** 29,32 ****
--- 29,34 ----
import java.text.*;
import net.sourceforge.idrs.utils.pool.PooledObject;
+ import net.sourceforge.idrs.pool.*;
+ import net.sourceforge.idrs.exceptions.*;
***************
*** 35,117 ****
*/
public class Init {
SimpleDateFormat formatter;
PrintStream log;
PrintStream errorLog;
ServletConfig svg;
! JDBCInfo appDB;
boolean toLower;
HashMap docsID, docsName, dbs;
Application app;
! ScriptPool scriptPool;
! JDBCPool appDBs;
! JDBCPool docDBs;
String useDocDB = null;
! ScriptPool scripts;
String idrslogPath;
String deniedPage;
String digestType;
boolean digestPass;
!
public HashMap getDocsIDMap() {
return this.docsID;
}
!
public HashMap getDocsNameMap() {
return this.docsName;
}
!
public ServletConfig getServletConfig() {
return this.svg;
}
!
! /**
! * Retrieves Application object retrieved from web.xml file
! */
! public Application getApplication() {
! return this.app;
! }
!
! /**
! * Retrieves location of page used for access denied
! */
! public String getDeniedPage() {
! return this.deniedPage;
! }
!
/**
! * Retrieves the system database connection
*/
! public PooledObject getSysCon() throws Exception {
! return appDBs.getConnection();
! }
!
/**
! * Returns a system connection to it's pool
*/
! public void returnSysCon(int con) throws Exception {
! appDBs.freeConnection(con);
! }
/**
! * Retrieves the information for the AppDB
*/
public JDBCInfo getAppDBInfo() {
! return appDB;
! }
!
/**
! * Returns wether or not the docdb and the appdb were the same
*/
! public boolean useDocDB() {
! return (useDocDB != null);
}
!
/**
! * Retrieves the name ofthe app db
*/
! public String getAppDBName() {
! return useDocDB;
}
!
/**
* Wether fields should be lowercase
--- 37,114 ----
*/
public class Init {
+ static final String DEFAULT_DB_POOL="net.sourceforge.idrs.pool.JDBCPool";
+ static final String DEFAULT_REPORT_POOL="net.sourceforge.idrs.pool.IDRSRepPool";
+ static final String DEFAULT_SCRIPT_POOL="net.sourceforge.idrs.pool.ScriptContextPool";
+
SimpleDateFormat formatter;
PrintStream log;
PrintStream errorLog;
ServletConfig svg;
! //JDBCInfo appDB;
boolean toLower;
HashMap docsID, docsName, dbs;
Application app;
! net.sourceforge.idrs.pool.ScriptPool scriptPool;
! net.sourceforge.idrs.pool.JDBCPool appDBs;
! net.sourceforge.idrs.pool.JDBCPool docDBs;
! String docsDB;
! String authDB;
!
String useDocDB = null;
! ScriptContextPool scripts;
String idrslogPath;
String deniedPage;
String digestType;
+ String errorPage;
boolean digestPass;
!
public HashMap getDocsIDMap() {
return this.docsID;
}
!
public HashMap getDocsNameMap() {
return this.docsName;
}
!
public ServletConfig getServletConfig() {
return this.svg;
}
!
/**
! * Retrieves the name of the doc db
*/
! public String getDocDbName() {
! return docsDB;
! }
!
/**
! * Retrieves the name of the authentication db
*/
! public String getAuthDbName() {
! return authDB;
! }
/**
! * Retrieves the information of the authentication db
*/
public JDBCInfo getAppDBInfo() {
! return (JDBCInfo) dbs.get(authDB);
! }
!
/**
! * Retrieves Application object retrieved from web.xml file
*/
! public Application getApplication() {
! return this.app;
}
!
/**
! * Retrieves location of page used for access denied
*/
! public String getDeniedPage() {
! return this.deniedPage;
}
!
!
/**
* Wether fields should be lowercase
***************
*** 120,124 ****
return toLower;
}
!
/**
*Determines if passwords are run through a digest
--- 117,121 ----
return toLower;
}
!
/**
*Determines if passwords are run through a digest
***************
*** 127,131 ****
return this.digestPass;
}
!
/**
*Retrieves digest type
--- 124,128 ----
return this.digestPass;
}
!
/**
*Retrieves digest type
***************
*** 134,196 ****
return this.digestType;
}
!
/**
* Retrives a report from it's pool
* @param name Name of page
*/
! public IDRSPool getReport(String name) {
return ((ReportStore) docsName.get(name)).pool;
}
!
/**
* Retrives a report from it's pool
* @param id ID of page
*/
! public IDRSPool getReport(int id) {
return ((ReportStore) docsName.get(Integer.toString(id))).pool;
}
!
/**
* Retrives a report's info from it's pool
* @param name Name of page
*/
! public DocInfo getDocInfo(String name) {
! return ((ReportStore) docsName.get(name)).info;
}
!
!
/**
* Retrives a report's info from it's pool
* @param id ID of page
*/
! public DocInfo getDocInfo(int id) {
! return ((ReportStore) docsName.get(Integer.toString(id))).info;
}
!
!
/**
* Retrives a connection pool
* @param name Name of pool
*/
! public JDBCPool getDBPool(String name) {
! return (JDBCPool) dbs.get(name);
}
!
/**
* Retrives a connection pool
* @param id ID of pool
*/
! public PooledObject getScriptContext() throws Exception {
! return scripts.checkOut(1);
}
!
/**
* Returns a script context
* @param contextID Index of context in it's pool
*/
! public void returnScriptContext(int contextID) throws Exception {
! scripts.checkIn(contextID);
}
!
/**
* Retrieves information on a set of connections
--- 131,198 ----
return this.digestType;
}
!
/**
* Retrives a report from it's pool
* @param name Name of page
*/
! public RepPool getReport(String name) {
return ((ReportStore) docsName.get(name)).pool;
}
!
/**
* Retrives a report from it's pool
* @param id ID of page
*/
! public RepPool getReport(int id) {
return ((ReportStore) docsName.get(Integer.toString(id))).pool;
}
!
/**
* Retrives a report's info from it's pool
* @param name Name of page
*/
! public DocInfo getDocInfo(String name) throws PageNotFoundException {
! ReportStore rep = (ReportStore) docsName.get(name);
! if (rep == null) throw new PageNotFoundException(name);
!
! return rep.info;
}
!
!
/**
* Retrives a report's info from it's pool
* @param id ID of page
*/
! public DocInfo getDocInfo(int id) throws PageNotFoundException {
! ReportStore rep = (ReportStore) this.docsID.get(new Integer(id));
! if (rep == null) throw new PageNotFoundException(id);
! return rep.info;
}
!
!
/**
* Retrives a connection pool
* @param name Name of pool
*/
! public DbPool getDBPool(String name) {
! return (DbPool) dbs.get(name);
}
!
/**
* Retrives a connection pool
* @param id ID of pool
*/
! public IDRSScriptLanguage getScriptContext() throws Exception {
! return scriptPool.getContext();
}
!
/**
* Returns a script context
* @param contextID Index of context in it's pool
*/
! public void returnScriptContext(IDRSScriptLanguage script) throws Exception {
! scriptPool.returnContext(script);
}
!
/**
* Retrieves information on a set of connections
***************
*** 203,224 ****
while (tok.hasMoreTokens()) {
key = tok.nextToken();
! tmp.put(key,((JDBCPool) dbs.get(key)).getInfo());
}
!
return tmp;
}
!
!
/**
* Builds script contexts
*/
protected void buildScriptContexts() throws Exception {
log.println("Building ScriptContextPools");
try {
String scriptClass = svg.getInitParameter("scriptClass");
int poolmin = Integer.parseInt(svg.getInitParameter("minReports"));
int poolmax = Integer.parseInt(svg.getInitParameter("maxReports"));
int idrsDaysOpen = Integer.parseInt(svg.getInitParameter("daysReportsOpen"));
! scripts = new ScriptPool(poolmin,poolmax,scriptClass,2000,idrslogPath + "/contexts.log",10);
}
catch (Exception e) {
--- 205,230 ----
while (tok.hasMoreTokens()) {
key = tok.nextToken();
! tmp.put(key,((DbPool) dbs.get(key)).getInfo());
}
!
return tmp;
}
!
!
/**
* Builds script contexts
*/
protected void buildScriptContexts() throws Exception {
+ String scriptPooler = svg.getInitParameter("scriptPool");
+ scriptPooler = scriptPooler != null ? scriptPooler : DEFAULT_SCRIPT_POOL;
+
log.println("Building ScriptContextPools");
try {
+ scriptPool = (net.sourceforge.idrs.pool.ScriptPool) Class.forName(scriptPooler).newInstance();
String scriptClass = svg.getInitParameter("scriptClass");
int poolmin = Integer.parseInt(svg.getInitParameter("minReports"));
int poolmax = Integer.parseInt(svg.getInitParameter("maxReports"));
int idrsDaysOpen = Integer.parseInt(svg.getInitParameter("daysReportsOpen"));
! scriptPool.build(poolmin,poolmax,scriptClass,2000,idrslogPath + "/contexts.log",10);
}
catch (Exception e) {
***************
*** 226,230 ****
}
}
!
/**
* Main routine used to initialize the IDRS
--- 232,236 ----
}
}
!
/**
* Main routine used to initialize the IDRS
***************
*** 235,259 ****
log = new PrintStream(new FileOutputStream(new File(idrslogPath + "/startup.log")));
this.svg = svg;
!
log.println("Starting idrs");
log.println("Date : " + (new java.sql.Date(System.currentTimeMillis())).toString());
log.println("-------------------------------------------------------");
!
log.println("Starting Error Log");
buildLog();
!
//build app
app = buildApplication();
!
log.println("-------------------------------------------------------");
getAppDB();
!
!
log.println("-------------------------------------------------------");
!
retrieveDocDBs();
!
log.println("-------------------------------------------------------");
!
//first load appDB info
//now get toLower
--- 241,265 ----
log = new PrintStream(new FileOutputStream(new File(idrslogPath + "/startup.log")));
this.svg = svg;
!
log.println("Starting idrs");
log.println("Date : " + (new java.sql.Date(System.currentTimeMillis())).toString());
log.println("-------------------------------------------------------");
!
log.println("Starting Error Log");
buildLog();
!
//build app
app = buildApplication();
!
log.println("-------------------------------------------------------");
getAppDB();
!
!
log.println("-------------------------------------------------------");
!
retrieveDocDBs();
!
log.println("-------------------------------------------------------");
!
//first load appDB info
//now get toLower
***************
*** 263,289 ****
else
toLower = lower.equalsIgnoreCase("true");
!
//access denied re-direct page
this.deniedPage=svg.getInitParameter("accessDeniedPage");
if (this.deniedPage == null) this.deniedPage="/";
- System.out.println("Access Denied Page:" + this.deniedPage);
//now load all of the docs
loadDocs();
log.println("-------------------------------------------------------");
!
log.println("-------------------------------------------------------");
//build script contexts
buildScriptContexts();
log.println("-------------------------------------------------------");
!
this.digestType = svg.getInitParameter("digestType");
digestPass = digestType != null && ! digestType.equalsIgnoreCase("none");
log.close();
!
!
}
!
/**
* Builds the basis of the Application object from the web.xml file
--- 269,297 ----
else
toLower = lower.equalsIgnoreCase("true");
!
//access denied re-direct page
this.deniedPage=svg.getInitParameter("accessDeniedPage");
if (this.deniedPage == null) this.deniedPage="/";
+
+ this.errorPage = svg.getInitParameter("errorPage");
+
//now load all of the docs
loadDocs();
log.println("-------------------------------------------------------");
!
log.println("-------------------------------------------------------");
//build script contexts
buildScriptContexts();
log.println("-------------------------------------------------------");
!
this.digestType = svg.getInitParameter("digestType");
digestPass = digestType != null && ! digestType.equalsIgnoreCase("none");
log.close();
!
!
}
!
/**
* Builds the basis of the Application object from the web.xml file
***************
*** 303,309 ****
log.println("Adding Var : " + varName + " -- " + varVal);
tmpApp.put(varName,varVal);
!
}
!
app = new Application(tmpApp);
tmpApp = null;
--- 311,317 ----
log.println("Adding Var : " + varName + " -- " + varVal);
tmpApp.put(varName,varVal);
!
}
!
app = new Application(tmpApp);
tmpApp = null;
***************
*** 312,331 ****
te.printStackTrace(log);
}
!
return app;
}
!
/**
* Creates the system db pool
*/
protected void getAppDB() throws Exception {
!
log.println("Createing IDRS app db pool");
String usedb = svg.getInitParameter("dbAlias");
if (usedb != null) {
useDocDB = usedb;
!
}
!
String dbUser = svg.getInitParameter("dbUser");
if (dbUser == null)
--- 320,340 ----
te.printStackTrace(log);
}
!
return app;
}
!
/**
* Creates the system db pool
*/
+ //Needs to be eliminated in favor of simply retrieving a name for the docs db and the authentication db
protected void getAppDB() throws Exception {
! /*
log.println("Createing IDRS app db pool");
String usedb = svg.getInitParameter("dbAlias");
if (usedb != null) {
useDocDB = usedb;
!
}
!
String dbUser = svg.getInitParameter("dbUser");
if (dbUser == null)
***************
*** 334,341 ****
if (dbPass == null)
dbPass = "";
!
appDB = new JDBCInfo("AppDB",svg.getInitParameter("dbDriver"),svg.getInitParameter("dbName"),dbUser,dbPass);
!
!
String contextPath = svg.getInitParameter("contextPath");
int minConns = Integer.parseInt(svg.getInitParameter("minConns"));
--- 343,350 ----
if (dbPass == null)
dbPass = "";
!
appDB = new JDBCInfo("AppDB",svg.getInitParameter("dbDriver"),svg.getInitParameter("dbName"),dbUser,dbPass);
!
!
String contextPath = svg.getInitParameter("contextPath");
int minConns = Integer.parseInt(svg.getInitParameter("minConns"));
***************
*** 348,371 ****
catch (Exception e) {
try {
!
e.printStackTrace(log);
}
catch (Exception e2) {}
! }
!
!
}
!
/**
* Loads all of the documents into their pools
*/
protected void loadDocs() throws Exception {
! IDRSPool pool;
log.println("Loading Docs");
String name="";
try {
! Class.forName(appDB.getDrivername()).newInstance();
! Connection con = DriverManager.getConnection(appDB.getUrl(),appDB.getUsername(),appDB.getPassword());
!
String sql = "SELECT * FROM tblDoc";
if (toLower) sql = sql.toLowerCase();
--- 357,390 ----
catch (Exception e) {
try {
!
e.printStackTrace(log);
}
catch (Exception e2) {}
! }*/
!
! docsDB = svg.getInitParameter("docDB");
! authDB = svg.getInitParameter("authDB");
!
!
!
!
!
}
!
/**
* Loads all of the documents into their pools
*/
protected void loadDocs() throws Exception {
! net.sourceforge.idrs.pool.RepPool pool;
log.println("Loading Docs");
String name="";
+ //String reportPool;
+
+ //reportPool = svg.getInitParameter("reportPool");
+ //reportPool = (reportPool != null) ? reportPool : DEFAULT_REPORT_POOL;
try {
!
! Connection con = ((net.sourceforge.idrs.pool.DbPool) dbs.get(docsDB)) .getInfo().build();
!
String sql = "SELECT * FROM tblDoc";
if (toLower) sql = sql.toLowerCase();
***************
*** 387,391 ****
DocInfo info;
ReportStore repstr;
!
if (toLower) {
docid=docid.toLowerCase();
--- 406,410 ----
DocInfo info;
ReportStore repstr;
!
if (toLower) {
docid=docid.toLowerCase();
***************
*** 398,411 ****
docparams = docparams.toLowerCase();
}
!
while (rs.next()) {
try {
name=rs.getString(docname);
rep = (IDRSRep) (new ObjectInputStream(rs.getBinaryStream(docsrc))).readObject();
! pool = new IDRSPool(rs.getInt(docmin),rs.getInt(docmax),rep,2000,(idrslogPath + "/" + rs.getString(docname) + ".log"),10);
info = new DocInfo(rs.getInt(docid),rs.getString(docname),rs.getString(docgroups),rs.getString(docparams),rs.getString(docconns));
repstr = new ReportStore(pool,info);
!
!
docsName.put(rs.getString(docname),repstr);
docsID.put(rs.getString(docid),repstr);
--- 417,431 ----
docparams = docparams.toLowerCase();
}
!
while (rs.next()) {
try {
name=rs.getString(docname);
rep = (IDRSRep) (new ObjectInputStream(rs.getBinaryStream(docsrc))).readObject();
! pool = createReportPool();
! pool.build(rs.getInt(docmin),rs.getInt(docmax),rep,2000L,(idrslogPath + "/" + rs.getString(docname) + ".log"),10);
info = new DocInfo(rs.getInt(docid),rs.getString(docname),rs.getString(docgroups),rs.getString(docparams),rs.getString(docconns));
repstr = new ReportStore(pool,info);
!
!
docsName.put(rs.getString(docname),repstr);
docsID.put(rs.getString(docid),repstr);
***************
*** 425,429 ****
}
}
!
/**
* Retrieves the connections defined in the web.xml file
--- 445,449 ----
}
}
!
/**
* Retrieves the connections defined in the web.xml file
***************
*** 431,441 ****
public void retrieveDocDBs() throws Exception {
log.println("Retrieving Doc Dbs");
int i;
int numDBs;
if (svg.getInitParameter("numDBs") == null)
numDBs = 0;
else
numDBs = Integer.parseInt(svg.getInitParameter("numDBs"));
!
String tmpUser,
tmpPass,
--- 451,465 ----
public void retrieveDocDBs() throws Exception {
log.println("Retrieving Doc Dbs");
+ String dbPool;
int i;
int numDBs;
+
+ dbPool = svg.getInitParameter("dbPool") != null ? svg.getInitParameter("dbPool") : DEFAULT_DB_POOL;
+
if (svg.getInitParameter("numDBs") == null)
numDBs = 0;
else
numDBs = Integer.parseInt(svg.getInitParameter("numDBs"));
!
String tmpUser,
tmpPass,
***************
*** 444,470 ****
tmpLog,
tmpAlias;
!
long tmpDaysOpen;
int tmpMin,
tmpMax;
!
dbs = new HashMap();
! JDBCPool tmpDB;
for (i = 1;i <= numDBs; i++) {
//An alias will be used to make deployment MUCH easier
tmpAlias = svg.getInitParameter("dbAlias" + Integer.toString(i));
!
tmpDriver = svg.getInitParameter("dbDriver" + Integer.toString(i));
!
tmpName = svg.getInitParameter("dbName" + Integer.toString(i));
!
//if no alias was supplied, then then driver will be used
if (tmpAlias == null)
tmpAlias = tmpName;
!
!
tmpUser = svg.getInitParameter("dbUser" + Integer.toString(i));
!
!
if (tmpUser == null)
tmpUser = "";
--- 468,494 ----
tmpLog,
tmpAlias;
!
long tmpDaysOpen;
int tmpMin,
tmpMax;
!
dbs = new HashMap();
! net.sourceforge.idrs.pool.DbPool tmpDB;
for (i = 1;i <= numDBs; i++) {
//An alias will be used to make deployment MUCH easier
tmpAlias = svg.getInitParameter("dbAlias" + Integer.toString(i));
!
tmpDriver = svg.getInitParameter("dbDriver" + Integer.toString(i));
!
tmpName = svg.getInitParameter("dbName" + Integer.toString(i));
!
//if no alias was supplied, then then driver will be used
if (tmpAlias == null)
tmpAlias = tmpName;
!
!
tmpUser = svg.getInitParameter("dbUser" + Integer.toString(i));
!
!
if (tmpUser == null)
tmpUser = "";
***************
*** 472,497 ****
if (tmpPass == null)
tmpPass = "";
!
tmpMin = Integer.parseInt(svg.getInitParameter("minConns" + Integer.toString(i)));
tmpMax = Integer.parseInt(svg.getInitParameter("maxConns" + Integer.toString(i)));
tmpDaysOpen = Long.parseLong(svg.getInitParameter("daysOpen" + Integer.toString(i)));
tmpLog = svg.getInitParameter("logPath" + Integer.toString(i));
!
try {
! tmpDB = new JDBCPool(tmpDriver,tmpDriver,tmpName,tmpUser,tmpPass,tmpMin,tmpMax,tmpDaysOpen,2000,tmpLog,10);
dbs.put(tmpAlias,tmpDB);
}
catch (Exception e) {
!
e.printStackTrace(log);
}
!
tmpAlias = null;
!
!
}
!
}
!
protected void buildLog() throws Exception {
formatter = new SimpleDateFormat("yyyy.MMMMM.dd hh::mm aaaa");
--- 496,523 ----
if (tmpPass == null)
tmpPass = "";
!
tmpMin = Integer.parseInt(svg.getInitParameter("minConns" + Integer.toString(i)));
tmpMax = Integer.parseInt(svg.getInitParameter("maxConns" + Integer.toString(i)));
tmpDaysOpen = Long.parseLong(svg.getInitParameter("daysOpen" + Integer.toString(i)));
tmpLog = svg.getInitParameter("logPath" + Integer.toString(i));
!
try {
! tmpDB = (DbPool) Class.forName(dbPool).newInstance();
! tmpDB.build(tmpDriver,tmpDriver,tmpName,tmpUser,tmpPass,tmpMin,tmpMax,tmpDaysOpen,2000L,tmpLog);
! System.out.println("Adding " + tmpName);
dbs.put(tmpAlias,tmpDB);
}
catch (Exception e) {
! e.printStackTrace(System.out);
e.printStackTrace(log);
}
!
tmpAlias = null;
!
!
}
!
}
!
protected void buildLog() throws Exception {
formatter = new SimpleDateFormat("yyyy.MMMMM.dd hh::mm aaaa");
***************
*** 500,504 ****
errorLog.println("[Log Begining " + now + "]");
}
!
public void logEvent(String type, Exception mess) throws Exception {
String now = formatter.format(new java.util.Date(System.currentTimeMillis()));
--- 526,530 ----
errorLog.println("[Log Begining " + now + "]");
}
!
public void logEvent(String type, Exception mess) throws Exception {
String now = formatter.format(new java.util.Date(System.currentTimeMillis()));
***************
*** 507,519 ****
errorLog.println("[End Event " + type + " " + now + "]");
}
!
public void close() throws Exception {
errorLog.close();
}
!
!
!
!
}
--- 533,554 ----
errorLog.println("[End Event " + type + " " + now + "]");
}
!
public void close() throws Exception {
errorLog.close();
}
+
+ public String getErrorPage() {
+ return errorPage;
+ }
! public RepPool createReportPool() throws Exception {
! String reportPool = svg.getInitParameter("reportPool");
! reportPool = (reportPool != null) ? reportPool : DEFAULT_REPORT_POOL;
! return (RepPool) Class.forName(reportPool).newInstance();
! }
!
!
!
!
}
Index: ReportStore.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/servlet/ReportStore.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ReportStore.java 25 Dec 2001 06:44:00 -0000 1.1
--- ReportStore.java 22 Aug 2002 20:06:34 -0000 1.2
***************
*** 1,10 ****
package net.sourceforge.idrs.core.servlet;
import net.sourceforge.idrs.core.*;
public final class ReportStore {
! IDRSPool pool;
DocInfo info;
! public ReportStore(IDRSPool pool, DocInfo info) {
this.pool = pool;
this.info = info;
--- 1,12 ----
package net.sourceforge.idrs.core.servlet;
+
import net.sourceforge.idrs.core.*;
+ import net.sourceforge.idrs.pool.*;
public final class ReportStore {
! RepPool pool;
DocInfo info;
! public ReportStore(RepPool pool, DocInfo info) {
this.pool = pool;
this.info = info;
|
|
From: Marc B. <big...@us...> - 2002-08-22 20:07:07
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy
In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/src/net/sourceforge/idrs/deploy
Modified Files:
DocReset.java
Log Message:
Synced development
Index: DocReset.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/DocReset.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** DocReset.java 27 Feb 2002 23:56:31 -0000 1.2
--- DocReset.java 22 Aug 2002 20:06:34 -0000 1.3
***************
*** 8,11 ****
--- 8,13 ----
import java.util.*;
import java.sql.*;
+ import net.sourceforge.idrs.pool.*;
+
/**
***************
*** 78,82 ****
IDRSRep newDoc;
Connection con;
! IDRSPool pool;
IDRSRep rep;
PreparedStatement ps;
--- 80,84 ----
IDRSRep newDoc;
Connection con;
! RepPool pool;
IDRSRep rep;
PreparedStatement ps;
***************
*** 119,130 ****
(IDRSRep) (new ObjectInputStream(rs.getBinaryStream(docsrc))).readObject();
! pool =
! new IDRSPool(
! rs.getInt(docmin),
! rs.getInt(docmax),
! rep,
! 2000,
! (idrslogPath + "/" + rs.getString(docname) + ".log"),
! 10);
info =
--- 121,126 ----
(IDRSRep) (new ObjectInputStream(rs.getBinaryStream(docsrc))).readObject();
! pool = init.createReportPool();
! pool.build(rs.getInt(docmin), rs.getInt(docmax), rep, 2000, (idrslogPath + "/" + rs.getString(docname) + ".log"), 10);
info =
|
|
From: Marc B. <big...@us...> - 2002-08-22 20:07:06
|
Update of /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/utils/pool In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/classes/net/sourceforge/idrs/utils/pool Modified Files: ObjectPool.class POS.class PooledObject.class Log Message: Synced development Index: ObjectPool.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/utils/pool/ObjectPool.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsS4kMuc and /tmp/cvsgtsOKe differ Index: POS.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/utils/pool/POS.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvseLI8Eb and /tmp/cvsYfR68c differ Index: PooledObject.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/utils/pool/PooledObject.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsD1YZkd and /tmp/cvsI0N2og differ |
|
From: Marc B. <big...@us...> - 2002-08-22 20:07:06
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report
In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/src/net/sourceforge/idrs/core/report
Modified Files:
GenTag.java IDRSHead.java
Log Message:
Synced development
Index: GenTag.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/GenTag.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** GenTag.java 13 Apr 2002 16:06:35 -0000 1.1
--- GenTag.java 22 Aug 2002 20:06:33 -0000 1.2
***************
*** 180,183 ****
--- 180,184 ----
sval = head.getRequest().getParameter(name);
if (sval == null) {
+ System.out.println("Getting db value " + owner + "." + src + " : " + head.getFieldData(owner,src));
return (sval = head.getFieldData(owner,src)) != null ? sval : "";
}
***************
*** 187,190 ****
--- 188,192 ----
}
else {
+ System.out.println("Getting db value " + owner + "." + src + " : " + head.getFieldData(owner,src));
return (sval = head.getFieldData(owner,src)) != null ? sval : "";
}
Index: IDRSHead.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/IDRSHead.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** IDRSHead.java 14 Apr 2002 12:37:53 -0000 1.9
--- IDRSHead.java 22 Aug 2002 20:06:33 -0000 1.10
***************
*** 10,13 ****
--- 10,14 ----
import javax.servlet.http.*;
import java.sql.*;
+ import java.security.*;
public final class IDRSHead implements Serializable, IDRSScript {
***************
*** 24,27 ****
--- 25,29 ----
protected transient boolean send = true;
static final long serialVersionUID = -4520281654183459125L;
+ transient static final String ERR_NAME = "doc_ERROR";
protected transient HttpSession session;
protected transient HttpServletRequest request;
***************
*** 43,46 ****
--- 45,49 ----
protected transient HashMap connsInfo;
+ protected transient String digest;
/*
public void preBuild(HashMap connsInfo) throws Exception {
***************
*** 74,81 ****
if (body.isHTML()) {
! output = header + "\n" + "</HEAD>\n";
}
! return output;
}
--- 77,88 ----
if (body.isHTML()) {
! output = header + "</HEAD>\n";
! return output;
! }
! else {
! return "";
}
!
}
***************
*** 95,100 ****
}
}
! else if (txt != null) {
! header += txt + "\n";
}
--- 102,107 ----
}
}
! else if (txt != null && txt.length() != 0) {
! header += txt;
}
***************
*** 136,141 ****
*/
public void init(HashMap conns, int userNum, int docID, String url, HttpSession session,
! HttpServletRequest request,HttpServletResponse response, Application app, IDRSScriptLanguage context,UserInfo userInfo) throws Exception {
this.userInfo=userInfo;
--- 143,149 ----
*/
public void init(HashMap conns, int userNum, int docID, String url, HttpSession session,
! HttpServletRequest request,HttpServletResponse response, Application app, IDRSScriptLanguage context,UserInfo userInfo,String digest) throws Exception {
+ this.digest = digest;
this.userInfo=userInfo;
***************
*** 334,338 ****
if (Db == null)
throw new Exception("DB " + db + " not found");
! return Db.getFieldData(field,format);
}
catch (Exception e) {
--- 342,346 ----
if (Db == null)
throw new Exception("DB " + db + " not found");
! return Db.getFieldData(field.toLowerCase(),format);
}
catch (Exception e) {
***************
*** 613,616 ****
--- 621,667 ----
}
}
+
+ /**
+ *Tells the type of digest
+ *@param plain Plain Text String
+ */
+ public String getDigest(String plain) throws Exception {
+ if (! this.digest.equalsIgnoreCase("none")) {
+ MessageDigest md = MessageDigest.getInstance(this.digest);
+ md.update(plain.getBytes());
+ byte[] digest = md.digest();
+ return new String(digest);
+ }
+ else {
+ return plain;
+ }
+ }
+
+ /*
+ /**
+ *Creates an error in the request
+ *@param err as string
+ /
+
+ public void createError(String err) {
+ request.setAttribute(ERR_NAME,err);
+ }
+
+ /**
+ *Determines if there is an error
+ *@return true if there is an error
+ /
+ public boolean isError() {
+ return request.getAttribute(ERR_NAME) != null;
+ }
+
+ /**
+ *Retrieves the error
+ /
+ public String getError() {
+ return (String) request.getAttribute(ERR_NAME);
+ }
+
+ */
}
|
|
From: Marc B. <big...@us...> - 2002-08-22 20:07:06
|
Update of /cvsroot/idrs/Idrs/dev/lib In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/lib Modified Files: idrs.jar Log Message: Synced development Index: idrs.jar =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/lib/idrs.jar,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 Binary files /tmp/cvsbfUtLN and /tmp/cvsA6SdDs differ |
|
From: Marc B. <big...@us...> - 2002-08-22 20:07:02
|
Update of /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/utils In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/classes/net/sourceforge/idrs/utils Modified Files: Application.class CleanUp.class DB.class IDRSPrinter.class ObjectStore.class RS.class RSMetaData.class ReqAttr.class ReqReq.class RequestWrapper.class UserInfo.class Log Message: Synced development Index: Application.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/utils/Application.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsq6b57O and /tmp/cvsQz2u8t differ Index: CleanUp.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/utils/CleanUp.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsGWOqqO and /tmp/cvsem77Cs differ Index: DB.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/utils/DB.class,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsNyj5RP and /tmp/cvs8DVNwv differ Index: IDRSPrinter.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/utils/IDRSPrinter.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvstLz4QR and /tmp/cvsiVioAz differ Index: ObjectStore.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/utils/ObjectStore.class,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsst4CoT and /tmp/cvsGgNvzC differ Index: RS.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/utils/RS.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsQOtNSU and /tmp/cvsg7npxF differ Index: RSMetaData.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/utils/RSMetaData.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs7bU3XT and /tmp/cvs8331ND differ Index: ReqAttr.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/utils/ReqAttr.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsfX4NuV and /tmp/cvs6GvTRG differ Index: ReqReq.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/utils/ReqReq.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs0HYm1W and /tmp/cvsyuzwLJ differ Index: RequestWrapper.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/utils/RequestWrapper.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsLaUxVX and /tmp/cvsQOCaGL differ Index: UserInfo.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/utils/UserInfo.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsCc5txZ and /tmp/cvseIIKWO differ |
|
From: Marc B. <big...@us...> - 2002-08-22 20:06:58
|
Update of /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/script/embedable In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/classes/net/sourceforge/idrs/script/embedable Modified Files: IDRSBeanShell.class IDRSJPython.class IDRSScriptLanguage.class IDRSShell.class Log Message: Synced development Index: IDRSBeanShell.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/script/embedable/IDRSBeanShell.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsmA3fzA and /tmp/cvs6zuu00 differ Index: IDRSJPython.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/script/embedable/IDRSJPython.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsst5ogB and /tmp/cvsaUx2d2 differ Index: IDRSScriptLanguage.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/script/embedable/IDRSScriptLanguage.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs3uJTNC and /tmp/cvsKJqJk5 differ Index: IDRSShell.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/script/embedable/IDRSShell.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsgSDeoE and /tmp/cvsaQMqy8 differ |
|
From: Marc B. <big...@us...> - 2002-08-22 20:06:58
|
Update of /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/exceptions In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/classes/net/sourceforge/idrs/exceptions Modified Files: FailInit.class IllegalParameter.class NoConnection.class SystemBusy.class Log Message: Synced development Index: FailInit.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/exceptions/FailInit.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs1nIcLh and /tmp/cvsmr1Bep differ Index: IllegalParameter.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/exceptions/IllegalParameter.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsvCJadj and /tmp/cvsmz0v9r differ Index: NoConnection.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/exceptions/NoConnection.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsMCLhti and /tmp/cvseyOaOq differ Index: SystemBusy.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/exceptions/SystemBusy.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsXtsZIj and /tmp/cvsabGpbt differ |
|
From: Marc B. <big...@us...> - 2002-08-22 20:06:57
|
Update of /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/jdbc In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/classes/net/sourceforge/idrs/jdbc Modified Files: JDBCInfo.class JDBCPool.class Log Message: Synced development Index: JDBCInfo.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/jdbc/JDBCInfo.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsmvX02l and /tmp/cvsWWjNRx differ Index: JDBCPool.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/jdbc/JDBCPool.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs66cyzn and /tmp/cvs2JLbWA differ |
|
From: Marc B. <big...@us...> - 2002-08-22 20:06:57
|
Update of /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/macro In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/classes/net/sourceforge/idrs/deploy/macro Modified Files: MacroToXML.class MacroToXMLHandler.class Tag.class Log Message: Synced development Index: MacroToXML.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/macro/MacroToXML.class,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 Binary files /tmp/cvs3SRzKa and /tmp/cvsCpKTeb differ Index: MacroToXMLHandler.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/macro/MacroToXMLHandler.class,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsfENf3b and /tmp/cvsYcPZSd differ Index: Tag.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/macro/Tag.class,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsorGIDd and /tmp/cvsWoJr0g differ |
|
From: Marc B. <big...@us...> - 2002-08-22 20:06:57
|
Update of /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/units In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/classes/net/sourceforge/idrs/deploy/compile/units Modified Files: Body.class Constructor.class Db.class Head.class IfChange.class IfResults.class Method.class No.class Object.class Repeat.class Rml.class SQL.class StoredProc.class VarList.class Yes.class Log Message: Synced development Index: Body.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/units/Body.class,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsExidXK and /tmp/cvsY370El differ Index: Constructor.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/units/Constructor.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsUhdxdM and /tmp/cvsAPe2go differ Index: Db.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/units/Db.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsEIm5CN and /tmp/cvsgxf3Xq differ Index: Head.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/units/Head.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsYNXFLP and /tmp/cvs4WOffv differ Index: IfChange.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/units/IfChange.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsxodBbR and /tmp/cvsix3Pfy differ Index: IfResults.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/units/IfResults.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsyZJEzQ and /tmp/cvsaKllRw differ Index: Method.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/units/Method.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsPWpB5R and /tmp/cvsyR03Wz differ Index: No.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/units/No.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsCY5cTS and /tmp/cvsCk0AvB differ Index: Object.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/units/Object.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsZU5wjU and /tmp/cvsy9S1vE differ Index: Repeat.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/units/Repeat.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsiRssXV and /tmp/cvs4g8TMH differ Index: Rml.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/units/Rml.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvs1qRJ3U and /tmp/cvsSDeGhI differ Index: SQL.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/units/SQL.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsQBhxuW and /tmp/cvsUPt5HI differ Index: StoredProc.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/units/StoredProc.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsN2pq4X and /tmp/cvsqPwRXL differ Index: VarList.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/units/VarList.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsyLMeJZ and /tmp/cvsOGjU9O differ Index: Yes.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/units/Yes.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsxlz2YY and /tmp/cvsu7dgHN differ |
|
From: Marc B. <big...@us...> - 2002-08-22 20:06:57
|
Update of /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/script In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/classes/net/sourceforge/idrs/script Modified Files: DBShell.class IDRSScript.class IdrsDB.class Log Message: Synced development Index: DBShell.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/script/DBShell.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvszfSF5e and /tmp/cvs0pEcXj differ Index: IDRSScript.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/script/IDRSScript.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvs79Azdg and /tmp/cvss4OMjm differ Index: IdrsDB.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/script/IdrsDB.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsAiyZIh and /tmp/cvsIbfUap differ |
|
From: Marc B. <big...@us...> - 2002-08-22 20:06:55
|
Update of /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/servlet In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/classes/net/sourceforge/idrs/core/servlet Modified Files: DocInfo.class IDRSSecurity.class IDRSServlet.class Init.class PoolInfo.class ReportStore.class Added Files: DataSource.class IteratorEnumeration.class MultiPartRequest.class Log Message: Synced development --- NEW FILE: DataSource.class --- Êþº¾ SourceFile --- NEW FILE: IteratorEnumeration.class --- Êþº¾ SourceFile *´ *´ *· --- NEW FILE: MultiPartRequest.class --- Êþº¾ Exceptions startsWith getLocales getCookies getHeaders getSession p y w| u u u SourceFile +¹ ¾¶ · ¶ ¶ ¾¶ §:» · `¶ ¶ þư *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ *´ 6 *´ Index: DocInfo.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/servlet/DocInfo.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsodqimj and /tmp/cvsiMpRps differ Index: IDRSSecurity.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/servlet/IDRSSecurity.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsXk3Xwi and /tmp/cvsuPOU7s differ Index: IDRSServlet.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/servlet/IDRSServlet.class,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 Binary files /tmp/cvsYP2Bxa and /tmp/cvs4EXCSa differ Index: Init.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/servlet/Init.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvs4Ntt1b and /tmp/cvsSmO3Od differ Index: PoolInfo.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/servlet/PoolInfo.class,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 Binary files /tmp/cvslMYXxd and /tmp/cvsa33mXg differ Index: ReportStore.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/servlet/ReportStore.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsU9ihVc and /tmp/cvsScGGzf differ |
|
From: Marc B. <big...@us...> - 2002-08-22 20:06:55
|
Update of /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/classes/net/sourceforge/idrs/deploy/compile Modified Files: CompilerState.class RMLHandler.class RmlCompiler.class TestCompilation.class Log Message: Synced development Index: CompilerState.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/CompilerState.class,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvsbvEPT2 and /tmp/cvs68tOyV differ Index: RMLHandler.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/RMLHandler.class,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvsldaph4 and /tmp/cvswUCClY differ Index: RmlCompiler.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/RmlCompiler.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvs8Rxpr3 and /tmp/cvsgR5GEW differ Index: TestCompilation.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/compile/TestCompilation.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsTjwvR4 and /tmp/cvs2sZVBZ differ |
|
From: Marc B. <big...@us...> - 2002-08-22 20:06:55
|
Update of /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/classes/net/sourceforge/idrs/deploy Modified Files: DocReset.class HotDeploy.class InsertToIDRS.class RMLDeploy.class Log Message: Synced development Index: DocReset.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/DocReset.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvs5W2M8v and /tmp/cvs2G3A6R differ Index: HotDeploy.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/HotDeploy.class,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvs3JiNjv and /tmp/cvsK1i3JS differ Index: InsertToIDRS.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/InsertToIDRS.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsE0ERNw and /tmp/cvscDdPoT differ Index: RMLDeploy.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/deploy/RMLDeploy.class,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvszBDWpy and /tmp/cvsUuSRBW differ |
|
From: Marc B. <big...@us...> - 2002-08-22 20:06:52
|
Update of /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/classes/net/sourceforge/idrs/core Modified Files: IDRSPool.class ScriptPool.class Log Message: Synced development Index: IDRSPool.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/IDRSPool.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsIMjNwg and /tmp/cvsMfswLm differ Index: ScriptPool.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/ScriptPool.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsSrPIUh and /tmp/cvsSGecBp differ |
Update of /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/report In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/classes/net/sourceforge/idrs/core/report Modified Files: Chunk.class EvalLongScript.class EvalScriptChunk.class FieldChunk.class IDRSCompiler.class IDRSHead.class IDRSRep.class IfChangeChunk.class IfResultsChunk.class InputResultsChunk.class Int.class Line.class ObjectChunk.class RepeatLine.class ShortScriptChunk.class TextChunk.class Added Files: GenTag.class InputChunk.class YesNo.class Log Message: Synced development --- NEW FILE: GenTag.class --- Êþº¾ paramFirst Exceptions getRequest SourceFile -¶ --- NEW FILE: InputChunk.class --- Êþº¾ INPUT_TEXT Exceptions getTextTag getBoolTag SourceFile --- NEW FILE: YesNo.class --- Êþº¾ NOT_SINGLE SINGLE_YES Exceptions SourceFile YesNo.java *´ Index: Chunk.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/report/Chunk.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvswtKrDi and /tmp/cvskbu3Zq differ Index: EvalLongScript.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/report/EvalLongScript.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvspS82bk and /tmp/cvsCd6U6t differ Index: EvalScriptChunk.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/report/EvalScriptChunk.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsE7uxum and /tmp/cvsQvq2Ry differ Index: FieldChunk.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/report/FieldChunk.class,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvsIYpV2n and /tmp/cvsyu1oPB differ Index: IDRSCompiler.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/report/IDRSCompiler.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsnZlC5m and /tmp/cvsi7bufC differ Index: IDRSHead.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/report/IDRSHead.class,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 Binary files /tmp/cvsWe9Sqo and /tmp/cvssXc4uC differ Index: IDRSRep.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/report/IDRSRep.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs8HhlUp and /tmp/cvskhAxxF differ Index: IfChangeChunk.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/report/IfChangeChunk.class,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvsBadZjr and /tmp/cvsaXIfqI differ Index: IfResultsChunk.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/report/IfResultsChunk.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvs21B6Ps and /tmp/cvsUr7VnL differ Index: InputResultsChunk.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/report/InputResultsChunk.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs1MqMQr and /tmp/cvsexl8xJ differ Index: Int.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/report/Int.class,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 Binary files /tmp/cvsceMdot and /tmp/cvsQRkBDM differ Index: Line.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/report/Line.class,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsYvjjLu and /tmp/cvsgzhZhP differ Index: ObjectChunk.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/report/ObjectChunk.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs3xHNkw and /tmp/cvskAnMrS differ Index: RepeatLine.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/report/RepeatLine.class,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvsWPYuvv and /tmp/cvskv7sRQ differ Index: ShortScriptChunk.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/report/ShortScriptChunk.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsROhC6w and /tmp/cvs0pEk5T differ Index: TextChunk.class =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/classes/net/sourceforge/idrs/core/report/TextChunk.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvscPicFy and /tmp/cvsaEhqcX differ |
|
From: Marc B. <big...@us...> - 2002-08-22 20:06:50
|
Update of /cvsroot/idrs/Idrs/dev/bin In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/bin Modified Files: idrs.jar Log Message: Synced development Index: idrs.jar =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/bin/idrs.jar,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 Binary files /tmp/cvsBwFCQa and /tmp/cvsAYS4Nc differ |
|
From: Marc B. <big...@us...> - 2002-08-22 20:06:49
|
Update of /cvsroot/idrs/Idrs/dev In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev Modified Files: build.xml Log Message: Synced development Index: build.xml =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/build.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** build.xml 27 Feb 2002 23:56:30 -0000 1.8 --- build.xml 22 Aug 2002 20:06:16 -0000 1.9 *************** *** 8,12 **** <property name="lib" value="lib"/> <property name="docsdir" value="docs"/> ! </target> --- 8,15 ---- <property name="lib" value="lib"/> <property name="docsdir" value="docs"/> ! <property name="dist" value="../dist" /> ! <property name="cvsroot" value=":d:ext:idrs.sourceforge.net:/usr/local/cvs" /> ! <property name="tmp" value="/tmp/tmp_idrs" /> ! <property name="tmp_export" value="/tmp/tmp_export" /> </target> *************** *** 19,22 **** --- 22,26 ---- <pathelement location="${lib}/jython.jar"/> <pathelement location="${lib}/bsh-core-1.2b3.jar"/> + <pathelement location="${lib}/commons-pool.jar"/> </classpath> </javac> *************** *** 43,45 **** --- 47,126 ---- <delete dir="tmp"/> </target> + + <target depends="init,build,jar" description="Commits all files to CVS, perform an export copy all documentation and package the the distro" name="dist"> + <mkdir dir="${tmp}" /> + <mkdir dir="${tmp_export}" /> + + <!-- Commit all changes --> + <!--<cvs package="Idrs" cvsRoot="${cvsroot}" cvsRsh="ssh" command="commit -m ${mess}" />--> + + <!-- Tag the results --> + <!--<cvs package="Idrs" cvsRoot="${cvsroot}" cvsRsh="ssh" command="tag ${tag}" />--> + + <!-- export results to temp file --> + <!--<cvs package="Idrs" cvsRoot="${cvsroot}" cvsRsh="ssh" tag="${tag}" command="export" dest="tmp_export" />--> + + <!-- for debugging --> + <copy todir="${tmp_export}/Idrs"> + <fileset dir="/home/mlb/Idrs" /> + </copy> + + <!-- create distribution --> + <copy todir="${tmp}/dev"> + <fileset dir="${tmp_export}/Idrs/dev"> + <exclude name="${tmp}/dev/projects" /> + <exclude name="${tmp}/dev/doc" /> + </fileset> + </copy> + + <!-- create the "dist" directory with the default WEB-INF --> + <mkdir dir="${tmp}/bin" /> + <mkdir dir="${tmp}/bin/WEB-INF" /> + <mkdir dir="${tmp}/bin/WEB-INF/xml" /> + <mkdir dir="${tmp}/bin/WEB-INF/lib" /> + + <copy todir="${tmp}/bin/WEB-INF/lib"> + <fileset dir="${tmp_export}/Idrs/dev/lib" includes="*.jar" /> + </copy> + + <copy todir="${tmp}/bin/WEB-INF/xml"> + <fileset dir="${tmp_export}/Idrs/dev/xml" includes="**/*.xml" excludes="**/web.xml" /> + + </copy> + + <copy todir="${tmp}/bin/WEB-INF" file="${tmp_export}/Idrs/dev/xml/web.xml" /> + + <copy todir="${tmp}/sql"> + <fileset dir="${tmp_export}/Idrs/sql" /> + </copy> + + <copy todir="${tmp}/dev/docs"> + <fileset dir="${docsdir}" /> + </copy> + + <copy todir="${tmp}/tutorials"> + <fileset dir="${tmp_export}/Idrs/docs/tutorials" /> + </copy> + + <copy todir="${tmp}"> + <fileset dir="${tmp_export}/Idrs/docs" includes="**/RML.htm" /> + </copy> + + <copy todir="${tmp}" file="${tmp_export}/Idrs/README" /> + + + + + + <!-- copy directory to dist --> + <copy todir="${dist}/package-${tag}/idrs-${tag}"> + <fileset dir="${tmp}" /> + </copy> + + <!-- package the files into distributions --> + <tar destfile="${dist}/packages/idrs-${tag}.tar" basedir="${dist}/package-${tag}" /> + <gzip src="${dist}/packages/idrs-${tag}.tar" zipfile="${dist}/packages/idrs-${tag}.tar.gz" /> + <zip destfile="${dist}/packages/idrs-${tag}.zip" basedir="${dist}/package-${tag}" /> + </target> + </project> |
|
From: Marc B. <big...@us...> - 2002-08-22 20:06:49
|
Update of /cvsroot/idrs/Idrs In directory usw-pr-cvs1:/tmp/cvs-serv21727 Modified Files: README Log Message: Synced development Index: README =================================================================== RCS file: /cvsroot/idrs/Idrs/README,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** README 27 Dec 2001 05:46:07 -0000 1.1 --- README 22 Aug 2002 20:06:16 -0000 1.2 *************** *** 1,3 **** IDRS Distribution ! Start by looking in docs/tutorials/setup to set up the system --- 1,9 ---- IDRS Distribution ! bin - Contains a base WEB-INF with all XML and jar files ready for deployment into an Application Server ! sql - SQL files for various databases for creating table structures to support the idrs ! tutorials - All tutorials and sources for the idrs ! dev - The SRC and libraries needed for building and developing the idrs ! dev\docs - JavaDocs ! dev\src - Sourcecode ! |