[Jakarta Commons Wiki] Updated: Logging/1.0.4ReleasePlan

2004-05-30 Thread commons-dev
   Date: 2004-05-30T03:22:57
   Editor: RobertBurrellDonkin [EMAIL PROTECTED]
   Wiki: Jakarta Commons Wiki
   Page: Logging/1.0.4ReleasePlan
   URL: http://wiki.apache.org/jakarta-commons/Logging/1.0.4ReleasePlan

   no comment

Change Log:

--
@@ -59,7 +59,9 @@
 
 == Release Candidate ==
 
-A release candidate will be prepared for final sanity checking but expect the final 
vote to procede once it has been posted.
+A release candidate will be prepared. Since backwards and future compatibility with 
Log4J are of crucial importance, users and developers will be asked to test their 
current installations with the new version. 
+
+Therefore a suitable gap (to allow this testing) will be left between the 
announcement of the release and the release vote.
 
 
 

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



[Jakarta Commons Wiki] Updated: Logging/1.0.4ReleasePlan

2004-05-30 Thread commons-dev
   Date: 2004-05-30T03:23:34
   Editor: RobertBurrellDonkin [EMAIL PROTECTED]
   Wiki: Jakarta Commons Wiki
   Page: Logging/1.0.4ReleasePlan
   URL: http://wiki.apache.org/jakarta-commons/Logging/1.0.4ReleasePlan

   no comment

Change Log:

--
@@ -59,7 +59,7 @@
 
 == Release Candidate ==
 
-A release candidate will be prepared. Since backwards and future compatibility with 
Log4J are of crucial importance, users and developers will be asked to test their 
current installations with the new version. 
+A release candidate will be prepared. Since backwards and future compatibility with 
Log4J is of crucial importance, users and developers will be asked to test their 
current installations with the release candidate. 
 
 Therefore a suitable gap (to allow this testing) will be left between the 
announcement of the release and the release vote.
 

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



Re: [VOTE] [logging] release plan for 1.0.4 release

2004-05-30 Thread robert burrell donkin
On 29 May 2004, at 20:11, Noel J. Bergman wrote:
Robert,
For clarity, Commons Logging 1.0.4 will support both new and prior 
Log4J
versions?  If so, my +1.
yes.
i committed a patch (provided by ceki) that (when compiled against the 
new 1.3 version) is also runtime compatible with the 1.2.x series of 
log4j releases. it has been unit tested (against log4j 1.2.7) and no 
users have (as yet) reported problems.

this is a good point, though. i think that it'd be best to alter the 
schedule to allow users to test the release candidate against their 
existing setups. that means that the release candidate will have to be 
properly announced and i'll make an effort to encourage as many people 
as possible to test the new jar in their existing setups. i've altered 
the plan to make this clear.

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


cvs commit: jakarta-commons/logging/src/test/org/apache/commons/logging/simple DateTimeCustomConfigTestCase.java

2004-05-30 Thread rdonkin
rdonkin 2004/05/30 03:31:11

  Added:   logging/src/test/org/apache/commons/logging/simple
DateTimeCustomConfigTestCase.java
  Log:
  New test case for simple log date time setting
  
  Revision  ChangesPath
  1.1  
jakarta-commons/logging/src/test/org/apache/commons/logging/simple/DateTimeCustomConfigTestCase.java
  
  Index: DateTimeCustomConfigTestCase.java
  ===
  /*
   * Copyright 2001-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.
   */ 
  
  package org.apache.commons.logging.simple;
  
  import java.util.Date;
  import java.text.SimpleDateFormat;
  import java.text.DateFormat;
  
  import junit.framework.Test;
  import junit.framework.TestSuite;
  
  
  /**
   * Tests custom date time format configuration
   */
  public class DateTimeCustomConfigTestCase extends CustomConfigTestCase {
  
  // --- Constructors
  
  /**
   * Return the tests included in this test suite.
   */
  public static Test suite() {
  return (new TestSuite(DateTimeCustomConfigTestCase.class));
  }
  
  
  /**
   * pConstruct a new instance of this test case./p
   *
   * @param name Name of the test case
   */
  public DateTimeCustomConfigTestCase(String name) {
  super(name);
  }
  
  // --- Methods
  
  /** Checks that the date time format has been successfully set */
  protected void checkDecoratedDateTime() {
  assertEquals(Expected date format to be set, dd.mm.,
   ((DecoratedSimpleLog) log).getDateTimeFormat());
  
  // try the formatter
  Date now = new Date();
  DateFormat formatter = ((DecoratedSimpleLog) log).getDateTimeFormatter(); 
  SimpleDateFormat sampleFormatter = new SimpleDateFormat(dd.mm.);
  assertEquals(Date should be formatters to pattern dd.mm., 
sampleFormatter.format(now), formatter.format(now));
  }
  
  /** Hook for subclassses */
  protected void checkShowDateTime() {
  assertTrue(((DecoratedSimpleLog) log).getShowDateTime());
  }
  
  }
  
  

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



cvs commit: jakarta-commons/logging/src/java/org/apache/commons/logging/impl SimpleLog.java

2004-05-30 Thread rdonkin
rdonkin 2004/05/30 03:32:06

  Modified:logging/src/java/org/apache/commons/logging/impl
SimpleLog.java
  Log:
  Removed unneccessary check introduced by myself.
  
  Revision  ChangesPath
  1.20  +1 -5  
