cvs commit: jakarta-commons/dbcp/src/java/org/apache/commons/dbcp SQLNestedException.java

2004-09-01 Thread yoavs
yoavs   2004/09/01 17:13:00

  Modified:dbcp build.xml
   dbcp/src/java/org/apache/commons/dbcp
SQLNestedException.java
  Log:
  Made DBCP compile on JDK 1.5.0 (or 5.0, whatever ;)) by adding source=1.4
  to compiler arguments.  This can be overridden in build.properties by setting a 
javac.source property.  There are compiler errors in JDK 5.0 without this source 
switch that cannot be fixed without JDK 5.0-specific syntax, which I didn't want to 
put in.
  
  Also made a tiny change in SQLNestedException to eliminate a JDK 5.0 compile warning 
(not an error) about a varargs cast mismatch.
  
  Revision  ChangesPath
  1.27  +6 -3  jakarta-commons/dbcp/build.xml
  
  Index: build.xml
  ===
  RCS file: /home/cvs/jakarta-commons/dbcp/build.xml,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- build.xml 21 Aug 2004 21:20:58 -  1.26
  +++ build.xml 2 Sep 2004 00:13:00 -   1.27
  @@ -47,6 +47,7 @@
 property name=javac.optimize value=false/
 property name=javac.debug value=true/
 property name=javac.deprecation value=false/
  +  property name=javac.source value=1.4 /
   
 available property=jndi.present classname=javax.naming.Context/
 available property=jdbc3.present classname=java.sql.Savepoint/
  @@ -123,7 +124,8 @@
classpath=${classpath}
debug=${javac.debug}
deprecation=${javac.deprecation}
  - optimize=${javac.optimize}
  + optimize=${javac.optimize}
  + source=${javac.source}
exclude name=org/apache/commons/dbcp/BasicDataSourceFactory.java
unless=jndi.present/
exclude name=org/apache/commons/dbcp/datasources/**
  @@ -139,7 +141,8 @@
srcdir=${src.test.dir}
debug=${javac.debug}
deprecation=${javac.deprecation}
  - optimize=${javac.optimize}
  + optimize=${javac.optimize}
  + source=${javac.source}
   classpath
 pathelement location=${build.classes.dir} / 
 pathelement location=${build.test-classes.dir} / 
  
  
  
  1.9   +2 -2  
jakarta-commons/dbcp/src/java/org/apache/commons/dbcp/SQLNestedException.java
  
  Index: SQLNestedException.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/dbcp/src/java/org/apache/commons/dbcp/SQLNestedException.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- SQLNestedException.java   28 Feb 2004 12:18:17 -  1.8
  +++ SQLNestedException.java   2 Sep 2004 00:13:00 -   1.9
  @@ -35,7 +35,7 @@
   static {
   Method getCauseMethod;
   try {
  -getCauseMethod = Throwable.class.getMethod(getCause, null);
  +getCauseMethod = Throwable.class.getMethod(getCause, (Class[]) null);
   } catch (Exception e) {
   getCauseMethod = null;
   }
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/dbcp/xdocs/guide jndi-howto.xml

2004-08-31 Thread yoavs
yoavs   2004/08/31 14:56:49

  Modified:dbcp/xdocs/guide jndi-howto.xml
  Log:
  Fixed broken link, Bugzilla 30938.
  
  Revision  ChangesPath
  1.3   +1 -1  jakarta-commons/dbcp/xdocs/guide/jndi-howto.xml
  
  Index: jndi-howto.xml
  ===
  RCS file: /home/cvs/jakarta-commons/dbcp/xdocs/guide/jndi-howto.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- jndi-howto.xml16 Jun 2004 19:52:21 -  1.2
  +++ jndi-howto.xml31 Aug 2004 21:56:48 -  1.3
  @@ -39,7 +39,7 @@
   /p
   p
 Another source of information is 
  -  a 
href=http://incubator.apache.org/directory/subprojects/naming/index.html;Naming/a.
  +  a 
href=http://incubator.apache.org/directory/subprojects/directory-naming/index.html;Naming/a.
 Naming includes an in-memory JNDI service provider that was extracted from the 
 a href=http://jakarta.apache.org/tomcat/;Jakarta Tomcat/a JNDI 
implementation.
 It also contains a easy way to construct a JNDI tree from an XML file and some 
ResourceFactories.
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/dbcp/xdocs release-notes-1.2.2.xml

2004-08-21 Thread yoavs
yoavs   2004/08/21 14:00:15

  Modified:dbcp/src/java/org/apache/commons/dbcp
DelegatingPreparedStatement.java
DelegatingStatement.java
  Added:   dbcp/xdocs release-notes-1.2.2.xml
  Log:
  Addressed bugzilla 28007, added release notes initial version.
  
  Revision  ChangesPath
  1.23  +10 -1 
jakarta-commons/dbcp/src/java/org/apache/commons/dbcp/DelegatingPreparedStatement.java
  
  Index: DelegatingPreparedStatement.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/dbcp/src/java/org/apache/commons/dbcp/DelegatingPreparedStatement.java,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- DelegatingPreparedStatement.java  6 Mar 2004 13:35:31 -   1.22
  +++ DelegatingPreparedStatement.java  21 Aug 2004 21:00:15 -  1.23
  @@ -200,6 +200,15 @@
   public void setNull(int paramIndex, int sqlType, String typeName) throws 
SQLException
   { checkOpen(); try { _stmt.setNull(paramIndex,sqlType,typeName); } catch 
(SQLException e) { handleException(e); } }
   
  +/**
  + * Returns a String representation of this object.
  + *
  + * @return String
  + */
  +public String toString() {
  + return _stmt.toString();
  +}
  +
   // --- JDBC 3.0 -
   // Will be commented by the build process on a JDBC 2.0 system
   
  
  
  
  1.18  +10 -1 
jakarta-commons/dbcp/src/java/org/apache/commons/dbcp/DelegatingStatement.java
  
  Index: DelegatingStatement.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/dbcp/src/java/org/apache/commons/dbcp/DelegatingStatement.java,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- DelegatingStatement.java  6 Mar 2004 13:35:31 -   1.17
  +++ DelegatingStatement.java  21 Aug 2004 21:00:15 -  1.18
  @@ -293,6 +293,15 @@
   public int[] executeBatch() throws SQLException
   { checkOpen(); try { return _stmt.executeBatch(); } catch (SQLException e) { 
handleException(e); return null; } }
   
  +/**
  + * Returns a String representation of this object.
  + *
  + * @return String
  + */
  +public String toString() {
  + return _stmt.toString();
  +}
  +
   // --- JDBC 3.0 -
   // Will be commented by the build process on a JDBC 2.0 system
   
  
  
  
  1.1  jakarta-commons/dbcp/xdocs/release-notes-1.2.2.xml
  
  Index: release-notes-1.2.2.xml
  ===
  ?xml version=1.0?
  !--
 Copyright 2004 The Apache Software Foundation
  
 Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
  
 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an AS IS BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
  --
  document
 properties
titleRelease notes for Commons-DBCP 1.2.2/title
author email=[EMAIL PROTECTED]Commons Documentation Team/author
revision$Id: release-notes-1.2.2.xml,v 1.1 2004/08/21 21:00:15 yoavs Exp 
$/revision
 /properties
  
 body
   section name=Release notes for Commons-DBCP 1.2.2
 pDBCP 1.2.2 is a maintenance release./p
   /section
   section name=Changelog
 ul
   li30721: typo in package.html./li
   li26062: better messages and docs for LoginTimeout 
UnsupportedOperationException./li
   li28007: added toString() methods to DelegatingStatement and 
DelegatingPreparedStatment./li
 /ul
   /section
/body
  /document
  
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/dbcp build.xml project.xml

2004-08-21 Thread yoavs
yoavs   2004/08/21 14:20:59

  Modified:dbcp build.xml project.xml
  Log:
  Added myself to project.xml, updated build.xml JavaDoc copyright dates, and added 
comment about JDBC 2.0 download to project.xml.
  
  Revision  ChangesPath
  1.26  +2 -2  jakarta-commons/dbcp/build.xml
  
  Index: build.xml
  ===
  RCS file: /home/cvs/jakarta-commons/dbcp/build.xml,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- build.xml 20 May 2004 16:30:30 -  1.25
  +++ build.xml 21 Aug 2004 21:20:58 -  1.26
  @@ -41,7 +41,7 @@
 property name=test.runner value=junit.textui.TestRunner / 

 property name=javadoc.dir value=${dist.dir}/docs/api/
  -  property name=javadoc.bottom value=lt;smallgt;Copyright amp;copy; 
2001-2003 Apache Software Foundation. Documenation generated ${TODAY}lt;/smallgt;./
  +  property name=javadoc.bottom value=lt;smallgt;Copyright amp;copy; 
2001-2004 Apache Software Foundation. Documenation generated ${TODAY}lt;/smallgt;./
 property name=javadoc.overview 
value=${basedir}/src/java/org/apache/commons/dbcp/overview.html/
   
 property name=javac.optimize value=false/
  
  
  
  1.34  +14 -1 jakarta-commons/dbcp/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons/dbcp/project.xml,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- project.xml   12 Jun 2004 13:25:31 -  1.33
  +++ project.xml   21 Aug 2004 21:20:59 -  1.34
  @@ -19,7 +19,7 @@
 
 idcommons-dbcp/id
 inceptionYear2001/inceptionYear
  -  currentVersion1.2.1/currentVersion
  +  currentVersion1.2.2-dev/currentVersion
 nameCommons DBCP/name
 shortDescriptionCommons Database Connection Pooling/shortDescription
 descriptionCommons Database Connection Pooling/description
  @@ -142,6 +142,12 @@
 email/email
 organization/organization
   /developer
  +developer
  +  nameYoav Shapira/name
  +  idyoavs/id
  +  email[EMAIL PROTECTED]/email
  +  organizationApache Software Foundation/organization
  +/developer
 /developers
 contributors
   contributor
  @@ -162,10 +168,17 @@
 idcommons-pool/id
 version1.2/version
   /dependency
  +
  +!-- Note JDBC 2.0 is a pain, because it must be manually
  + downloaded to your Maven repository, and it's not even
  + required on JDK 1.4.  Maybe we should remove it from
  + this dependency list so Maven doesn't choke?
  +--
   dependency
 idjdbc/id
 version2.0/version
   /dependency
  +
   dependency
 idjunit/id
 version3.8.1/version
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/commons-build/xdocs/releases prepare.xml

2004-05-13 Thread yoavs
yoavs   2004/05/13 08:30:04

  Modified:commons-build/xdocs/releases prepare.xml
  Log:
  Fixed bad link URL.
  
  Revision  ChangesPath
  1.8   +1 -1  jakarta-commons/commons-build/xdocs/releases/prepare.xml
  
  Index: prepare.xml
  ===
  RCS file: /home/cvs/jakarta-commons/commons-build/xdocs/releases/prepare.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- prepare.xml   13 May 2004 14:56:37 -  1.7
  +++ prepare.xml   13 May 2004 15:30:03 -  1.8
  @@ -50,7 +50,7 @@
   subsection name='Update The Jar Manifest'
   p
   Each commons component release jar should contain a 
codeMANIFEST.MF/code conforming to the 
  -a href='http://java.sun.com/j2se/1.5.0/docs/jar/jar.html'Sun Manifest 
Format/a.
  +a href='http://java.sun.com/j2se/1.5.0/docs/guide/jar/jar.html'Sun 
Manifest Format/a.
   In additional, commons components should adhere to the
   a 
href='http://java.sun.com/j2se/1.5.0/docs/guide/versioning/spec/versioning2.html'
   Sun Package Versioning Standards/a
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/commons-build/xdocs/releases prepare.xml

