idrs-commit Mailing List for Internet Document and Report Server (Page 2)
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...> - 2004-08-30 00:56:27
|
Update of /cvsroot/idrs/Idrs/dev/net/sourceforge/idrs/utils/pool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12162/net/sourceforge/idrs/utils/pool Modified Files: ObjectPool.java Log Message: Added log4j support. cleaned up the logs Index: ObjectPool.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/net/sourceforge/idrs/utils/pool/ObjectPool.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ObjectPool.java 5 Dec 2000 16:33:40 -0000 1.3 --- ObjectPool.java 30 Aug 2004 00:56:09 -0000 1.4 *************** *** 22,25 **** --- 22,27 ---- import java.io.*; + import org.apache.log4j.Logger; + /** *************** *** 32,36 **** */ public abstract class ObjectPool implements Serializable { ! //Added Marc Boorshtein - 8/31/00 protected PrintStream out; //Used for logging pool activity protected int maxTrys; --- 34,39 ---- */ public abstract class ObjectPool implements Serializable { ! static transient Logger logger = Logger.getLogger(ObjectPool.class.getName()); ! //Added Marc Boorshtein - 8/31/00 protected PrintStream out; //Used for logging pool activity protected int maxTrys; *************** *** 218,226 **** else { // object failed validation ! System.out.println("Object not valid"); synchronized (this) { java.util.Date dnow = new java.util.Date(System.currentTimeMillis()); ! System.out.println("Output : " + out); --- 221,229 ---- else { // object failed validation ! if (logger.isDebugEnabled()) logger.debug("Object not valid"); synchronized (this) { java.util.Date dnow = new java.util.Date(System.currentTimeMillis()); ! if (logger.isDebugEnabled()) logger.debug(("Output : " + out); *************** *** 265,278 **** } catch(InterruptedException e) { ! System.out.println("ERROR: Failed while waiting for an object:"); ! System.out.println(e); } //changed Marc Boorshtein - 8/31/00 ! out.println("---------> All Connections Exhausted, waiting in loop " + num); return checkOut(num + 1); } } else { ! System.out.println("Returning Here"); return null; } --- 268,281 ---- } catch(InterruptedException e) { ! logger.error()"ERROR: Failed while waiting for an object:",e); ! } //changed Marc Boorshtein - 8/31/00 ! logger.warn("---------> All Connections Exhausted, waiting in loop " + num); return checkOut(num + 1); } } else { ! return null; } *************** *** 324,328 **** } */ ! System.out.println("Lost Connection"); } --- 327,331 ---- } */ ! logger.warn("Lost Connection"); } |
|
From: Marc B. <big...@us...> - 2004-08-30 00:56:27
|
Update of /cvsroot/idrs/Idrs/dev/net/sourceforge/idrs/jdbc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12162/net/sourceforge/idrs/jdbc Modified Files: JDBCPool.java Log Message: Added log4j support. cleaned up the logs Index: JDBCPool.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/net/sourceforge/idrs/jdbc/JDBCPool.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** JDBCPool.java 3 Dec 2000 17:42:23 -0000 1.3 --- JDBCPool.java 30 Aug 2004 00:56:09 -0000 1.4 *************** *** 28,31 **** --- 28,34 ---- import java.util.*; import java.io.*; + + import org.apache.log4j.Logger; + import net.sourceforge.idrs.utils.pool.*; //import JDBCInfo; *************** *** 35,39 **** */ public class JDBCPool extends ObjectPool { ! protected JDBCInfo info; /*removed Marc Boorshtein - 8/31/00 --- 38,42 ---- */ public class JDBCPool extends ObjectPool { ! static Logger logger = Logger.getLogger(JDBCPool.class.getName()); protected JDBCInfo info; /*removed Marc Boorshtein - 8/31/00 *************** *** 79,86 **** protected void logHeader() throws Exception { if (this.info == null) { ! System.out.println("No INFO!"); } ! if (out == null) ! out = System.out; out.println("Starting Poolman, IDRS Version"); out.println("dbDriver = " + this.info.getDrivername()); --- 82,89 ---- protected void logHeader() throws Exception { if (this.info == null) { ! logger.error("No configuration information"); } ! asd ! out.println("Starting Poolman, IDRS Version"); out.println("dbDriver = " + this.info.getDrivername()); *************** *** 132,136 **** java.util.Date now = new java.util.Date(System.currentTimeMillis()); ! out.println(now.toString() + " Opening connection " + count + " " + con.toString()); /* OLD CODE Class.forName(info.getDrivername()).newInstance(); --- 135,139 ---- java.util.Date now = new java.util.Date(System.currentTimeMillis()); ! if (logger.isDebugEnabled) logger.debug(now.toString() + " Opening connection " + count + " " + con.toString()); /* OLD CODE Class.forName(info.getDrivername()).newInstance(); *************** *** 148,153 **** } catch (ClassNotFoundException cnfex) { ! out.println("Looks like the driver was not found..."); ! out.println("Be sure it is in your CLASSPATH and listed properly in the properties file."); } catch (SQLException sqlex) { --- 151,156 ---- } catch (ClassNotFoundException cnfex) { ! logger.error("Looks like the driver was not found..."); ! logger.error("Be sure it is in your CLASSPATH and listed properly in the properties file."); } catch (SQLException sqlex) { *************** *** 156,171 **** info.getUrl() + ". Please check your username, password " + "and other connectivity info.");*/ ! out.println(sqlex); } catch(RuntimeException e) { ! out.println(e); //e.printStackTrace(); } catch(Exception e) { ! out.println(e); ! //e.printStackTrace(); } catch(Throwable t) { ! out.println(t); //t.printStackTrace(); } --- 159,173 ---- info.getUrl() + ". Please check your username, password " + "and other connectivity info.");*/ ! logger.error("Error in creating the connection",sqlex); } catch(RuntimeException e) { ! logger.error("Error in creating the connection",e); //e.printStackTrace(); } catch(Exception e) { ! logger.error("Error in creating the connection",e); } catch(Throwable t) { ! logger.error("Error in creating the connection",t); //t.printStackTrace(); } |
|
From: Marc B. <big...@us...> - 2004-08-30 00:56:27
|
Update of /cvsroot/idrs/Idrs/dev/net/sourceforge/idrs/utils In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12162/net/sourceforge/idrs/utils Modified Files: DB.java Log Message: Added log4j support. cleaned up the logs Index: DB.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/net/sourceforge/idrs/utils/DB.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DB.java 5 Dec 2000 16:33:40 -0000 1.2 --- DB.java 30 Aug 2004 00:56:10 -0000 1.3 *************** *** 298,313 **** cls = clss[i]; objVal = e.nextElement(); ! System.out.println("objVal : " + objVal); val = objVal.toString(); ! System.out.println("cls : " + cls); ! System.out.println("val : " + val); ! System.out.println("this.con : " + this.con); ! System.out.println("this.idrs : " + this.idrs); val1 = ObjectStore.getValue(cls,val,this.con,this.idrs); ! System.out.println("Here"); cls = val1.getClass(); ! System.out.println("Here"); finalVals.add(val1); ! System.out.println("Here"); i++; } --- 298,310 ---- cls = clss[i]; objVal = e.nextElement(); ! val = objVal.toString(); ! val1 = ObjectStore.getValue(cls,val,this.con,this.idrs); ! cls = val1.getClass(); ! finalVals.add(val1); ! i++; } |
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12847/src/net/sourceforge/idrs/core/report Modified Files: ShortScriptChunk.java EvalScriptChunk.java IDRSCompiler.java EvalLongScript.java Line.java FieldsLine.java IDRSBody.java FieldChunk.java IfResultsChunk.java CurrentField.java YesNo.java ObjectChunk.java NavPrevChunk.java TextChunk.java IfChangeChunk.java IDRSRep.java ErrorChunk.java SelectChunk.java GenTag.java IDRSHead.java Chunk.java NavigateChunk.java NavCurChunk.java RepeatLine.java TagLine.java AttributeLine.java PortalChunk.java InputResultsChunk.java NavNextChunk.java NavCurFormChunk.java Log Message: updated copyrights Index: ShortScriptChunk.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/ShortScriptChunk.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ShortScriptChunk.java 10 Sep 2001 01:28:34 -0000 1.2 --- ShortScriptChunk.java 29 Aug 2004 05:01:39 -0000 1.3 *************** *** 1,5 **** /* ShortScriptChunk.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* ShortScriptChunk.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: EvalScriptChunk.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/EvalScriptChunk.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** EvalScriptChunk.java 10 Sep 2001 01:28:34 -0000 1.2 --- EvalScriptChunk.java 29 Aug 2004 05:01:39 -0000 1.3 *************** *** 1,5 **** /* EvalScriptChunk.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* EvalScriptChunk.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: IDRSCompiler.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/IDRSCompiler.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** IDRSCompiler.java 29 Aug 2004 04:50:29 -0000 1.7 --- IDRSCompiler.java 29 Aug 2004 05:01:39 -0000 1.8 *************** *** 1,5 **** /* IDRSCompiler.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IDRSCompiler.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: EvalLongScript.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/EvalLongScript.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** EvalLongScript.java 10 Sep 2001 01:28:34 -0000 1.2 --- EvalLongScript.java 29 Aug 2004 05:01:39 -0000 1.3 *************** *** 1,5 **** /* EvalLongScript.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* EvalLongScript.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: Line.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/Line.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Line.java 22 Aug 2004 23:52:31 -0000 1.7 --- Line.java 29 Aug 2004 05:01:39 -0000 1.8 *************** *** 1,5 **** /* Line.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* Line.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: FieldsLine.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/FieldsLine.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FieldsLine.java 29 Aug 2004 04:50:29 -0000 1.1 --- FieldsLine.java 29 Aug 2004 05:01:39 -0000 1.2 *************** *** 1,5 **** /* FieldsLine.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* FieldsLine.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: IDRSBody.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/IDRSBody.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** IDRSBody.java 22 Aug 2004 23:52:31 -0000 1.8 --- IDRSBody.java 29 Aug 2004 05:01:39 -0000 1.9 *************** *** 1,5 **** /* IDRSBody.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IDRSBody.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: FieldChunk.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/FieldChunk.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** FieldChunk.java 21 Sep 2002 16:13:03 -0000 1.7 --- FieldChunk.java 29 Aug 2004 05:01:39 -0000 1.8 *************** *** 1,5 **** /* FieldChunk.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* FieldChunk.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: IfResultsChunk.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/IfResultsChunk.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** IfResultsChunk.java 22 Aug 2004 23:52:31 -0000 1.6 --- IfResultsChunk.java 29 Aug 2004 05:01:39 -0000 1.7 *************** *** 1,5 **** /* IfResultsChunk.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IfResultsChunk.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: CurrentField.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/CurrentField.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** CurrentField.java 29 Aug 2004 04:50:29 -0000 1.1 --- CurrentField.java 29 Aug 2004 05:01:39 -0000 1.2 *************** *** 1,5 **** /* CurrentField.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* CurrentField.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: YesNo.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/YesNo.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** YesNo.java 26 Mar 2003 21:33:08 -0000 1.3 --- YesNo.java 29 Aug 2004 05:01:39 -0000 1.4 *************** *** 1,5 **** /* YesNo.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* YesNo.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: ObjectChunk.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/ObjectChunk.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ObjectChunk.java 15 Sep 2001 17:33:28 -0000 1.3 --- ObjectChunk.java 29 Aug 2004 05:01:39 -0000 1.4 *************** *** 1,5 **** /* ObjectChunk.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* ObjectChunk.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: NavPrevChunk.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/NavPrevChunk.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** NavPrevChunk.java 26 Mar 2003 21:33:08 -0000 1.3 --- NavPrevChunk.java 29 Aug 2004 05:01:39 -0000 1.4 *************** *** 1,5 **** /* NavPrevChunk.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* NavPrevChunk.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: TextChunk.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/TextChunk.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TextChunk.java 22 Nov 2002 07:16:24 -0000 1.4 --- TextChunk.java 29 Aug 2004 05:01:39 -0000 1.5 *************** *** 1,5 **** /* TextChunk.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* TextChunk.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: IfChangeChunk.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/IfChangeChunk.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** IfChangeChunk.java 22 Aug 2004 23:52:31 -0000 1.5 --- IfChangeChunk.java 29 Aug 2004 05:01:39 -0000 1.6 *************** *** 1,5 **** /* IfChangeChunk.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IfChangeChunk.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: IDRSRep.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/IDRSRep.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** IDRSRep.java 22 Aug 2004 23:52:31 -0000 1.4 --- IDRSRep.java 29 Aug 2004 05:01:39 -0000 1.5 *************** *** 1,5 **** /* IDRSRep.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IDRSRep.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: ErrorChunk.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/ErrorChunk.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ErrorChunk.java 9 Sep 2002 21:27:44 -0000 1.1 --- ErrorChunk.java 29 Aug 2004 05:01:39 -0000 1.2 *************** *** 1,5 **** /* ErrorChunk.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* ErrorChunk.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: SelectChunk.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/SelectChunk.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SelectChunk.java 19 Apr 2003 03:13:49 -0000 1.2 --- SelectChunk.java 29 Aug 2004 05:01:39 -0000 1.3 *************** *** 1,5 **** /* SelectChunk.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* SelectChunk.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: GenTag.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/GenTag.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** GenTag.java 26 Mar 2003 21:33:05 -0000 1.6 --- GenTag.java 29 Aug 2004 05:01:39 -0000 1.7 *************** *** 1,5 **** /* GenTag.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* GenTag.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: IDRSHead.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/IDRSHead.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** IDRSHead.java 29 Aug 2004 04:50:29 -0000 1.19 --- IDRSHead.java 29 Aug 2004 05:01:39 -0000 1.20 *************** *** 1,2 **** --- 1,14 ---- + /* + IDRSHead.java + Copyright (C) 2002-2004 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 net.sourceforge.idrs.jdbc.*; Index: Chunk.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/Chunk.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Chunk.java 14 Sep 2001 14:14:07 -0000 1.3 --- Chunk.java 29 Aug 2004 05:01:39 -0000 1.4 *************** *** 1,5 **** /* Chunk.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* Chunk.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: NavigateChunk.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/NavigateChunk.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** NavigateChunk.java 19 Apr 2003 03:13:48 -0000 1.7 --- NavigateChunk.java 29 Aug 2004 05:01:39 -0000 1.8 *************** *** 1,5 **** /* NavigateChunk.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* NavigateChunk.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: NavCurChunk.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/NavCurChunk.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** NavCurChunk.java 26 Mar 2003 21:33:08 -0000 1.1 --- NavCurChunk.java 29 Aug 2004 05:01:39 -0000 1.2 *************** *** 1,5 **** /* NavNextChunk.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* NavNextChunk.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: RepeatLine.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/RepeatLine.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** RepeatLine.java 22 Aug 2004 23:52:31 -0000 1.7 --- RepeatLine.java 29 Aug 2004 05:01:39 -0000 1.8 *************** *** 1,5 **** /* RepeatLine.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* RepeatLine.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: TagLine.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/TagLine.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TagLine.java 29 Aug 2004 04:50:29 -0000 1.2 --- TagLine.java 29 Aug 2004 05:01:39 -0000 1.3 *************** *** 1,5 **** /* TagLine.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* TagLine.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: AttributeLine.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/AttributeLine.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AttributeLine.java 29 Aug 2004 04:50:29 -0000 1.2 --- AttributeLine.java 29 Aug 2004 05:01:39 -0000 1.3 *************** *** 1,5 **** /* AttributeLine.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* AttributeLine.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: PortalChunk.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/PortalChunk.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PortalChunk.java 22 Aug 2004 23:52:31 -0000 1.2 --- PortalChunk.java 29 Aug 2004 05:01:39 -0000 1.3 *************** *** 1,5 **** /* PortalChunk.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* PortalChunk.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: InputResultsChunk.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/InputResultsChunk.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** InputResultsChunk.java 15 Sep 2001 17:33:28 -0000 1.3 --- InputResultsChunk.java 29 Aug 2004 05:01:39 -0000 1.4 *************** *** 1,5 **** /* InputResultsChunk.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* InputResultsChunk.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: NavNextChunk.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/NavNextChunk.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** NavNextChunk.java 26 Mar 2003 21:33:09 -0000 1.3 --- NavNextChunk.java 29 Aug 2004 05:01:39 -0000 1.4 *************** *** 1,5 **** /* NavNextChunk.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* NavNextChunk.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: NavCurFormChunk.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/NavCurFormChunk.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** NavCurFormChunk.java 26 Mar 2003 23:03:23 -0000 1.1 --- NavCurFormChunk.java 29 Aug 2004 05:01:39 -0000 1.2 *************** *** 1,5 **** /* NavNextChunk.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* NavNextChunk.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); |
|
From: Marc B. <big...@us...> - 2004-08-29 05:02:21
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12847/src/net/sourceforge/idrs/deploy/compile/units Modified Files: Db.java IfResults.java Fields.java Yes.java Object.java No.java Head.java IfChange.java Attribute.java SQL.java Constructor.java Repeat.java VarList.java Tag.java Rml.java Body.java StoredProc.java Portal.java Method.java Log Message: updated copyrights Index: Db.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Db.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Db.java 6 Feb 2003 20:13:45 -0000 1.7 --- Db.java 29 Aug 2004 05:01:38 -0000 1.8 *************** *** 1,5 **** /* Db.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* Db.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: IfResults.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/IfResults.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IfResults.java 6 Feb 2003 20:13:45 -0000 1.2 --- IfResults.java 29 Aug 2004 05:01:38 -0000 1.3 *************** *** 1,5 **** /* IfResults.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IfResults.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: Fields.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Fields.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Fields.java 29 Aug 2004 04:50:30 -0000 1.1 --- Fields.java 29 Aug 2004 05:01:38 -0000 1.2 *************** *** 1,5 **** /* Fields.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* Fields.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: Yes.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Yes.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Yes.java 4 Mar 2002 23:05:35 -0000 1.1 --- Yes.java 29 Aug 2004 05:01:38 -0000 1.2 *************** *** 1,5 **** /* Yes.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* Yes.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: Object.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Object.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Object.java 6 Feb 2003 20:13:45 -0000 1.4 --- Object.java 29 Aug 2004 05:01:38 -0000 1.5 *************** *** 1,5 **** /* Object.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* Object.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: No.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/No.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** No.java 4 Mar 2002 23:05:35 -0000 1.1 --- No.java 29 Aug 2004 05:01:38 -0000 1.2 *************** *** 1,5 **** /* Head.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* Head.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: Head.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Head.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Head.java 22 Aug 2002 20:06:34 -0000 1.3 --- Head.java 29 Aug 2004 05:01:38 -0000 1.4 *************** *** 1,5 **** /* Head.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* Head.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: IfChange.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/IfChange.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IfChange.java 6 Feb 2003 20:13:45 -0000 1.2 --- IfChange.java 29 Aug 2004 05:01:38 -0000 1.3 *************** *** 1,5 **** /* IfChange.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IfChange.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: Attribute.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Attribute.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Attribute.java 29 Aug 2004 04:50:30 -0000 1.2 --- Attribute.java 29 Aug 2004 05:01:38 -0000 1.3 *************** *** 1,5 **** /* Attribute.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* Attribute.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: SQL.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/SQL.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SQL.java 4 Mar 2002 23:05:35 -0000 1.2 --- SQL.java 29 Aug 2004 05:01:38 -0000 1.3 *************** *** 1,5 **** /* SQL.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* SQL.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: Constructor.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Constructor.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Constructor.java 4 Mar 2002 23:05:35 -0000 1.2 --- Constructor.java 29 Aug 2004 05:01:38 -0000 1.3 *************** *** 1,5 **** /* Constructor.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* Constructor.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: Repeat.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Repeat.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Repeat.java 6 Feb 2003 20:13:45 -0000 1.3 --- Repeat.java 29 Aug 2004 05:01:38 -0000 1.4 *************** *** 1,5 **** /* Repeat.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* Repeat.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: VarList.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/VarList.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** VarList.java 4 Mar 2002 23:05:35 -0000 1.2 --- VarList.java 29 Aug 2004 05:01:38 -0000 1.3 *************** *** 1,5 **** /* VarList.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* VarList.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: Tag.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Tag.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Tag.java 29 Aug 2004 04:50:29 -0000 1.2 --- Tag.java 29 Aug 2004 05:01:38 -0000 1.3 *************** *** 1,5 **** /* Tag.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* Tag.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: Rml.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Rml.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Rml.java 22 Aug 2004 23:52:31 -0000 1.3 --- Rml.java 29 Aug 2004 05:01:38 -0000 1.4 *************** *** 1,5 **** /* Rml.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* Rml.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: Body.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Body.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** Body.java 29 Aug 2004 04:50:30 -0000 1.13 --- Body.java 29 Aug 2004 05:01:38 -0000 1.14 *************** *** 1,5 **** /* Body.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* Body.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: StoredProc.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/StoredProc.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** StoredProc.java 4 Mar 2002 23:05:35 -0000 1.2 --- StoredProc.java 29 Aug 2004 05:01:38 -0000 1.3 *************** *** 1,5 **** /* StoredProc.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* StoredProc.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: Portal.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Portal.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Portal.java 6 Feb 2003 20:13:45 -0000 1.2 --- Portal.java 29 Aug 2004 05:01:38 -0000 1.3 *************** *** 1,5 **** /* Portal.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* Portal.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: Method.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Method.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Method.java 4 Mar 2002 23:05:35 -0000 1.2 --- Method.java 29 Aug 2004 05:01:38 -0000 1.3 *************** *** 1,5 **** /* Method.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* Method.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); |
|
From: Marc B. <big...@us...> - 2004-08-29 05:02:21
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/servlet In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12847/src/net/sourceforge/idrs/core/servlet Modified Files: IteratorEnumeration.java Init.java IdrsController.java IdrsAuthDefault.java IdrsConfigHandler.java IDRSServlet.java DocInfo.java IdrsAuthBase.java IDRSAuth.java ConfigInfo.java ReportStore.java IDRSSecurity.java Log Message: updated copyrights Index: IteratorEnumeration.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/servlet/IteratorEnumeration.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IteratorEnumeration.java 22 Aug 2002 20:06:34 -0000 1.1 --- IteratorEnumeration.java 29 Aug 2004 05:01:38 -0000 1.2 *************** *** 1,8 **** /* ! * IteratorEnumeration.java ! * ! * Created on February 27, 2002, 3:36 PM ! */ package net.sourceforge.idrs.core.servlet; --- 1,15 ---- + /* ! IDRITERATORENUMERATIONSBody.java ! Copyright (C) 2002-2004 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.servlet; Index: Init.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/servlet/Init.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Init.java 17 Mar 2003 14:05:00 -0000 1.12 --- Init.java 29 Aug 2004 05:01:38 -0000 1.13 *************** *** 1,5 **** /* Init.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* Init.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: IdrsController.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/servlet/IdrsController.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** IdrsController.java 29 Aug 2004 04:50:30 -0000 1.6 --- IdrsController.java 29 Aug 2004 05:01:38 -0000 1.7 *************** *** 1,2 **** --- 1,14 ---- + /* + IdrsController.java + Copyright (C) 2002-2004 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.servlet; Index: IdrsAuthDefault.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/servlet/IdrsAuthDefault.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IdrsAuthDefault.java 19 Apr 2003 03:13:49 -0000 1.2 --- IdrsAuthDefault.java 29 Aug 2004 05:01:38 -0000 1.3 *************** *** 1,2 **** --- 1,14 ---- + /* + IdrsAuthDefault.java + Copyright (C) 2002-2004 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.servlet; Index: IdrsConfigHandler.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/servlet/IdrsConfigHandler.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IdrsConfigHandler.java 17 Mar 2003 14:05:00 -0000 1.2 --- IdrsConfigHandler.java 29 Aug 2004 05:01:38 -0000 1.3 *************** *** 1,2 **** --- 1,14 ---- + /* + IdrsConfigHandler.java + Copyright (C) 2002-2004 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.servlet; Index: IDRSServlet.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/servlet/IDRSServlet.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** IDRSServlet.java 6 Feb 2003 20:13:44 -0000 1.18 --- IDRSServlet.java 29 Aug 2004 05:01:38 -0000 1.19 *************** *** 1,5 **** /* IDRSServlet.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IDRSServlet.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: DocInfo.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/servlet/DocInfo.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DocInfo.java 15 Sep 2001 17:33:28 -0000 1.3 --- DocInfo.java 29 Aug 2004 05:01:39 -0000 1.4 *************** *** 1,5 **** /* DocInfo.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* DocInfo.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: IdrsAuthBase.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/servlet/IdrsAuthBase.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IdrsAuthBase.java 19 Apr 2003 03:13:49 -0000 1.2 --- IdrsAuthBase.java 29 Aug 2004 05:01:39 -0000 1.3 *************** *** 1,2 **** --- 1,14 ---- + /* + IDRSAuthBase.java + Copyright (C) 2002-2004 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.servlet; Index: IDRSAuth.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/servlet/IDRSAuth.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IDRSAuth.java 19 Apr 2003 03:13:49 -0000 1.1 --- IDRSAuth.java 29 Aug 2004 05:01:39 -0000 1.2 *************** *** 1,2 **** --- 1,14 ---- + /* + IDRSAuth.java + Copyright (C) 2002-2004 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.servlet; Index: ConfigInfo.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/servlet/ConfigInfo.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ConfigInfo.java 22 Aug 2004 05:17:39 -0000 1.3 --- ConfigInfo.java 29 Aug 2004 05:01:39 -0000 1.4 *************** *** 1,2 **** --- 1,14 ---- + /* + ConfigInfo.java + Copyright (C) 2002-2004 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.servlet; Index: ReportStore.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/servlet/ReportStore.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ReportStore.java 22 Aug 2002 20:06:34 -0000 1.2 --- ReportStore.java 29 Aug 2004 05:01:39 -0000 1.3 *************** *** 1,2 **** --- 1,14 ---- + /* + RepostStore.java + Copyright (C) 2002-2004 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.servlet; Index: IDRSSecurity.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/servlet/IDRSSecurity.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** IDRSSecurity.java 19 Apr 2003 03:13:49 -0000 1.9 --- IDRSSecurity.java 29 Aug 2004 05:01:39 -0000 1.10 *************** *** 1,5 **** /* IDRSSecurity.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IDRSSecurity.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); |
|
From: Marc B. <big...@us...> - 2004-08-29 05:02:19
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12847/src/net/sourceforge/idrs/deploy/compile Modified Files: RmlCompiler.java CompilerState.java RMLHandler.java RmlErrorHandler.java Compiler.java Log Message: updated copyrights Index: RmlCompiler.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/RmlCompiler.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** RmlCompiler.java 22 Aug 2004 05:17:40 -0000 1.5 --- RmlCompiler.java 29 Aug 2004 05:01:39 -0000 1.6 *************** *** 1,5 **** /* RmlCompiler.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* RmlCompiler.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: CompilerState.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/CompilerState.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** CompilerState.java 6 Feb 2003 20:13:45 -0000 1.6 --- CompilerState.java 29 Aug 2004 05:01:39 -0000 1.7 *************** *** 1,8 **** /* ! * CompilerState.java ! * ! * Created on January 28, 2002, 9:25 AM ! */ package net.sourceforge.idrs.deploy.compile; --- 1,14 ---- /* ! CompilerState.java ! Copyright (C) 2002-2004 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.deploy.compile; Index: RMLHandler.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/RMLHandler.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** RMLHandler.java 6 Feb 2003 20:13:45 -0000 1.7 --- RMLHandler.java 29 Aug 2004 05:01:39 -0000 1.8 *************** *** 1,5 **** /* RMLHandler.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* RMLHandler.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: RmlErrorHandler.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/RmlErrorHandler.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** RmlErrorHandler.java 6 Feb 2003 20:13:45 -0000 1.1 --- RmlErrorHandler.java 29 Aug 2004 05:01:39 -0000 1.2 *************** *** 1,2 **** --- 1,14 ---- + /* + RMLErrorHandler.java + Copyright (C) 2002-2004 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.deploy.compile; Index: Compiler.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/Compiler.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Compiler.java 6 Feb 2003 20:13:45 -0000 1.5 --- Compiler.java 29 Aug 2004 05:01:39 -0000 1.6 *************** *** 1,5 **** /* Compiler.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* Compiler.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); |
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/pool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12847/src/net/sourceforge/idrs/pool Modified Files: ScriptContextPool.java IDRSPool.java ScriptPool.java DbPool.java RepPool.java JDBCPool.java IDRSRepPool.java Log Message: updated copyrights Index: ScriptContextPool.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/pool/ScriptContextPool.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ScriptContextPool.java 17 Mar 2003 14:05:01 -0000 1.2 --- ScriptContextPool.java 29 Aug 2004 05:01:39 -0000 1.3 *************** *** 1,2 **** --- 1,13 ---- + /* + Copyright (C) 2002-2004 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.pool; Index: IDRSPool.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/pool/IDRSPool.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IDRSPool.java 17 Mar 2003 14:05:01 -0000 1.2 --- IDRSPool.java 29 Aug 2004 05:01:39 -0000 1.3 *************** *** 1,2 **** --- 1,13 ---- + /* + Copyright (C) 2002-2004 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.pool; import java.util.*; Index: ScriptPool.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/pool/ScriptPool.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ScriptPool.java 17 Mar 2003 14:05:01 -0000 1.2 --- ScriptPool.java 29 Aug 2004 05:01:39 -0000 1.3 *************** *** 1,2 **** --- 1,13 ---- + /* + Copyright (C) 2002-2004 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.pool; Index: DbPool.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/pool/DbPool.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DbPool.java 17 Mar 2003 14:05:01 -0000 1.2 --- DbPool.java 29 Aug 2004 05:01:39 -0000 1.3 *************** *** 1,2 **** --- 1,13 ---- + /* + Copyright (C) 2002-2004 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.pool; Index: RepPool.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/pool/RepPool.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RepPool.java 17 Mar 2003 14:05:01 -0000 1.2 --- RepPool.java 29 Aug 2004 05:01:39 -0000 1.3 *************** *** 1,2 **** --- 1,13 ---- + /* + Copyright (C) 2002-2004 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.pool; Index: JDBCPool.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/pool/JDBCPool.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** JDBCPool.java 17 Mar 2003 14:05:01 -0000 1.2 --- JDBCPool.java 29 Aug 2004 05:01:39 -0000 1.3 *************** *** 1,2 **** --- 1,13 ---- + /* + Copyright (C) 2002-2004 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.pool; Index: IDRSRepPool.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/pool/IDRSRepPool.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IDRSRepPool.java 8 Jan 2003 06:01:38 -0000 1.2 --- IDRSRepPool.java 29 Aug 2004 05:01:39 -0000 1.3 *************** *** 1,2 **** --- 1,13 ---- + /* + Copyright (C) 2002-2004 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.pool; |
|
From: Marc B. <big...@us...> - 2004-08-29 05:02:18
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12847/src/net/sourceforge/idrs/core Modified Files: ScriptPool.java IDRSPool.java Log Message: updated copyrights Index: ScriptPool.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/ScriptPool.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ScriptPool.java 14 Sep 2001 23:46:42 -0000 1.3 --- ScriptPool.java 29 Aug 2004 05:01:39 -0000 1.4 *************** *** 1,5 **** /* ScriptPool.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* ScriptPool.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: IDRSPool.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/IDRSPool.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IDRSPool.java 14 Sep 2001 23:46:42 -0000 1.3 --- IDRSPool.java 29 Aug 2004 05:01:39 -0000 1.4 *************** *** 1,5 **** /* IDRSPool.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IDRSPool.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); |
|
From: Marc B. <big...@us...> - 2004-08-29 05:01:55
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/jndi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12847/src/net/sourceforge/idrs/jndi Modified Files: JdbcJndiDriver.java JndiConnection.java Log Message: updated copyrights Index: JdbcJndiDriver.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/jndi/JdbcJndiDriver.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** JdbcJndiDriver.java 17 Mar 2003 14:05:02 -0000 1.1 --- JdbcJndiDriver.java 29 Aug 2004 05:01:41 -0000 1.2 *************** *** 1,7 **** /* ! * JdbcLdapDriver.java ! * ! * Created on March 9, 2002, 4:49 PM ! */ package net.sourceforge.idrs.jndi; --- 1,13 ---- /* ! Copyright (C) 2002-2004 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.jndi; Index: JndiConnection.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/jndi/JndiConnection.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** JndiConnection.java 26 Mar 2003 21:33:12 -0000 1.2 --- JndiConnection.java 29 Aug 2004 05:01:41 -0000 1.3 *************** *** 1,7 **** /* ! * JndiLdapConnection.java ! * ! * Created on March 10, 2002, 3:22 PM ! */ package net.sourceforge.idrs.jndi; --- 1,13 ---- /* ! Copyright (C) 2002-2004 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.jndi; |
|
From: Marc B. <big...@us...> - 2004-08-29 05:01:55
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12847/src/net/sourceforge/idrs/utils Modified Files: Application.java ObjectStore.java ReqReq.java IDRSPrinter.java CleanUp.java RS.java RequestWrapper.java RSMetaData.java ReqAttr.java DbCache.java Validators.java DB.java UserInfo.java Log Message: updated copyrights Index: Application.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/Application.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Application.java 14 Sep 2001 14:14:07 -0000 1.3 --- Application.java 29 Aug 2004 05:01:41 -0000 1.4 *************** *** 1,5 **** /* Application.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 --- 1,5 ---- /* Application.java ! Copyright (C) 2002-2004 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 Index: ObjectStore.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/ObjectStore.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** ObjectStore.java 22 Aug 2004 05:17:39 -0000 1.11 --- ObjectStore.java 29 Aug 2004 05:01:41 -0000 1.12 *************** *** 1,5 **** /* ObjectStore.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* ObjectStore.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: ReqReq.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/ReqReq.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ReqReq.java 18 Sep 2001 03:18:57 -0000 1.3 --- ReqReq.java 29 Aug 2004 05:01:41 -0000 1.4 *************** *** 1,5 **** /* ReqReq.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* ReqReq.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: IDRSPrinter.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/IDRSPrinter.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IDRSPrinter.java 18 Sep 2001 03:18:57 -0000 1.3 --- IDRSPrinter.java 29 Aug 2004 05:01:41 -0000 1.4 *************** *** 1,5 **** /* IDRSPrinter.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IDRSPrinter.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: CleanUp.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/CleanUp.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** CleanUp.java 17 Mar 2003 14:05:00 -0000 1.5 --- CleanUp.java 29 Aug 2004 05:01:41 -0000 1.6 *************** *** 1,2 **** --- 1,13 ---- + /* + Copyright (C) 2002-2004 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.utils; Index: RS.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/RS.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** RS.java 22 Aug 2002 20:06:37 -0000 1.4 --- RS.java 29 Aug 2004 05:01:41 -0000 1.5 *************** *** 1,5 **** /* RS.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* RS.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: RequestWrapper.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/RequestWrapper.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RequestWrapper.java 10 Sep 2001 01:28:34 -0000 1.2 --- RequestWrapper.java 29 Aug 2004 05:01:41 -0000 1.3 *************** *** 1,5 **** /* RequestWrapper.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* RequestWrapper.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: RSMetaData.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/RSMetaData.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** RSMetaData.java 18 Sep 2001 03:18:57 -0000 1.3 --- RSMetaData.java 29 Aug 2004 05:01:41 -0000 1.4 *************** *** 1,5 **** /* RSMetaData.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* RSMetaData.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: ReqAttr.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/ReqAttr.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ReqAttr.java 18 Sep 2001 03:18:57 -0000 1.3 --- ReqAttr.java 29 Aug 2004 05:01:41 -0000 1.4 *************** *** 1,5 **** /* ReqAttr.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* ReqAttr.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: DbCache.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/DbCache.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DbCache.java 29 Dec 2002 04:41:16 -0000 1.1 --- DbCache.java 29 Aug 2004 05:01:41 -0000 1.2 *************** *** 1,7 **** /* ! * DbCache.java ! * ! * Created on March 5, 2002, 7:30 PM ! */ package net.sourceforge.idrs.utils; --- 1,13 ---- /* ! Copyright (C) 2002-2004 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.utils; Index: Validators.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/Validators.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Validators.java 8 Jan 2003 06:01:00 -0000 1.3 --- Validators.java 29 Aug 2004 05:01:41 -0000 1.4 *************** *** 3,7 **** /* Validators.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 3,7 ---- /* Validators.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: DB.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/DB.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** DB.java 29 Aug 2004 04:50:30 -0000 1.17 --- DB.java 29 Aug 2004 05:01:41 -0000 1.18 *************** *** 2,6 **** /* DB.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 2,6 ---- /* DB.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: UserInfo.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/UserInfo.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** UserInfo.java 6 Feb 2003 20:13:45 -0000 1.4 --- UserInfo.java 29 Aug 2004 05:01:41 -0000 1.5 *************** *** 1,5 **** /* UserInfo.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* UserInfo.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); |
|
From: Marc B. <big...@us...> - 2004-08-29 05:01:55
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/rs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12847/src/net/sourceforge/idrs/utils/rs Modified Files: ObjRS.java ObjRsMetaData.java Log Message: updated copyrights Index: ObjRS.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/rs/ObjRS.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ObjRS.java 13 Mar 2003 20:58:56 -0000 1.1 --- ObjRS.java 29 Aug 2004 05:01:42 -0000 1.2 *************** *** 1,2 **** --- 1,13 ---- + /* + Copyright (C) 2002-2004 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.utils.rs; Index: ObjRsMetaData.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/rs/ObjRsMetaData.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ObjRsMetaData.java 19 Apr 2003 03:13:50 -0000 1.3 --- ObjRsMetaData.java 29 Aug 2004 05:01:42 -0000 1.4 *************** *** 1,2 **** --- 1,13 ---- + /* + Copyright (C) 2002-2004 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.utils.rs; |
|
From: Marc B. <big...@us...> - 2004-08-29 05:01:53
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12847/src/net/sourceforge/idrs/test Modified Files: IDRSTester.java Log Message: updated copyrights Index: IDRSTester.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/test/IDRSTester.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** IDRSTester.java 29 Aug 2004 04:50:30 -0000 1.5 --- IDRSTester.java 29 Aug 2004 05:01:42 -0000 1.6 *************** *** 1,2 **** --- 1,13 ---- + /* + Copyright (C) 2002-2004 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.test; |
|
From: Marc B. <big...@us...> - 2004-08-29 05:01:53
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/jdbc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12847/src/net/sourceforge/idrs/jdbc Modified Files: JDBCInfo.java JDBCPool.java Log Message: updated copyrights Index: JDBCInfo.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/jdbc/JDBCInfo.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** JDBCInfo.java 17 Mar 2003 14:05:01 -0000 1.6 --- JDBCInfo.java 29 Aug 2004 05:01:41 -0000 1.7 *************** *** 1,5 **** /* JDBCInfo.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* JDBCInfo.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: JDBCPool.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/jdbc/JDBCPool.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** JDBCPool.java 10 Sep 2001 01:28:34 -0000 1.2 --- JDBCPool.java 29 Aug 2004 05:01:41 -0000 1.3 *************** *** 2,6 **** /* JDBCPool.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 2,6 ---- /* JDBCPool.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); |
|
From: Marc B. <big...@us...> - 2004-08-29 05:01:53
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/axis In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12847/src/net/sourceforge/idrs/axis Modified Files: IdrsResourceMgr.java DOMElement.java IdrsProvider.java IdrsHandler.java Log Message: updated copyrights Index: IdrsResourceMgr.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/axis/IdrsResourceMgr.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IdrsResourceMgr.java 29 Aug 2004 04:50:30 -0000 1.2 --- IdrsResourceMgr.java 29 Aug 2004 05:01:40 -0000 1.3 *************** *** 1,5 **** /* IdrsResourceMgr.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IdrsResourceMgr.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: DOMElement.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/axis/DOMElement.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DOMElement.java 29 Aug 2004 04:50:30 -0000 1.2 --- DOMElement.java 29 Aug 2004 05:01:40 -0000 1.3 *************** *** 1,5 **** /* DOMElement.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* DOMElement.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: IdrsProvider.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/axis/IdrsProvider.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IdrsProvider.java 29 Aug 2004 04:50:30 -0000 1.3 --- IdrsProvider.java 29 Aug 2004 05:01:40 -0000 1.4 *************** *** 1,5 **** /* IdrsProvider.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IdrsProvider.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: IdrsHandler.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/axis/IdrsHandler.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IdrsHandler.java 29 Aug 2004 04:50:30 -0000 1.2 --- IdrsHandler.java 29 Aug 2004 05:01:40 -0000 1.3 *************** *** 1,5 **** /* IdrsHandler.java ! Copyright (C) 2002 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IdrsHandler.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); |
|
From: Marc B. <big...@us...> - 2004-08-29 05:01:53
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12847/src/net/sourceforge/idrs/deploy Modified Files: DocReset.java RMLDeploy.java HotDeploy.java InsertToIDRS.java Log Message: updated copyrights Index: DocReset.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/DocReset.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** DocReset.java 8 Jan 2003 06:01:05 -0000 1.4 --- DocReset.java 29 Aug 2004 05:01:42 -0000 1.5 *************** *** 1,2 **** --- 1,14 ---- + /* + DocReset.java + Copyright (C) 2002-2004 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.deploy; Index: RMLDeploy.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/RMLDeploy.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** RMLDeploy.java 17 Feb 2003 02:48:48 -0000 1.6 --- RMLDeploy.java 29 Aug 2004 05:01:42 -0000 1.7 *************** *** 1,5 **** /* RMLDeploy.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* RMLDeploy.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: HotDeploy.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/HotDeploy.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** HotDeploy.java 6 Feb 2003 20:13:44 -0000 1.5 --- HotDeploy.java 29 Aug 2004 05:01:42 -0000 1.6 *************** *** 1,5 **** /* HotDeploy.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* HotDeploy.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: InsertToIDRS.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/InsertToIDRS.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** InsertToIDRS.java 4 Mar 2002 23:05:34 -0000 1.3 --- InsertToIDRS.java 29 Aug 2004 05:01:42 -0000 1.4 *************** *** 1,5 **** /* InsertToIDRS.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* InsertToIDRS.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); |
|
From: Marc B. <big...@us...> - 2004-08-29 05:01:52
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/pool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12847/src/net/sourceforge/idrs/utils/pool Modified Files: POS.java ObjectPool.java PooledObject.java Log Message: updated copyrights Index: POS.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/pool/POS.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** POS.java 10 Sep 2001 01:28:34 -0000 1.2 --- POS.java 29 Aug 2004 05:01:40 -0000 1.3 *************** *** 1,5 **** /* POS.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* POS.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: ObjectPool.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/pool/ObjectPool.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ObjectPool.java 18 Sep 2001 03:18:57 -0000 1.3 --- ObjectPool.java 29 Aug 2004 05:01:40 -0000 1.4 *************** *** 1,5 **** /* ObjectPool.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* ObjectPool.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: PooledObject.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/pool/PooledObject.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PooledObject.java 10 Sep 2001 01:28:34 -0000 1.2 --- PooledObject.java 29 Aug 2004 05:01:40 -0000 1.3 *************** *** 1,5 **** /* PooledObject.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* PooledObject.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); |
|
From: Marc B. <big...@us...> - 2004-08-29 05:01:52
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/macro In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12847/src/net/sourceforge/idrs/deploy/macro Modified Files: MacroToXMLHandler.java MacroToXML.java Log Message: updated copyrights Index: MacroToXMLHandler.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/macro/MacroToXMLHandler.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** MacroToXMLHandler.java 22 Aug 2002 20:06:35 -0000 1.9 --- MacroToXMLHandler.java 29 Aug 2004 05:01:40 -0000 1.10 *************** *** 1,5 **** /* MacroToXMLHandler.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* MacroToXMLHandler.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: MacroToXML.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/macro/MacroToXML.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** MacroToXML.java 17 Feb 2003 02:48:48 -0000 1.19 --- MacroToXML.java 29 Aug 2004 05:01:40 -0000 1.20 *************** *** 1,5 **** /* MacroToXML.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* MacroToXML.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); |
|
From: Marc B. <big...@us...> - 2004-08-29 05:01:52
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script/embedable In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12847/src/net/sourceforge/idrs/script/embedable Modified Files: IDRSJPython.java IDRSScriptLanguage.java IDRSBeanShell.java IDRSShell.java Log Message: updated copyrights Index: IDRSJPython.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script/embedable/IDRSJPython.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** IDRSJPython.java 14 Apr 2002 12:37:53 -0000 1.4 --- IDRSJPython.java 29 Aug 2004 05:01:40 -0000 1.5 *************** *** 1,5 **** /* IDRSJPython.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IDRSJPython.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: IDRSScriptLanguage.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script/embedable/IDRSScriptLanguage.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IDRSScriptLanguage.java 18 Sep 2001 03:18:57 -0000 1.3 --- IDRSScriptLanguage.java 29 Aug 2004 05:01:40 -0000 1.4 *************** *** 1,5 **** /* IDRSScriptLanguage.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IDRSScriptLanguage.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: IDRSBeanShell.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script/embedable/IDRSBeanShell.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IDRSBeanShell.java 18 Sep 2001 03:18:57 -0000 1.3 --- IDRSBeanShell.java 29 Aug 2004 05:01:40 -0000 1.4 *************** *** 1,5 **** /* IDRSBeanShell.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IDRSBeanShell.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: IDRSShell.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script/embedable/IDRSShell.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** IDRSShell.java 17 Feb 2003 02:48:48 -0000 1.7 --- IDRSShell.java 29 Aug 2004 05:01:40 -0000 1.8 *************** *** 1,5 **** /* IDRSShell.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IDRSShell.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); |
|
From: Marc B. <big...@us...> - 2004-08-29 05:01:52
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12847/src/net/sourceforge/idrs/script Modified Files: IDRSScript.java IdrsDB.java DBShell.java Log Message: updated copyrights Index: IDRSScript.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script/IDRSScript.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** IDRSScript.java 29 Aug 2004 04:50:28 -0000 1.13 --- IDRSScript.java 29 Aug 2004 05:01:41 -0000 1.14 *************** *** 1,5 **** /* IDRSScript.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IDRSScript.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: IdrsDB.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script/IdrsDB.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** IdrsDB.java 17 Mar 2003 14:05:01 -0000 1.4 --- IdrsDB.java 29 Aug 2004 05:01:41 -0000 1.5 *************** *** 1,5 **** /* IdrsDB.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* IdrsDB.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); Index: DBShell.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script/DBShell.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** DBShell.java 17 Mar 2003 14:05:01 -0000 1.4 --- DBShell.java 29 Aug 2004 05:01:41 -0000 1.5 *************** *** 1,5 **** /* DBShell.java ! Copyright (C) 2001 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); --- 1,5 ---- /* DBShell.java ! Copyright (C) 2002-2004 Marc Boorshtein The contents of this file are subject to the Mozilla Public License Version 1.0 (the License); |
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/exceptions In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12847/src/net/sourceforge/idrs/exceptions Modified Files: PageNotFoundException.java FailInit.java NoConnection.java SQLNamingException.java SystemBusy.java IllegalParameter.java Log Message: updated copyrights Index: PageNotFoundException.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/exceptions/PageNotFoundException.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** PageNotFoundException.java 22 Aug 2002 20:06:35 -0000 1.1 --- PageNotFoundException.java 29 Aug 2004 05:01:40 -0000 1.2 *************** *** 1,2 **** --- 1,14 ---- + /* + PageNotFound.java + Copyright (C) 2002-2004 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.exceptions; Index: FailInit.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/exceptions/FailInit.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FailInit.java 22 Aug 2002 20:06:35 -0000 1.1 --- FailInit.java 29 Aug 2004 05:01:40 -0000 1.2 *************** *** 1,2 **** --- 1,14 ---- + /* + FailInit.java + Copyright (C) 2002-2004 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.exceptions; public class FailInit extends Exception { Index: NoConnection.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/exceptions/NoConnection.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** NoConnection.java 22 Aug 2002 20:06:35 -0000 1.1 --- NoConnection.java 29 Aug 2004 05:01:40 -0000 1.2 *************** *** 1,2 **** --- 1,14 ---- + /* + NoConnection.java + Copyright (C) 2002-2004 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.exceptions; public class NoConnection extends Exception { Index: SQLNamingException.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/exceptions/SQLNamingException.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SQLNamingException.java 19 Apr 2003 03:13:50 -0000 1.1 --- SQLNamingException.java 29 Aug 2004 05:01:40 -0000 1.2 *************** *** 1,8 **** /* ! * SQLNamingException.java ! * ! * Created on March 10, 2002, 3:35 PM ! */ package net.sourceforge.idrs.exceptions; --- 1,14 ---- /* ! SQLNameingException.java ! Copyright (C) 2002-2004 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.exceptions; Index: SystemBusy.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/exceptions/SystemBusy.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SystemBusy.java 22 Aug 2002 20:06:35 -0000 1.1 --- SystemBusy.java 29 Aug 2004 05:01:40 -0000 1.2 *************** *** 1,2 **** --- 1,13 ---- + /* + Copyright (C) 2002-2004 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.exceptions; public class SystemBusy extends Exception { Index: IllegalParameter.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/exceptions/IllegalParameter.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IllegalParameter.java 22 Aug 2002 20:06:35 -0000 1.1 --- IllegalParameter.java 29 Aug 2004 05:01:40 -0000 1.2 *************** *** 1,2 **** --- 1,14 ---- + /* + IllegalParameter.java + Copyright (C) 2002-2004 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.exceptions; public class IllegalParameter extends Exception { |
|
From: Marc B. <big...@us...> - 2004-08-29 04:50:40
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/axis In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11199/src/net/sourceforge/idrs/axis Modified Files: IdrsHandler.java IdrsResourceMgr.java DOMElement.java IdrsProvider.java Log Message: * Removed "proprietary" xml binding * Added support for JAXB * Added "fields" tag, so that if the fields are not known ahead of time, they may be iterated over * updated some copyrights Index: IdrsHandler.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/axis/IdrsHandler.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IdrsHandler.java 22 Aug 2004 05:17:41 -0000 1.1 --- IdrsHandler.java 29 Aug 2004 04:50:30 -0000 1.2 *************** *** 1,8 **** /* ! * Created on Aug 6, 2004 ! * ! * TODO To change the template for this generated file go to ! * Window - Preferences - Java - Code Style - Code Templates ! */ package net.sourceforge.idrs.axis; --- 1,14 ---- /* ! IdrsHandler.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.axis; Index: IdrsResourceMgr.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/axis/IdrsResourceMgr.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IdrsResourceMgr.java 22 Aug 2004 05:17:41 -0000 1.1 --- IdrsResourceMgr.java 29 Aug 2004 04:50:30 -0000 1.2 *************** *** 1,8 **** /* ! * Created on Aug 7, 2004 ! * ! * TODO To change the template for this generated file go to ! * Window - Preferences - Java - Code Style - Code Templates ! */ package net.sourceforge.idrs.axis; --- 1,14 ---- /* ! IdrsResourceMgr.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.axis; Index: DOMElement.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/axis/DOMElement.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DOMElement.java 22 Aug 2004 05:17:41 -0000 1.1 --- DOMElement.java 29 Aug 2004 04:50:30 -0000 1.2 *************** *** 1,8 **** /* ! * Created on Aug 1, 2004 ! * ! * TODO To change the template for this generated file go to ! * Window - Preferences - Java - Code Style - Code Templates ! */ package net.sourceforge.idrs.axis; --- 1,14 ---- /* ! DOMElement.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.axis; Index: IdrsProvider.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/axis/IdrsProvider.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IdrsProvider.java 22 Aug 2004 23:52:32 -0000 1.2 --- IdrsProvider.java 29 Aug 2004 04:50:30 -0000 1.3 *************** *** 1,8 **** /* ! * Created on Aug 7, 2004 ! * ! * TODO To change the template for this generated file go to ! * Window - Preferences - Java - Code Style - Code Templates ! */ package net.sourceforge.idrs.axis; --- 1,14 ---- /* ! IdrsProvider.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.axis; *************** *** 19,24 **** import java.sql.Connection; import java.util.HashMap; import java.util.Iterator; ! import java.util.List; import javax.servlet.http.HttpServletRequest; --- 25,31 ---- import java.sql.Connection; import java.util.HashMap; + import java.util.Hashtable; import java.util.Iterator; ! import java.util.*; import javax.servlet.http.HttpServletRequest; *************** *** 45,48 **** --- 52,58 ---- import org.w3c.dom.Document; import org.w3c.dom.Element; + import javax.xml.bind.JAXBContext; + import javax.xml.bind.JAXBException; + import javax.xml.bind.Unmarshaller; /** *************** *** 63,66 **** --- 73,77 ---- static int count; private boolean doneinit; + HashMap nameSpaces; /* (non-Javadoc) *************** *** 100,116 **** script = mgr.scriptPool.getContext(); ! SOAPBodyElement bodypart = (SOAPBodyElement) msgContext.getRequestMessage().getSOAPEnvelope().getBodyElements().get(0); - Document bodyDoc = null; ! try { ! bodyDoc = bodypart.getAsDocument(); ! } catch (Exception e) { - e.printStackTrace(System.out); - throw AxisFault.makeFault(e); } System.out.println("Base Package : " + basePackage); this.report.getHead().init(dbs, --- 111,142 ---- script = mgr.scriptPool.getContext(); ! Vector bodyparts = msgContext.getRequestMessage().getSOAPEnvelope().getBodyElements(); ! ArrayList parts = new ArrayList(bodyparts.size()); ! it = bodyparts.iterator(); ! while (it.hasNext()) { ! SOAPBodyElement bodypart = (SOAPBodyElement) it.next(); ! Document bodyDoc = null; ! try { ! bodyDoc = bodypart.getAsDocument(); ! String ns = bodyDoc.getDocumentElement().getNamespaceURI(); ! System.out.println("namespace : " + ns); ! String packageName = (String) this.nameSpaces.get(ns); ! JAXBContext jc = JAXBContext.newInstance(packageName); ! ! Unmarshaller u = jc.createUnmarshaller(); ! parts.add(u.unmarshal(bodyDoc)); ! } catch (Exception e) { ! ! e.printStackTrace(System.out); ! throw AxisFault.makeFault(e); ! } } + + System.out.println("Base Package : " + basePackage); this.report.getHead().init(dbs, *************** *** 126,131 **** "NONE", servlet.getServletContext(), ! bodyDoc.getDocumentElement(), ! basePackage); report.getHead().setSendToClient(true); --- 152,156 ---- "NONE", servlet.getServletContext(), ! parts); report.getHead().setSendToClient(true); *************** *** 245,248 **** --- 270,287 ---- this.basePackage = (String) ctx.getService().getOption(IdrsProvider.CONFIG_IDRS_BASE_PACKAGE); + Hashtable options = ctx.getService().getOptions(); + + this.nameSpaces = new HashMap(); + Iterator it = options.keySet().iterator(); + while (it.hasNext()) { + String name = (String) it.next(); + if (name.substring(0,3).equals("ns:")) { + String ns = name.substring(name.indexOf(':') + 1); + nameSpaces.put(ns,options.get(name)); + } + } + + + StringBuffer buf = new StringBuffer(); BufferedReader in = new BufferedReader(new FileReader(rmlSrcPath)); |
|
From: Marc B. <big...@us...> - 2004-08-29 04:50:40
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11199/src/net/sourceforge/idrs/test Modified Files: IDRSTester.java Log Message: * Removed "proprietary" xml binding * Added support for JAXB * Added "fields" tag, so that if the fields are not known ahead of time, they may be iterated over * updated some copyrights Index: IDRSTester.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/test/IDRSTester.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** IDRSTester.java 22 Aug 2004 05:17:42 -0000 1.4 --- IDRSTester.java 29 Aug 2004 04:50:30 -0000 1.5 *************** *** 92,96 **** public void executeHead() throws Exception { ! rep.getHead().init(conns,user.getUserID(),docID,request.getRequestURL().toString(),(HttpSession) session,(HttpServletRequest) request,(HttpServletResponse) response,app,script,user,digest,null,null,null); } --- 92,96 ---- public void executeHead() throws Exception { ! rep.getHead().init(conns,user.getUserID(),docID,request.getRequestURL().toString(),(HttpSession) session,(HttpServletRequest) request,(HttpServletResponse) response,app,script,user,digest,null,new ArrayList()); } |
|
From: Marc B. <big...@us...> - 2004-08-29 04:50:40
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11199/src/net/sourceforge/idrs/deploy/compile/units Modified Files: Tag.java Attribute.java Body.java Added Files: Fields.java Log Message: * Removed "proprietary" xml binding * Added support for JAXB * Added "fields" tag, so that if the fields are not known ahead of time, they may be iterated over * updated some copyrights --- NEW FILE: Fields.java --- /* Fields.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.deploy.compile.units; import java.util.Vector; import net.sourceforge.idrs.core.report.FieldsLine; import net.sourceforge.idrs.core.report.TagLine; import net.sourceforge.idrs.deploy.compile.CompilerState; import org.xml.sax.Attributes; /** * @author mlb * * TODO To change the template for this generated type comment go to * Window - Preferences - Java - Code Style - Code Templates */ public class Fields extends Body { String name; FieldsLine fieldsLine; /** *allows for a compiler to use the attributes of the calling tag */ public void setAttributes(Attributes atts) throws Exception { this.atts = atts; name = atts.getValue("db"); this.fieldsLine = new FieldsLine(name); } /** *allows for the compiler to work with the current state of the page compilation */ public void setState(CompilerState state) throws Exception { this.state = state; state.sealLine(); state.pushLines(); //state.addRepeatLine(id,color1,color2); } /** * allows for the execution of any wrap-up code at the hitting of the end tag */ public void seal() throws Exception { //if (state.getCurrentLine() != null) state.sealLine(); Vector lines = state.popLines(); //System.out.println("num lines repeat : " + lines.size()); fieldsLine.setLines(lines); state.setLine(fieldsLine); state.sealLine(); } } Index: Tag.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Tag.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Tag.java 22 Aug 2004 23:52:31 -0000 1.1 --- Tag.java 29 Aug 2004 04:50:29 -0000 1.2 *************** *** 1,8 **** /* ! * Created on Aug 22, 2004 ! * ! * TODO To change the template for this generated file go to ! * Window - Preferences - Java - Code Style - Code Templates ! */ package net.sourceforge.idrs.deploy.compile.units; --- 1,14 ---- /* ! Tag.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.deploy.compile.units; Index: Attribute.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Attribute.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Attribute.java 22 Aug 2004 23:52:31 -0000 1.1 --- Attribute.java 29 Aug 2004 04:50:30 -0000 1.2 *************** *** 1,8 **** /* ! * Created on Aug 22, 2004 ! * ! * TODO To change the template for this generated file go to ! * Window - Preferences - Java - Code Style - Code Templates ! */ package net.sourceforge.idrs.deploy.compile.units; --- 1,14 ---- /* ! Attribute.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.deploy.compile.units; Index: Body.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Body.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Body.java 19 Apr 2003 03:13:48 -0000 1.12 --- Body.java 29 Aug 2004 04:50:30 -0000 1.13 *************** *** 79,82 **** --- 79,87 ---- } + public void currentField(String val,Attributes atts) throws Exception { + CurrentField cf = new CurrentField(val); + state.getCurrentLine().addChunk(cf); + } + public void field(String val, Attributes atts) throws Exception { |
|
From: Marc B. <big...@us...> - 2004-08-29 04:50:40
|
Update of /cvsroot/idrs/Idrs/dev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11199 Modified Files: build.xml Log Message: * Removed "proprietary" xml binding * Added support for JAXB * Added "fields" tag, so that if the fields are not known ahead of time, they may be iterated over * updated some copyrights Index: build.xml =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/build.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** build.xml 22 Aug 2004 05:17:42 -0000 1.12 --- build.xml 29 Aug 2004 04:50:30 -0000 1.13 *************** *** 27,30 **** --- 27,37 ---- <pathelement location="${lib}/bsh-core-1.2b3.jar"/> <pathelement location="${lib}/commons-pool.jar"/> + <pathelement location="${lib}/xsdlib.jar"/> + <pathelement location="${lib}/relaxngDatatype.jar"/> + <pathelement location="${lib}/namespace.jar"/> + <pathelement location="${lib}/jax-qname.jar"/> + <pathelement location="${lib}/jaxb-libs.jar"/> + <pathelement location="${lib}/jaxb-impl.jar"/> + <pathelement location="${lib}/jaxb-api.jar"/> </classpath> </javac> |