jakarta-commons/logging/src/java/org/apache/commons/logging/impl/SimpleLog.java
  
  Index: SimpleLog.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/logging/src/java/org/apache/commons/logging/impl/SimpleLog.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- SimpleLog.java29 May 2004 10:43:35 -  1.19
  +++ SimpleLog.java30 May 2004 10:32:06 -  1.20
  @@ -168,10 +168,6 @@
   if(showDateTime) {
   dateTimeFormat = getStringProperty(systemPrefix + dateTimeFormat,
  dateTimeFormat);
  -if (dateTimeFormat == null || .equals(dateTimeFormat)) {
  -// if this property has not been set then use the default
  -dateTimeFormat = DEFAULT_DATE_TIME_FORMAT;
  -}
   try {
   dateFormatter = new SimpleDateFormat(dateTimeFormat);
   } catch(IllegalArgumentException e) {
  
  
  

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



cvs commit: jakarta-commons/logging/src/test/org/apache/commons/logging/simple CustomConfigTestCase.java DecoratedSimpleLog.java

2004-05-30 Thread rdonkin
rdonkin 2004/05/30 03:32:25

  Modified:logging  build.xml
   logging/src/test/org/apache/commons/logging/simple
CustomConfigTestCase.java DecoratedSimpleLog.java
  Log:
  New test case for simple log date time setting
  
  Revision  ChangesPath
  1.46  +15 -1 jakarta-commons/logging/build.xml
  
  Index: build.xml
  ===
  RCS file: /home/cvs/jakarta-commons/logging/build.xml,v
  retrieving revision 1.45
  retrieving revision 1.46
  diff -u -r1.45 -r1.46
  --- build.xml 19 May 2004 21:02:10 -  1.45
  +++ build.xml 30 May 2004 10:32:25 -  1.46
  @@ -739,6 +739,20 @@
 classpath refid=test.classpath/
   /java
   
  +echo message=Custom Configuration With DateTime (SimpleLog Selected)/
  +java classname=${test.runner} fork=yes failonerror=${test.failonerror}
  +  sysproperty key=org.apache.commons.logging.Log
  + value=org.apache.commons.logging.simple.DecoratedSimpleLog/
  +  sysproperty key=org.apache.commons.logging.simplelog.defaultlog
  + value=debug/
  +  sysproperty key=org.apache.commons.logging.simplelog.dateTimeFormat
  + value=dd.mm./
  +  sysproperty key=org.apache.commons.logging.simplelog.showdatetime
  + value=true/ 
  +  arg value=org.apache.commons.logging.simple.DateTimeCustomConfigTestCase/
  +  classpath refid=test.classpath/
  +/java
  +
   echo message=Basic Operations/
   java classname=${test.runner} fork=yes failonerror=${test.failonerror}
 sysproperty key=org.apache.commons.logging.Log
  
  
  
  1.6   +15 -5 
jakarta-commons/logging/src/test/org/apache/commons/logging/simple/CustomConfigTestCase.java
  
  Index: CustomConfigTestCase.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/logging/src/test/org/apache/commons/logging/simple/CustomConfigTestCase.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- CustomConfigTestCase.java 29 May 2004 10:43:35 -  1.5
  +++ CustomConfigTestCase.java 30 May 2004 10:32:25 -  1.6
  @@ -34,7 +34,6 @@
* @author Craig R. McClanahan
* @version $Revision$ $Date$
*/
  -
   public class CustomConfigTestCase extends DefaultConfigTestCase {
   
   
  @@ -163,14 +162,25 @@
   assertEquals(SimpleLog.LOG_LEVEL_DEBUG, ((SimpleLog) log).getLevel());
   
   // Can we validate the extra exposed properties?
  -assertEquals(/MM/dd HH:mm:ss:SSS zzz,
  - ((DecoratedSimpleLog) log).getDateTimeFormat());
  +checkDecoratedDateTime();
   assertEquals(DecoratedLogger,
((DecoratedSimpleLog) log).getLogName());
  -assertTrue(!((DecoratedSimpleLog) log).getShowDateTime());
  +checkShowDateTime();
   assertTrue(((DecoratedSimpleLog) log).getShowShortName());
   
   }
  +
  +/** Hook for subclassses */
  +protected void checkShowDateTime() {
  +assertTrue(!((DecoratedSimpleLog) log).getShowDateTime());
  +}
  +
  +/** Hook for subclasses */
  +protected void checkDecoratedDateTime() {
  +assertEquals(/MM/dd HH:mm:ss:SSS zzz,
  + ((DecoratedSimpleLog) log).getDateTimeFormat());
  +}
  +
   
   
   // Check the actual log records against the expected ones
  
  
  
  1.6   +5 -0  
jakarta-commons/logging/src/test/org/apache/commons/logging/simple/DecoratedSimpleLog.java
  
  Index: DecoratedSimpleLog.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/logging/src/test/org/apache/commons/logging/simple/DecoratedSimpleLog.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- DecoratedSimpleLog.java   29 May 2004 10:43:35 -  1.5
  +++ DecoratedSimpleLog.java   30 May 2004 10:32:25 -  1.6
  @@ -19,6 +19,7 @@
   
   import java.util.ArrayList;
   import java.util.List;
  +import java.text.DateFormat;
   import org.apache.commons.logging.impl.SimpleLog;
   
   
  @@ -39,6 +40,10 @@
   
   
   // - Properties
  +
  +public DateFormat getDateTimeFormatter() {
  +return (dateFormatter);
  +}
   
   
   public String getDateTimeFormat() {
  
  
  

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



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

2004-05-30 Thread rdonkin
rdonkin 2004/05/30 03:41:27

  Modified:logging/xdocs navigation.xml
  Log:
  Added navigation to logging wiki page
  
  Revision  ChangesPath
  1.5   +2 -0  jakarta-commons/logging/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons/logging/xdocs/navigation.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- navigation.xml2 Mar 2004 03:27:47 -   1.4
  +++ navigation.xml30 May 2004 10:41:27 -  1.5
  @@ -36,6 +36,8 @@
   href=/index.html/
 item name=User Guide
   href=/guide.html/
  +  item name=Wiki
  +href=http://wiki.apache.org/jakarta-commons/Logging/
   /menu
   
   common-menus;
  
  
  

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



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

2004-05-30 Thread rdonkin
rdonkin 2004/05/30 03:41:51

  Modified:logging/xdocs index.xml
  Log:
  Added notes about upcoming release.
  
  Revision  ChangesPath
  1.4   +9 -0  jakarta-commons/logging/xdocs/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-commons/logging/xdocs/index.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- index.xml 28 Feb 2004 22:10:53 -  1.3
  +++ index.xml 30 May 2004 10:41:51 -  1.4
  @@ -58,6 +58,15 @@
   
   
   section name=Releases
  +subsection name='1.0.4 Release'
  +p
  +The 1.0.4 release of commons-logging is currently under preparation. This is a 
service
  +release containing support for both the 1.2.x and 1.3.x series of Log4J releases. 
For
  +more details, see the 
  +a 
href='http://wiki.apache.org/jakarta-commons/Logging/1_2e0_2e4ReleasePlan'release 
plan/a
  +for more details.
  +/p
  +/subsection
   subsection name='Mirrored Releases'
   p
   Releases after 1.0.2 should be downloaded from a mirror. Please remember to verify 
the
  
  
  

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



[Jakarta Commons Wiki] Updated: Logging/1.0.4ReleasePlan

2004-05-30 Thread commons-dev
   Date: 2004-05-30T03:51:21
   Editor: RobertBurrellDonkin [EMAIL PROTECTED]
   Wiki: Jakarta Commons Wiki
   Page: Logging/1.0.4ReleasePlan
   URL: http://wiki.apache.org/jakarta-commons/Logging/1.0.4ReleasePlan

   no comment

Change Log:

--
@@ -38,7 +38,7 @@
 
 == Bug Fix ==
 
-Work required on issues 2 and 3 in this list
+Work required on issues 2 and 3 in this list. Applied patch 3 (with additional unit 
tests). 
 
 == Test Compatibility ==
 

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



Re: [betwixt] Inheritance version 2

2004-05-30 Thread robert burrell donkin
On 30 May 2004, at 06:14, Inger, Matthew wrote:
The other question is, is this the right approach?
betwixt is the sort of component where users appreciate different ways 
to achieve the same goals. i've been often surprised by innovative uses 
such features have been put to.

so, the question i usually ask myself is: is this a reasonable 
approach? if so, then that's usually good enough for me.

It is an XML only solution, and would require the
user to do this manually if building their mapping
in code (does anyone ever do this?),
yes. there are some very powerful tricks you can do by rolling your own 
descriptors.

or when just
introspecting without a mapping of any sort.
Perhaps a utility class to do the inheritance,
along with another method on the introspector
to allow them to introspect and include inheritance
might be in order.  I will explore this.
it usually works out that you want this as well. in the end, though, it 
usually ends up that you want a pluggable strategy on introspector so 
that users can programmatically choose which classes should inherit. so 
it's probably best going straight for that. it's best to implementation 
the logical strategy interface as an abstract class (since methods can 
then be added without breaking backwards compatibility.

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


Re: [betwixt] Inheritance version 2

2004-05-30 Thread robert burrell donkin
On 30 May 2004, at 05:48, Inger, Matthew wrote:
I will try to come up with some unit tests following whatever
examples are in the betwixt package currently.
that's a good idea. betwixt uses it's own testing utilities and there 
are number of tricks. these probably need documenting one day soon.

I'm still waiting
on my committer access (CLA still hasn't been recorded), otherwise
I'd make the commit myself when i've got the unit tests ready.
the betwixt code on CVS HEAD is fragile, hard to understand and poorly 
tested. historically, it's been easy for developers to create patches 
which work for them but break other important features. that's one 
reason why i've been reluctant to actively recruit new betwixt 
developers.

(the code on the REFACTORING branch is more robust and easier to safely 
work with. note that until the new digester release, the unit tests on 
REFACTORING are broken when run from maven).

there are also a few ways in which the betwixt practices are a little 
different from some other components. all extra features need unit 
testing, documenting and adding to the task list. betwixt really needs 
a developer guide.

the new roadmap (on the wiki) is for the CVS HEAD material to be 
released sooner rather than later as 0.5 as a baseline, bug fix release 
for those using the alpha. therefore, i'd prefer it if you don't just 
dive in right now. if you're keen to help with betwixt (and your 
efforts would certainly be appreciated :) then probably the best thing 
to do would be to take a release candidate branch for 0.5 sometime this 
week.

As far as the documentation, i'm assuming it's bundled with the
source code, correct?  If not, please let me know where i can
get it, and how to get the changes back to you.
the javadocs are mainly aimed at developers (or advanced users who 
write their own strategies and so on).

the user documentation is contained in the xdocs/guide directory. it's 
in the usual xml format used by maven. please make sure that 
documentation is added at the same time as the code. (i know that this 
is a slow way of working but it's easier having this stuff on the 
website than answering questions on the user list.)

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


cvs commit: jakarta-commons/betwixt project.properties

2004-05-30 Thread rdonkin
rdonkin 2004/05/30 04:25:12

  Modified:betwixt  project.properties
  Log:
  Added a couple of properties that are useful when using JDiff to compare head with 
refactoring.
  
  Revision  ChangesPath
  1.13  +3 -0  jakarta-commons/betwixt/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons/betwixt/project.properties,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- project.properties29 Feb 2004 21:58:36 -  1.12
  +++ project.properties30 May 2004 11:25:12 -  1.13
  @@ -40,3 +40,6 @@
   
   
   betwixt.repository=scm:cvs:pserver:[EMAIL 
PROTECTED]:/home/cvspublic:jakarta-commons/betwixt/
  +
  +maven.jdiff.old.tag=REFACTORING-BRANCH_2004-01-13_PRE-BRANCH
  +maven.jdiff.new.tag=REFACTORING-BRANCH_2004-01-13
  
  
  

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



[sandbox] Killing JJar Was: [Jakarta Commons Wiki] Updated: TheSandbox

2004-05-30 Thread Henri Yandell

Currently my definition of DEAD has involved the code having been deleted
in the CVS, while something with code is merely INACTIVE.

Is anyone adverse to cvs removing JJar?

Plan would be to:

tag with JJAR_pre_delete
cvs remove it all
add a STATUS.html explaining state

Hen

On Sun, 30 May 2004 [EMAIL PROTECTED] wrote:

Date: 2004-05-30T01:05:00
Editor: 217.42.133.87 
Wiki: Jakarta Commons Wiki
Page: TheSandbox
URL: http://wiki.apache.org/jakarta-commons/TheSandbox

no comment

 Change Log:

 --
 @@ -35,19 +35,21 @@
   * Transaction - extracted from Slide, ready for promotion.
   * xo - XML to Bean mapper.

 -= Superseded =
 -
 - * JJar - superseded by [http://incubator.apache.org/depot/ Apache Depot] 
 (currently in the incubator)
 - * Apache cjan - superseded by [http://incubator.apache.org/depot/ Apache Depot] 
 (currently in the incubator)

  = Dead =
 +
 +(Components that do not show the characteristics of an active project, especially 
 with respect to its userbase and its capactiy to offer mature solution to a problem. 
  Typically the userbase was never particularly large or has moved over to an 
 alternative component; and the code has been superceded, forked or moved elsewhere).
 +
   * Altrmi - moved to the Incubator.
 + * Apache cjan - superseded by [http://incubator.apache.org/depot/ Apache Depot] 
 (currently in the incubator)
   * Armi - prior name of 'altrmi'.
   * Cadastre - JNDI implementation of some kind. Removed.
   * Graph - rewritten as graph2
 + * JJar - superseded by [http://incubator.apache.org/depot/ Apache Depot] 
 (currently in the incubator)
   * JRCS - no longer really hosted by Jakarta. It has moved to Codehaus 
 [http://cvs.codehaus.org/viewcvs.cgi/jrcs/?root=codehaus Codehaus CVS]
   * Util - this component split into many others and eventually the original 
 component was left with nothing.
   * Pattern - code moved to lang and id projects.
 +

  = Promoted =
   (but still having a directory in the sandbox)

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



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



Bug report for Commons [2004/05/30]

2004-05-30 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=CriticalMAJ=Major |
| |   |   MIN=Minor   NOR=Normal  ENH=Enhancement   |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
| 6508|Ass|Enh|2002-02-17|HttpClient now supports proxyHost and proxyPort - |
| 6826|Ass|Enh|2002-03-04|Need to have xml files validated against DTDs as p|
| 6829|Ass|Enh|2002-03-04|Allow easier way of user specified tests  |
| 7069|Ass|Enh|2002-03-13|DTD and DOM Validators|
| 7135|Opn|Enh|2002-03-14|[beanutils] Misleading error message when beaninfo|
| 7226|Opn|Enh|2002-03-19|Nested Bean Collection|
| 7367|New|Nor|2002-03-22|[unspecified] ServiceManager not actually serializ|
| 7465|New|Nor|2002-03-25|Need better 'dist' build  |
| 7981|Ver|Nor|2002-04-11|[codec][PATCH] add 2 new methods for encoding stri|
| 8140|Ver|Nor|2002-04-16|Incorrect credentials loop infinitely |
|10319|New|Enh|2002-06-28|Instantiate property if null in form bean |
|10543|Ass|Enh|2002-07-08|generate ant task automatically from CLI  |
|10793|New|Enh|2002-07-15|User definable default headers support|
|10810|New|Enh|2002-07-15|Response handlers |
|10813|New|Enh|2002-07-15|RFC 2965 Support (Port sensitive cookies) |
|10815|New|Enh|2002-07-15|Instrumentation for Timings   |
|10957|New|Nor|2002-07-18|Change Header/HeaderElement to handle a list as th|
|12807|New|Nor|2002-09-19|[PATCH] x 2 Update build.xml to use commons-loggin|
|13031|New|Enh|2002-09-26|Use regular expression (regex) pattern matching fo|
|13390|New|Nor|2002-10-07|ResponseHeaderHandler and ResponseHeaderValidator |
|13426|New|Enh|2002-10-08|[PATCH] xml-reference.xml responseHeader addition |
|13743|Opn|Enh|2002-10-17|Need getPropertyType(Class theClass, String propNa|
|14036|New|Enh|2002-10-29|MultipartPostMethod does not check for error messa|
|14262|Opn|Maj|2002-11-05|SAXBeanWriter produces invalid XML|
|14394|Ver|Nor|2002-11-08|Excessive exceptions log under security manager   |
|14471|Opn|Enh|2002-11-12|validator-rules.xml JavaScript fails when field no|
|14667|Ver|Maj|2002-11-19|PropertyUtils.copyProperties does not copy to Dyna|
|15082|Ass|Enh|2002-12-04|[lang] elapsed time formatting utility method |
|15451|Opn|Enh|2002-12-17|Multiple mapped properties not possible / Direct m|
|15519|Ver|Maj|2002-12-19|PropertyUtils.getPropertyType() for java.util.Coll|
|15534|New|Nor|2002-12-19|Inadequate HTTP proxy server support in HttpClient|
|15744|New|Nor|2002-12-31|[unspecified] Scaffold ResultSet used after statem|
|15895|Unc|Nor|2003-01-08|In BeanMap all properties are writable (some with |
|16038|Opn|Enh|2003-01-13|[beanutils] LocaleBeanUtils.copyProperties() does |
|16132|New|Maj|2003-01-15|[Jelly] core:file convert html to lt;htmlgt;  |
|16394|New|Enh|2003-01-24|Enhance the IndexedListProperty to handle nested l|
|16525|Opn|Enh|2003-01-29|BeanUtils.setProperty is over-zealous at convertin|
|16600|New|Nor|2003-01-30|JUnitTestAdapter throws SAXException because no DT|
|16859|New|Nor|2003-02-06|[unspecified] Can't supply a javax.mail.Session to|
|16873|New|Enh|2003-02-07|Specifying a different latka.properties file  |
|16907|New|Enh|2003-02-08|Introduce Aspect oriented programming |
|16920|Opn|Enh|2003-02-10|Declaration of Locale (language/country) in valida|
|17002|Opn|Enh|2003-02-12|Problem with index property   |
|17102|New|Enh|2003-02-15|Can't embed  characters in paramValue data.   |
|17306|Opn|Enh|2003-02-22|extend field tag with forward attribute for er|
|17416|New|Enh|2003-02-26|Send InputStreams instead of files in MultipartPos|
|17501|New|Enh|2003-02-27|Add dynamic discovery of mapped properties to Prop|
|17619|New|Nor|2003-03-03|[jelly] ClassLoader Problems with XMLParser and XM|
|17650|New|Nor|2003-03-04|[unspecified] Make Messages pay attention to retur|
|17662|New|Nor|2003-03-05|unknown options are ignored instead of throwing Un|
|17682|New|Nor|2003-03-05|HelpFormatter does not wrap lines correctly after |

Re: [DbUtils] Retrieving Auto Generated Keys

2004-05-30 Thread David Graham

--- Mikhail Krivoshein [EMAIL PROTECTED] wrote:
 Hello all,
 
 Looks like there is no way to retrieve auto generated keys when using 
 DbUtils QueryRunner.
 I guess it is good idea to extend QueryRunner in way that it will 
 support something like
 
 Object getGeneratedKeys(ResultSetHandler rsh)
 
 method to convet generated keys data into Object.
 
 Really I need this code for my project and ready to implement this by 
 myself.
 Looking forward to hear comments.
 
 Best regards,
 Mikhail Krivoshein
 
 P.s. I see one problem. getGeneratedKeys() method is part of JDBC 3.0. 
 Perhaps, it may be issue.

That's exactly why DbUtils doesn't support it yet.  I'd be interested in
any solutions you come up with.

David






__
Do you Yahoo!?
Friends.  Fun.  Try the all-new Yahoo! Messenger.
http://messenger.yahoo.com/ 

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



Re: [DbUtils] ListHandler

2004-05-30 Thread David Graham

--- Mikhail Krivoshein [EMAIL PROTECTED] wrote:
 Hello David,
 
 --- Mikhail Krivoshein [EMAIL PROTECTED] wrote:
   I'm wondering why DbUtils has no simple way to combine
   ResultSetHandlers.
   In my code it is very common when I need to provide two methods: one
   retrieves List of items and another retrieve only one item.
  
   Currently I use three methods in such case:
   1) public Object get(int id) { ... } - retrieves one row and convert
 it
   into JavaBean with read method.
   2) public List list() { ... } - retrieves many rows and convert them
   into List of JavaBeans with read method also.
   3) private Object read(ResultSet rs) { ... } - converts current
   ResultSet row data into JavaBean object.
  
   Now I'm moving to DbUtils library and want to use the same approach.
  
   I plan:
   1) implement custom ResultSetHandler to translate ResultSet row into
   JavaBean.
   2) use ListHandler (sources bolow) to convert ResultSet into List
 with
   help from ResultSetHandler from point 1.
 
 Doesn't BeanListHandler provide this exact behavior?
 
 David
 
 Not exactly. BeanListHandler generates List of JavaBeans.
 But I may want to generate List of Strings for example. 

The nightly builds include a ColumnListHandler that will generate a List
of Strings provided the column is a CHAR or VARCHAR.

 Or I may need to
 
 make some additional processing while
 filling JavaBean with data.

So you would implement a custom ResultSetHandler that loops over the
ResultSet and uses a BeanProcessor (in the nightlies) to generate the
bean, then customize the bean as needed.

 
 Just simple example of code that I need to have:
 
 /**
  * Method retrieves keywords as comma separated string.
  *
  * @param serviceId service id
  * @return keywords as comma separated string.
  * @throws SQLException error occurs
  */
 private static String getKeywords(int serviceId) throws SQLException
 {
 QueryRunner runner = new 
 QueryRunner(DbConnectionManager.getDataSource());
 List keywords =
 (List) runner.query(
 SELECT keyword FROM keyword WHERE service_id = ?,
 new Integer(serviceId),
 new ListHandler(new ScalarHandler()));
 return StringUtils.combineString(keywords);
 }
 
 With ScalarHandler applied to individual rows and ListHandler used to 
 combine them into List code became
 very straighforward.

The implementation of ScalarHandler.handle() is trivial.  It would be
easier to just call ResultSet.getObject() yourself from a custom
ResultSetHandler.

 
 And I see performance problem with BasicRowProcessor because it just 
 forwards calls to BeanProcessor that
 definetely has performance problems because of heavy reflection use and 
 absance of any metadata caching.
 Assume I need to generate 5 item list about 30 times per minute (caching
 
 can't be applied).
 With BeanProcessor I need to study metadata of the table 30 times!
 I prefer to avoid this cost and write JavaBean - DB table mapping code
 
 by hands.

The only place BeanProcessor uses ResultSetMetaData is in the
mapColumnsToProperties() method.  That method is protected so that you can
override it and provide caching.  

Also note that Java's Introspector caches all Class meta data so
introspection only occurs the first time you create an object of a
particular bean class.

  From my point of view clearest way is to implement one custom 
 ResultSetHandler for each JavaBean.
 And if I combine this custom ResultSetHandler with discussed ListHandler
 
 I will reuse List generation/result set iteration
 code for all my handlers.

I think what you're asking for is a ResultSetHandler you can subclass that
does this:

handle(ResultSet rs) {
while(rs.next()) {
handleRow(rs);
}
}

where you would override handleRow() to do your processing.  This was
considered for inclusion but it's so trivial that you could write this
base class in about 5 minutes.  Maybe we should include it though.

David

 
 I see another solution - implement one RowProcessor for each JavaBean. 
 But I dislike this solution and it looks less clear
 than one with custom ResultSetHandlers. Also I guess it is not way how 
 DbUtils is designed to be used.
 
 I appreciate your help with this topic.
 
 Best regards,
 Mikhail Krivoshein





__
Do you Yahoo!?
Friends.  Fun.  Try the all-new Yahoo! Messenger.
http://messenger.yahoo.com/ 

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



[GUMP@brutus]: jelly-tags/commons-jelly-tags-jsl failed

2004-05-30 Thread Morgan Delagrange
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact folk at [EMAIL PROTECTED]

Project commons-jelly-tags-jsl has an issue affecting its community integration, and 
has been outstanding for 19 runs.
Project State : 'Failed', Reason 'Build Failed'

Full details are available at:

http://brutus.apache.org:8080/gump/jelly-tags/commons-jelly-tags-jsl/index.html

That said, some snippets follow:


The following annotations were provided:
 -INFO- Sole jar [commons-jelly-tags-jsl-20040530.jar] identifier set to project name
 -INFO- Enable debug output, due to a sequence of 18 previous errors.
 -INFO- Failed with reason build failed


The following work was performed:
http://brutus.apache.org:8080/gump/jelly-tags/commons-jelly-tags-jsl/gump_work/build_jelly-tags_commons-jelly-tags-jsl.html
Work Name: build_jelly-tags_commons-jelly-tags-jsl (Type: Build)
State: Failed
Elapsed: 0 hours, 0 minutes, 6 seconds
Command Line: java -Djava.awt.headless=true -Dbuild.clonevm=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar:/usr/local/gump/public/workspace/xml-xerces2/java/build/xml-apis.jar
 org.apache.tools.ant.Main -debug 
-Dgump.merge=/usr/local/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only 
-Dfinal.name=commons-jelly-tags-jsl-20040530 jar 
[Working Directory: /usr/local/gump/public/workspace/jelly-tags/jsl]
CLASSPATH : 
/usr/local/j2sdk1.4.2_04/lib/tools.jar:/usr/local/gump/public/workspace/jelly-tags/jsl/target/classes:/usr/local/gump/public/workspace/jelly-tags/jsl/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons/jelly/target/commons-jelly-20040530.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-xalan2.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-20040530.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-20040530.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-20040530.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-servletapi-4/lib/servlet.jar:/usr/local/gump/packages/nekohtml-0.9.2/nekohtmlXni.jar:/usr/local/gump/packages/nekohtml-0.9.2/nekohtml.jar:/usr/local/gump/public/workspace/jelly-tags/xml/target/commons-jelly-tags-xml-20040530.jar:/usr/local/gump/public/workspace/jelly-tags/junit/target/commons-jelly-tags-junit-20040530.jar:/usr/local/gump/public/workspace/jelly-tags/ant/target/commons-jelly-tags-ant-20040530.jar:/usr/local/gump/public/workspace/commons-grant/target/commons-grant-20040530.jar:/usr/local/gump/public/workspace/jelly-tags/log/target/commons-jelly-tags-log-20040530.jar-
[junit] at 
org.apache.commons.jelly.tags.junit.AssertTagSupport.fail(AssertTagSupport.java:50)
[junit] at 
org.apache.commons.jelly.tags.junit.AssertTag.doTag(AssertTag.java:58)
[junit] at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:233)
[junit] at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:89)
[junit] at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:186)
[junit] at org.apache.commons.jelly.impl.StaticTag.doTag(StaticTag.java:65)
[junit] at 
org.apache.commons.jelly.impl.StaticTagScript.run(StaticTagScript.java:102)
[junit] at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:89)
[junit] at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:186)
[junit] at 
org.apache.commons.jelly.tags.jsl.TemplateTag$1.run(TemplateTag.java:160)
[junit] at org.dom4j.rule.Mode.fireRule(Mode.java:51)
[junit] at org.dom4j.rule.Mode.applyTemplates(Mode.java:71)
[junit] at org.dom4j.rule.RuleManager$1.run(RuleManager.java:148)
[junit] at org.dom4j.rule.Mode.fireRule(Mode.java:51)
[junit] at org.dom4j.rule.Stylesheet.run(Stylesheet.java:73)
[junit] at org.dom4j.rule.Stylesheet.run

[GUMP@brutus]: jelly-tags/commons-jelly-tags-define failed

2004-05-30 Thread Morgan Delagrange
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact folk at [EMAIL PROTECTED]

Project commons-jelly-tags-define has an issue affecting its community integration.
This issue affects 2 projects, and has been outstanding for 19 runs.
Project State : 'Failed', Reason 'Build Failed'
The following are affected:
- maven :  Project Management Tools
- maven-bootstrap :  Project Management Tools


Full details are available at:

http://brutus.apache.org:8080/gump/jelly-tags/commons-jelly-tags-define/index.html

That said, some snippets follow:


The following annotations were provided:
 -INFO- Sole jar [commons-jelly-tags-define-20040530.jar] identifier set to project 
name
 -INFO- Enable debug output, due to a sequence of 18 previous errors.
 -INFO- Failed with reason build failed


The following work was performed:
http://brutus.apache.org:8080/gump/jelly-tags/commons-jelly-tags-define/gump_work/build_jelly-tags_commons-jelly-tags-define.html
Work Name: build_jelly-tags_commons-jelly-tags-define (Type: Build)
State: Failed
Elapsed: 0 hours, 0 minutes, 5 seconds
Command Line: java -Djava.awt.headless=true -Dbuild.clonevm=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar:/usr/local/gump/public/workspace/xml-xerces2/java/build/xml-apis.jar:/usr/local/gump/public/workspace/xml-xalan/java/build/xalan-unbundled.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar
 org.apache.tools.ant.Main -debug 
-Dgump.merge=/usr/local/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only 
-Dfinal.name=commons-jelly-tags-define-20040530 jar 
[Working Directory: /usr/local/gump/public/workspace/jelly-tags/define]
CLASSPATH : 
/usr/local/j2sdk1.4.2_04/lib/tools.jar:/usr/local/gump/public/workspace/jelly-tags/define/target/classes:/usr/local/gump/public/workspace/jelly-tags/define/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons/jelly/target/commons-jelly-20040530.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-xalan2.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-20040530.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-20040530.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-20040530.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-servletapi-4/lib/servlet.jar:/usr/local/gump/packages/nekohtml-0.9.2/nekohtmlXni.jar:/usr/local/gump/packages/nekohtml-0.9.2/nekohtml.jar:/usr/local/gump/public/workspace/jelly-tags/dynabean/target/commons-jelly-tags-dynabean-20040530.jar:/usr/local/gump/public/workspace/jelly-tags/junit/target/commons-jelly-tags-junit-20040530.jar:/usr/local/gump/public/workspace/jelly-tags/log/target/commons-jelly-tags-log-20040530.jar:/usr/local/gump/public/workspace/jelly-tags/xml/target/commons-jelly-tags-xml-20040530.jar-
[junit] at 
org.apache.commons.jelly.impl.TagScript.handleException(TagScript.java:642)
[junit] at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:242)
[junit] at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:89)
[junit] at org.apache.commons.jelly.impl.DynamicTag.doTag(DynamicTag.java:79)
[junit] at 
org.apache.commons.jelly.impl.StaticTagScript.run(StaticTagScript.java:102)
[junit] at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:89)
[junit] at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:186)
[junit] at org.apache.commons.jelly.TagSupport.getBodyText(TagSupport.java:236)
[junit] at org.apache.commons.jelly.tags.core.SetTag.doTag(SetTag.java:90)
[junit] at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:233)
[junit] at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:89)
[junit] at 
org.apache.commons.jelly.tags.junit.CaseTag$1