2004-05-13 Thread yoavs
yoavs   2004/05/13 07:56:37

  Modified:commons-build/xdocs/releases prepare.xml
  Log:
  Fixed Sun links for Jar tool and Versioning spec.
  
  Revision  ChangesPath
  1.7   +2 -2  jakarta-commons/commons-build/xdocs/releases/prepare.xml
  
  Index: prepare.xml
  ===
  RCS file: /home/cvs/jakarta-commons/commons-build/xdocs/releases/prepare.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- prepare.xml   1 Mar 2004 22:31:34 -   1.6
  +++ prepare.xml   13 May 2004 14:56:37 -  1.7
  @@ -50,9 +50,9 @@
   subsection name='Update The Jar Manifest'
   p
   Each commons component release jar should contain a 
codeMANIFEST.MF/code conforming to the 
  -a 
href='http://java.sun.com/products/jdk/1.2/docs/guide/jar/manifest.html'Sun Manifest 
Format/a.
  +a href='http://java.sun.com/j2se/1.5.0/docs/jar/jar.html'Sun Manifest 
Format/a.
   In additional, commons components should adhere to the
  -a 
href='http://java.sun.com/products/jdk/1.2/docs/guide/versioning/spec/VersioningSpecification.html#PackageVersioning'
  +a 
href='http://java.sun.com/j2se/1.5.0/docs/guide/versioning/spec/versioning2.html'
   Sun Package Versioning Standards/a
   /p
   p
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons-sandbox/threadpool/xdocs index.xml

2004-03-16 Thread yoavs
yoavs   2004/03/16 10:46:07

  Modified:threadpool/xdocs index.xml
  Log:
  Added reference to util.concurrent library.
  
  Revision  ChangesPath
  1.3   +13 -0 jakarta-commons-sandbox/threadpool/xdocs/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/threadpool/xdocs/index.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- index.xml 7 Dec 2003 17:01:30 -   1.2
  +++ index.xml 16 Mar 2004 18:46:07 -  1.3
  @@ -25,6 +25,19 @@
   This can be particularly useful for performing asynchronous processing in
   Servlet engines or Swing applications.
 /p
  +  p
  +Please note that one of the reasons this component is still in the sandbox 
and has
  +never had a 1.0 release is Doug Lea's excellent
  +a href=http://gee.cs.oswego.edu/dl;util.concurrent library/a.  That 
library 
  +works with many JDKs, is full-featured, well-documented, and well-tested.  
That
  +library is also a standard part of the JDK starting with JDK 1.5, as the
  +java.util.concurrent library: it is specified in the
  +a href=http://www.jcp.org/en/jsr/detail?id=166;JSR 166 standard./a
  +br /
  +All of this is not to say commons-sandbox-threadpool is useless.  As with 
most
  +Apache products, the development and release of this component is driven by
  +user requests and developer interest.
  +  /p
   /section
   
   section name=Releases
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/beanutils/src/java/org/apache/commons/beanutils/locale/converters DecimalLocaleConverter.java

2004-02-03 Thread yoavs
yoavs   2004/02/03 18:22:55

  Modified:beanutils/src/java/org/apache/commons/beanutils/locale
package.html
   beanutils/src/java/org/apache/commons/beanutils/locale/converters
DecimalLocaleConverter.java
  Log:
  Fixed typo in package.html.
  Made formatter assignment happen after locale assignment
  in consturctor of DecimalLocaleConverter so that we use the
  assigned locale rather than the default.
  
  Revision  ChangesPath
  1.2   +1 -1  
jakarta-commons/beanutils/src/java/org/apache/commons/beanutils/locale/package.html
  
  Index: package.html
  ===
  RCS file: 
/home/cvs/jakarta-commons/beanutils/src/java/org/apache/commons/beanutils/locale/package.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- package.html  3 Sep 2002 21:34:20 -   1.1
  +++ package.html  4 Feb 2004 02:22:55 -   1.2
  @@ -4,7 +4,7 @@
   /head
   body bgcolor=white
   pLocale-aware extensions of the standard beanutils classes. 
  -This package allows locale-dependent population of JavaBean's./p
  +This package allows locale-dependent population of JavaBeans./p
   
   /body
   /html
  
  
  
  1.7   +8 -5  
jakarta-commons/beanutils/src/java/org/apache/commons/beanutils/locale/converters/DecimalLocaleConverter.java
  
  Index: DecimalLocaleConverter.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/beanutils/src/java/org/apache/commons/beanutils/locale/converters/DecimalLocaleConverter.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- DecimalLocaleConverter.java   9 Oct 2003 20:41:41 -   1.6
  +++ DecimalLocaleConverter.java   4 Feb 2004 02:22:55 -   1.7
  @@ -79,6 +79,8 @@
* if a conversion error occurs./p
*
* @author Yauheny Mikulski
  + * @author Yoav Shapira
  + * @since 1.7