[VOTE][Pool] Release Commons-Pool v1.2

2004-05-30 Thread Dirk Verbeeck
This is a call for a vote to release version 1.2 of Commons Pool.
After a 1.5 week review/test period, it's now time to make the final 
release. There are no unresolved issues, more info below.

your votes, please:
Release Commons-Pool 1.2
-
[ ] +1  I support this release and will help
[ ] +0  I support this release but am unable to help
[ ] -0  I do not support this release
[ ] -1  I do not support this release, and here are my reasons:
--
Official Site:
   http://jakarta.apache.org/commons/pool/
Release Canidate:
   http://jakarta.apache.org/commons/pool/downloads.html
Changes:
   http://jakarta.apache.org/commons/pool/release-notes-1.2.html
-- Dirk Verbeeck

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


[VOTE][Pool] Release Commons-DBCP v1.2

2004-05-30 Thread Dirk Verbeeck
This is a call for a vote to release version 1.2 of Commons DBCP.
After a 1.5 week review/test period, it's now time to make the final 
release. There are no unresolved issues, more info below.

your votes, please:
Release Commons-DBCP 1.2
-
[ ] +1  I support this release and will help
[ ] +0  I support this release but am unable to help
[ ] -0  I do not support this release
[ ] -1  I do not support this release, and here are my reasons:
--
Official Site:
   http://jakarta.apache.org/commons/dbcp/
Release Canidate:
   http://jakarta.apache.org/commons/dbcp/downloads.html
Changes:
   http://jakarta.apache.org/commons/dbcp/release-notes-1.2.html
-- Dirk Verbeeck

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


cvs commit: jakarta-commons-sandbox/workflow/xdocs navigation.xml

2004-05-30 Thread dirkv
dirkv   2004/05/30 13:51:55

  Modified:workflow project.properties
   workflow/xdocs navigation.xml
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.3   +1 -1  jakarta-commons-sandbox/workflow/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/workflow/project.properties,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- project.properties22 May 2004 12:45:28 -  1.2
  +++ project.properties30 May 2004 20:51:55 -  1.3
  @@ -6,7 +6,7 @@
   maven.javadoc.author=false
   maven.javadoc.links=http://java.sun.com/products/jdk/1.4/docs/api
   
  -maven.xdoc.jsl=../../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
   maven.xdoc.date=bottom
   maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
  
  
  
  1.4   +15 -0 jakarta-commons-sandbox/workflow/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/workflow/xdocs/navigation.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- navigation.xml22 May 2004 12:45:47 -  1.3
  +++ navigation.xml30 May 2004 20:51:55 -  1.4
  @@ -1,4 +1,19 @@
   ?xml version=1.0 encoding=ISO-8859-1?
  +!--
  +   Copyright 2003-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.
  +  --
   !DOCTYPE org.apache.commons.menus SYSTEM 
'../../../jakarta-commons/commons-build/menus/menus.dtd'
   project name=Commons#xA0;Workflow
   titleCommons#xA0;Workflow/title
  
  
  

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



cvs commit: jakarta-commons-sandbox/vfs/xdocs navigation.xml

2004-05-30 Thread dirkv
dirkv   2004/05/30 13:52:55

  Modified:vfs  project.properties project.xml
   vfs/xdocs navigation.xml
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.17  +1 -1  jakarta-commons-sandbox/vfs/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/vfs/project.properties,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- project.properties22 May 2004 12:46:21 -  1.16
  +++ project.properties30 May 2004 20:52:55 -  1.17
  @@ -8,7 +8,7 @@
   
   maven.javadoc.private = on
   
  -maven.xdoc.jsl=../../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
   maven.xdoc.date=bottom
   maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
  
  
  
  1.32  +1 -1  jakarta-commons-sandbox/vfs/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/vfs/project.xml,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- project.xml   22 May 2004 12:46:21 -  1.31
  +++ project.xml   30 May 2004 20:52:55 -  1.32
  @@ -2,7 +2,7 @@
   
   project
   extend../sandbox-build/project.xml/extend
  -namecommons-vfs/name
  +nameCommons VFS/name
   idcommons-vfs/id
   logo/images/vfs-logo-white.png/logo
   currentVersion1.0-dev/currentVersion
  
  
  
  1.9   +15 -0 jakarta-commons-sandbox/vfs/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/vfs/xdocs/navigation.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- navigation.xml22 May 2004 12:46:42 -  1.8
  +++ navigation.xml30 May 2004 20:52:55 -  1.9
  @@ -1,4 +1,19 @@
   ?xml version=1.0 encoding=ISO-8859-1?
  +!--
  +   Copyright 2003-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.
  +  --
   !DOCTYPE org.apache.commons.menus SYSTEM 
'../../../jakarta-commons/commons-build/menus/menus.dtd'
   project name=Commons#xA0;VFS
 titleCommons#xA0;VFS/title
  
  
  

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



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

2004-05-30 Thread dirkv
dirkv   2004/05/30 13:54:10

  Modified:threadpool project.properties
   threadpool/xdocs navigation.xml
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.4   +1 -1  jakarta-commons-sandbox/threadpool/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/threadpool/project.properties,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- project.properties22 May 2004 12:47:06 -  1.3
  +++ project.properties30 May 2004 20:54:10 -  1.4
  @@ -6,7 +6,7 @@
   maven.javadoc.author=false
   maven.javadoc.links=http://java.sun.com/products/jdk/1.4/docs/api
   
  -maven.xdoc.jsl=../../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
   maven.xdoc.date=bottom
   maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
  
  
  
  1.3   +3 -11 jakarta-commons-sandbox/threadpool/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/threadpool/xdocs/navigation.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- navigation.xml28 Feb 2004 15:23:56 -  1.2
  +++ navigation.xml30 May 2004 20:54:10 -  1.3
  @@ -1,21 +1,13 @@
   ?xml version=1.0 encoding=ISO-8859-1?
   !DOCTYPE org.apache.commons.menus SYSTEM 
'../../../jakarta-commons/commons-build/menus/menus.dtd'
  -project name=Commons Threadpool
  -titleCommons Threadpool/title
  +project name=Commons#xA0;Threadpool
  +titleCommons#xA0;Threadpool/title
   body
  -top-menus;
   menu name=Commons#xA0;Threadpool
   item name=Overview  href=/index.html /
  -!--item name=Configuration 
href=/configuration.html / --
   item name=API#xA0;Documentationhref=/apidocs/index.html/
  -!--
  -item name=Developers#xA0;Guide href=/guide/index.html 
collapse=true
  -item name=Class#xA0;Diagrams   
href=/guide/classdiagrams.html/
  -item name=Sequence#xA0;Diagrams
href=/guide/sequencediagrams.html/
  -/item
  ---
   item name=Downloads href=/downloads.html/
   /menu
  -bottom-menus;
  +common-menus;
   /body
   /project
  
  
  

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



cvs commit: jakarta-commons-sandbox/sql/xdocs navigation.xml

2004-05-30 Thread dirkv
dirkv   2004/05/30 13:54:38

  Modified:sql  project.properties project.xml
   sql/xdocs navigation.xml
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.7   +1 -1  jakarta-commons-sandbox/sql/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/sql/project.properties,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- project.properties22 May 2004 12:47:46 -  1.6
  +++ project.properties30 May 2004 20:54:38 -  1.7
  @@ -17,7 +17,7 @@
   maven.remote.group=apcvs
   
   # commons site LF
  -maven.xdoc.jsl=../../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
   maven.xdoc.date=bottom
   maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
  
  
  
  1.20  +1 -1  jakarta-commons-sandbox/sql/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/sql/project.xml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- project.xml   22 May 2004 12:47:46 -  1.19
  +++ project.xml   30 May 2004 20:54:38 -  1.20
  @@ -3,7 +3,7 @@
   
 extend../sandbox-build/project.xml/extend
 version3/version
  -  namecommons-sql/name
  +  nameCommons Sql/name
 idcommons-sql/id
 currentVersion1.0-dev/currentVersion
   
  
  
  
  1.3   +3 -4  jakarta-commons-sandbox/sql/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/sql/xdocs/navigation.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- navigation.xml22 May 2004 12:47:52 -  1.2
  +++ navigation.xml30 May 2004 20:54:38 -  1.3
  @@ -14,14 +14,13 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 --
  -
   !DOCTYPE org.apache.commons.menus SYSTEM 
'../../../jakarta-commons/commons-build/menus/menus.dtd'
  -project name=Sql
  +project name=Commons#xA0;Sql
 titleCommons#xA0;Sql/title
  - body
  +  body
   menu name=Commons#xA0;Sql
 item name=Overview href=/index.html/
  -  item name=Javadoc href=apidocs/index.html/
  +  item name=Javadoc href=/apidocs/index.html/
 item name=Mailing lists href=/mail-lists.html/
 item name=Team href=/team-list.html/
 item name=CVS 
href=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/sql/
  
  
  

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



cvs commit: jakarta-commons-sandbox/scaffold/xdocs navigation.xml

2004-05-30 Thread dirkv
dirkv   2004/05/30 13:55:27

  Modified:scaffold/xdocs navigation.xml
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.4   +3 -12 jakarta-commons-sandbox/scaffold/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/scaffold/xdocs/navigation.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- navigation.xml21 Mar 2004 21:11:50 -  1.3
  +++ navigation.xml30 May 2004 20:55:27 -  1.4
  @@ -15,23 +15,14 @@
  limitations under the License.
 --
   !DOCTYPE org.apache.commons.menus SYSTEM 
'../../../jakarta-commons/commons-build/menus/menus.dtd'
  -project name=Commons Scaffold
  -titleCommons Scaffold/title
  +project name=Commons#xA0;Scaffold
  +titleCommons#xA0;Scaffold/title
   body
  -top-menus;
   menu name=Commons#xA0;Scaffold
   item name=Overview  href=/index.html /
  -!--item name=Configuration 
href=/configuration.html / --
   item name=API#xA0;Documentationhref=/apidocs/index.html/
  -!--
  -item name=Developers#xA0;Guide href=/guide/index.html 
collapse=true
  -item name=Class#xA0;Diagrams   
href=/guide/classdiagrams.html/
  -item name=Sequence#xA0;Diagrams
href=/guide/sequencediagrams.html/
  -/item
  -item name=Examples  
href=http://cvs.apache.org/viewcvs/jakarta-commons/scaffold/doc//
  ---
   item name=Downloads href=/downloads.html/
   /menu
  -bottom-menus;
  +common-menus;
   /body
   /project
  
  
  

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



cvs commit: jakarta-commons-sandbox/resources project.properties project.xml

2004-05-30 Thread dirkv
dirkv   2004/05/30 13:55:57

  Modified:resources project.properties project.xml
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.5   +1 -1  jakarta-commons-sandbox/resources/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/resources/project.properties,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- project.properties24 May 2004 22:35:04 -  1.4
  +++ project.properties30 May 2004 20:55:57 -  1.5
  @@ -16,7 +16,7 @@
   ##
   # commons site LF
   ##
  -maven.xdoc.jsl=../../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
   maven.xdoc.date=bottom
   maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
  
  
  
  1.10  +2 -1  jakarta-commons-sandbox/resources/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/resources/project.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- project.xml   27 Mar 2004 22:18:41 -  1.9
  +++ project.xml   30 May 2004 20:55:57 -  1.10
  @@ -2,8 +2,9 @@
   
   project
 extend../sandbox-build/project.xml/extend
  -  namecommons-resources/name
  +  nameCommons Resources/name
 idcommons-resources/id
  +  logo/images/resources-logo-white.png/logo
 currentVersion1.0-dev/currentVersion
 inceptionYear2002/inceptionYear
 packageorg.apache.commons.resources/package
  
  
  

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