*/
   
   public class DecimalLocaleConverter extends BaseLocaleConverter {
  @@ -90,7 +92,7 @@
   private static Log log = LogFactory.getLog(DecimalLocaleConverter.class); 
   
   /** The Decimal formatter */
  -private DecimalFormat formatter = (DecimalFormat) 
DecimalFormat.getInstance(locale);
  +private DecimalFormat formatter = null;
   
   // --- Constructors
   
  @@ -169,7 +171,7 @@
*/
   public DecimalLocaleConverter(Locale locale, String pattern, boolean 
locPattern) {
   
  -super(locale, pattern, locPattern);
  +this(null, locale, pattern, locPattern);
   }
   
   /**
  @@ -254,6 +256,7 @@
   public DecimalLocaleConverter(Object defaultValue, Locale locale, String 
pattern, boolean locPattern) {
   
   super(defaultValue, locale, pattern, locPattern);
  + formatter = (DecimalFormat) DecimalFormat.getInstance(locale);
   }
   
   // - Methods
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/xdocs components.xml

2004-01-13 Thread yoavs
yoavs   2004/01/13 06:29:58

  Modified:.build.xml
   docs beanutils.html charter.html collections.html
commons.html components.html contributors.html
dbcp.html directory.html discovery.html el.html
index.html jexl.html lang.html license.html
logging.html modeler.html patches.html pool.html
releases.html sandbox.html versioning.html
volunteering.html
   docs/releases index.html mirror.html prepare.html
release.html
   xdocscomponents.xml
  Log:
  
  
  Revision  ChangesPath
  1.13  +1 -1  jakarta-commons/build.xml
  
  Index: build.xml
  ===
  RCS file: /home/cvs/jakarta-commons/build.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- build.xml 5 Sep 2003 00:20:11 -   1.12
  +++ build.xml 13 Jan 2004 14:29:56 -  1.13
  @@ -23,7 +23,7 @@
 property name=docs.src value=xdocs/
   
 !-- jar files for using Anakia to build the documentation --
  -  property name=velocity.jar 
value=../jakarta-velocity/bin/velocity-1.4-dev.jar/
  +  property name=velocity.jar 
value=../jakarta-velocity/bin/velocity-1.5-dev.jar/
 property name=commons-collections.jar 
value=../jakarta-velocity/build/lib/commons-collections.jar/
 property name=jdom.jar value=../jakarta-velocity/build/lib/jdom-b9.jar/
 property name=log4j.jar value=../jakarta-velocity/build/lib/log4j-1.1.3.jar/
  
  
  
  1.98  +5 -2  jakarta-commons/docs/beanutils.html
  
  Index: beanutils.html
  ===
  RCS file: /home/cvs/jakarta-commons/docs/beanutils.html,v
  retrieving revision 1.97
  retrieving revision 1.98
  diff -u -r1.97 -r1.98
  --- beanutils.html10 Jan 2004 19:12:50 -  1.97
  +++ beanutils.html13 Jan 2004 14:29:57 -  1.98
  @@ -16,8 +16,11 @@
   meta name=email value=[EMAIL PROTECTED]
   
  
  -
  -
  +
  +
  +
  +
  +
   titleCommons - Commons/title
   /head
   
  
  
  
  1.94  +5 -2  jakarta-commons/docs/charter.html
  
  Index: charter.html
  ===
  RCS file: /home/cvs/jakarta-commons/docs/charter.html,v
  retrieving revision 1.93
  retrieving revision 1.94
  diff -u -r1.93 -r1.94
  --- charter.html  10 Jan 2004 19:12:50 -  1.93
  +++ charter.html  13 Jan 2004 14:29:57 -  1.94
  @@ -16,8 +16,11 @@
   meta name=email value=[EMAIL PROTECTED]
   
  
  -
  -
  +
  +
  +
  +
  +
   titleCommons - Commons/title
   /head
   
  
  
  
  1.84  +5 -2  jakarta-commons/docs/collections.html
  
  Index: collections.html
  ===
  RCS file: /home/cvs/jakarta-commons/docs/collections.html,v
  retrieving revision 1.83
  retrieving revision 1.84
  diff -u -r1.83 -r1.84
  --- collections.html  10 Jan 2004 19:12:50 -  1.83
  +++ collections.html  13 Jan 2004 14:29:57 -  1.84
  @@ -16,8 +16,11 @@
   meta name=email value=[EMAIL PROTECTED]
   
  
  -
  -
  +
  +
  +
  +
  +
   titleCommons - Commons/title
   /head
   
  
  
  
  1.98  +5 -2  jakarta-commons/docs/commons.html
  
  Index: commons.html
  ===
  RCS file: /home/cvs/jakarta-commons/docs/commons.html,v
  retrieving revision 1.97
  retrieving revision 1.98
  diff -u -r1.97 -r1.98
  --- commons.html  10 Jan 2004 19:12:50 -  1.97
  +++ commons.html  13 Jan 2004 14:29:57 -  1.98
  @@ -16,8 +16,11 @@
   meta name=email value=[EMAIL PROTECTED]
   
  
  -
  -
  +
  +
  +
  +
  +
   titleCommons - Commons Proper/title
   /head
   
  
  
  
  1.135 +12 -9 jakarta-commons/docs/components.html
  
  Index: components.html
  ===
  RCS file: /home/cvs/jakarta-commons/docs/components.html,v
  retrieving revision 1.134
  retrieving revision 1.135
  diff -u -r1.134 -r1.135
  --- components.html   10 Jan 2004 19:12:50 -

cvs commit: jakarta-commons/daemon/xdocs index.xml

2004-01-13 Thread yoavs
yoavs   2004/01/13 07:02:06

  Modified:daemon   project.xml
   daemon/xdocs index.xml
  Log:
  Corrected typos and release number.
  
  Revision  ChangesPath
  1.7   +1 -1  jakarta-commons/daemon/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons/daemon/project.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- project.xml   11 Jan 2004 01:48:59 -  1.6
  +++ project.xml   13 Jan 2004 15:02:06 -  1.7
  @@ -5,7 +5,7 @@
 nameDaemon/name
 idcommons-daemon/id
 logo/images/logo.gif/logo
  -  currentVersion1.0-Alpha/currentVersion
  +  currentVersion1.0/currentVersion
   
 organization
   nameApache Software Foundation/name
  
  
  
  1.3   +2 -2  jakarta-commons/daemon/xdocs/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-commons/daemon/xdocs/index.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- index.xml 16 Sep 2003 11:55:08 -  1.2
  +++ index.xml 13 Jan 2004 15:02:06 -  1.3
  @@ -67,7 +67,7 @@
   
   section name=Structure
   p
  -  Daemon is made of 2 part. One written in C that makes the interface to
  +  Daemon is made of 2 parts. One written in C that makes the interface to
 the operating system and the other in Java that provides the 
 Daemon API.
   /p
  @@ -75,7 +75,7 @@
   
   section name=Platforms
   p
  -  Actualy win32 and the UNIX like platforms are supported.
  +  Actually win32 and the UNIX like platforms are supported.
 For win32 platfroms use a href=procrun.htmlprocrun/a.
 For UNIX like platforms use a href=jsvc.htmljsvc/a.
   /p
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/daemon RELEASE-NOTES.txt build.xml

2004-01-13 Thread yoavs
yoavs   2004/01/13 07:07:07

  Modified:daemon   RELEASE-NOTES.txt build.xml
  Log:
  Updated version references to 1.0 from 1.0-dev or 1.0-Alpha
  
  Revision  ChangesPath
  1.2   +2 -2  jakarta-commons/daemon/RELEASE-NOTES.txt
  
  Index: RELEASE-NOTES.txt
  ===
  RCS file: /home/cvs/jakarta-commons/daemon/RELEASE-NOTES.txt,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RELEASE-NOTES.txt 4 Sep 2003 23:28:20 -   1.1
  +++ RELEASE-NOTES.txt 13 Jan 2004 15:07:07 -  1.2
  @@ -1,7 +1,7 @@
   $Id$
   
Commons Daemon Package
  -Version 1.0-dev
  +Version 1.0
Release Notes
   
   
  
  
  
  1.3   +2 -2  jakarta-commons/daemon/build.xml
  
  Index: build.xml
  ===
  RCS file: /home/cvs/jakarta-commons/daemon/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml 29 Sep 2003 09:59:11 -  1.2
  +++ build.xml 13 Jan 2004 15:07:07 -  1.3
  @@ -43,7 +43,7 @@
 property name=component.title value=Java Daemons/
   
 !-- The current version number of this component --
  -  property name=component.version   value=1.0-dev/
  +  property name=component.version   value=1.0/
   
 !-- The base directory for compilation targets --
 property name=build.home  value=target/
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/dbutils/src/java/org/apache/commons/dbutils BasicRowProcessor.java

2003-11-10 Thread yoavs
yoavs   2003/11/10 08:16:32

  Modified:dbutils/src/java/org/apache/commons/dbutils
BasicRowProcessor.java
  Log:
  Cleaned up spelling (primitiveDefaults) and a bit of JavaDoc.
  
  Revision  ChangesPath
  1.4   +48 -23
jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/BasicRowProcessor.java
  
  Index: BasicRowProcessor.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/BasicRowProcessor.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- BasicRowProcessor.java9 Nov 2003 18:52:18 -   1.3
  +++ BasicRowProcessor.java10 Nov 2003 16:16:32 -  1.4
  @@ -85,6 +85,7 @@
* @author Henri Yandell
* @author Juozas Baliuka
* @author David Graham
  + * @author Yoav Shapira
*/
   public class BasicRowProcessor implements RowProcessor {
   
  @@ -93,17 +94,17 @@
* is returned.  These are the same as the defaults that ResultSet get* 
* methods return in the event of a NULL column.
*/
  -private static final Map primitveDefaults = new HashMap();
  +private static final Map primitiveDefaults = new HashMap();
   
   static {
  -primitveDefaults.put(Integer.TYPE, new Integer(0));
  -primitveDefaults.put(Short.TYPE, new Short((short) 0));
  -primitveDefaults.put(Byte.TYPE, new Byte((byte) 0));
  -primitveDefaults.put(Float.TYPE, new Float(0));
  -primitveDefaults.put(Double.TYPE, new Double(0));
  -primitveDefaults.put(Long.TYPE, new Long(0));
  -primitveDefaults.put(Boolean.TYPE, Boolean.FALSE);
  -primitveDefaults.put(Character.TYPE, new Character('\u'));
  +primitiveDefaults.put(Integer.TYPE, new Integer(0));
  +primitiveDefaults.put(Short.TYPE, new Short((short) 0));
  +primitiveDefaults.put(Byte.TYPE, new Byte((byte) 0));
  +primitiveDefaults.put(Float.TYPE, new Float(0));
  +primitiveDefaults.put(Double.TYPE, new Double(0));
  +primitiveDefaults.put(Long.TYPE, new Long(0));
  +primitiveDefaults.put(Boolean.TYPE, Boolean.FALSE);
  +primitiveDefaults.put(Character.TYPE, new Character('\u'));
   }
   
   /**
  @@ -119,6 +120,8 @@
   
   /**
* Returns the Singleton instance of this class.
  + *
  + * @return The single instance of this class.
*/
   public static BasicRowProcessor instance() {
   return instance;
  @@ -135,7 +138,8 @@
* Convert a codeResultSet/code row into an codeObject[]/code.
* This implementation copies column values into the array in the same 
* order they're returned from the codeResultSet/code.  Array elements
  - * will be set to codenull/code if the column was SQL NULL. 
  + * will be set to codenull/code if the column was SQL NULL.
  + *
* @see org.apache.commons.dbutils.RowProcessor#toArray(java.sql.ResultSet)
*/
   public Object[] toArray(ResultSet rs) throws SQLException {
  @@ -241,13 +245,14 @@
   
   /**
* Creates a new object and initializes its fields from the ResultSet.
  - * @param rs
  - * @param type
  - * @param props
  - * @param columnToProperty
  - * @param cols
  + *
  + * @param rs The result set
  + * @param type The bean type (the return type of the object)
  + * @param props The property descriptors
  + * @param columnToProperty The column indices in the result set
  + * @param cols The number of columns
* @return An initialized object.
  - * @throws SQLException
  + * @throws SQLException If a database error occurs
*/
   private Object createBean(
   ResultSet rs,
  @@ -271,7 +276,7 @@
   Class propType = prop.getPropertyType();
   
   if (propType != null  value == null  propType.isPrimitive()) {
  -value = primitveDefaults.get(propType);
  +value = primitiveDefaults.get(propType);
   }
   
   this.callSetter(bean, prop, value);
  @@ -286,10 +291,12 @@
* for the bean property that matches the column name.  If no bean property
* was found for a column, the position is set to PROPERTY_NOT_FOUND.
* 
  + * @param rsmd The result set meta data containing column information
  + * @param props The bean property descriptors
* @return An int[] with column index to property index mappings.  The 0th 
* element is meaningless as column indexing starts at 1.
* 
  - * @throws SQLException
  + * @throws SQLException If a database error occurs
*/
   private int[] mapColumnsToProperties(
   ResultSetMetaData rsmd,
  @@ -385,6 +392,7 @@
* 
* @param value The value to be passed into the setter method.
* @param type

cvs commit: jakarta-commons/dbutils STATUS.html

2003-11-10 Thread yoavs
yoavs   2003/11/10 08:18:42

  Modified:dbutils  STATUS.html
  Log:
  
  
  Revision  ChangesPath
  1.2   +2 -1  jakarta-commons/dbutils/STATUS.html
  
  Index: STATUS.html
  ===
  RCS file: /home/cvs/jakarta-commons/dbutils/STATUS.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- STATUS.html   2 Nov 2003 19:15:23 -   1.1
  +++ STATUS.html   10 Nov 2003 16:18:42 -  1.2
  @@ -34,6 +34,7 @@
   lia href=mailto:[EMAIL PROTECTED]Steven Caswell/a/li
   lia href=mailto:[EMAIL PROTECTED]Juozas Baliuka/a/li
   lia href=mailto:[EMAIL PROTECTED]David Graham/a/li
  +lia href=mailto:[EMAIL PROTECTED]Yoav Shapira/a/li
   liFancy volunteering?  We need you!/li
   /ul
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/dbutils project.xml

2003-11-10 Thread yoavs
yoavs   2003/11/10 08:28:05

  Modified:dbutils  project.xml
  Log:
  Added myself.
  
  Revision  ChangesPath
  1.4   +9 -0  jakarta-commons/dbutils/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons/dbutils/project.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- project.xml   9 Nov 2003 19:38:07 -   1.3
  +++ project.xml   10 Nov 2003 16:28:05 -  1.4
  @@ -92,6 +92,15 @@
   roleJava Developer/role
 /roles
   /developer
  +developer
  +  nameYoav Shapira/name
  +  idyoavs/id
  +  email[EMAIL PROTECTED]/email
  +  organization/organization
  +  roles
  +roleJava Developer/role
  +  /roles
  +/developer
 /developers
   
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/dbutils/xdocs examples.xml

2003-11-10 Thread yoavs
yoavs   2003/11/10 08:45:45

  Added:   dbutils/xdocs examples.xml
  Log:
  Initial version of Examples page.
  
  Revision  ChangesPath
  1.1  jakarta-commons/dbutils/xdocs/examples.xml
  
  Index: examples.xml
  ===
  ?xml version=1.0?
  
  document
  
   properties
titleJDBC Utility Component -- Examples/title
author email=[EMAIL PROTECTED]Yoav Shapira/author
   /properties
  
  body
  
  section name=DbUtils: JDBC Utility Component Examples
  p
  This page provides examples that show how the DbUtils component
  may be used.
  /p
  /section
  
  section name=Basic Usage
  p
  The core classes/interfaces in DbUtils are 
  codea 
href=apidocs/org/apache/commons/dbutils/QueryRunner.htmlQueryRunner/a/code
  and
  codea 
href=apidocs/org/apache/commons/dbutils/ResultSetHandler.htmlResultSetHandler/a/code.
  The following example demonstrates how these classes are used together.
  /p
  
  pre
  DataSource ds = // somehow get DataSource;
  
  // Step 1.
  QueryRunner run = new QueryRunner(ds);
  
  // Step 2.
  ResultSetHandler h = new BeanHandler(Person.class);
  
  // Step 3.
  Person p = (Person) run.query(SELECT * FROM Person WHERE name=?, John Doe, h); 
  
  /pre
  
  pExplanation/p
  ol
  li
  Configure QueryRunner with the DataSource.
  Note that QueryRunner has methods that take a 
  java.sql.Connection so you are not required to
  use DataSources.
  /li
  li
  Implement the ResultSetHandler interface or use
  one of the provided implementations.  This one converts a 
  ResultSet row into a bean.
  /li
  li
  Execute the SQL statement with one replacement parameter and
  return the results in a new Person object (generated by the handler
  in step 2).
  /li
  /ol
  
  /section
  
  /body
  /document
  
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/dbutils/xdocs navigation.xml

2003-11-10 Thread yoavs
yoavs   2003/11/10 08:46:29

  Modified:dbutils/xdocs navigation.xml
  Log:
  Added Examples page.
  
  Revision  ChangesPath
  1.2   +1 -0  jakarta-commons/dbutils/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons/dbutils/xdocs/navigation.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- navigation.xml2 Nov 2003 19:15:24 -   1.1
  +++ navigation.xml10 Nov 2003 16:46:29 -  1.2
  @@ -6,6 +6,7 @@
 body
   menu name=DbUtils
 item name=Overview href=/index.html/
  +  item name=Examples href=/examples.html /
 item name=Downloads href=/downloads.html/
 item name=To Do List href=/todo.html/
   /menu
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/dbutils/xdocs index.xml

2003-11-10 Thread yoavs
yoavs   2003/11/10 08:47:30

  Modified:dbutils/xdocs index.xml
  Log:
  Removed basic example and added link to examples.
  
  Revision  ChangesPath
  1.3   +1 -40 jakarta-commons/dbutils/xdocs/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-commons/dbutils/xdocs/index.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- index.xml 5 Nov 2003 04:52:42 -   1.2
  +++ index.xml 10 Nov 2003 16:47:30 -  1.3
  @@ -86,47 +86,8 @@
   
   section name=Example Usage
   p
  -The core classes/interfaces in DbUtils are 
  -codea 
href=apidocs/org/apache/commons/dbutils/QueryRunner.htmlQueryRunner/a/code
  -and
  -codea 
href=apidocs/org/apache/commons/dbutils/ResultSetHandler.htmlResultSetHandler/a/code.
  -The following example demonstrates how these classes are used together.
  +Please see a href=examples.htmlExamples Page/a.
   /p
  -
  -pre
  -DataSource ds = // somehow get DataSource;
  -
  -// Step 1.
  -QueryRunner run = new QueryRunner(ds);
  -
  -// Step 2.
  -ResultSetHandler h = new BeanHandler(Person.class);
  -
  -// Step 3.
  -Person p = (Person) run.query(SELECT * FROM Person WHERE name=?, John Doe, h); 
  -
  -/pre
  -
  -pExplanation/p
  -ol
  -li
  -Configure QueryRunner with the DataSource.
  -Note that QueryRunner has methods that take a 
  -java.sql.Connection so you are not required to
  -use DataSources.
  -/li
  -li
  -Implement the ResultSetHandler interface or use
  -one of the provided implementations.  This one converts a 
  -ResultSet row into a bean.
  -/li
  -li
  -Execute the SQL statement with one replacement parameter and
  -return the results in a new Person object (generated by the handler
  -in step 2).
  -/li
  -/ol
  -
   /section
   
   section name=Interaction With Other Packages
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/xdocs components.xml

2003-09-16 Thread yoavs
yoavs   2003/09/16 08:05:42

  Modified:xdocscomponents.xml
  Log:
  Updated link to commons daemon site
  
  Revision  ChangesPath
  1.98  +1 -1  jakarta-commons/xdocs/components.xml
  
  Index: components.xml
  ===
  RCS file: /home/cvs/jakarta-commons/xdocs/components.xml,v
  retrieving revision 1.97
  retrieving revision 1.98
  diff -u -r1.97 -r1.98
  --- components.xml4 Sep 2003 23:56:00 -   1.97
  +++ components.xml16 Sep 2003 15:05:42 -  1.98
  @@ -345,7 +345,7 @@
  dl
   
   !-- Daemon --
  -dtbbiga 
href=http://cvs.apache.org/viewcvs/jakarta-commons/daemon/;Daemon/a/big/b/dt
  +dtbbiga 
href=http://jakarta.apache.org/commons/daemon/;Daemon/a/big/b/dt
   dd
An alternative invocation mechanism for unix-daemon-like java code. 
   /dd
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/daemon - Imported sources

2003-09-04 Thread yoavs
yoavs   2003/09/04 16:28:21

  Log:
  Importing from commons-sandbox to commons proper
  
  Status:
  
  Vendor Tag:   JAKARTA_COMMONS_SANDBOX
  Release Tags: INITIAL_COMMI
  
  N jakarta-commons/daemon/.cvsignore
  N jakarta-commons/daemon/LICENSE
  N jakarta-commons/daemon/LICENSE.txt
  N jakarta-commons/daemon/PROPOSAL.html
  N jakarta-commons/daemon/README
  N jakarta-commons/daemon/RELEASE-NOTES.txt
  N jakarta-commons/daemon/STATUS.html
  N jakarta-commons/daemon/build-maven.xml
  N jakarta-commons/daemon/build.properties.sample
  N jakarta-commons/daemon/build.xml
  N jakarta-commons/daemon/project.xml
  N jakarta-commons/daemon/src/conf/MANIFEST.MF
  N jakarta-commons/daemon/src/docs/daemon.css
  N jakarta-commons/daemon/src/docs/daemon.html
  N jakarta-commons/daemon/src/java/org/apache/commons/daemon/Daemon.java
  N jakarta-commons/daemon/src/java/org/apache/commons/daemon/DaemonContext.java
  N jakarta-commons/daemon/src/java/org/apache/commons/daemon/DaemonController.java
  N jakarta-commons/daemon/src/java/org/apache/commons/daemon/DaemonListener.java
  N jakarta-commons/daemon/src/java/org/apache/commons/daemon/DaemonPermission.java
  N jakarta-commons/daemon/src/java/org/apache/commons/daemon/support/DaemonLoader.java
  N jakarta-commons/daemon/src/native/nt/Makefile
  N jakarta-commons/daemon/src/native/nt/README
  N jakarta-commons/daemon/src/native/nt/executables/vdmoniadm/icon1.ico
  N jakarta-commons/daemon/src/native/nt/executables/vdmoniadm/resource.h
  N jakarta-commons/daemon/src/native/nt/executables/vdmoniadm/vdmoniadm.dsp
  N jakarta-commons/daemon/src/native/nt/executables/vdmoniadm/vdmoniadm.dsw
  N jakarta-commons/daemon/src/native/nt/executables/vdmoniadm/vdmoniadm.rc
  N jakarta-commons/daemon/src/native/nt/executables/vdmonisvc/resource.h
  N jakarta-commons/daemon/src/native/nt/executables/vdmonisvc/vdmonisvc.dsp
  N jakarta-commons/daemon/src/native/nt/executables/vdmonisvc/vdmonisvc.dsw
  N jakarta-commons/daemon/src/native/nt/executables/vdmonisvc/vdmonisvc.rc
  N jakarta-commons/daemon/src/native/nt/lib/moni_inst.h
  N jakarta-commons/daemon/src/native/nt/moni/Makefile
  N jakarta-commons/daemon/src/native/nt/moni/vdmoniadm.c
  N jakarta-commons/daemon/src/native/nt/moni/vdmonisvc.c
  N jakarta-commons/daemon/src/native/nt/procrun/License.rtf
  N jakarta-commons/daemon/src/native/nt/procrun/Makefile
  N jakarta-commons/daemon/src/native/nt/procrun/icoi.ico
  N jakarta-commons/daemon/src/native/nt/procrun/icos.ico
  N jakarta-commons/daemon/src/native/nt/procrun/icow.ico
  N jakarta-commons/daemon/src/native/nt/procrun/jakarta-banner.bmp
  N jakarta-commons/daemon/src/native/nt/procrun/procgui.c
  N jakarta-commons/daemon/src/native/nt/procrun/procrun.c
  N jakarta-commons/daemon/src/native/nt/procrun/procrun.dev
  N jakarta-commons/daemon/src/native/nt/procrun/procrun.dsp
  N jakarta-commons/daemon/src/native/nt/procrun/procrun.dsw
  N jakarta-commons/daemon/src/native/nt/procrun/procrun.h
  N jakarta-commons/daemon/src/native/nt/procrun/procrun.rc
  N jakarta-commons/daemon/src/native/nt/procrun/procrun.sln
  N jakarta-commons/daemon/src/native/nt/procrun/procrun.vcproj
  N jakarta-commons/daemon/src/native/nt/procrun/procrund.dev
  N jakarta-commons/daemon/src/native/nt/procrun/procrunw.dev
  N jakarta-commons/daemon/src/native/nt/procrun/proctry.ico
  N jakarta-commons/daemon/src/native/nt/procrun/readme.txt
  N jakarta-commons/daemon/src/native/nt/procrun/splash.bmp
  N jakarta-commons/daemon/src/native/nt/procrun/tomcatp.ico
  N jakarta-commons/daemon/src/native/nt/procrun/tomcatr.ico
  N jakarta-commons/daemon/src/native/nt/procrun/tomcats.ico
  N jakarta-commons/daemon/src/native/nt/procrun/bin/procrun.dll
  N jakarta-commons/daemon/src/native/nt/procrun/java/Test.java
  N jakarta-commons/daemon/src/native/nt/procrun/testchild/testchild.c
  N jakarta-commons/daemon/src/native/nt/procrun/testchild/testchild.vcproj
  N jakarta-commons/daemon/src/native/nt/service/Makefile
  N jakarta-commons/daemon/src/native/nt/service/instmain.c
  N jakarta-commons/daemon/src/native/nt/service/instsvc.dsp
  N jakarta-commons/daemon/src/native/nt/service/instsvc.dsw
  N jakarta-commons/daemon/src/native/nt/signals/kills.c
  N jakarta-commons/daemon/src/native/nt/supcalls_nt/vdenv.c
  N jakarta-commons/daemon/src/native/unix/.cvsignore
  N jakarta-commons/daemon/src/native/unix/INSTALL.txt
  N jakarta-commons/daemon/src/native/unix/Makedefs.in
  N jakarta-commons/daemon/src/native/unix/Makefile.in
  N jakarta-commons/daemon/src/native/unix/configure.in
  N jakarta-commons/daemon/src/native/unix/native/.cvsignore
  N jakarta-commons/daemon/src/native/unix/native/Makefile.in
  N jakarta-commons/daemon/src/native/unix/native/Tomcat.sh
  N jakarta-commons/daemon/src/native/unix/native/arguments.c
  N jakarta-commons/daemon/src/native/unix/native/arguments.h
  N jakarta-commons/daemon/src/native/unix/native/debug.c
  N jakarta-commons/daemon/src/native/unix/native/debug.h
  N

cvs commit: jakarta-commons-sandbox/daemon/xdocs/images logo.gif

2003-09-04 Thread yoavs
yoavs   2003/09/04 16:33:46

  Removed: daemon   .cvsignore LICENSE LICENSE.txt PROPOSAL.html README
RELEASE-NOTES.txt STATUS.html build-maven.xml
build.properties.sample build.xml project.xml
   daemon/src/conf MANIFEST.MF
   daemon/src/docs daemon.css daemon.html
   daemon/src/java/org/apache/commons/daemon Daemon.java
DaemonContext.java DaemonController.java
DaemonListener.java DaemonPermission.java
   daemon/src/java/org/apache/commons/daemon/support
DaemonLoader.java
   daemon/src/native/nt Makefile README
   daemon/src/native/nt/executables/vdmoniadm icon1.ico
resource.h vdmoniadm.dsp vdmoniadm.dsw vdmoniadm.rc
   daemon/src/native/nt/executables/vdmonisvc resource.h
vdmonisvc.dsp vdmonisvc.dsw vdmonisvc.rc
   daemon/src/native/nt/lib moni_inst.h
   daemon/src/native/nt/moni Makefile vdmoniadm.c vdmonisvc.c
   daemon/src/native/nt/procrun License.rtf Makefile icoi.ico
icos.ico icow.ico jakarta-banner.bmp procgui.c
procrun.c procrun.dev procrun.dsp procrun.dsw
procrun.h procrun.rc procrun.sln procrun.vcproj
procrund.dev procrunw.dev proctry.ico readme.txt
splash.bmp tomcatp.ico tomcatr.ico tomcats.ico
   daemon/src/native/nt/procrun/bin procrun.dll procrun.exe
procrunw.exe tomcat.exe tomcatw.exe
   daemon/src/native/nt/procrun/java Test.java
   daemon/src/native/nt/procrun/testchild testchild.c
testchild.vcproj
   daemon/src/native/nt/service Makefile instmain.c instsvc.dsp
instsvc.dsw
   daemon/src/native/nt/signals kills.c
   daemon/src/native/nt/supcalls_nt vdenv.c
   daemon/src/native/unix .cvsignore INSTALL.txt Makedefs.in
Makefile.in configure.in
   daemon/src/native/unix/native .cvsignore Makefile.in
Tomcat.sh arguments.c arguments.h debug.c debug.h
dso-dlfcn.c dso-dyld.c dso.h help.c help.h home.c
home.h java.c java.h jsvc-unix.c jsvc.h location.c
location.h replace.c replace.h signals.c
   daemon/src/native/unix/support apfunctions.m4 apjava.m4
apsupport.m4 buildconf.sh config.guess config.sub
install.sh
   daemon/src/samples README.txt ServiceDaemon.java
ServiceDaemon.sh ServiceDaemonReadThread.java
SimpleDaemon.java SimpleDaemon.sh build.xml
   daemon/src/test/org/apache/commons/daemon SimpleDaemon.java
   daemon/xdocs index.xml
   daemon/xdocs/images logo.gif
  Log:
  Moved daemon from sandbox to commons proper

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/daemon project.xml

2003-09-04 Thread yoavs
yoavs   2003/09/04 16:42:57

  Modified:daemon   project.xml
  Log:
  Updated after move from sandbox
  
  Revision  ChangesPath
  1.2   +5 -6  jakarta-commons/daemon/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons/daemon/project.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.xml   4 Sep 2003 23:28:20 -   1.1
  +++ project.xml   4 Sep 2003 23:42:57 -   1.2
  @@ -23,14 +23,14 @@
   Unix based systems and Service in Win32 systems. 
 /description
 
  -  urlhttp://jakarta.apache.org/commons/sandbox/daemon//url
  +  urlhttp://jakarta.apache.org/commons/daemon//url
 
issueTrackingUrlhttp://nagoya.apache.org/scarab/servlet/scarab//issueTrackingUrl
 siteAddressjakarta.apache.org/siteAddress
  -  siteDirectory/www/jakarta.apache.org/commons/sandbox/daemon//siteDirectory
  -  
distributionDirectory/www/jakarta.apache.org/builds/jakarta-commons-sandbox/daemon//distributionDirectory
  +  siteDirectory/www/jakarta.apache.org/commons/daemon//siteDirectory
  +  
distributionDirectory/www/jakarta.apache.org/builds/jakarta-commons/daemon//distributionDirectory
 repository
  -connectionscm:cvs:pserver:[EMAIL 
PROTECTED]:/home/cvspublic:jakarta-commons-sandbox/daemon/connection
  -urlhttp://cvs.apache.org/viewcvs/jakarta-commons-sandbox/daemon//url
  +connectionscm:cvs:pserver:[EMAIL 
PROTECTED]:/home/cvspublic:jakarta-commons/daemon/connection
  +urlhttp://cvs.apache.org/viewcvs/jakarta-commons/daemon//url
 /repository
 
 versions
  @@ -58,7 +58,6 @@
 /mailingLists
 
 developers
  -!-- I have just put myself for the moment --
   developer
 nameJean-Frederic Clere/name
 idjfclere/id
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/xdocs components.xml

2003-09-04 Thread yoavs
yoavs   2003/09/04 16:56:00

  Modified:xdocscomponents.xml
  Log:
  Updated to reflect daemon move from sandbox into commons proper
  
  Revision  ChangesPath
  1.97  +13 -7 jakarta-commons/xdocs/components.xml
  
  Index: components.xml
  ===
  RCS file: /home/cvs/jakarta-commons/xdocs/components.xml,v
  retrieving revision 1.96
  retrieving revision 1.97
  diff -u -r1.96 -r1.97
  --- components.xml12 Aug 2003 17:56:56 -  1.96
  +++ components.xml4 Sep 2003 23:56:00 -   1.97
  @@ -342,10 +342,23 @@
   
 section name=Pre-Release Components
  !-- alphabetical order by name --
  +   dl
  +
  +!-- Daemon --
  +dtbbiga 
href=http://cvs.apache.org/viewcvs/jakarta-commons/daemon/;Daemon/a/big/b/dt
  +dd
  + An alternative invocation mechanism for unix-daemon-like java code. 
  +/dd
  +!-- /Daemon --
  +
  +   /dl
 /section
   
 section name=Sandbox (Not-Yet-Proposed) Components
  !-- alphabetical order by name --
  +
  +
  +
  dl
   
   !-- Attributes --
  @@ -371,13 +384,6 @@
   /dd
   !-- /Clazz --
   
  -!-- Daemon --
  -dtbbiga 
href=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/daemon/;Daemon/a/big/b/dt
  -dd
  - An alternative invocation mechanism for unix-daemon-like java code. 
  -/dd
  -!-- /Daemon --
  -
   !-- DbUtils --
   dtbbiga 
href=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/dbutils/;DbUtils/a/big/b/dt
   dd
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/docs components.html

2003-09-04 Thread yoavs
yoavs   2003/09/04 17:20:11

  Modified:.build.xml
   docs components.html
  Log:
  - Updated jdom dependency to jdom-b9 instead of jdom-b8 as that's what velocity 
1.4-dev is using
  - Updated site to reflect commons-daemon promotion from sandbox
  
  Revision  ChangesPath
  1.12  +1 -1  jakarta-commons/build.xml
  
  Index: build.xml
  ===
  RCS file: /home/cvs/jakarta-commons/build.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- build.xml 13 Aug 2002 05:29:40 -  1.11
  +++ build.xml 5 Sep 2003 00:20:11 -   1.12
  @@ -25,7 +25,7 @@
 !-- jar files for using Anakia to build the documentation --
 property name=velocity.jar 
value=../jakarta-velocity/bin/velocity-1.4-dev.jar/
 property name=commons-collections.jar 
value=../jakarta-velocity/build/lib/commons-collections.jar/
  -  property name=jdom.jar value=../jakarta-velocity/build/lib/jdom-b8.jar/
  +  property name=jdom.jar value=../jakarta-velocity/build/lib/jdom-b9.jar/
 property name=log4j.jar value=../jakarta-velocity/build/lib/log4j-1.1.3.jar/
 property name=xerces.jar 
value=../jakarta-velocity/build/lib/xerces-1.3.0.jar/
   
  
  
  
  1.119 +11 -8 jakarta-commons/docs/components.html
  
  Index: components.html
  ===
  RCS file: /home/cvs/jakarta-commons/docs/components.html,v
  retrieving revision 1.118
  retrieving revision 1.119
  diff -u -r1.118 -r1.119
  --- components.html   4 Sep 2003 23:28:30 -   1.118
  +++ components.html   5 Sep 2003 00:20:11 -   1.119
  @@ -571,7 +571,17 @@
 /td/tr
 trtd
   blockquote
  -/blockquote
  +dl
  +
  +!-- Daemon --
  +dtbbiga 
href=http://cvs.apache.org/viewcvs/jakarta-commons/daemon/;Daemon/a/big/b/dt
  +dd
  + An alternative invocation mechanism for unix-daemon-like java code. 
  +/dd
  +!-- /Daemon --
  +
  +   /dl
  +/blockquote
   /p
 /td/tr
 trtdbr//td/tr
  @@ -609,13 +619,6 @@
   /dd
   !-- /Clazz --
   
  -!-- Daemon --
  -dtbbiga 
href=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/daemon/;Daemon/a/big/b/dt
  -dd
  - An alternative invocation mechanism for unix-daemon-like java code. 
  -/dd
  -!-- /Daemon --
  -
   !-- DbUtils --
   dtbbiga 
href=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/dbutils/;DbUtils/a/big/b/dt
   dd
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/xdocs/stylesheets/menus components.xml sandbox.xml

2003-09-04 Thread yoavs
yoavs   2003/09/04 17:24:20

  Modified:xdocs/stylesheets/menus components.xml sandbox.xml
  Log:
  Updated after daemon move from sandbox to commons proper
  
  Revision  ChangesPath
  1.2   +3 -2  jakarta-commons/xdocs/stylesheets/menus/components.xml
  
  Index: components.xml
  ===
  RCS file: /home/cvs/jakarta-commons/xdocs/stylesheets/menus/components.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- components.xml18 Aug 2003 21:56:29 -  1.1
  +++ components.xml5 Sep 2003 00:24:20 -   1.2
  @@ -5,12 +5,13 @@
   item name=BeanUtils  
href=http://jakarta.apache.org/commons/beanutils.html/
   item name=Betwixt
href=http://jakarta.apache.org/commons/betwixt/index.html/
   item name=CLI
href=http://jakarta.apache.org/commons/cli/index.html/
  -item name=Codec 
href=http://jakarta.apache.org/commons/codec/index.html/
  +item name=Codec  
href=http://jakarta.apache.org/commons/codec/index.html/
   item name=Collections
href=http://jakarta.apache.org/commons/collections.html/
  +item name=Daemon 
href=http://jakarta.apache.org/commons/daemon; /
   item name=DBCP   
href=http://jakarta.apache.org/commons/dbcp/
   item name=Digester   
href=http://jakarta.apache.org/commons/digester.html/
   item name=Discovery  
href=http://jakarta.apache.org/commons/discovery.html/
  -item name=EL  
href=http://jakarta.apache.org/commons/el.html/
  +item name=EL  
href=http://jakarta.apache.org/commons/el.html/
   item name=FileUpload 
href=http://jakarta.apache.org/commons/fileupload/index.html/
   item name=HttpClient 
href=http://jakarta.apache.org/commons/httpclient/index.html/
   item name=Jelly  
href=http://jakarta.apache.org/commons/jelly/index.html/
  
  
  
  1.2   +0 -1  jakarta-commons/xdocs/stylesheets/menus/sandbox.xml
  
  Index: sandbox.xml
  ===
  RCS file: /home/cvs/jakarta-commons/xdocs/stylesheets/menus/sandbox.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- sandbox.xml   18 Aug 2003 21:57:40 -  1.1
  +++ sandbox.xml   5 Sep 2003 00:24:20 -   1.2
  @@ -3,7 +3,6 @@
   item name=Cache 
href=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/cache//
   item name=Clazz 
href=http://jakarta.apache.org/commons/sandbox/clazz//
   item name=Configuration 
href=http://jakarta.apache.org/commons/sandbox/configuration/index.html/
  -item name=Daemon
href=http://jakarta.apache.org/commons/sandbox/daemon/index.html/
   item name=DbUtils   
href=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/dbutils//
   item name=Functor   
href=http://jakarta.apache.org/commons/sandbox/functor//
   item name=HiveMind  
href=http://jakarta.apache.org/commons/sandbox/hivemind//
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/docs/releases index.html mirror.html prepare.html release.html

2003-09-04 Thread yoavs
yoavs   2003/09/04 17:25:29

  Modified:docs beanutils.html charter.html collections.html
commons.html components.html contributors.html
dbcp.html digester.html directory.html
discovery.html el.html index.html jexl.html
lang.html license.html logging.html modeler.html
patches.html pool.html releases.html sandbox.html
versioning.html volunteering.html
   docs/releases index.html mirror.html prepare.html
release.html
  Log:
  Updated docs (again ;)) for daemon move from sandbox toc ommons proper
  
  Revision  ChangesPath
  1.86  +2 -2  jakarta-commons/docs/beanutils.html
  
  Index: beanutils.html
  ===
  RCS file: /home/cvs/jakarta-commons/docs/beanutils.html,v
  retrieving revision 1.85
  retrieving revision 1.86
  diff -u -r1.85 -r1.86
  --- beanutils.html4 Sep 2003 23:28:30 -   1.85
  +++ beanutils.html5 Sep 2003 00:25:28 -   1.86
  @@ -107,6 +107,8 @@
   /li
   lia 
href=http://jakarta.apache.org/commons/collections.html;Collections/a
   /li
  +lia 
href=http://jakarta.apache.org/commons/daemon;Daemon/a
  +/li
   lia 
href=http://jakarta.apache.org/commons/dbcp;DBCP/a
   /li
   lia 
href=http://jakarta.apache.org/commons/digester.html;Digester/a
  @@ -149,8 +151,6 @@
   lia 
href=http://jakarta.apache.org/commons/sandbox/clazz/;Clazz/a
   /li
   lia 
href=http://jakarta.apache.org/commons/sandbox/configuration/index.html;Configuration/a
  -/li
  -lia 
href=http://jakarta.apache.org/commons/sandbox/daemon/index.html;Daemon/a
   /li
   lia 
href=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/dbutils/;DbUtils/a
   /li
  
  
  
  1.82  +2 -2  jakarta-commons/docs/charter.html
  
  Index: charter.html
  ===
  RCS file: /home/cvs/jakarta-commons/docs/charter.html,v
  retrieving revision 1.81
  retrieving revision 1.82
  diff -u -r1.81 -r1.82
  --- charter.html  4 Sep 2003 23:28:30 -   1.81
  +++ charter.html  5 Sep 2003 00:25:28 -   1.82
  @@ -107,6 +107,8 @@
   /li
   lia 
href=http://jakarta.apache.org/commons/collections.html;Collections/a
   /li
  +lia 
href=http://jakarta.apache.org/commons/daemon;Daemon/a
  +/li
   lia 
href=http://jakarta.apache.org/commons/dbcp;DBCP/a
   /li
   lia 
href=http://jakarta.apache.org/commons/digester.html;Digester/a
  @@ -149,8 +151,6 @@
   lia 
href=http://jakarta.apache.org/commons/sandbox/clazz/;Clazz/a
   /li
   lia 
href=http://jakarta.apache.org/commons/sandbox/configuration/index.html;Configuration/a
  -/li
  -lia 
href=http://jakarta.apache.org/commons/sandbox/daemon/index.html;Daemon/a
   /li
   lia 
href=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/dbutils/;DbUtils/a
   /li
  
  
  
  1.72  +2 -2  jakarta-commons/docs/collections.html
  
  Index: collections.html
  ===
  RCS file: /home/cvs/jakarta-commons/docs/collections.html,v
  retrieving revision 1.71
  retrieving revision 1.72
  diff -u -r1.71 -r1.72
  --- collections.html  4 Sep 2003 23:28:30 -   1.71
  +++ collections.html  5 Sep 2003 00:25:28 -   1.72
  @@ -107,6 +107,8 @@
   /li
   lia 
href=http://jakarta.apache.org/commons/collections.html;Collections/a
   /li
  +lia 
href=http://jakarta.apache.org/commons/daemon;Daemon/a
  +/li
   lia 
href=http://jakarta.apache.org/commons/dbcp;DBCP/a
   /li
   lia 
href=http://jakarta.apache.org/commons/digester.html;Digester/a
  @@ -149,8 +151,6 @@
   lia 
href=http://jakarta.apache.org/commons/sandbox/clazz/;Clazz/a
   /li
   lia 
href=http://jakarta.apache.org/commons/sandbox/configuration/index.html;Configuration/a
  -/li
  -lia 
href=http://jakarta.apache.org/commons/sandbox/daemon/index.html;Daemon/a
   /li
   lia 
href=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/dbutils/;DbUtils/a
   /li
  
  
  
  1.86  +2 -2  jakarta-commons/docs/commons.html
  
  Index: commons.html
  ===
  RCS file: /home/cvs/jakarta-commons/docs/commons.html,v
  retrieving revision 1.85
  retrieving revision 1.86
  diff -u -r1.85 -r1.86
  --- commons.html

cvs commit: jakarta-commons/modeler project.xml

2003-08-18 Thread yoavs
yoavs   2003/08/18 07:04:32

  Modified:modeler  project.xml
  Log:
  Updated developers
  
  Revision  ChangesPath
  1.6   +5 -5  jakarta-commons/modeler/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons/modeler/project.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- project.xml   12 Aug 2003 13:18:14 -  1.5
  +++ project.xml   18 Aug 2003 14:04:32 -  1.6
  @@ -16,16 +16,16 @@
 developers
   developer
 nameCraig McClanahan/name
  -  id/id
  -  email/email
  -  organization/organization
  +  idcraigmcc/id
  +  email[EMAIL PROTECTED]/email
  +  organizationApache/organization
   /developer
   
   developer
 nameYoav Shapira/name
  -  id/id
  +  idyoavs/id
 email[EMAIL PROTECTED]/email
  -  organization/organization
  +  organizationApache/organization
   /developer
 /developers
 
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/latka/src/java/org/apache/commons/latka/http RequestImpl.java

2003-08-18 Thread yoavs
yoavs   2003/08/18 17:43:42

  Modified:latka/src/java/org/apache/commons/latka/http
RequestImpl.java
  Log:
  Applied misc JavaDoc corrections for bug 12916.
  
  Revision  ChangesPath
  1.38  +8 -9  
jakarta-commons/latka/src/java/org/apache/commons/latka/http/RequestImpl.java
  
  Index: RequestImpl.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/latka/src/java/org/apache/commons/latka/http/RequestImpl.java,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- RequestImpl.java  8 Jul 2003 15:46:43 -   1.37
  +++ RequestImpl.java  19 Aug 2003 00:43:42 -  1.38
  @@ -189,9 +189,8 @@
   }
   
   /**
  - * Returns a constant representing the http method
  - * (get, post, etc.) being used by this request.  See
  - * the Request interface for available constants.
  + * Returns the object implementing the HttpMethod
  + * (get, post, etc.) for this request.
*
* @return the underlying HttpMethod object representing the request/
*  response pair.
  @@ -319,7 +318,7 @@
   // is enabled, HTTPClient may return a path
   // that is different from the initial request.
   // HTTPClient will not follow redirects to another
  -// host or port; in that event, it will always
  +// host, port, or protocol; in that event, it will always
   // return a 301 or 302.
   _session.setReferer(new URL(_targetURL.getProtocol(), _host, _port,
   _httpMethod.getPath()));
  @@ -556,7 +555,7 @@
   return _method;
   }
   
  -/** Getter for property pproxy.
  +/** Getter for property proxy.
* @return Value of property proxy.
*/
   public Proxy getProxy() {
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/codec/src/java/org/apache/commons/codec/net package.html

2003-08-18 Thread yoavs
yoavs   2003/08/18 17:50:05

  Modified:codec/src/java/org/apache/commons/codec/net package.html
  Log:
  Added description of contents of package.
  
  Revision  ChangesPath
  1.2   +7 -0  
jakarta-commons/codec/src/java/org/apache/commons/codec/net/package.html
  
  Index: package.html
  ===
  RCS file: 
/home/cvs/jakarta-commons/codec/src/java/org/apache/commons/codec/net/package.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- package.html  14 Aug 2003 07:41:09 -  1.1
  +++ package.html  19 Aug 2003 00:50:05 -  1.2
  @@ -1,5 +1,12 @@
   html
body
 Network related encoding and decoding.
  +  p
  +  Currently, the only codec in this package is URLCodec, which
  +  implements encoding and decoding for www-form-urlencoded,
  +  also known as URL-Encoding.  The source for URLCodec provides
  +  detailed comments.
  +  p
  +  Ideas for other net codec are encouraged ;)
/body
   /html
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/xdocs modeler.xml

2003-08-14 Thread yoavs
yoavs   2003/08/13 07:33:19

  Modified:xdocsmodeler.xml
  Log:
  Added 1.1 release
  
  Revision  ChangesPath
  1.3   +1 -0  jakarta-commons/xdocs/modeler.xml
  
  Index: modeler.xml
  ===
  RCS file: /home/cvs/jakarta-commons/xdocs/modeler.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- modeler.xml   1 May 2002 00:53:19 -   1.2
  +++ modeler.xml   13 Aug 2003 14:33:19 -  1.3
  @@ -52,6 +52,7 @@
   section name=Releases
   
   ul
  +lia 
href=http://jakarta.apache.org/builds/jakarta-commons/release/commons-modeler/v1.1/;Version
 1.1/a/li
   lia 
href=http://jakarta.apache.org/builds/jakarta-commons/release/commons-modeler/v1.0/;Version
 1.0/a/li
   /ul
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/modeler KEYS.txt

2003-08-14 Thread yoavs
yoavs   2003/08/05 13:52:20

  Added:   modeler  KEYS.txt
  Log:
  Initial keys file for modeler contains only myself
  
  Revision  ChangesPath
  1.1  jakarta-commons/modeler/KEYS.txt
  
  Index: KEYS.txt
  ===
  This file contains the PGP keys of various Apache developers.
  Please don't use them for email unless you have to. Their main
  purpose is code signing.
  
  Apache users: pgp  KEYS
  Apache developers: 
  (pgpk -ll your name  pgpk -xa your name)  this file.
or
  (gpg --fingerprint --list-sigs your name
gpg --armor --export your name)  this file.
  
  Apache developers: please ensure that your key is also available via the
  PGP keyservers (such as pgpkeys.mit.edu).
  
  Type bits  keyID  Date   User ID
  DSS  3072/1024 0x7C037D42 2003/08/05 *** DEFAULT SIGNING KEY ***
   Yoav Shapira [EMAIL PROTECTED]
  
  -BEGIN PGP PUBLIC KEY BLOCK-
  Version: PGP 6.5.8
  
  mQGiBD8u/mgRBAD5WKD5xF3CLrnABeS1DvQQhYH+tJjvAmyZgFkYwaQT7eiiOzLa
  PC5knbcBC4nuw+8OOPDFw0Ghb2MFogQzRxD6gpPH2t9eEUsrkPFax2Kw2vNTHRrQ
  RGAastmi+EYJsQAoktX2dPseTdrkeJBk240Bfj08ZUFg4uPuho9C45ND6QCg/6SO
  FMuan62QE+DwlUiMDo4ZcU0EAMDS8k6Dhb5m/0njO6w9OLTEyzohlsM9AP+4mfgB
  NOJYhrzfkFoElOcWSA/V3nmYn2VS0oIYDDtBnjXVWZidzTAWKsbT9/AepS3/P2tG
  KMhlXhas+uAiAbMpOglz8fdQ76ivQqyRdS99t4iy/cP2ZC3ShAqZQCacfWY5ZQ8Q
  kTILBADvp/eayw8fvtfWQXJ9EjBRbhO4THmP6z8J+4ypG6l0V/RBjDWZybrqibO9
  ejnOjQYJNCnfrfpzQ5l6dHyy86zLyg+bkFxeId4jp/IfDfJX90sGbuQahNYYwqTp
  SFiDMI3KN5ZhzhGnx+pKQh59pcux3HyKmcpPa4oB0CT828lWuLQfWW9hdiBTaGFw
  aXJhIDx5b2F2c0BhcGFjaGUub3JnPokATgQQEQIADgUCPy7+aAQLAwECAhkBAAoJ
  ECZhkcN8A31CGLkAoPRDGtLRwjkzS2F/OBPkRHKF9/atAKCIh3Fmcr2Cdn05P4qF
  kBe3QeWVt7kDDQQ/Lv5qEAwAzB13VyQ4SuLE8OiOE2eXTpITYfbb6yUOF/32mPfI
  fHmwch04dfv2wXPEgxEmK0Ngw+Po1gr9oSgmC66prrNlD6IAUwGgfNaroxIe+g8q
  zh90hE/K8xfzpEDp19J3tkItAjbBJstoXp18mAkKjX4t7eRdefXUkk+bGI78KqdL
  fDL2Qle3CH8IF3KiutapQvMF6PlTETlPtvFuuUs4INoBp1ajFOmPQFXz0AfGy0Op
  lK33TGSGSfgMg71l6RfUodNQ+PVZX9x2Uk89PY3bzpnhV5JZzf24rnRPxfx2vIPF
  RzBhznzJZv8V+bv9kV7HAarTW56NoKVyOtQa8L9GAFgr5fSI/VhOSdvNILSd5JEH
  NmszbDgNRR0PfIizHHxbLY7288kjwEPwpVsYjY67VYy4XTjTNP18F1dDox0YbN4z
  ISy1Kv884bEpQBgRjXyEpwpy1obEAxnIByl6ypUM2Zafq9AKUJsCRtMIPWakXUGf
  nHy9iUsiGSa6q6Jew1XpTDJvAAICC/4iJF383WNktP9/SxeGVIV74r7C7q5Cxr4a
  Liy7pEYs52DEft3JzTCLI5O4+NjOw+hEd3QiIytUJRW66V6zd50h4x9lBfK+eMYz
  GKNN7kd3aBmH/vXEsG9m9bK1ExwyWq4uyf76nRx1Ya9YthNWmxPUHQnSrOYNPU0/
  beA87ouZG4RL9tYqdu3NKJ4g/DYiaw+twvhSoCUkBEFHFfKLDlv8zyQvPTaPUSAM
  Ha5/G2Dj1D5RluMSCEMG1V8+YcYAFh63WEP7Afye0mR1LMJvmlba67ogh0ZSfR+I
  ju3lhJ9XOp/2W372F9ZbRJofgofVwHQV6INB5uX7KHAdXtPTss+l1nTmydLhsiPC
  5oh99ITPdOm8gRzrP10aFwCnwsqXvr+b7fX/CywpuCOQMIr4sbhbYTTClwDo6E0U
  TQ+Nb7PWE+8KuJuobTvMUqDQSQaQBnkpLcvRt3cPppANtkaADAeNf0RqKxxLlym4
  AltN8G8IMLtSJoH9xlQHTQA4tEUeKOeJAEYEGBECAAYFAj8u/moACgkQJmGRw3wD
  fUJh7ACdE7QuMkzSbxEzTXnbkS61AUPy06QAoI5b613vrWeqg5Gz9C7TzG+FEEoh
  =O17Z
  -END PGP PUBLIC KEY BLOCK-
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/modeler project.xml

2003-08-14 Thread yoavs
yoavs   2003/08/12 06:18:14

  Modified:modeler  project.xml
  Log:
  Added myself as developer, updated version to 1.1
  
  Revision  ChangesPath
  1.5   +8 -1  jakarta-commons/modeler/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons/modeler/project.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- project.xml   23 Jul 2003 20:41:02 -  1.4
  +++ project.xml   12 Aug 2003 13:18:14 -  1.5
  @@ -4,7 +4,7 @@
 extend../project.xml/extend
 nameModeler/name
 idcommons-modeler/id
  -  currentVersion1.0-dev/currentVersion
  +  currentVersion1.1/currentVersion
 inceptionYear2002/inceptionYear
 gumpRepositoryIdjakarta/gumpRepositoryId
 shortDescriptionCommons Modeler/shortDescription
  @@ -18,6 +18,13 @@
 nameCraig McClanahan/name
 id/id
 email/email
  +  organization/organization
  +/developer
  +
  +developer
  +  nameYoav Shapira/name
  +  id/id
  +  email[EMAIL PROTECTED]/email
 organization/organization
   /developer
 /developers
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/docs components.html

2003-08-14 Thread yoavs
yoavs   2003/08/13 07:29:45

  Modified:docs components.html
  Log:
  Updated components, modeler for modeler 1.1 release
  
  Revision  ChangesPath
  1.116 +1 -0  jakarta-commons/docs/components.html
  
  Index: components.html
  ===
  RCS file: /home/cvs/jakarta-commons/docs/components.html,v
  retrieving revision 1.115
  retrieving revision 1.116
  diff -u -r1.115 -r1.116
  --- components.html   1 Aug 2003 03:30:50 -   1.115
  +++ components.html   13 Aug 2003 14:29:45 -  1.116
  @@ -453,6 +453,7 @@
Releases:
ul
  lia 
href=http://jakarta.apache.org/builds/jakarta-commons/release/commons-modeler/v1.0/;Release
 1.0/a - 30 Apr 2002/li
  +   lia 
href=http://jakarta.apache.org/builds/jakarta-commons/release/commons-modeler/v1.1/;Release
 1.1/a - 1 Aug 2003/li
/ul
   /dd
   !-- /Modeler --
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/xdocs contributors.xml

2003-08-14 Thread yoavs
yoavs   2003/08/13 07:44:17

  Modified:xdocscontributors.xml
  Log:
  Added myself :)
  
  Revision  ChangesPath
  1.12  +1 -0  jakarta-commons/xdocs/contributors.xml
  
  Index: contributors.xml
  ===
  RCS file: /home/cvs/jakarta-commons/xdocs/contributors.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- contributors.xml  2 Jun 2003 16:49:18 -   1.11
  +++ contributors.xml  13 Aug 2003 14:44:17 -  1.12
  @@ -23,6 +23,7 @@
   liJuergen Pill/li
   liDoug Sale/li
   liScott Sanders/li
  +liYoav Shapira/li
   liRichard A. Sitze/li
   liJames Strachan/li
   liDirk Verbeeck/li
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/xdocs components.xml

2003-08-14 Thread yoavs
yoavs   2003/08/12 10:56:57

  Modified:xdocscomponents.xml
  Log:
  Added modeler release 1.1
  
  Revision  ChangesPath
  1.96  +1 -0  jakarta-commons/xdocs/components.xml
  
  Index: components.xml
  ===
  RCS file: /home/cvs/jakarta-commons/xdocs/components.xml,v
  retrieving revision 1.95
  retrieving revision 1.96
  diff -u -r1.95 -r1.96
  --- components.xml1 Aug 2003 03:30:50 -   1.95
  +++ components.xml12 Aug 2003 17:56:56 -  1.96
  @@ -247,6 +247,7 @@
Releases:
ul
  lia 
href=http://jakarta.apache.org/builds/jakarta-commons/release/commons-modeler/v1.0/;Release
 1.0/a - 30 Apr 2002/li
  +   lia 
href=http://jakarta.apache.org/builds/jakarta-commons/release/commons-modeler/v1.1/;Release
 1.1/a - 1 Aug 2003/li
/ul
   /dd
   !-- /Modeler --
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/modeler/xdocs index.xml

2003-08-14 Thread yoavs
yoavs   2003/08/12 06:16:27

  Modified:modeler/xdocs index.xml
  Log:
  Updated for release 1.1
  
  Revision  ChangesPath
  1.2   +2 -1  jakarta-commons/modeler/xdocs/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-commons/modeler/xdocs/index.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- index.xml 25 Jul 2002 02:36:46 -  1.1
  +++ index.xml 12 Aug 2003 13:16:27 -  1.2
  @@ -39,7 +39,7 @@
   
   section name=Documentation
   
  -pThe a href=http://jakarta.apache.org/commons/modeler/RELEASE-NOTES.txt;
  +pThe a href=http://jakarta.apache.org/commons/modeler/RELEASE-NOTES-1.1.txt;
   Release Notes/a document the new features and bug fixes that have been
   included in this release./p
   
  @@ -52,6 +52,7 @@
   section name=Releases
   
   ul
  +lia href=http://www.apache.org/dist/jakarta/commons/modeler;Version 
1.1/a/li
   lia 
href=http://jakarta.apache.org/builds/jakarta-commons/release/commons-modeler/v1.0/;Version
 1.0/a/li
   /ul
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/docs modeler.html

2003-08-14 Thread yoavs
yoavs   2003/08/13 07:35:10

  Modified:docs modeler.html
  Log:
  Updated modeler.html for release 1.1
  
  Revision  ChangesPath
  1.48  +1 -0  jakarta-commons/docs/modeler.html
  
  Index: modeler.html
  ===
  RCS file: /home/cvs/jakarta-commons/docs/modeler.html,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -r1.47 -r1.48
  --- modeler.html  13 Jul 2003 21:58:13 -  1.47
  +++ modeler.html  13 Aug 2003 14:35:10 -  1.48
  @@ -257,6 +257,7 @@
 trtd
   blockquote
   ul
  +lia 
href=http://jakarta.apache.org/builds/jakarta-commons/release/commons-modeler/v1.1/;Version
 1.1/a/li
   lia 
href=http://jakarta.apache.org/builds/jakarta-commons/release/commons-modeler/v1.0/;Version
 1.0/a/li
   /ul
   /blockquote
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/modeler/src/conf MANIFEST.MF

2003-08-04 Thread yoavs
yoavs   2003/08/04 16:55:03

  Modified:modeler/src/conf MANIFEST.MF
  Log:
  Updated manifest for release 1.1
  
  Revision  ChangesPath
  1.4   +1 -1  jakarta-commons/modeler/src/conf/MANIFEST.MF
  
  Index: MANIFEST.MF
  ===
  RCS file: /home/cvs/jakarta-commons/modeler/src/conf/MANIFEST.MF,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- MANIFEST.MF   13 Mar 2003 18:11:21 -  1.3
  +++ MANIFEST.MF   4 Aug 2003 23:55:03 -   1.4
  @@ -1,4 +1,4 @@
  -Manifest-version: 1.0
  +Manifest-version: 1.1
   Extension-Name: org.apache.commons.modeler
   Specification-Vendor: Apache Software Foundation
   Specification-Version: 1.1
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/modeler RELEASE-NOTES-1.1.txt

2003-07-28 Thread yoavs
yoavs   2003/07/28 17:21:27

  Modified:modeler  RELEASE-NOTES-1.1.txt
  Log:
  - First version of 1.1 release notes
  
  Revision  ChangesPath
  1.6   +18 -21jakarta-commons/modeler/RELEASE-NOTES-1.1.txt
  
  Index: RELEASE-NOTES-1.1.txt
  ===
  RCS file: /home/cvs/jakarta-commons/modeler/RELEASE-NOTES-1.1.txt,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- RELEASE-NOTES-1.1.txt 20 Apr 2003 18:20:34 -  1.5
  +++ RELEASE-NOTES-1.1.txt 29 Jul 2003 00:21:27 -  1.6
  @@ -15,38 +15,37 @@
   NEW FEATURES:
   
   
  -* support for components that are not explicitely declared. Introspection and common
  +* Support for components that are not explicitely declared. Introspection and common
   patterns are used to expose all attributes and simple methods with known type.
   
  -* new parser using DOM. That reduces the dependencies, is a bit faster and allows 
more
  -flexibility in processing the input
  +* New parser using DOM. That reduces the dependencies, is a bit faster and allows 
more
  +flexibility in processing the input,

  -* support serialization of the model, and loading the .ser format. Serialization is 
  +* Support serialization of the model, and loading the .ser format. Serialization is 
   implemented using an ant task, and all objects in the model are serializable. 
Reading the
  -.ser form is much faster than processing the XML
  +.ser form is much faster than processing the XML.
   
  -* a set of ant tasks that use modeler to load metadata and operate on mbeans. The 
tasks
  +* A set of ant tasks that use modeler to load metadata and operate on mbeans. The 
tasks
   can be used with any JMX component, not only with modeler. An example use is 
tomcat5.
   
  -* support for loading extended mlet files, with a syntax consistent with the ant 
tasks
  -and jboss ( and other ). 
  +* Support for loading extended mlet files, with a syntax consistent with the ant 
tasks
  +and JBoss ( and other ). 
   
  -* helper to perform lifecycle operations on sets of mbeans
  +* Helper to perform lifecycle operations on sets of mbeans.
   
  -* a small startup program ( org.apache.commons.modeler.Main ) capable of loading an 
mlet
  +* A small startup program ( org.apache.commons.modeler.Main ) capable of loading an 
mlet
   file and performing init/start on all components. This can help in testing and 
jumpstarting
   small applications.
   
  -* cleaner APIs, with deprecation of static methods.
  +* Cleaner APIs, with deprecation of static methods.
   
  -* new methods to access the Registry, with support for container application 
separation
  +* New methods to access the Registry, with support for container application 
separation.
   
  -* (experimental) support for remote mbeans, allowing management of non-local 
mbeans. 
  +* (Experimental) support for remote mbeans, allowing management of non-local 
mbeans. 
   
  -* (experimental) support for persistence for mbeans loaded from the mbeans file. 
Modification
  -of attributes will be saved, however adding new mbeans is not yet implemented
  +* (Experimental) support for persistence for mbeans loaded from the mbeans file. 
Modification of attributes will be saved, however adding new mbeans is not yet 
implemented.
   
  -* the distribution package includes commons-modeler-src.jar which can be used in 
IDEs to 
  +* The distribution package includes commons-modeler-src.jar which can be used in 
IDEs to 
   quickly see the sources when debugging and to do small builds.
   
   BUG REPORTS ADDRESSED:
  @@ -65,7 +64,5 @@
   NOTES:
   ==
   
  -* the unit tests will fail with MX4J-1.1.1+ - there are 2 oposite tests for
  -severity, it can never work. A patch was submited to mx4j.
  - 
  -
  +* The unit tests will fail with MX4J-1.1.1+ - there are 2 oposite tests for
  +severity, it can never work. A patch was submited to mx4j.
  \ No newline at end of file
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/modeler STATUS.html

2003-07-28 Thread yoavs
yoavs   2003/07/28 17:22:29

  Modified:modeler  STATUS.html
  Log:
  - Added myself as a committer
  
  Revision  ChangesPath
  1.5   +2 -1  jakarta-commons/modeler/STATUS.html
  
  Index: STATUS.html
  ===
  RCS file: /home/cvs/jakarta-commons/modeler/STATUS.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- STATUS.html   23 Jul 2003 20:41:02 -  1.4
  +++ STATUS.html   29 Jul 2003 00:22:29 -  1.5
  @@ -58,6 +58,7 @@
   lia href=mailto:remm at apache.orgRemy Maucherat/a/li
   lia href=mailto:amyroh at apache.orgAmy Roh/a/li
   lia href=mailto:costin at apache.orgCostin Manolache/a/li
  +lia href=mailto:yoavs at apache.orgYoav Shapira/a/li
   /ul
   
   pThe following individuals have submitted patches for this component./p
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/modeler STATUS.html

2003-07-28 Thread yoavs
yoavs   2003/07/28 17:31:02

  Modified:modeler  STATUS.html
  Log:
  - Added myself as a committer
  
  Revision  ChangesPath
  1.6   +3 -3  jakarta-commons/modeler/STATUS.html
  
  Index: STATUS.html
  ===
  RCS file: /home/cvs/jakarta-commons/modeler/STATUS.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- STATUS.html   29 Jul 2003 00:22:29 -  1.5
  +++ STATUS.html   29 Jul 2003 00:31:01 -  1.6
  @@ -42,8 +42,8 @@
   a name=Release Info/a
   h33.  RELEASE INFO/h3
   
  -pCurrent Release:  strongUnreleased, CVS Repository Only/strong/p
  -pPlanned Next Release: N/A/p
  +pCurrent Release:  strong1.0/strong/p
  +pPlanned Next Release: 1.1/p
   
   
   a name=Committers/a
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/modeler RELEASE-PLAN-1.1.txt

2003-07-28 Thread yoavs
yoavs   2003/07/28 17:31:33

  Added:   modeler  RELEASE-PLAN-1.1.txt
  Log:
  - First draft of modeler 1.1 release plan
  
  Revision  ChangesPath
  1.1  jakarta-commons/modeler/RELEASE-PLAN-1.1.txt
  
  Index: RELEASE-PLAN-1.1.txt
  ===
Release Plan for Jakarta Commons Modeler 1.1   
 
  
  
  Introduction:
  
  
  This document is a release plan for the final release of Jakarta
  Commons Modeler 1.1.  The 1.1-M1 release has been available for
  several weeks now, with no bugs reported against it.  A final
  stable release is desired for Tomcat 5.
  
  The release notes are in this directory's RELEASE-NOTES-1.1.txt
  file.
  
  This Release Plan the following prospective target dates:
  
2003-07-29: commons-dev vote on this Release Plan
  
  Assuming this plan is approved by committer majority:
2003-08-03: Code freeze for modeler 1.1
2003-08-04: Modeler 1.1 final build built and tagged in CVS
  
  This release plan is subject should change should bugs be
  reported against the 1.1-M1 release of Modeler.
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/modeler build.xml

2003-07-28 Thread yoavs
yoavs   2003/07/28 17:50:44

  Modified:modeler  build.xml
  Log:
  - Added descriptions where missing
  - Modified version number to 1.1 (from 1.1-M1)
  - Modified CVS tag in release target to 1.1
  - Misc spelling fixes
  
  Revision  ChangesPath
  1.20  +25 -18jakarta-commons/modeler/build.xml
  
  Index: build.xml
  ===
  RCS file: /home/cvs/jakarta-commons/modeler/build.xml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- build.xml 23 Jul 2003 20:41:02 -  1.19
  +++ build.xml 29 Jul 2003 00:50:44 -  1.20
  @@ -53,7 +53,7 @@
 property name=component.title value=Model MBeans Support Package/
   
 !-- The current version number of this component --
  -  property name=component.version   value=1.1-M1/
  +  property name=component.version   value=1.1/
   
 !-- The base directory for compilation targets --
 property name=build.home  value=target/
  @@ -123,7 +123,6 @@
   
   !-- == Executable Targets  --
   
  -
 target name=init
  description=Initialize and evaluate conditionals
   echo message= ${component.name} ${component.version} /
  @@ -178,7 +177,8 @@
   deletedir=${dist.home}/
 /target
   
  -  target name=init-dist 
  +  target name=init-dist
  +description=Create distribution directory
   mkdir  dir=${dist.home}/
 /target
   
  @@ -188,7 +188,6 @@
 target name=all depends=clean,compile
  description=Clean and compile all components/
   
  -
 target name=javadoc depends=compile unless=docs-uptodate
  description=Create component Javadoc documentation
   mkdir  dir=${dist.home}/
  @@ -202,7 +201,7 @@
   version=true
  doctitle=lt;h1gt;${component.title} (Version 
${component.version})lt;/h1gt;
   windowtitle=${component.title} (Version ${component.version})
  - bottom=Copyright (c) 2001-2002 - Apache Software Foundation
  + bottom=Copyright (c) 2001-2003 - Apache Software Foundation
  classpathref=compile.classpath /
 /target
   
  @@ -238,7 +237,7 @@
  /fileset
   /copy
   
  -!-- the src is similar with the JDK sources - and very usefull for users of
  +!-- the src is similar with the JDK sources - and very useful for users of
IDEs, where the jar can be mounted and used when debugging --
   jar file=${dist.home}/commons-modeler-src.jar
fileset dir=src/java includes=** /
  @@ -258,11 +257,13 @@
copy file=src/java/MANIFEST.MF todir=src/conf /
 /target
 
  +  !-- Why is this target here? --
 target name=check-deps 
  -
 /target
   
  -  target name=dist-build description=Buid target for the dist  
depends=dist-build-prepare,check-deps,compile
  +  target name=dist-build
  +description=Buid target for the dist
  +depends=dist-build-prepare,check-deps,compile
antcall target=jar 
   param name=commons-modeler.jar location=commons-modeler.jar /
   param name=build.home location=target /
  @@ -312,11 +313,11 @@
   /java
 /target
   
  -  target name=release 
  -property name=ver value=1.1M1 /
  -property name=tag value=MODELER_1_1_M1 /
  - !--
  ---
  +!-- == Release Targets = --
  +
  +  target name=release description=Create the release
  +property name=ver value=1.1 /
  +property name=tag value=MODELER_1_1 /
   delete dir=release /
   mkdir dir=release /
   cvs command=checkout 
  @@ -357,26 +358,32 @@
   
 /target
   
  -  target name=proxyflags
  +!-- == Network/Utility Targets = --
  +
  +  target name=proxyflags description=Checks whether to use proxy
   !-- check proxy parameters. --
   condition property=useproxy
 equals arg1=${proxy.use} arg2=on /
   /condition
 /target
   
  -  target name=setproxy  if=useproxy
  +  target name=setproxy if=useproxy
  +description=Sets the prixy host, port for downloading
   taskdef name=setproxy
 classname=org.apache.tools.ant.taskdefs.optional.net.SetProxy /
   setproxy proxyhost=${proxy.host} proxyport=${proxy.port}/ 
   echo message=Using ${proxy.host}:${proxy.port} to download ${sourcefile}/
 /target
   
  -  target name=testexist
  +  target name=testexist description=Tests if a file exists
   echo message=Testing  for ${destfile}/
   available file=${destfile} property=exist/
 /target
   
  -  target name=downloadzip unless=exist depends=setproxy,testexist
  +  target name=downloadzip
  +unless=exist
  +depends=setproxy,testexist
  +description=Downloads and extracts a package
   !-- Download and extract the package --
   get src

cvs commit: jakarta-commons/modeler/src/java/org/apache/commons/modeler/modules MbeansDescriptorsIntrospectionSource.java

2003-07-28 Thread yoavs
yoavs   2003/07/28 17:59:39

  Modified:modeler/src/java/org/apache/commons/modeler/modules
MbeansDescriptorsIntrospectionSource.java
  Log:
  - Added Apache license
  - Added and fixed JavaDoc
  
  Revision  ChangesPath
  1.12  +92 -9 
jakarta-commons/modeler/src/java/org/apache/commons/modeler/modules/MbeansDescriptorsIntrospectionSource.java
  
  Index: MbeansDescriptorsIntrospectionSource.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/modeler/src/java/org/apache/commons/modeler/modules/MbeansDescriptorsIntrospectionSource.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- MbeansDescriptorsIntrospectionSource.java 22 Jul 2003 18:11:19 -  1.11
  +++ MbeansDescriptorsIntrospectionSource.java 29 Jul 2003 00:59:39 -  1.12
  @@ -1,3 +1,62 @@
  +/*
  + * 
  + *
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
  + * reserved.
  + *
  + * Redistribution and use in source and binary forms, with or without
  + * modification, are permitted provided that the following conditions
  + * are met:
  + *
  + * 1. Redistributions of source code must retain the above copyright
  + *notice, this list of conditions and the following disclaimer.
  + *
  + * 2. Redistributions in binary form must reproduce the above copyright
  + *notice, this list of conditions and the following disclaimer in
  + *the documentation and/or other materials provided with the
  + *distribution.
  + *
  + * 3. The end-user documentation included with the redistribution, if
  + *any, must include the following acknowlegement:
  + *   This product includes software developed by the
  + *Apache Software Foundation (http://www.apache.org/).
  + *Alternately, this acknowlegement may appear in the software itself,
  + *if and wherever such third-party acknowlegements normally appear.
  + *
  + * 4. The names The Jakarta Project, Commons, and Apache Software
  + *Foundation must not be used to endorse or promote products derived
  + *from this software without prior written permission. For written
  + *permission, please contact [EMAIL PROTECTED]
  + *
  + * 5. Products derived from this software may not be called Apache
  + *nor may Apache appear in their names without prior written
  + *permission of the Apache Group.
  + *
  + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  + * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  + * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  + * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  + * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  + * SUCH DAMAGE.
  + * 
  + *
  + * This software consists of voluntary contributions made by many
  + * individuals on behalf of the Apache Software Foundation.  For more
  + * information on the Apache Software Foundation, please see
  + * http://www.apache.org/.
  + *
  + * [Additional notices, if required by prior licensing conditions]
  + *
  + */
  +
   package org.apache.commons.modeler.modules;
   
   import org.apache.commons.logging.Log;
  @@ -10,6 +69,7 @@
   import org.apache.commons.modeler.ConstructorInfo;
   
   import javax.management.ObjectName;
  +
   import java.lang.reflect.Method;
   import java.lang.reflect.Modifier;
   import java.lang.reflect.Constructor;
  @@ -20,7 +80,6 @@
   import java.util.Hashtable;
   import java.util.List;
   
  -
   public class MbeansDescriptorsIntrospectionSource extends ModelerSource
   {
   private static Log log = 
LogFactory.getLog(MbeansDescriptorsIntrospectionSource.class);
  @@ -119,8 +178,10 @@
   
   /**
* Check if this class is one of the supported types.
  - * @param ret
  - * @return true if the class is a supported type.
  + * If the class is supported, returns true.  Otherwise,
  + * returns false.
  + * @param ret The class to check
  + * @return boolean True if class is supported
*/ 
   private boolean supportedType(Class ret) {
   for (int i = 0; i  supportedTypes.length; i++) {
  @@ -136,8 +197,10 @@
   
   /**
* Check if this class conforms to JavaBeans specifications