cvs commit: jakarta-commons-sandbox/messenger/xdocs navigation.xml

2004-05-30 Thread dirkv
dirkv   2004/05/30 13:56:56

  Modified:messenger project.properties project.xml
   messenger/xdocs navigation.xml
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.4   +1 -1  jakarta-commons-sandbox/messenger/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/messenger/project.properties,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- project.properties24 May 2004 22:47:31 -  1.3
  +++ project.properties30 May 2004 20:56:56 -  1.4
  @@ -13,7 +13,7 @@
   # General Maven stuff
   # ---
   
  -maven.xdoc.jsl=../../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
   maven.xdoc.date=bottom
   maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
  
  
  
  1.20  +1 -1  jakarta-commons-sandbox/messenger/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/messenger/project.xml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- project.xml   24 May 2004 22:47:31 -  1.19
  +++ project.xml   30 May 2004 20:56:56 -  1.20
  @@ -2,7 +2,7 @@
   
   project
 extend../sandbox-build/project.xml/extend
  -  namecommons-messenger/name
  +  nameCommons messenger/name
 idcommons-messenger/id
 logo/images/messenger-logo-white.png/logo
 currentVersion1.0-dev-14/currentVersion
  
  
  
  1.3   +15 -0 jakarta-commons-sandbox/messenger/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/messenger/xdocs/navigation.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- navigation.xml24 May 2004 22:47:31 -  1.2
  +++ navigation.xml30 May 2004 20:56:56 -  1.3
  @@ -1,4 +1,19 @@
   ?xml version=1.0 encoding=ISO-8859-1?
  +!--
  +   Copyright 2003-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.
  +  --
   !DOCTYPE org.apache.commons.menus SYSTEM 
'../../../jakarta-commons/commons-build/menus/menus.dtd'
   project name=Commons#xA0;Messenger
 titleCommons#xA0;Messenger/title
  
  
  

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



cvs commit: jakarta-commons-sandbox/mapper/xdocs navigation.xml

2004-05-30 Thread dirkv
dirkv   2004/05/30 13:57:13

  Modified:mapper   project.properties project.xml
   mapper/xdocs navigation.xml
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.3   +4 -4  jakarta-commons-sandbox/mapper/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/mapper/project.properties,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- project.properties27 Mar 2004 22:09:56 -  1.2
  +++ project.properties30 May 2004 20:57:13 -  1.3
  @@ -16,8 +16,8 @@
   ##
   # commons site LF
   ##
  -maven.xdoc.jsl=../sandbox-build/commons-site.jsl
  -maven.xdoc.date=left
  -maven.xdoc.poweredby.image=
  +maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.date=bottom
  +maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
  -maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html
  \ No newline at end of file
  +maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html
  
  
  
  1.5   +2 -0  jakarta-commons-sandbox/mapper/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/mapper/project.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- project.xml   29 Feb 2004 20:41:30 -  1.4
  +++ project.xml   30 May 2004 20:57:13 -  1.5
  @@ -4,6 +4,8 @@
 nameCommons Mapper/name
 idcommons-mapper/id
 currentVersion0.7-dev/currentVersion
  +
  +  logo/images/mapper-logo-white.png/logo
 
 inceptionYear2003/inceptionYear
 packageorg.apache.commons.mapper/package
  
  
  
  1.5   +5 -14 jakarta-commons-sandbox/mapper/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/mapper/xdocs/navigation.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- navigation.xml28 Mar 2004 01:06:30 -  1.4
  +++ navigation.xml30 May 2004 20:57:13 -  1.5
  @@ -14,24 +14,15 @@
  See the License for the specific language governing permissions and
  limitations under the License.
   --
  -
  -!DOCTYPE project [
  -!ENTITY commons-nav SYSTEM ../../sandbox-build/incl_nav.xml
  -]
  -
  -project name=Mapper
  -
  -  titleMapper/title
  -  organizationLogo href=/images/jakarta-logo-blue.gifJakarta/organizationLogo
  -
  +!DOCTYPE org.apache.commons.menus SYSTEM 
'../../../jakarta-commons/commons-build/menus/menus.dtd'
  +project name=Commons#xA0;Mapper
  +  titleCommons#xA0;Mapper/title
 body
  -menu name=Mapper
  +menu name=Commons#xA0;Mapper
 item name=Overview href=/index.html/
 item name=To Do List href=/todo.html/
 item name=Javadoc href=apidocs/index.html/
   /menu
  -
  -commons-nav;
  -
  +common-menus;
 /body
   /project
  
  
  

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



cvs commit: jakarta-commons-sandbox/jjar/xdocs downloads.xml navigation.xml jjar.xml project.xml site.xsl

2004-05-30 Thread dirkv
dirkv   2004/05/30 13:59:19

  Modified:jjar project.xml
  Added:   jjar/xdocs downloads.xml navigation.xml
  Removed: jjar/xdocs jjar.xml project.xml site.xsl
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.3   +1 -1  jakarta-commons-sandbox/jjar/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/jjar/project.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- project.xml   28 Feb 2004 04:40:33 -  1.2
  +++ project.xml   30 May 2004 20:59:19 -  1.3
  @@ -3,7 +3,7 @@
 extend../sandbox-build/project.xml/extend
 nameCommons JJar/name
 idcommons-jjar/id
  -  logo/images/jjar-logo-blue.jpg/logo
  +  logo/images/jjar-logo-white.png/logo
 urlhttp://jakarta.apache.org/commons/jjar//url
 inceptionYear2001/inceptionYear
 shortDescriptionCommons JJar/shortDescription
  
  
  
  1.1  jakarta-commons-sandbox/jjar/xdocs/downloads.xml
  
  Index: downloads.xml
  ===
  ?xml version=1.0?
  document
 properties
titleDownloads/title
author email=[EMAIL PROTECTED]Commons Documentation Team/author
revision$Id: downloads.xml,v 1.1 2004/05/30 20:59:19 dirkv Exp $/revision
 /properties
  
 body
section name=Releases
   pThere are no releases available./p
  
  !--
   pThe following releases are available:/p
   ul
 liVersion 1.1 - 20 October 2003/li
 liVersion 1.0 - 12 August 2002/li
   /ul
   br/
   p
  The latest binary release is always available on the 
  a href=http://jakarta.apache.org/site/binindex.cgi#commons-jjar;
  Jakarta Binary Downloads page/a,
  its source is available from 
  a href=http://jakarta.apache.org/site/sourceindex.cgi#commons-jjar;
  Jakarta Source Downloads page/a.
   /p
   p
  Older releases are retained by the Apache Software Foundation but are 
  moved into a
  a href=http://archive.apache.org/dist/jakarta/commons/jjar/;
  special archive area/a.
   /p
   p
 a 
href=http://cvs.apache.org/builds/jakarta-commons/nightly/commons-jjar/;
 Nightly source and binary drops/a are available.
   /p
  --
   p
  Access to the source tree to see the latest and greatest code is possible
  through a href=cvs-usage.htmlanonymous CVS access/a.
   /p
/section
  
  !--
section name=Release Candidate
   p
  Release candidates for the upcoming 1.1 release can be downloaded 
  a href=http://cvs.apache.org/~dirkv/builds/;here/a.
   /p
   p
  Please review and report any problem on the 
  a href=mail-lists.htmlmailing list/a.
   /p
   p
  Final release target is 20 October 2003. 
   /p
/section
  --
 /body
  /document
  
  
  
  1.1  jakarta-commons-sandbox/jjar/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  ?xml version=1.0 encoding=ISO-8859-1?
  !DOCTYPE org.apache.commons.menus SYSTEM 
'../../../jakarta-commons/commons-build/menus/menus.dtd'
  project name=Commons#xA0;JJar
  titleCommons#xA0;JJar/title
  body
  menu name=Commons#xA0;JJar
  item name=Overview  href=/index.html /
  item name=API#xA0;Documentationhref=/apidocs/index.html/
  item name=Downloads href=/downloads.html/
  /menu
  common-menus;
  /body
  /project
  
  
  

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



cvs commit: jakarta-commons-sandbox/id/xdocs navigation.xml

2004-05-30 Thread dirkv
dirkv   2004/05/30 13:59:56

  Modified:id   project.properties project.xml
   id/src/media logo.xcf
   id/xdocs navigation.xml
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.7   +2 -2  jakarta-commons-sandbox/id/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/id/project.properties,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- project.properties6 Mar 2004 17:58:59 -   1.6
  +++ project.properties30 May 2004 20:59:56 -  1.7
  @@ -33,8 +33,8 @@
   ##
   # commons site LF
   ##
  -maven.xdoc.jsl=../sandbox-build/commons-site.jsl
  -maven.xdoc.date=left
  +maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.date=bottom
   maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
   maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html
  
  
  
  1.8   +1 -1  jakarta-commons-sandbox/id/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/id/project.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- project.xml   4 Mar 2004 03:17:44 -   1.7
  +++ project.xml   30 May 2004 20:59:56 -  1.8
  @@ -21,7 +21,7 @@
   
 nameCommons Id/name
 idcommons-id/id
  -  logo/images/logo.png/logo
  +  logo/images/id-logo-white.png/logo
 urlhttp://jakarta.apache.org/commons/sandbox/id//url
 inceptionYear2003/inceptionYear
 shortDescriptionCommons Id/shortDescription
  
  
  
  1.2   +1 -225jakarta-commons-sandbox/id/src/media/logo.xcf
  
Binary file
  
  
  1.5   +4 -21 jakarta-commons-sandbox/id/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/id/xdocs/navigation.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- navigation.xml6 Mar 2004 18:01:14 -   1.4
  +++ navigation.xml30 May 2004 20:59:56 -  1.5
  @@ -14,32 +14,15 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 --
  -  
  -!DOCTYPE project [
  -!ENTITY commons-nav SYSTEM ../../sandbox-build/incl_nav.xml
  -]
  -
  -project name=Commons Id
  -titleCommons Id/title
  -organizationLogo href=/images/jakarta-logo-blue.gif
  -  Jakarta
  -/organizationLogo
  +!DOCTYPE org.apache.commons.menus SYSTEM 
'../../../jakarta-commons/commons-build/menus/menus.dtd'
  +project name=Commons#xA0;Id
  +titleCommons#xA0;Id/title
   body
  -links
  -  item name=Jakarta Commons href=http://jakarta.apache.org/commons//
  -/links
   menu name=Commons#xA0;Id
   item name=Overview  href=/index.html /
  -!--item name=Configuration 
href=/configuration.html / --
   item name=API#xA0;Documentationhref=/apidocs/index.html/
  -!--
  -item name=Developers#xA0;Guide href=/guide/index.html 
collapse=true
  -item name=Class#xA0;Diagrams   
href=/guide/classdiagrams.html/
  -item name=Sequence#xA0;Diagrams
href=/guide/sequencediagrams.html/
  -/item
  ---
   item name=Downloads href=/downloads.html/
   /menu
  -  commons-nav;
  +common-menus;
   /body
   /project
  
  
  

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



cvs commit: jakarta-commons-sandbox/functor/xdocs navigation.xml

2004-05-30 Thread dirkv
dirkv   2004/05/30 14:00:18

  Modified:functor  project.properties project.xml
   functor/xdocs navigation.xml
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.6   +2 -2  jakarta-commons-sandbox/functor/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/functor/project.properties,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- project.properties28 Feb 2004 17:12:35 -  1.5
  +++ project.properties30 May 2004 21:00:18 -  1.6
  @@ -12,8 +12,8 @@
   #   See the License for the specific language governing permissions and
   #   limitations under the License.
   
  -maven.xdoc.jsl=../sandbox-build/commons-site.jsl
  -maven.xdoc.date=left
  +maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.date=bottom
   maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
   maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html
  
  
  
  1.10  +2 -2  jakarta-commons-sandbox/functor/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/functor/project.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- project.xml   1 Mar 2004 07:28:28 -   1.9
  +++ project.xml   30 May 2004 21:00:18 -  1.10
  @@ -17,10 +17,10 @@
   
   project
 extend../sandbox-build/project.xml/extend
  -  nameFunctor/name
  +  nameCommons Functor/name
 idcommons-functor/id
 
  -  logo!--/images/logo.png--/logo
  +  logo/images/functor-logo-white.png/logo
 
 currentVersion1.0-dev/currentVersion
 inceptionYear2003/inceptionYear
  
  
  
  1.2   +5 -20 jakarta-commons-sandbox/functor/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/functor/xdocs/navigation.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- navigation.xml28 Feb 2004 17:12:34 -  1.1
  +++ navigation.xml30 May 2004 21:00:18 -  1.2
  @@ -14,24 +14,11 @@
  See the License for the specific language governing permissions and
  limitations under the License.
   --
  -
  -!DOCTYPE project [
  -!ENTITY commons-nav SYSTEM ../../sandbox-build/incl_nav.xml
  -]
  -
  -project name=Functor
  -
  -  titleFunctor/title
  -  organizationLogo href=/images/jakarta-logo-blue.gif
  -   Jakarta
  -  /organizationLogo
  -
  +!DOCTYPE org.apache.commons.menus SYSTEM 
'../../../jakarta-commons/commons-build/menus/menus.dtd'
  +project name=Commons#xA0;Functor
  +  titleCommons#xA0;Functor/title
 body
  -links
  -  item name=Jakarta Commons href=http://jakarta.apache.org/commons//
  -/links
  -
  -menu name=Commons Functor
  +menu name=Commons#xA0;Functor
 item name=Overview href=/index.html/
 item name=Examples href=/examples.html/
 item name=Javadoc href=apidocs/index.html/
  @@ -45,8 +32,6 @@
 item name=Status 
href=http://cvs.apache.org/viewcvs.cgi/*checkout*/jakarta-commons-sandbox/functor/STATUS.txt/
 item name=CVS 
href=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/functor//
   /menu
  -
  -commons-nav;
  -
  +common-menus;
 /body
   /project
  
  
  

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



cvs commit: jakarta-commons-sandbox/feedparser/xdocs navigation.xml

2004-05-30 Thread dirkv
dirkv   2004/05/30 14:00:44

  Modified:feedparser project.properties
   feedparser/src/java/org/apache/commons/feedparser
FOAFFeedParser.java
   feedparser/xdocs navigation.xml
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.2   +1 -1  jakarta-commons-sandbox/feedparser/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/feedparser/project.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.properties22 May 2004 12:37:37 -  1.1
  +++ project.properties30 May 2004 21:00:44 -  1.2
  @@ -6,7 +6,7 @@
   maven.javadoc.author=false
   maven.javadoc.links=http://java.sun.com/products/jdk/1.4/docs/api
   
  -maven.xdoc.jsl=../../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
   maven.xdoc.date=bottom
   maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
  
  
  
  1.3   +2 -2  
jakarta-commons-sandbox/feedparser/src/java/org/apache/commons/feedparser/FOAFFeedParser.java
  
  Index: FOAFFeedParser.java
  ===
  RCS file: 
/home/cvs/jakarta-commons-sandbox/feedparser/src/java/org/apache/commons/feedparser/FOAFFeedParser.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- FOAFFeedParser.java   28 Feb 2004 03:35:21 -  1.2
  +++ FOAFFeedParser.java   30 May 2004 21:00:44 -  1.3
  @@ -31,7 +31,7 @@
   import org.jaxen.jdom.*;
   
   /**
  - * Handles parsing OPML.
  + * Handles parsing FOAF.
*
* @author a href=mailto:[EMAIL PROTECTED]Kevin A. Burton (burtonator)/a
* @version $Id$
  
  
  
  1.2   +0 -8  jakarta-commons-sandbox/feedparser/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/feedparser/xdocs/navigation.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- navigation.xml22 May 2004 12:38:32 -  1.1
  +++ navigation.xml30 May 2004 21:00:44 -  1.2
  @@ -5,15 +5,7 @@
   body
   menu name=Commons#xA0;Feedparser
   item name=Overview  href=/index.html /
  -!--item name=Configuration 
href=/configuration.html / --
   item name=API#xA0;Documentationhref=/apidocs/index.html/
  -!--
  -item name=Developers#xA0;Guide href=/guide/index.html 
collapse=true
  -item name=Class#xA0;Diagrams   
href=/guide/classdiagrams.html/
  -item name=Sequence#xA0;Diagrams
href=/guide/sequencediagrams.html/
  -/item
  -item name=Examples  
href=http://cvs.apache.org/viewcvs/jakarta-commons/cache/doc//
  ---
   item name=Downloads href=/downloads.html/
   /menu
   common-menus;
  
  
  

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



cvs commit: jakarta-commons-sandbox/events/xdocs navigation.xml

2004-05-30 Thread dirkv
dirkv   2004/05/30 14:00:58

  Modified:events   project.properties project.xml
   events/xdocs navigation.xml
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.7   +2 -2  jakarta-commons-sandbox/events/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/events/project.properties,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- project.properties28 Feb 2004 16:24:12 -  1.6
  +++ project.properties30 May 2004 21:00:58 -  1.7
  @@ -12,8 +12,8 @@
   #   See the License for the specific language governing permissions and
   #   limitations under the License.
   
  -maven.xdoc.jsl=../sandbox-build/commons-site.jsl
  -maven.xdoc.date=left
  +maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.date=bottom
   maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
   maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html
  
  
  
  1.10  +2 -2  jakarta-commons-sandbox/events/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/events/project.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- project.xml   28 Feb 2004 16:24:12 -  1.9
  +++ project.xml   30 May 2004 21:00:58 -  1.10
  @@ -17,10 +17,10 @@
   
   project
 extend../sandbox-build/project.xml/extend
  -  nameEvents/name
  +  nameCommons Events/name
 idcommons-events/id
 
  -  logo!--/images/logo.png--/logo
  +  logo/images/events-logo-white.png/logo
 
 currentVersion0.1/currentVersion
 inceptionYear2003/inceptionYear
  
  
  
  1.7   +5 -20 jakarta-commons-sandbox/events/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/events/xdocs/navigation.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- navigation.xml28 Feb 2004 16:24:12 -  1.6
  +++ navigation.xml30 May 2004 21:00:58 -  1.7
  @@ -14,32 +14,17 @@
  See the License for the specific language governing permissions and
  limitations under the License.
   --
  -
  -!DOCTYPE project [
  -!ENTITY commons-nav SYSTEM ../../sandbox-build/incl_nav.xml
  -]
  -
  -project name=Events
  -
  -  titleEvents/title
  -  organizationLogo href=/images/jakarta-logo-blue.gif
  -   Jakarta
  -  /organizationLogo
  -
  +!DOCTYPE org.apache.commons.menus SYSTEM 
'../../../jakarta-commons/commons-build/menus/menus.dtd'
  +project name=Commons#xA0;Events
  +  titleCommons#xA0;Events/title
 body
  -links
  -  item name=Jakarta Commons href=http://jakarta.apache.org/commons//
  -/links
  -
  -menu name=Commons Events
  +menu name=Commons#xA0;Events
 item name=Overview href=/index.html/
 item name=Javadoc href=apidocs/index.html/
 item name=Mailing lists href=/mail-lists.html/
 item name=Team href=/team-list.html/
 item name=CVS 
href=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/events//
   /menu
  -
  -commons-nav;
  -
  +common-menus;
 /body
   /project
  
  
  

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



cvs commit: jakarta-commons-sandbox/email/xdocs navigation.xml

2004-05-30 Thread dirkv
dirkv   2004/05/30 14:01:25

  Modified:emailproject.properties project.xml
   email/xdocs navigation.xml
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.4   +3 -3  jakarta-commons-sandbox/email/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/email/project.properties,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- project.properties28 Feb 2004 16:22:12 -  1.3
  +++ project.properties30 May 2004 21:01:25 -  1.4
  @@ -27,8 +27,8 @@
   maven.checkstyle.format = turbine
   
   # Standard settings
  -maven.xdoc.jsl=../sandbox-build/commons-site.jsl
  -maven.xdoc.date=left
  +maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.date=bottom
   maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
   maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html
  
  
  
  1.14  +1 -1  jakarta-commons-sandbox/email/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/email/project.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- project.xml   28 Feb 2004 16:22:12 -  1.13
  +++ project.xml   30 May 2004 21:01:25 -  1.14
  @@ -18,7 +18,7 @@
 extend../sandbox-build/project.xml/extend
 nameCommons Email/name
 idcommons-email/id
  -  logo/logo
  +  logo/images/email-logo-white.png/logo
 inceptionYear2001/inceptionYear
 shortDescriptionCommons Email/shortDescription
 descriptionCommons Email provides a simple wrapper over the Java Mail 
API/description
  
  
  
  1.4   +5 -19 jakarta-commons-sandbox/email/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/email/xdocs/navigation.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- navigation.xml28 Feb 2004 16:22:12 -  1.3
  +++ navigation.xml30 May 2004 21:01:25 -  1.4
  @@ -15,23 +15,11 @@
  limitations under the License.
   --
   
  -!DOCTYPE project [
  -!ENTITY commons-nav SYSTEM ../../sandbox-build/incl_nav.xml
  -]
  -
  -project name=Email
  -
  -  titleEmail/title
  -  organizationLogo href=/images/jakarta-logo-blue.gif
  -   Jakarta
  -  /organizationLogo
  -
  +!DOCTYPE org.apache.commons.menus SYSTEM 
'../../../jakarta-commons/commons-build/menus/menus.dtd'
  +project name=Commons#xA0;Email
  +  titleCommons#xA0;Email/title
 body
  -links
  -  item name=Jakarta Commons href=http://jakarta.apache.org/commons//
  -/links
  -
  -menu name=Commons Email
  +menu name=Commons#xA0;Email
 item name=Overview href=/index.html/
 item name=Examples href=/examples.html/
 item name=Javadoc href=apidocs/index.html/
  @@ -39,8 +27,6 @@
 item name=Team href=/team-list.html/
 item name=CVS 
href=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/email//
   /menu
  -
  -commons-nav;
  -
  +common-menus;
 /body
   /project
  
  
  

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



cvs commit: jakarta-commons-sandbox/convert/xdocs navigation.xml

2004-05-30 Thread dirkv
dirkv   2004/05/30 14:01:34

  Modified:convert  project.properties project.xml
   convert/xdocs navigation.xml
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.6   +3 -3  jakarta-commons-sandbox/convert/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/convert/project.properties,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- project.properties20 Mar 2004 18:52:31 -  1.5
  +++ project.properties30 May 2004 21:01:33 -  1.6
  @@ -12,10 +12,10 @@
   #   See the License for the specific language governing permissions and
   #   limitations under the License.
   
  -maven.xdoc.jsl=../sandbox-build/commons-site.jsl
  -maven.xdoc.date=left
  +maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.date=bottom
   maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
   maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html
   
  -maven.checkstyle.properties=checkstyle.xml
  \ No newline at end of file
  +maven.checkstyle.properties=checkstyle.xml
  
  
  
  1.12  +2 -2  jakarta-commons-sandbox/convert/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/convert/project.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- project.xml   23 Mar 2004 22:55:20 -  1.11
  +++ project.xml   30 May 2004 21:01:33 -  1.12
  @@ -2,10 +2,10 @@
   
   project
 extend../sandbox-build/project.xml/extend
  -  nameConvert/name
  +  nameCommons Convert/name
 idcommons-convert/id
 
  -  logo!--/images/logo.png--/logo
  +  logo/images/convert-logo-white.png/logo
 
 currentVersion0.1/currentVersion
 inceptionYear2003/inceptionYear
  
  
  
  1.6   +5 -19 jakarta-commons-sandbox/convert/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/convert/xdocs/navigation.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- navigation.xml25 Feb 2004 00:09:46 -  1.5
  +++ navigation.xml30 May 2004 21:01:33 -  1.6
  @@ -15,31 +15,17 @@
  limitations under the License.
 --
   
  -!DOCTYPE project [
  -!ENTITY commons-nav SYSTEM ../../sandbox-build/incl_nav.xml
  -]
  -
  -project name=Convert
  -
  -  titleConvert/title
  -  organizationLogo href=/images/jakarta-logo-blue.gif
  -   Jakarta
  -  /organizationLogo
  -
  +!DOCTYPE org.apache.commons.menus SYSTEM 
'../../../jakarta-commons/commons-build/menus/menus.dtd'
  +project name=Commons#xA0;Convert
  +  titleCommons#xA0;Convert/title
 body
  -links
  -  item name=Jakarta Commons href=http://jakarta.apache.org/commons//
  -/links
  -
  -menu name=Commons Convert
  +menu name=Commons#xA0;Commons Convert
 item name=Overview href=/index.html/
 item name=Javadoc href=apidocs/index.html/
 item name=Mailing lists href=/mail-lists.html/
 item name=Team href=/team-list.html/
 item name=CVS 
href=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/convert//
   /menu
  -
  -commons-nav;
  -
  +common-menus;
 /body
   /project
  
  
  

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



cvs commit: jakarta-commons-sandbox/compress/xdocs navigation.xml

2004-05-30 Thread dirkv
dirkv   2004/05/30 14:01:48

  Modified:compress project.properties project.xml
   compress/xdocs navigation.xml
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.3   +2 -2  jakarta-commons-sandbox/compress/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/compress/project.properties,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- project.properties28 Feb 2004 16:06:20 -  1.2
  +++ project.properties30 May 2004 21:01:48 -  1.3
  @@ -12,8 +12,8 @@
   #   See the License for the specific language governing permissions and
   #   limitations under the License.
   
  -maven.xdoc.jsl=../sandbox-build/commons-site.jsl
  -maven.xdoc.date=left
  +maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.date=bottom
   maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
   maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html
  
  
  
  1.7   +1 -1  jakarta-commons-sandbox/compress/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/compress/project.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- project.xml   28 Feb 2004 16:06:20 -  1.6
  +++ project.xml   30 May 2004 21:01:48 -  1.7
  @@ -18,7 +18,7 @@
 extend../sandbox-build/project.xml/extend
 nameCommons Compress/name
 idcommons-compress/id
  -  logo/images/compress-logo-blue.jpg/logo
  +  logo/images/compress-logo-white.png/logo
 inceptionYear2002/inceptionYear
 shortDescriptionCommons Compress/shortDescription
 description
  
  
  
  1.4   +5 -20 jakarta-commons-sandbox/compress/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/compress/xdocs/navigation.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- navigation.xml28 Feb 2004 16:06:20 -  1.3
  +++ navigation.xml30 May 2004 21:01:48 -  1.4
  @@ -14,32 +14,17 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 --
  -
  -!DOCTYPE project [
  -!ENTITY commons-nav SYSTEM ../../sandbox-build/incl_nav.xml
  -]
  -
  -project name=Convert
  -
  -  titleCompress/title
  -  organizationLogo href=/images/jakarta-logo-blue.gif
  -   Jakarta
  -  /organizationLogo
  -
  +!DOCTYPE org.apache.commons.menus SYSTEM 
'../../../jakarta-commons/commons-build/menus/menus.dtd'
  +project name=Commons#xA0;Compress
  +  titleCommons#xA0;Compress/title
 body
  -links
  -  item name=Jakarta Commons href=http://jakarta.apache.org/commons//
  -/links
  -
  -menu name=Commons Compress
  +menu name=Commons#xA0;Compress
 item name=Overview href=/index.html/
 item name=Javadoc href=apidocs/index.html/
 item name=Mailing lists href=/mail-lists.html/
 item name=Team href=/team-list.html/
 item name=CVS 
href=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/compress//
   /menu
  -
  -commons-nav;
  -
  +common-menus;
 /body
   /project
  
  
  

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



cvs commit: jakarta-commons-sandbox/clazz/xdocs navigation.xml

2004-05-30 Thread dirkv
dirkv   2004/05/30 14:01:59

  Modified:clazzproject.properties project.xml
   clazz/xdocs navigation.xml
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.4   +2 -2  jakarta-commons-sandbox/clazz/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/clazz/project.properties,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- project.properties24 Feb 2004 22:19:03 -  1.3
  +++ project.properties30 May 2004 21:01:59 -  1.4
  @@ -12,8 +12,8 @@
   #   See the License for the specific language governing permissions and
   #   limitations under the License.
   
  -maven.xdoc.jsl=../sandbox-build/commons-site.jsl
  -maven.xdoc.date=left
  +maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.date=bottom
   maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
   maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html
  
  
  
  1.6   +2 -2  jakarta-commons-sandbox/clazz/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/clazz/project.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- project.xml   24 Feb 2004 22:19:03 -  1.5
  +++ project.xml   30 May 2004 21:01:59 -  1.6
  @@ -16,10 +16,10 @@
   --
   project
 extend../sandbox-build/project.xml/extend
  -  nameClazz/name
  +  nameCommons Clazz/name
 idcommons-clazz/id
 
  -  logo!--/images/logo.png--/logo
  +  logo/images/clazz-logo-white.png/logo
 
 currentVersion1.0-alpha1/currentVersion
 inceptionYear2002/inceptionYear
  
  
  
  1.3   +5 -20 jakarta-commons-sandbox/clazz/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/clazz/xdocs/navigation.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- navigation.xml24 Feb 2004 22:19:03 -  1.2
  +++ navigation.xml30 May 2004 21:01:59 -  1.3
  @@ -14,24 +14,11 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 --
  -
  -!DOCTYPE project [
  -!ENTITY commons-nav SYSTEM ../../sandbox-build/incl_nav.xml
  -]
  -
  -project name=Clazz
  -
  -  titleClazz/title
  -  organizationLogo href=/images/jakarta-logo-blue.gif
  -   Jakarta
  -  /organizationLogo
  -
  +!DOCTYPE org.apache.commons.menus SYSTEM 
'../../../jakarta-commons/commons-build/menus/menus.dtd'
  +project name=Commons#xA0;Clazz
  +  titleCommons#xA0;Clazz/title
 body
  -links
  -  item name=Jakarta Commons href=http://jakarta.apache.org/commons//
  -/links
  -
  -menu name=Commons Clazz
  +menu name=Commons#xA0;Clazz
 item name=Overview href=/index.html/
 item name=User guide href=/userguide.html/
 item name=Javadoc href=apidocs/index.html/
  @@ -39,8 +26,6 @@
 item name=Team href=/team-list.html/
 item name=CVS 
href=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/clazz//
   /menu
  -
  -commons-nav;
  -
  +common-menus;
 /body
   /project
  
  
  

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



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

2004-05-30 Thread dirkv
dirkv   2004/05/30 14:02:21

  Modified:chainproject.properties project.xml
   chain/xdocs index.xml navigation.xml
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.3   +4 -3  jakarta-commons-sandbox/chain/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/chain/project.properties,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- project.properties25 Feb 2004 00:01:07 -  1.2
  +++ project.properties30 May 2004 21:02:21 -  1.3
  @@ -42,11 +42,12 @@
   ##
   # commons site LF
   ##
  -maven.xdoc.jsl=../sandbox-build/commons-site.jsl
  -maven.xdoc.date=left
  +maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.date=bottom
   maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
   maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html
  +
   
   # once we create a theme url it should go here.
   #maven.xdoc.theme.url=
  
  
  
  1.5   +4 -4  jakarta-commons-sandbox/chain/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/chain/project.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- project.xml   25 Feb 2004 00:01:07 -  1.4
  +++ project.xml   30 May 2004 21:02:21 -  1.5
  @@ -16,10 +16,10 @@
   --
   project
 extend../sandbox-build/project.xml/extend
  -  nameChain/name
  +  nameCommons Chain/name
 idcommons-chain/id
 
  -  logo!--/images/logo.png--/logo
  +  logo/images/chain-logo-white.png/logo
 
 currentVersion0.2-dev/currentVersion
 inceptionYear2003/inceptionYear
  @@ -62,13 +62,13 @@
   dependency
 groupIdjsf/groupId
 artifactIdjsf-api/artifactId
  -  version1.0-beta/version
  +  version1.0/version
 urlhttp://java.sun.com/j2ee/javaserverfaces/download.html/url
   /dependency
   dependency
 groupIdjsf/groupId
 artifactIdjsf-impl/artifactId
  -  version1.0-beta/version
  +  version1.0/version
 urlhttp://java.sun.com/j2ee/javaserverfaces/download.html/url
   /dependency
   dependency
  
  
  
  1.4   +1 -1  jakarta-commons-sandbox/chain/xdocs/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/chain/xdocs/index.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- index.xml 28 Feb 2004 17:21:11 -  1.3
  +++ index.xml 30 May 2004 21:02:21 -  1.4
  @@ -18,7 +18,7 @@
   document
   
properties
  -  titleCommons Chain/title
  +  titleOverview/title
 author email=[EMAIL PROTECTED]Commons Documentation Team/author
 author email=[EMAIL PROTECTED]Martin Cooper/author
 author email=[EMAIL PROTECTED]Craig McClanahan/author
  
  
  
  1.3   +9 -24 jakarta-commons-sandbox/chain/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/chain/xdocs/navigation.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- navigation.xml25 Feb 2004 00:01:07 -  1.2
  +++ navigation.xml30 May 2004 21:02:21 -  1.3
  @@ -14,32 +14,17 @@
  See the License for the specific language governing permissions and
  limitations under the License.
   --
  -
  -!DOCTYPE project [
  -!ENTITY commons-nav SYSTEM ../../sandbox-build/incl_nav.xml
  -]
  -
  -project name=Chain
  -
  -  titleChain/title
  -  organizationLogo href=/images/jakarta-logo-blue.gif
  -   Jakarta
  -  /organizationLogo
  -
  +!DOCTYPE org.apache.commons.menus SYSTEM 
'../../../jakarta-commons/commons-build/menus/menus.dtd'
  +project name=Commons#xA0;Chain
  +  titleCommons#xA0;Chain/title
 body
  -links
  -  item name=Jakarta Commons href=http://jakarta.apache.org/commons//
  -/links
  -
  -menu name=Commons Chain
  -  item name=Overview href=/index.html/
  -  item name=Javadoc href=apidocs/index.html/
  +menu name=Commons#xA0;Chain
  +  item name=Overview  href=/index.html/
  +  item name=Javadoc   href=/apidocs/index.html/
 item name=Mailing lists href=/mail-lists.html/
  -  item name=Team href=/team-list.html/
  -  item name=CVS 
href=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/chain//
  +  item name=Team  href=/team-list.html/
  +  item name=CVS   

cvs commit: jakarta-commons-sandbox/cache/xdocs navigation.xml

2004-05-30 Thread dirkv
dirkv   2004/05/30 14:02:41

  Modified:cacheproject.properties project.xml
   cache/xdocs navigation.xml
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.3   +3 -3  jakarta-commons-sandbox/cache/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/cache/project.properties,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- project.properties24 Feb 2004 21:34:16 -  1.2
  +++ project.properties30 May 2004 21:02:41 -  1.3
  @@ -42,8 +42,8 @@
   ##
   # commons site LF
   ##
  -maven.xdoc.jsl=../sandbox-build/commons-site.jsl
  -maven.xdoc.date=left
  +maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.date=bottom
   maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
   maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html
  
  
  
  1.3   +2 -2  jakarta-commons-sandbox/cache/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/cache/project.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- project.xml   24 Feb 2004 21:34:16 -  1.2
  +++ project.xml   30 May 2004 21:02:41 -  1.3
  @@ -16,10 +16,10 @@
   --
   project
 extend../sandbox-build/project.xml/extend
  -  nameCache/name
  +  nameCommons Cache/name
 idcommons-cache/id
 
  -  logo!--/images/logo.png--/logo
  +  logo/images/cache-logo-white.png/logo
 
 currentVersion0.1-dev/currentVersion
 inceptionYear2001/inceptionYear
  
  
  
  1.3   +9 -24 jakarta-commons-sandbox/cache/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/cache/xdocs/navigation.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- navigation.xml24 Feb 2004 21:34:17 -  1.2
  +++ navigation.xml30 May 2004 21:02:41 -  1.3
  @@ -14,33 +14,18 @@
  See the License for the specific language governing permissions and
  limitations under the License.
   --
  -
  -!DOCTYPE project [
  -!ENTITY commons-nav SYSTEM ../../sandbox-build/incl_nav.xml
  -]
  -
  -project name=Cache
  -
  -  titleCache/title
  -  organizationLogo href=/images/jakarta-logo-blue.gif
  -   Jakarta
  -  /organizationLogo
  -
  +!DOCTYPE org.apache.commons.menus SYSTEM 
'../../../jakarta-commons/commons-build/menus/menus.dtd'
  +project name=Commons#xA0;Cache
  +  titleCommons#xA0;Cache/title
 body
  -links
  -  item name=Jakarta Commons href=http://jakarta.apache.org/commons//
  -/links
  -
  -menu name=Commons Cache
  -  item name=Overview href=/index.html/
  +menu name=Commons#xA0;Cache
  +  item name=Overview  href=/index.html/
 item name=Tag library   
href=http://cvs.apache.org/viewcvs.cgi/*checkout*/jakarta-commons-sandbox/cache/docs/tagext.html?rev=HEADamp;content-type=text/html;
 /
  -  item name=Javadoc href=apidocs/index.html/
  +  item name=Javadoc   href=/apidocs/index.html/
 item name=Mailing lists href=/mail-lists.html/
  -  item name=Team href=/team-list.html/
  -  item name=CVS 
href=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/cache//
  +  item name=Team  href=/team-list.html/
  +  item name=CVS   
href=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/cache//
   /menu
  -
  -commons-nav;
  -
  +common-menus;
 /body
   /project
  
  
  

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



cvs commit: jakarta-commons-sandbox/attributes/site/xdocs/images - New directory

2004-05-30 Thread dirkv
dirkv   2004/05/30 14:03:03

  jakarta-commons-sandbox/attributes/site/xdocs/images - New directory

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



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

2004-05-30 Thread dirkv
dirkv   2004/05/30 14:04:48

  Modified:attributes project.properties project.xml
   attributes/site project.properties
   attributes/site/xdocs navigation.xml
  Added:   attributes/site/xdocs/images attributes-logo-white.png
attributes-logo-white.xcf
  Removed: attributes/xdocs index.xml navigation.xml
  Log:
  update to commons lf, new navigation, license info
  
  Revision  ChangesPath
  1.4   +3 -3  jakarta-commons-sandbox/attributes/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/attributes/project.properties,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- project.properties21 Feb 2004 16:13:41 -  1.3
  +++ project.properties30 May 2004 21:04:48 -  1.4
  @@ -42,8 +42,8 @@
   ##
   # commons site LF
   ##
  -maven.xdoc.jsl=../sandbox-build/commons-site.jsl
  -maven.xdoc.date=left
  +maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.date=bottom
   maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
   maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html
  @@ -73,4 +73,4 @@
   
   
   
  - 
  \ No newline at end of file
  + 
  
  
  
  1.18  +1 -1  jakarta-commons-sandbox/attributes/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/attributes/project.xml,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- project.xml   9 May 2004 18:24:57 -   1.17
  +++ project.xml   30 May 2004 21:04:48 -  1.18
  @@ -21,7 +21,7 @@
   nameAttributes/name
   idcommons-attributes/id
   
  -logo/attributes-logo.gif/logo
  +logo/images/attributes-logo-white.png/logo
   
   organization
   nameThe Apache Software Foundation/name
  
  
  
  1.5   +2 -7  jakarta-commons-sandbox/attributes/site/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/attributes/site/project.properties,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- project.properties5 May 2004 21:51:58 -   1.4
  +++ project.properties30 May 2004 21:04:48 -  1.5
  @@ -13,14 +13,9 @@
   # See the License for the specific language governing permissions and
   # limitations under the License.
   #
  -#
  -# Banner background and foreground colors.
  -#
   
  -#maven.ui.banner.background = #fff
  -#maven.ui.banner.foreground = #000
  -maven.xdoc.jsl=../sandbox-build/commons-site.jsl
  -maven.xdoc.date=left
  +maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.date=bottom
   maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
   maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html
  
  
  
  1.10  +18 -29jakarta-commons-sandbox/attributes/site/xdocs/navigation.xml
  
  Index: navigation.xml
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/attributes/site/xdocs/navigation.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- navigation.xml5 May 2004 21:51:58 -   1.9
  +++ navigation.xml30 May 2004 21:04:48 -  1.10
  @@ -1,34 +1,24 @@
   ?xml version=1.0 encoding=UTF-8?
   !--
  -=
  -= Copyright 2003-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.
  -=
  +   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 

Re: [lang] [math] org.apache.commons.lang.math.Fraction class

2004-05-30 Thread Stephen Colebourne
  The existing add(), subtract(), and multiplyBy() and divide() code (as
far
  as I can tell) all returned reduced fractions, so existing arithmetic
code
  should largely be unaffected.  The primary visible difference is that
  before
   Fraction.getFraction(2,4).equals(Fraction.getFraction(1,2))==false
  and now it would be true.
  I view the previous behavior as surprising and a bug, honestly.

 I am inclined to agree here; though I am not sure exactly what the
 original author's intention was and how people may be using the class now.
The fact that the arithmetic operations return reduced fractions makes
 it hard to understand why equals works the way that it does now.

What about getNumerator()/getDenominator() - won't these change if 2/4 is
held differently? I believe that we need to preserve the 2/4 concept
distinct from 1/2, at least in the [lang] version.


 One thing that we might want to consider, given the magnitude of the
 changes, is deprecating this in [lang] and moving it to [math].  That way,
 among other things, the (better) continued fraction implementation in
 [math] could be used in getFraction(double).  The improved gcd and checked
 integer arithmetic methods in the patch might also make good additions to
 o.a.c.math.MathUtils.

The [lang] code needs to work and be reliable. However I suspect that a
[math] version and [lang] version may be appropriate with slightly different
semantics.

Stephen


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



cvs commit: jakarta-commons-sandbox/attributes/site project.properties

2004-05-30 Thread dirkv
dirkv   2004/05/30 15:03:32

  Modified:attributes/site project.properties
  Log:
  3 levels up
  
  Revision  ChangesPath
  1.6   +1 -1  jakarta-commons-sandbox/attributes/site/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/jakarta-commons-sandbox/attributes/site/project.properties,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- project.properties30 May 2004 21:04:48 -  1.5
  +++ project.properties30 May 2004 22:03:32 -  1.6
  @@ -14,7 +14,7 @@
   # limitations under the License.
   #
   
  -maven.xdoc.jsl=../../jakarta-commons/commons-build/commons-site.jsl
  +maven.xdoc.jsl=../../../jakarta-commons/commons-build/commons-site.jsl
   maven.xdoc.date=bottom
   maven.xdoc.poweredby.image=maven-feather.png
   maven.xdoc.version=${pom.currentVersion}
  
  
  

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



Re: [lang] [math] org.apache.commons.lang.math.Fraction class

2004-05-30 Thread C. Scott Ananian
On Sun, 30 May 2004, Stephen Colebourne wrote:

 What about getNumerator()/getDenominator() - won't these change if 2/4 is
 held differently?

yes.

I believe that we need to preserve the 2/4 concept
 distinct from 1/2, at least in the [lang] version.

I don't believe so.  I can't imagine any reason why we would not want
these to be indistinguishable.  It makes the operation of the entire class
more intuitive.  I'd be more inclined to agree with you if I heard from
some large user of this class where (for some reason) these concepts
wanted to remain separate.  I don't believe this user exists.

[And remember that fractions are reduced arbitrarily for some arithmetic
operations, so if you (for some reason) wanted a non-reduced fraction, it
would be hard to guarantee that it remained so.]

Most likely all users are just manually salting their code aggressively
with calls to f.reduce(), perhaps introducing some bugs by forgetting some
cases.  Making Fraction reduce all fractions by itself will fix these
user bugs.

 The [lang] code needs to work and be reliable. However I suspect that a
 [math] version and [lang] version may be appropriate with slightly different
 semantics.

I'd rather not encourage people to use a broken interface.  The current
Fraction has a number of actual bugs and encourages the programmer to make
others by its surprising behavior.  In my opinion, fixing the obvious bugs
in Fraction without fixing the surprising behavior would just
encourage people to use Fraction and so make the surprising behavior more
dangerous.

If Fraction is to be moved to math, I'd probably suggest deprecating
lang.Fraction with the following text, This implementation of Fraction
is not robust and make produce suprising behavior in corner cases,
especially when large numerators or denominators are used (and because
fractions are not kept in reduced form, the numerator and denomiator will
tend to grow larger as arithmetic is performed). Users are strongly
encouraged to migrate to o.a.c.math.Fraction, which has an identical API
but maintains fractions in simplified form and works reliably with
numerators and denominators over the whole int range from
Integer.MIN_VALUE to Integer.MAX_VALUE.

If you're willing to change 'identical' to 'near-identical', I'd suggest
removing the 'reduce()' and 'getReducedFraction()' methods from Fraction
(instead of just deprecating them) when/if the class is moved.

It was a significant amount of work to fix all the corner cases in
Fraction.  At the moment I don't have time to repeat that work for a
non-reduced-Fraction 'minimal' patch.  You are welcome to do that
if you like.  Be careful of Integer.MIN_VALUE.  Keeping the updated test
cases is probably a good start, although you'll want to add new test cases
checking that unreduced fractions also behave reliably, especially in
regard to overflow.
 --scott

Ft. Meade Castro EZLN mail drop DNC Columbia IDEA Soviet  Albanian
Cheney terrorist Blair cracking domestic disruption Attache Mk 48
 ( http://cscott.net/ )

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



Re: [sandbox] active components?

2004-05-30 Thread Martin Cooper
AFAIK, both Chain and Resources are in pretty good shape, and are awaiting
one of their committers to step up to the plate. Unfortunately, we / they
are all pretty busy right now, but I expect that the effort will go in to
getting these promoted and released shortly after Struts 1.2.1 happens.

--
Martin Cooper


On Sat, 15 May 2004, Joe Germuska wrote:

 At 12:09 AM -0400 5/15/04, Henri Yandell wrote:
 I'm interested in finding out which parts of sandbox are not active and
 which would be worth putting time into getting a release done.
 
 chain

 chain is expected to be a core part of Struts 1.3.x; I've been using
 it with Struts for a while and don't know of any reason why it
 couldn't be released, although I don't know the chain code itself
 very well.

 email

 I don't think anyone is actively watching over email.  I haven't used
 the code myself, but I've looked it over (not too recently) and it's
 probably close to a release.

 resources

 I'm not sure at all how close resources is to a release, but it too
 is probably going to be a dependency of Struts 1.3.x.

 Joe



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



Re: [sandbox] active components?

2004-05-30 Thread Martin Cooper
On Sun, 16 May 2004, Stephen Colebourne wrote:

 From: Henri Yandell [EMAIL PROTECTED]
  convert
 I've been too busy to put time into this, but I reckon there is definitely a
 need.

  primitives
 Now in commons proper (sandbox version deleted)

  reflect
 Never got finished, releatively unlikely to

Just curious - why do you say it's relatively unlikely to be finished?

--
Martin Cooper



  Clazz
 Completed, but no great demand

  Events
 Needs more work than time available

 Stephen


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



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



DO NOT REPLY [Bug 29306] - [CONTRIB] SSL authenticating protocol socket factory

2004-05-30 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=29306.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=29306

[CONTRIB] SSL authenticating protocol socket factory





--- Additional Comments From [EMAIL PROTECTED]  2004-05-30 23:06 ---
Created an attachment (id=11699)
Patch (take 1)

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