svn commit: r381300 - /jakarta/commons/proper/logging/trunk/xdocs/guide.xml

2006-02-27 Thread skitching
Author: skitching
Date: Mon Feb 27 01:20:56 2006
New Revision: 381300

URL: http://svn.apache.org/viewcvs?rev=381300view=rev
Log:
Added section on Serializable classes with Log objects as members.

Modified:
jakarta/commons/proper/logging/trunk/xdocs/guide.xml

Modified: jakarta/commons/proper/logging/trunk/xdocs/guide.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/logging/trunk/xdocs/guide.xml?rev=381300r1=381299r2=381300view=diff
==
--- jakarta/commons/proper/logging/trunk/xdocs/guide.xml (original)
+++ jakarta/commons/proper/logging/trunk/xdocs/guide.xml Mon Feb 27 01:20:56 
2006
@@ -41,7 +41,13 @@
 /li
 /ol
 /li
-lia href='#Developing With JCL'Developing With JCL/a/li
+lia href='#Developing With JCL'Developing With JCL/a
+ ol
+lia href='#Obtaining a Log Object'Obtaining a Log 
Object/a/li
+lia href='#Logging a Message'Logging a 
Message/a/li
+lia href='#Serialization Issues'Serialization 
Issues/a/li
+ /ol
+/li
 lia href='#Jars Included in the Standard Distribution'Jars 
Included in the Standard Distribution/a
  ol
 lia 
href='#commons-logging.jar'commons-logging.jar/a/li
@@ -246,6 +252,7 @@
 /subsection
 /section
 section name='Developing With JCL'
+subsection name=Obtaining a Log Object
 p
 To use the JCL SPI from a Java class,
 include the following import statements:
@@ -287,6 +294,8 @@
 member must inot/i be declared static. The use of static should therefore
 be avoided in code within any library type project.
 /p
+/subsection
+subsection name=Logging a Message
 p
 Messages are logged to a emlogger/em, such as codelog/code
 by invoking a method corresponding to empriority/em.
@@ -327,6 +336,27 @@
 log.isTraceEnabled();
 /source
 /ul
+/subsection
+subsection name=Serialization Issues
+pPrior to release 1.0.4, none of the standard Log implementations were
+Serializable. If you are using such a release and have a Serializable 
classe
+with a member that is of type Log then it is necessary to declare
+that member to be transient and to ensure that the value is restored on
+deserialization. The recommended approach is to define a custom
+readObject method on the class which reinitializes that member./p
+pIn release 1.0.4, all standard Log implementations are Serializable. 
This
+means that class members of type Log do inot/i need to be declared 
transient;
+on deserialization the Log object will rebind to the same category for 
the
+same logging library. Note that the same underlying logging library will be
+used on deserialization as was used in the original object, even if the
+application the object was deserialized into is using a different logging
+library. There is one exception; LogKitLogger (adapter for the Avalon 
LogKit
+library) is not Serializable for technical reasons./p
+pCustom Log implementations not distributed with commons-logging may
+or may not be Serializable. If you wish your code to be compatible with
+any arbitrary log adapter then you should follow the advice given above
+for pre-1.0.4 releases./p
+/subsection
 /section
 section name=Jars Included in the Standard Distribution
 subsection name=commons-logging.jar



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



DO NOT REPLY [Bug 38067] - [net] FTP - WinZip file downloads are corrupted

2006-02-27 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=38067.
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=38067





--- Additional Comments From [EMAIL PROTECTED]  2006-02-27 10:29 ---
(In reply to comment #7)
 Here ya go ... isn't much to it. If ya like I can send the entire class if 
need be.
 
***
**
  public void fetchFile(String sServerFile, String sLocalFile){
 FileOutputStream fout = null;
 
 try{
   this.setFileTransferMode(this.BINARY_FILE_TYPE);
   this.enterLocalPassiveMode();
   fout = new FileOutputStream(sLocalFile);
   boolean bSuccess = this.retrieveFile(sServerFile, fout);
   if(FTPReply.isPositiveIntermediate(getReplyCode())){
 this.completePendingCommand();
   }
   if(!FTPReply.isPositiveCompletion(getReplyCode())){
 System.out.println(retrieveFile() failed:  + getReplyString());
   }
 }catch(Exception e){
   System.out.println(e.getMessage());
   try{if(fout != null){fout.close();}}
   catch(Exception f){;}
 }finally{
   try{if(fout != null){fout.close();}}
   catch(Exception g){;}
 }
   }



Actually , not only zip file open corrupted aftertrasnfering ,but also other 
type of .wav or movie files . there're no problem to process is text file I 
think .

Perhaps it's I/O occurs the main problem


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



[Jakarta-commons Wiki] Update of ValidatorStandalone by FredericClose

2006-02-27 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Jakarta-commons Wiki 
for change notification.

The following page has been changed by FredericClose:
http://wiki.apache.org/jakarta-commons/ValidatorStandalone

The comment on the change is:
updated the link to point to the svn repository and not the cvs one

--
  -Jeff Kyser
  
  The new Validator version 1.1.3 contains an example on how to use Validator
+ outside of Struts.  
+ 
- outside of Struts.  
http://cvs.apache.org/viewcvs.cgi/jakarta-commons/validator/src/example/org/apache/commons/validator/example/
+ direct link to svn repository : 
http://svn.apache.org/viewcvs.cgi/jakarta/commons/proper/validator/trunk/src/example/org/apache/commons/validator/example/
  
  -Reinhard Spisser
  
@@ -21, +23 @@

  
  Up to ValidatorFaq
  
- 

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



Re: [all] building the site?

2006-02-27 Thread Dennis Lundberg

Dion Gillard wrote:

I've tried to build the site for JEXL, but obviously have the
commons-build directory checked out in the wrong location.

Is it documented anywhere what the directory structure must be?


You can find it here:
http://jakarta.apache.org/commons/building.html#Checking%20out%20the%20commons%20sources


--
Dennis Lundberg

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



Re: [daemon] Deploying maven 2 pom for release 1.0.1

2006-02-27 Thread Dennis Lundberg

Alex Karasulu wrote:

Hiya,

The directory project depends on commons-daemon 1.0.1 and we had to 
update the maven2 repo with a temporary pom.xml to allow our recent 
release to go through.  I wanted to contact this list and make sure the 
deployed pom is correct.  It is located here:


http://test.maven.codehaus.org/maven2/commons-daemon/commons-daemon/1.0.1/

Also I'd like to make sure we can get m2 deployments working for commons 
daemon from now on.  I'm a committer but I wanted to ask if it's ok to 
add a m2 pom alongside the m1 project.xml so we can update the m2 
repository.


If we start to add m2 poms to SVN I do think we should use the Maven 2 
way to declare groupId, like this:


  groupIdorg.apache.commons/groupId
  artifactIdcommons-daemon/artifactId

--
Dennis Lundberg

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



svn commit: r381320 - in /jakarta/commons/proper/httpclient/trunk/xdocs: news.xml status.xml

2006-02-27 Thread olegk
Author: olegk
Date: Mon Feb 27 03:33:25 2006
New Revision: 381320

URL: http://svn.apache.org/viewcvs?rev=381320view=rev
Log:
HttpClient 2.0 declared End of Life

Modified:
jakarta/commons/proper/httpclient/trunk/xdocs/news.xml
jakarta/commons/proper/httpclient/trunk/xdocs/status.xml

Modified: jakarta/commons/proper/httpclient/trunk/xdocs/news.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/httpclient/trunk/xdocs/news.xml?rev=381320r1=381319r2=381320view=diff
==
--- jakarta/commons/proper/httpclient/trunk/xdocs/news.xml (original)
+++ jakarta/commons/proper/httpclient/trunk/xdocs/news.xml Mon Feb 27 03:33:25 
2006
@@ -10,6 +10,11 @@
   /properties
 
   body
+section name=27 February 2006 - HttpClient 2.x codebase declared 
'End of Life'
+p
+HttpClient 2.x will no longer be supported. There will be no 
more HttpClient 2.x releases
+/p
+/section
 section name=19 December 2005 - HttpClient 3.0 released
 p
 The Jakarta Commons HttpClient project is pleased to announce 
the release of HttpClient 3.0.  

Modified: jakarta/commons/proper/httpclient/trunk/xdocs/status.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/httpclient/trunk/xdocs/status.xml?rev=381320r1=381319r2=381320view=diff
==
--- jakarta/commons/proper/httpclient/trunk/xdocs/status.xml (original)
+++ jakarta/commons/proper/httpclient/trunk/xdocs/status.xml Mon Feb 27 
03:33:25 2006
@@ -17,13 +17,7 @@
 pHttpClient 3.0 has arrived! We strongly encourage all current 
HttpClient 
users to migrate./p
 
-pHttpClient 2.0 is no longer being actively developed, with the 
exception of 
-bug fixes and minor enhancements.  2.0.2 is the latest stable 
release./p
-
-pIt is important to note that HttpClient 3.0 is no longer fully 
compatible 
-with the 2.0.x APIs. API incompatibilities with HttpClient 2.0.x are 
described 
-a 
href=http://svn.apache.org/viewcvs.cgi/jakarta/commons/proper/httpclient/trunk/API_CHANGES_3_0.txt?view=markup;here/a.
-/p
+pHttpClient 2.0 is no longer being actively developed and 
supported./p
 
 pBug reports targeted for the next release can be found
  a 
href=http://issues.apache.org/bugzilla/buglist.cgi?query_format=advancedamp;short_desc_type=allwordssubstramp;short_desc=amp;product=HttpClientamp;component=Commons+HttpClientamp;target_milestone=3.0.1amp;long_desc_type=allwordssubstramp;long_desc=amp;bug_file_loc_type=allwordssubstramp;bug_file_loc=amp;keywords_type=anywordsamp;keywords=amp;bug_status=NEWamp;bug_status=ASSIGNEDamp;bug_status=REOPENEDamp;emailassigned_to1=1amp;emailtype1=substringamp;email1=amp;emailreporter2=1amp;emailtype2=substringamp;email2=amp;bugidtype=includeamp;bug_id=amp;votes=amp;chfieldfrom=amp;chfieldto=Nowamp;chfieldvalue=amp;cmdtype=doitamp;order=Reuse+same+sort+as+last+timeamp;field0-0-0=noopamp;type0-0-0=noopamp;value0-0-0=;here/a.



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



[Jakarta-commons Wiki] Update of JakartaCommonsEtiquette by DennisLundberg

2006-02-27 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Jakarta-commons Wiki 
for change notification.

The following page has been changed by DennisLundberg:
http://wiki.apache.org/jakarta-commons/JakartaCommonsEtiquette

The comment on the change is:
Fix formating

--
  
  = VOTEs =
  
- The commons-dev mailing list is a busy place. Very much a bazaar rather than 
a Cathedral. This means that VOTE threads have a habit of petering out. It a 
good idea to post a tt[VOTE][RESULT]/tt which counts the binding VOTEs and 
tells people the result. 
+ The commons-dev mailing list is a busy place. Very much a bazaar rather than 
a Cathedral. This means that VOTE threads have a habit of petering out. It a 
good idea to post a {{{[VOTE][RESULT]}}} which counts the binding VOTEs and 
tells people the result. 
  
  
  
@@ -90, +90 @@

  
  * Discuss and try to formulate a consensus first. Promotion votes can (and 
do) get messy unless this happens. Create a discussion thread on the list and 
try to find out any reasons people might have for voting against. You might 
need to alter your charter, add missing files or resolve dependency issues. 
It's easy for everyone if all main issues are sorted before you propose the 
proper VOTE. If revisions to the proposal are required, the VOTEing can get 
very messy.
  
- * Post a promotion email whose subject and body make it clear that this is a 
formal promotion VOTE. The subject should be prefixed by tt[VOTE]/tt and 
should be something like tt[VOTE] Promote commons-foo/tt. The body should 
be clear and fairly formal. 
+ * Post a promotion email whose subject and body make it clear that this is a 
formal promotion VOTE. The subject should be prefixed by {{{[VOTE]}}} and 
should be something like {{{[VOTE] Promote commons-foo}}}. The body should be 
clear and fairly formal. 
  
  * Proposal - always include a copy of the PROPOSAL that's being VOTE'd on in 
the VOTE email. This is important since it is clear to everyone what they are 
VOTEing on. It also prevents being put in the embarasing position of the 
PROPOSAL being VOTE'd on being modifed in CVS half way through a VOTE thread. 
  
- * Please give the proposal enough time to give everything the chance to VOTE. 
I leave promotion VOTEs several days - maybe up to a week. When VOTEs have 
stopped coming in then please the proposer should post a 
tt[VOTE][RESULT]/tt giving counts. Only the VOTEs of commons committers are 
binding so please make sure that these are tallied separately. The reason why a 
result email is good is that VOTE thread tend to peter out and so without a 
final email, it's hard to look back through the archives and find out what's 
happened. Another reason is that it's a good way to let everyone know what the 
result was. If there are any disagreements about the result, they can be 
resolved then. 
+ * Please give the proposal enough time to give everything the chance to VOTE. 
I leave promotion VOTEs several days - maybe up to a week. When VOTEs have 
stopped coming in then please the proposer should post a {{{[VOTE][RESULT]}}} 
giving counts. Only the VOTEs of commons committers are binding so please make 
sure that these are tallied separately. The reason why a result email is good 
is that VOTE thread tend to peter out and so without a final email, it's hard 
to look back through the archives and find out what's happened. Another reason 
is that it's a good way to let everyone know what the result was. If there are 
any disagreements about the result, they can be resolved then. 
  
  = Ettiquette - VOTEs (binding and non-binding) and POLLS =
  

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



[EMAIL PROTECTED]: Project commons-math (in module jakarta-commons) failed

2006-02-27 Thread Stefan Bodewig
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 the folk at [EMAIL PROTECTED]

Project commons-math has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 20 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-math :  The Jakarta Mathematics Library


Full details are available at:
http://vmgump.apache.org/gump/public/jakarta-commons/commons-math/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-math-27022006.jar] identifier set to project name
 -INFO- Failed with reason build failed
 -INFO- Failed to extract fallback artifacts from Gump Repository



The following work was performed:
http://vmgump.apache.org/gump/public/jakarta-commons/commons-math/gump_work/build_jakarta-commons_commons-math.html
Work Name: build_jakarta-commons_commons-math (Type: Build)
Work ended in a state of : Failed
Elapsed: 5 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/build/xercesImpl.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar
 org.apache.tools.ant.Main -Dgump.merge=/x1/gump/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-math-27022006 jar 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/math]
CLASSPATH: 
/opt/jdk1.5/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/math/target/classes:/usr/local/gump/public/workspace/jakarta-commons/math/target/test-classes:/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-apache-resolver.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-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/xml-commons/java/build/resolver.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-27022006.jar:/usr/local/gump/packages/junit3.8.1/junit.jar
-
Buildfile: build.xml

init:

setProxy:

noProxy:
 [echo] Proxy not used.

get-custom-dep-commons-logging.jar:

get-dep-commons-logging.jar:
  [get] Getting: 
http://www.ibiblio.org/maven/commons-logging/jars/commons-logging-1.0.3.jar
  [get] To: 
/home/gump/.maven/repository/commons-logging/jars/commons-logging-1.0.3.jar
  [get] Not modified - so not downloaded

get-custom-dep-commons-discovery.jar:

get-dep-commons-discovery.jar:
  [get] Getting: 
http://www.ibiblio.org/maven/commons-discovery/jars/commons-discovery-0.2.jar
  [get] To: 
/home/gump/.maven/repository/commons-discovery/jars/commons-discovery-0.2.jar
  [get] Not modified - so not downloaded

get-deps:

compile:
[mkdir] Created dir: 
/x1/gump/public/workspace/jakarta-commons/math/target/classes
[javac] Compiling 133 source files to 
/x1/gump/public/workspace/jakarta-commons/math/target/classes
[javac] 
/x1/gump/public/workspace/jakarta-commons/math/src/java/org/apache/commons/math/distribution/DistributionFactoryImpl.java:166:
 cannot find symbol
[javac] symbol  : class PascalDistributionImpl
[javac] location: class 
org.apache.commons.math.distribution.DistributionFactoryImpl
[javac] return new PascalDistributionImpl(numberOfSuccesses, 
probabilityOfSuccess);
[javac]^
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] 1 error

BUILD FAILED
/x1/gump/public/workspace/jakarta-commons/math/build.xml:72: Compile failed; 
see the compiler error output for details.

Total time: 5 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: http://vmgump.apache.org/gump/public/jakarta-commons/commons-math/rss.xml
- Atom: 
http://vmgump.apache.org/gump/public/jakarta-commons/commons-math/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 3027022006, vmgump.apache.org:vmgump-public:3027022006
Gump E-mail Identifier (unique within run) #26.

--
Apache Gump
http://gump.apache.org/ 

[EMAIL PROTECTED]: Project commons-math (in module jakarta-commons) failed

2006-02-27 Thread Stefan Bodewig
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 the folk at [EMAIL PROTECTED]

Project commons-math has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 20 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-math :  The Jakarta Mathematics Library


Full details are available at:
http://vmgump.apache.org/gump/public/jakarta-commons/commons-math/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-math-27022006.jar] identifier set to project name
 -INFO- Failed with reason build failed
 -INFO- Failed to extract fallback artifacts from Gump Repository



The following work was performed:
http://vmgump.apache.org/gump/public/jakarta-commons/commons-math/gump_work/build_jakarta-commons_commons-math.html
Work Name: build_jakarta-commons_commons-math (Type: Build)
Work ended in a state of : Failed
Elapsed: 5 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/build/xercesImpl.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar
 org.apache.tools.ant.Main -Dgump.merge=/x1/gump/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-math-27022006 jar 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/math]
CLASSPATH: 
/opt/jdk1.5/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/math/target/classes:/usr/local/gump/public/workspace/jakarta-commons/math/target/test-classes:/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-apache-resolver.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-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/xml-commons/java/build/resolver.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-27022006.jar:/usr/local/gump/packages/junit3.8.1/junit.jar
-
Buildfile: build.xml

init:

setProxy:

noProxy:
 [echo] Proxy not used.

get-custom-dep-commons-logging.jar:

get-dep-commons-logging.jar:
  [get] Getting: 
http://www.ibiblio.org/maven/commons-logging/jars/commons-logging-1.0.3.jar
  [get] To: 
/home/gump/.maven/repository/commons-logging/jars/commons-logging-1.0.3.jar
  [get] Not modified - so not downloaded

get-custom-dep-commons-discovery.jar:

get-dep-commons-discovery.jar:
  [get] Getting: 
http://www.ibiblio.org/maven/commons-discovery/jars/commons-discovery-0.2.jar
  [get] To: 
/home/gump/.maven/repository/commons-discovery/jars/commons-discovery-0.2.jar
  [get] Not modified - so not downloaded

get-deps:

compile:
[mkdir] Created dir: 
/x1/gump/public/workspace/jakarta-commons/math/target/classes
[javac] Compiling 133 source files to 
/x1/gump/public/workspace/jakarta-commons/math/target/classes
[javac] 
/x1/gump/public/workspace/jakarta-commons/math/src/java/org/apache/commons/math/distribution/DistributionFactoryImpl.java:166:
 cannot find symbol
[javac] symbol  : class PascalDistributionImpl
[javac] location: class 
org.apache.commons.math.distribution.DistributionFactoryImpl
[javac] return new PascalDistributionImpl(numberOfSuccesses, 
probabilityOfSuccess);
[javac]^
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] 1 error

BUILD FAILED
/x1/gump/public/workspace/jakarta-commons/math/build.xml:72: Compile failed; 
see the compiler error output for details.

Total time: 5 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: http://vmgump.apache.org/gump/public/jakarta-commons/commons-math/rss.xml
- Atom: 
http://vmgump.apache.org/gump/public/jakarta-commons/commons-math/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 3027022006, vmgump.apache.org:vmgump-public:3027022006
Gump E-mail Identifier (unique within run) #26.

--
Apache Gump
http://gump.apache.org/ 

svn commit: r381325 - /jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/IfTest.java

2006-02-27 Thread dion
Author: dion
Date: Mon Feb 27 03:48:45 2006
New Revision: 381325

URL: http://svn.apache.org/viewcvs?rev=381325view=rev
Log:
Remove jdk15 valueOf methods

Modified:

jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/IfTest.java

Modified: 
jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/IfTest.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/IfTest.java?rev=381325r1=381324r2=381325view=diff
==
--- 
jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/IfTest.java 
(original)
+++ 
jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/IfTest.java 
Mon Feb 27 03:48:45 2006
@@ -39,7 +39,7 @@
 JexlContext jc = JexlHelper.createContext();
 
 Object o = e.evaluate(jc);
-assertEquals(Result is not 1, Integer.valueOf(1), o);
+assertEquals(Result is not 1, new Integer(1), o);
 }
 
 /**
@@ -66,7 +66,7 @@
 JexlContext jc = JexlHelper.createContext();
 
 Object o = e.evaluate(jc);
-assertEquals(Result is not 2, Integer.valueOf(2), o);
+assertEquals(Result is not 2, new Integer(2), o);
 }
 
 /**
@@ -94,7 +94,7 @@
 JexlContext jc = JexlHelper.createContext();
 
 Object o = e.evaluate(jc);
-assertEquals(Result is wrong, Integer.valueOf(2), o);
+assertEquals(Result is wrong, new Integer(2), o);
 }
 
 /**
@@ -106,7 +106,7 @@
 Expression e = ExpressionFactory
 .createExpression(if (x == 1) true;);
 JexlContext jc = JexlHelper.createContext();
-jc.getVars().put(x, Integer.valueOf(1));
+jc.getVars().put(x, new Integer(1));
 
 Object o = e.evaluate(jc);
 assertEquals(Result is not true, Boolean.TRUE, o);
@@ -121,7 +121,7 @@
 Expression e = ExpressionFactory
 .createExpression(if ((x * 2) + 1 == 5) true;);
 JexlContext jc = JexlHelper.createContext();
-jc.getVars().put(x, Integer.valueOf(2));
+jc.getVars().put(x, new Integer(2));
 
 Object o = e.evaluate(jc);
 assertEquals(Result is not true, Boolean.TRUE, o);
@@ -136,7 +136,7 @@
 Expression e = ExpressionFactory
 .createExpression(if ((x * 2) == 5) true;);
 JexlContext jc = JexlHelper.createContext();
-jc.getVars().put(x, Float.valueOf(2.5f));
+jc.getVars().put(x, new Float(2.5f));
 
 Object o = e.evaluate(jc);
 assertEquals(Result is not true, Boolean.TRUE, o);
@@ -151,10 +151,10 @@
 Expression e = ExpressionFactory
 .createExpression(if ((x * 2) == 5) {y = 1;} else {y = 2;});
 JexlContext jc = JexlHelper.createContext();
-jc.getVars().put(x, Float.valueOf(2.5f));
+jc.getVars().put(x, new Float(2.5f));
 
 e.evaluate(jc);
 Object result = jc.getVars().get(y);
-assertEquals(y has the wrong value, Integer.valueOf(1), result);
+assertEquals(y has the wrong value, new Integer(1), result);
 }
 }



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



[Jakarta-commons Wiki] Update of CommonsManual by DennisLundberg

2006-02-27 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Jakarta-commons Wiki 
for change notification.

The following page has been changed by DennisLundberg:
http://wiki.apache.org/jakarta-commons/CommonsManual

The comment on the change is:
Added link to ReleaseChecking

--
   * [MovingFromSandboxToProperSVN]
   * CreatingStandardWebPresence
   * GettingInvolved
+  * ReleaseChecking
   * SigningReleases
   * http://jakarta.apache.org/commons/charter.html
   * http://jakarta.apache.org/commons/volunteering.html

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



[EMAIL PROTECTED]: Project commons-jelly-tags-xml-test (in module commons-jelly) failed

2006-02-27 Thread commons-jelly-tags-xml development
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 the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-xml-test has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 20 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-jelly-tags-xml-test :  Commons Jelly


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-xml-test/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on xml-xerces exists, no need to add for property 
maven.jar.xerces.
 -WARNING- Overriding Maven properties: 
[/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/build.properties]
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/test-reports



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-xml-test/gump_work/build_commons-jelly_commons-jelly-tags-xml-test.html
Work Name: build_commons-jelly_commons-jelly-tags-xml-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 29 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml]
CLASSPATH: 
/opt/jdk1.5/lib/tools.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-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-27022006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/jaxen-1.1-beta-4/jaxen-1.1-beta-4.jar
-
[junit] at 
org.apache.commons.jelly.tags.junit.CaseTag$1.runTest(CaseTag.java:59)
[junit] 
[junit] 
[junit] Testcase: 
testSetSingleNodeAndAsString(org.apache.commons.jelly.tags.junit.CaseTag$1):
  Caused an ERROR
[junit] 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/xml/target/test-classes/org/apache/commons/jelly/tags/xml/suite.jelly:294:81:
 x:set You must define an attribute called 'select' for this tag.
[junit] org.apache.commons.jelly.MissingAttributeException: 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/xml/target/test-classes/org/apache/commons/jelly/tags/xml/suite.jelly:294:81:
 x:set You must define an attribute called 'select' for this tag.
[junit] at 
org.apache.commons.jelly.tags.xml.SetTag.doTag(SetTag.java:86)
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
[junit] at 
org.apache.commons.jelly.tags.junit.CaseTag$1.runTest(CaseTag.java:59)
[junit] 
[junit] 
[junit] Testcase: 
testSetStringLists(org.apache.commons.jelly.tags.junit.CaseTag$1):
Caused an ERROR
[junit] 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/xml/target/test-classes/org/apache/commons/jelly/tags/xml/suite.jelly:339:82:
 x:set You must define an attribute called 'select' for this tag.
[junit] org.apache.commons.jelly.MissingAttributeException: 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/xml/target/test-classes/org/apache/commons/jelly/tags/xml/suite.jelly:339:82:
 x:set You must define an attribute called 'select' for this tag.
[junit] at 
org.apache.commons.jelly.tags.xml.SetTag.doTag(SetTag.java:86)
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
[junit] at 
org.apache.commons.jelly.tags.junit.CaseTag$1.runTest(CaseTag.java:59)
[junit] 
[junit] 
[junit] Testcase: 
testEntities(org.apache.commons.jelly.tags.junit.CaseTag$1):  Caused an 
ERROR
[junit] 

[EMAIL PROTECTED]: Project commons-jelly-tags-xml-test (in module commons-jelly) failed

2006-02-27 Thread commons-jelly-tags-xml development
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 the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-xml-test has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 20 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-jelly-tags-xml-test :  Commons Jelly


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-xml-test/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on xml-xerces exists, no need to add for property 
maven.jar.xerces.
 -WARNING- Overriding Maven properties: 
[/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/build.properties]
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/test-reports



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-xml-test/gump_work/build_commons-jelly_commons-jelly-tags-xml-test.html
Work Name: build_commons-jelly_commons-jelly-tags-xml-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 29 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml]
CLASSPATH: 
/opt/jdk1.5/lib/tools.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-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-27022006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/jaxen-1.1-beta-4/jaxen-1.1-beta-4.jar
-
[junit] at 
org.apache.commons.jelly.tags.junit.CaseTag$1.runTest(CaseTag.java:59)
[junit] 
[junit] 
[junit] Testcase: 
testSetSingleNodeAndAsString(org.apache.commons.jelly.tags.junit.CaseTag$1):
  Caused an ERROR
[junit] 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/xml/target/test-classes/org/apache/commons/jelly/tags/xml/suite.jelly:294:81:
 x:set You must define an attribute called 'select' for this tag.
[junit] org.apache.commons.jelly.MissingAttributeException: 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/xml/target/test-classes/org/apache/commons/jelly/tags/xml/suite.jelly:294:81:
 x:set You must define an attribute called 'select' for this tag.
[junit] at 
org.apache.commons.jelly.tags.xml.SetTag.doTag(SetTag.java:86)
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
[junit] at 
org.apache.commons.jelly.tags.junit.CaseTag$1.runTest(CaseTag.java:59)
[junit] 
[junit] 
[junit] Testcase: 
testSetStringLists(org.apache.commons.jelly.tags.junit.CaseTag$1):
Caused an ERROR
[junit] 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/xml/target/test-classes/org/apache/commons/jelly/tags/xml/suite.jelly:339:82:
 x:set You must define an attribute called 'select' for this tag.
[junit] org.apache.commons.jelly.MissingAttributeException: 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/xml/target/test-classes/org/apache/commons/jelly/tags/xml/suite.jelly:339:82:
 x:set You must define an attribute called 'select' for this tag.
[junit] at 
org.apache.commons.jelly.tags.xml.SetTag.doTag(SetTag.java:86)
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
[junit] at 
org.apache.commons.jelly.tags.junit.CaseTag$1.runTest(CaseTag.java:59)
[junit] 
[junit] 
[junit] Testcase: 
testEntities(org.apache.commons.jelly.tags.junit.CaseTag$1):  Caused an 
ERROR
[junit] 

svn commit: r381331 - in /jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl: ExpressionFactory.java parser/ASTWhileStatement.java

2006-02-27 Thread dion
Author: dion
Date: Mon Feb 27 04:57:40 2006
New Revision: 381331

URL: http://svn.apache.org/viewcvs?rev=381331view=rev
Log:
Implement while statement

Modified:

jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/ExpressionFactory.java

jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTWhileStatement.java

Modified: 
jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/ExpressionFactory.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/ExpressionFactory.java?rev=381331r1=381330r2=381331view=diff
==
--- 
jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/ExpressionFactory.java
 (original)
+++ 
jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/ExpressionFactory.java
 Mon Feb 27 04:57:40 2006
@@ -21,6 +21,7 @@
 import org.apache.commons.jexl.parser.ASTIfStatement;
 import org.apache.commons.jexl.parser.ASTReferenceExpression;
 import org.apache.commons.jexl.parser.ASTStatementExpression;
+import org.apache.commons.jexl.parser.ASTWhileStatement;
 import org.apache.commons.jexl.parser.Parser;
 import org.apache.commons.jexl.parser.SimpleNode;
 import org.apache.commons.logging.Log;
@@ -132,7 +133,8 @@
 
 return e;
 }
-else if (node instanceof ASTIfStatement)
+else if (node instanceof ASTIfStatement 
+|| node instanceof ASTWhileStatement)
 {
 return new ExpressionImpl(expression, node);
 }

Modified: 
jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTWhileStatement.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTWhileStatement.java?rev=381331r1=381330r2=381331view=diff
==
--- 
jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTWhileStatement.java
 (original)
+++ 
jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTWhileStatement.java
 Mon Feb 27 04:57:40 2006
@@ -1,19 +1,55 @@
 /* Generated By:JJTree: Do not edit this line. ASTWhileStatement.java */
+/*
+ * Copyright 2002,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.jexl.parser;
 
+import org.apache.commons.jexl.JexlContext;
+import org.apache.commons.jexl.util.Coercion;
+
+/**
+ * while ( expression ) statement
+ * 
+ * @author Dion Gillard
+ * @since 1.0.1
+ */
 public class ASTWhileStatement extends SimpleNode {
-  public ASTWhileStatement(int id) {
-super(id);
-  }
-
-  public ASTWhileStatement(Parser p, int id) {
-super(p, id);
-  }
+public ASTWhileStatement(int id) {
+super(id);
+}
+
+public ASTWhileStatement(Parser p, int id) {
+super(p, id);
+}
+
+/** Accept the visitor. * */
+public Object jjtAccept(ParserVisitor visitor, Object data) {
+return visitor.visit(this, data);
+}
+
+public Object value(JexlContext jc) throws Exception {
+Object result = null;
+/* first child is the expression */
+SimpleNode expressionNode = (SimpleNode) jjtGetChild(0); 
+while 
(Coercion.coerceBoolean(expressionNode.value(jc)).booleanValue()) {
+// execute statement
+result = ((SimpleNode) jjtGetChild(1)).value(jc);
+}
 
+return result;
+}
 
-  /** Accept the visitor. **/
-  public Object jjtAccept(ParserVisitor visitor, Object data) {
-return visitor.visit(this, data);
-  }
 }



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



svn commit: r381332 - /jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/WhileTest.java

2006-02-27 Thread dion
Author: dion
Date: Mon Feb 27 04:58:55 2006
New Revision: 381332

URL: http://svn.apache.org/viewcvs?rev=381332view=rev
Log:
Implement while statement

Added:

jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/WhileTest.java
   (with props)

Added: 
jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/WhileTest.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/WhileTest.java?rev=381332view=auto
==
--- 
jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/WhileTest.java
 (added)
+++ 
jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/WhileTest.java
 Mon Feb 27 04:58:55 2006
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2002-2006 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.jexl;
+
+import junit.framework.TestCase;
+
+public class WhileTest extends TestCase {
+
+public WhileTest(String testName) {
+super(testName);
+}
+
+public void testSimpleWhileFalse() throws Exception {
+Expression e = ExpressionFactory.createExpression(while (false) ;);
+JexlContext jc = JexlHelper.createContext();
+
+Object o = e.evaluate(jc);
+assertNull(Result is not null, o);
+}
+
+public void testWhileExecutesExpressionWhenLooping() throws Exception {
+Expression e = ExpressionFactory.createExpression(while (x  10) x = 
x + 1;);
+JexlContext jc = JexlHelper.createContext();
+jc.getVars().put(x, new Integer(1));
+
+Object o = e.evaluate(jc);
+assertEquals(Result is wrong, new Long(10), o);
+}
+
+public void testWhileWithBlock() throws Exception {
+Expression e = ExpressionFactory.createExpression(while (x  10) { x 
= x + 1; y = y * 2; });
+JexlContext jc = JexlHelper.createContext();
+jc.getVars().put(x, new Integer(1));
+jc.getVars().put(y, new Integer(1));
+
+Object o = e.evaluate(jc);
+assertEquals(Result is wrong, new Long(512), o);
+assertEquals(x is wrong, new Long(10), jc.getVars().get(x));
+assertEquals(y is wrong, new Long(512), jc.getVars().get(y));
+}
+}

Propchange: 
jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/WhileTest.java
--
svn:eol-style = native

Propchange: 
jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/WhileTest.java
--
svn:keywords = Date Author Id Revision HeadURL



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



svn commit: r381334 - /jakarta/commons/proper/jexl/trunk/xdocs/changes.xml

2006-02-27 Thread dion
Author: dion
Date: Mon Feb 27 05:00:08 2006
New Revision: 381334

URL: http://svn.apache.org/viewcvs?rev=381334view=rev
Log:
Implement while statement

Modified:
jakarta/commons/proper/jexl/trunk/xdocs/changes.xml

Modified: jakarta/commons/proper/jexl/trunk/xdocs/changes.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/jexl/trunk/xdocs/changes.xml?rev=381334r1=381333r2=381334view=diff
==
--- jakarta/commons/proper/jexl/trunk/xdocs/changes.xml (original)
+++ jakarta/commons/proper/jexl/trunk/xdocs/changes.xml Mon Feb 27 05:00:08 2006
@@ -25,6 +25,7 @@
   /properties
   body
 release version=1.0.1-SNAPSHOT date=in SVN
+  action dev=dion type=addAdded implementation for the while 
statement./action
   action dev=dion type=addAdded implementation for block statements, 
e.g. curly braces containing multiple statements./action
   action dev=dion type=addAdded implementation for the if 
statement./action
   action dev=dion type=fix issue=36857Unary minus was only working 
for integer values./action



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



[EMAIL PROTECTED]: Project commons-latka (in module jakarta-commons) failed

2006-02-27 Thread Ted Husted
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 the folk at [EMAIL PROTECTED]

Project commons-latka has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 20 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-latka :  Functional Testing Suite


Full details are available at:

http://vmgump.apache.org/gump/public/jakarta-commons/commons-latka/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-latka.jar] identifier set to project name
 -DEBUG- Dependency on jaxen exists, no need to add for property jaxen.jar.
 -INFO- Made directory 
[/usr/local/gump/public/workspace/jakarta-commons/latka/target/classes]
 -INFO- Made directory 
[/usr/local/gump/public/workspace/jakarta-commons/latka/target/test-classes]
 -INFO- Failed with reason build failed
 -INFO- Failed to extract fallback artifacts from Gump Repository



The following work was performed:
http://vmgump.apache.org/gump/public/jakarta-commons/commons-latka/gump_work/build_jakarta-commons_commons-latka.html
Work Name: build_jakarta-commons_commons-latka (Type: Build)
Work ended in a state of : Failed
Elapsed: 10 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/build/xercesImpl.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/usr/local/gump/public/workspace/xml-xalan/build/serializer.jar:/usr/local/gump/public/workspace/xml-xalan/build/xalan-unbundled.jar
 org.apache.tools.ant.Main -Dgump.merge=/x1/gump/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only 
-Djaxen.jar=/usr/local/gump/public/workspace/jaxen/target/jaxen-27022006.jar 
dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/latka]
CLASSPATH: 
/opt/jdk1.5/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/latka/target/classes:/usr/local/gump/public/workspace/jakarta-commons/latka/target/test-classes:/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-apache-resolver.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-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/xml-commons/java/build/resolver.jar:/usr/local/gump/public/workspace/jakarta-commons/httpclient/dist/commons-httpclient.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/codec/dist/commons-codec-27022006.jar:/usr/local/gump/public/workspace/logging-log4j/dist/lib/log4j-27022006.jar:/usr/local/gump/public/workspace/jakarta-regexp/build/jakarta-regexp-27022006.jar:/usr/local/gump/public/workspace/jakarta-servletapi-4/lib/servlet.jar:/usr/local/gump/public/workspace/jdom/build/jdom.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-27022006.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-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-27022006.jar:/usr/local/gump/public/workspace/jaxen/target/jaxen-27022006.jar
-
[junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 1.294 sec
[junit] - Standard Output ---
[junit] log4j:INFO Using URL 
[file:/x1/gump/public/workspace/jakarta-commons/latka/target/classes/log4j.properties]
 for automatic log4j configuration of repository named [default].
[junit] ESE

[junit] [message] boo1

[junit] http://example.net:80/
[junit]   REQUEST ERROR (-1 millis)
[junit] java.net.ConnectException: Connection refused

[junit] [message] boo2

[junit] http://example.org:80/
[junit]   REQUEST SKIPPED (-1 millis)

[junit] [message] boo3

[junit] http://example.net:80/
[junit]   REQUEST ERROR (-1 millis)
[junit] java.net.ConnectException: Connection refused


[junit] SUITE FAILED

[EMAIL PROTECTED]: Project commons-latka (in module jakarta-commons) failed

2006-02-27 Thread Ted Husted
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 the folk at [EMAIL PROTECTED]

Project commons-latka has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 20 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-latka :  Functional Testing Suite


Full details are available at:

http://vmgump.apache.org/gump/public/jakarta-commons/commons-latka/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-latka.jar] identifier set to project name
 -DEBUG- Dependency on jaxen exists, no need to add for property jaxen.jar.
 -INFO- Made directory 
[/usr/local/gump/public/workspace/jakarta-commons/latka/target/classes]
 -INFO- Made directory 
[/usr/local/gump/public/workspace/jakarta-commons/latka/target/test-classes]
 -INFO- Failed with reason build failed
 -INFO- Failed to extract fallback artifacts from Gump Repository



The following work was performed:
http://vmgump.apache.org/gump/public/jakarta-commons/commons-latka/gump_work/build_jakarta-commons_commons-latka.html
Work Name: build_jakarta-commons_commons-latka (Type: Build)
Work ended in a state of : Failed
Elapsed: 10 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/build/xercesImpl.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/usr/local/gump/public/workspace/xml-xalan/build/serializer.jar:/usr/local/gump/public/workspace/xml-xalan/build/xalan-unbundled.jar
 org.apache.tools.ant.Main -Dgump.merge=/x1/gump/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only 
-Djaxen.jar=/usr/local/gump/public/workspace/jaxen/target/jaxen-27022006.jar 
dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/latka]
CLASSPATH: 
/opt/jdk1.5/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/latka/target/classes:/usr/local/gump/public/workspace/jakarta-commons/latka/target/test-classes:/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-apache-resolver.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-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/xml-commons/java/build/resolver.jar:/usr/local/gump/public/workspace/jakarta-commons/httpclient/dist/commons-httpclient.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/codec/dist/commons-codec-27022006.jar:/usr/local/gump/public/workspace/logging-log4j/dist/lib/log4j-27022006.jar:/usr/local/gump/public/workspace/jakarta-regexp/build/jakarta-regexp-27022006.jar:/usr/local/gump/public/workspace/jakarta-servletapi-4/lib/servlet.jar:/usr/local/gump/public/workspace/jdom/build/jdom.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-27022006.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-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-27022006.jar:/usr/local/gump/public/workspace/jaxen/target/jaxen-27022006.jar
-
[junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 1.294 sec
[junit] - Standard Output ---
[junit] log4j:INFO Using URL 
[file:/x1/gump/public/workspace/jakarta-commons/latka/target/classes/log4j.properties]
 for automatic log4j configuration of repository named [default].
[junit] ESE

[junit] [message] boo1

[junit] http://example.net:80/
[junit]   REQUEST ERROR (-1 millis)
[junit] java.net.ConnectException: Connection refused

[junit] [message] boo2

[junit] http://example.org:80/
[junit]   REQUEST SKIPPED (-1 millis)

[junit] [message] boo3

[junit] http://example.net:80/
[junit]   REQUEST ERROR (-1 millis)
[junit] java.net.ConnectException: Connection refused


[junit] SUITE FAILED

[EMAIL PROTECTED]: Project commons-jelly-tags-html (in module commons-jelly) failed

2006-02-27 Thread commons-jelly-tags-html development
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 the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-html has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 20 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-jelly-tags-html :  Commons Jelly


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-html/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-tags-html-27022006.jar] identifier set to 
project name
 -DEBUG- Dependency on xml-xerces exists, no need to add for property 
maven.jar.xerces.
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/html/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/html/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/html/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/html/target/test-reports
 -INFO- Failed to extract fallback artifacts from Gump Repository



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-html/gump_work/build_commons-jelly_commons-jelly-tags-html.html
Work Name: build_commons-jelly_commons-jelly-tags-html (Type: Build)
Work ended in a state of : Failed
Elapsed: 12 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/html]
CLASSPATH: 
/opt/jdk1.5/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/target/commons-jelly-tags-jsl-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/log/target/commons-jelly-tags-log-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/commons-jelly-tags-xml-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-27022006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/jaxen-1.1-beta-4/jaxen-1.1-beta-4.jar:/usr/local/gump/packages/nekohtml-0.9.5/nekohtml.jar
-
[junit] at 
org.apache.commons.jelly.tags.junit.CaseTag$1.runTest(CaseTag.java:59)
[junit] 
[junit] 
[junit] Testcase: 
testLowerCase(org.apache.commons.jelly.tags.junit.CaseTag$1): Caused an 
ERROR
[junit] 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/html/target/test-classes/org/apache/commons/jelly/html/suite.jelly:40:48:
 test:assert You must define an attribute called 'test' for this tag.
[junit] org.apache.commons.jelly.MissingAttributeException: 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/html/target/test-classes/org/apache/commons/jelly/html/suite.jelly:40:48:
 test:assert You must define an attribute called 'test' for this tag.
[junit] at 
org.apache.commons.jelly.tags.junit.AssertTag.doTag(AssertTag.java:54)
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
[junit] at 
org.apache.commons.jelly.tags.junit.CaseTag$1.runTest(CaseTag.java:59)
[junit] 
[junit] 
[junit] Testcase: 
testMixedCase(org.apache.commons.jelly.tags.junit.CaseTag$1): Caused an 
ERROR
[junit] 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/html/target/test-classes/org/apache/commons/jelly/html/suite.jelly:47:48:
 test:assert You must define an attribute called 'test' for this tag.
[junit] org.apache.commons.jelly.MissingAttributeException: 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/html/target/test-classes/org/apache/commons/jelly/html/suite.jelly:47:48:
 test:assert You must define an attribute called 'test' for this tag.
[junit] at 

[EMAIL PROTECTED]: Project commons-jelly-tags-html (in module commons-jelly) failed

2006-02-27 Thread commons-jelly-tags-html development
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 the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-html has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 20 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-jelly-tags-html :  Commons Jelly


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-html/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-tags-html-27022006.jar] identifier set to 
project name
 -DEBUG- Dependency on xml-xerces exists, no need to add for property 
maven.jar.xerces.
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/html/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/html/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/html/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/html/target/test-reports
 -INFO- Failed to extract fallback artifacts from Gump Repository



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-html/gump_work/build_commons-jelly_commons-jelly-tags-html.html
Work Name: build_commons-jelly_commons-jelly-tags-html (Type: Build)
Work ended in a state of : Failed
Elapsed: 12 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/html]
CLASSPATH: 
/opt/jdk1.5/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/target/commons-jelly-tags-jsl-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/log/target/commons-jelly-tags-log-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/commons-jelly-tags-xml-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-27022006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/jaxen-1.1-beta-4/jaxen-1.1-beta-4.jar:/usr/local/gump/packages/nekohtml-0.9.5/nekohtml.jar
-
[junit] at 
org.apache.commons.jelly.tags.junit.CaseTag$1.runTest(CaseTag.java:59)
[junit] 
[junit] 
[junit] Testcase: 
testLowerCase(org.apache.commons.jelly.tags.junit.CaseTag$1): Caused an 
ERROR
[junit] 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/html/target/test-classes/org/apache/commons/jelly/html/suite.jelly:40:48:
 test:assert You must define an attribute called 'test' for this tag.
[junit] org.apache.commons.jelly.MissingAttributeException: 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/html/target/test-classes/org/apache/commons/jelly/html/suite.jelly:40:48:
 test:assert You must define an attribute called 'test' for this tag.
[junit] at 
org.apache.commons.jelly.tags.junit.AssertTag.doTag(AssertTag.java:54)
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
[junit] at 
org.apache.commons.jelly.tags.junit.CaseTag$1.runTest(CaseTag.java:59)
[junit] 
[junit] 
[junit] Testcase: 
testMixedCase(org.apache.commons.jelly.tags.junit.CaseTag$1): Caused an 
ERROR
[junit] 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/html/target/test-classes/org/apache/commons/jelly/html/suite.jelly:47:48:
 test:assert You must define an attribute called 'test' for this tag.
[junit] org.apache.commons.jelly.MissingAttributeException: 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/html/target/test-classes/org/apache/commons/jelly/html/suite.jelly:47:48:
 test:assert You must define an attribute called 'test' for this tag.
[junit] at 

[EMAIL PROTECTED]: Project commons-jelly-tags-jsl-test (in module commons-jelly) failed

2006-02-27 Thread commons-jelly-tags-jsl development
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 the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-jsl-test has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 20 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-jelly-tags-jsl-test :  Commons Jelly


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-jsl-test/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on ant exists, no need to add for property 
maven.jar.ant-optional.
 -DEBUG- Dependency on xml-xerces exists, no need to add for property 
maven.jar.xerces.
 -WARNING- Overriding Maven properties: 
[/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/build.properties]
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/target/test-reports



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-jsl-test/gump_work/build_commons-jelly_commons-jelly-tags-jsl-test.html
Work Name: build_commons-jelly_commons-jelly-tags-jsl-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 16 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl]
CLASSPATH: 
/opt/jdk1.5/lib/tools.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-apache-resolver.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-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/cli/target/commons-cli-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/ant/target/commons-jelly-tags-ant-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/log/target/commons-jelly-tags-log-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/commons-jelly-tags-xml-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-27022006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/jaxen-1.1-beta-4/jaxen-1.1-beta-4.jar
-
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
[junit] at 
org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:186)
[junit] at 
org.apache.commons.jelly.TagSupport.getBodyText(TagSupport.java:234)
[junit] at 
org.apache.commons.jelly.tags.core.SetTag.doTag(SetTag.java:90)
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
[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:58)
[junit] at org.dom4j.rule.Mode.applyTemplates(Mode.java:79)
[junit] at org.dom4j.rule.RuleManager$1.run(RuleManager.java:171)
[junit] at org.dom4j.rule.Mode.fireRule(Mode.java:58)
[junit] at org.dom4j.rule.Stylesheet.run(Stylesheet.java:102)
[junit] at org.dom4j.rule.Stylesheet.run(Stylesheet.java:91)
[junit] at org.dom4j.rule.Stylesheet.run(Stylesheet.java:78)
[junit] at 

[EMAIL PROTECTED]: Project commons-jelly-tags-jsl-test (in module commons-jelly) failed

2006-02-27 Thread commons-jelly-tags-jsl development
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 the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-jsl-test has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 20 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-jelly-tags-jsl-test :  Commons Jelly


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-jsl-test/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on ant exists, no need to add for property 
maven.jar.ant-optional.
 -DEBUG- Dependency on xml-xerces exists, no need to add for property 
maven.jar.xerces.
 -WARNING- Overriding Maven properties: 
[/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/build.properties]
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/target/test-reports



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-jsl-test/gump_work/build_commons-jelly_commons-jelly-tags-jsl-test.html
Work Name: build_commons-jelly_commons-jelly-tags-jsl-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 16 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl]
CLASSPATH: 
/opt/jdk1.5/lib/tools.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-apache-resolver.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-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/cli/target/commons-cli-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/ant/target/commons-jelly-tags-ant-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/log/target/commons-jelly-tags-log-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/commons-jelly-tags-xml-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-27022006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/jaxen-1.1-beta-4/jaxen-1.1-beta-4.jar
-
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
[junit] at 
org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:186)
[junit] at 
org.apache.commons.jelly.TagSupport.getBodyText(TagSupport.java:234)
[junit] at 
org.apache.commons.jelly.tags.core.SetTag.doTag(SetTag.java:90)
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
[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:58)
[junit] at org.dom4j.rule.Mode.applyTemplates(Mode.java:79)
[junit] at org.dom4j.rule.RuleManager$1.run(RuleManager.java:171)
[junit] at org.dom4j.rule.Mode.fireRule(Mode.java:58)
[junit] at org.dom4j.rule.Stylesheet.run(Stylesheet.java:102)
[junit] at org.dom4j.rule.Stylesheet.run(Stylesheet.java:91)
[junit] at org.dom4j.rule.Stylesheet.run(Stylesheet.java:78)
[junit] at 

DO NOT REPLY [Bug 38686] - [VFS] Default VFS cache behavior

2006-02-27 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=38686.
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=38686


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2006-02-27 14:35 ---
It seems to work.

Thanks a lot for this workaround !!!

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



[EMAIL PROTECTED]: Project commons-jelly-tags-define-test (in module commons-jelly) failed

2006-02-27 Thread commons-jelly-tags-define development
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 the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-define-test has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 20 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-jelly-tags-define-test :  Commons Jelly


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-define-test/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on xml-xerces exists, no need to add for property 
maven.jar.xerces.
 -WARNING- Overriding Maven properties: 
[/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/build.properties]
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/target/test-reports



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-define-test/gump_work/build_commons-jelly_commons-jelly-tags-define-test.html
Work Name: build_commons-jelly_commons-jelly-tags-define-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 13 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define]
CLASSPATH: 
/opt/jdk1.5/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/dynabean/target/commons-jelly-tags-dynabean-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/log/target/commons-jelly-tags-log-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/commons-jelly-tags-xml-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-27022006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/jaxen-1.1-beta-4/jaxen-1.1-beta-4.jar
-
[junit] at junit.framework.TestResult.runProtected(TestResult.java:124)
[junit] at junit.framework.TestResult.run(TestResult.java:109)
[junit] at junit.framework.TestCase.run(TestCase.java:118)
[junit] at junit.framework.TestSuite.runTest(TestSuite.java:208)
[junit] at junit.framework.TestSuite.run(TestSuite.java:203)
[junit] at 
org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.run(JUnitTestRunner.java:325)
[junit] at 
org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.main(JUnitTestRunner.java:536)
[junit] Feb 27, 2006 5:42:47 AM 
org.apache.commons.jelly.expression.xpath.XPathExpression evaluate
[junit] SEVERE: Error constructing xpath
[junit] org.jaxen.XPathSyntaxException: Node-set expected
[junit] at org.jaxen.BaseXPath.init(BaseXPath.java:131)
[junit] at org.jaxen.BaseXPath.init(BaseXPath.java:156)
[junit] at org.jaxen.dom4j.Dom4jXPath.init(Dom4jXPath.java:101)
[junit] at 
org.apache.commons.jelly.expression.xpath.XPathExpression.evaluate(XPathExpression.java:78)
[junit] at 
org.apache.commons.jelly.expression.ExpressionSupport.evaluateRecurse(ExpressionSupport.java:61)
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:256)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
[junit] at 
org.apache.commons.jelly.tags.junit.CaseTag$1.runTest(CaseTag.java:59)
[junit] at junit.framework.TestCase.runBare(TestCase.java:127)
[junit] at junit.framework.TestResult$1.protect(TestResult.java:106)
[junit] at junit.framework.TestResult.runProtected(TestResult.java:124)
[junit] at 

[EMAIL PROTECTED]: Project commons-jelly-tags-define-test (in module commons-jelly) failed

2006-02-27 Thread commons-jelly-tags-define development
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 the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-define-test has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 20 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-jelly-tags-define-test :  Commons Jelly


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-define-test/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on xml-xerces exists, no need to add for property 
maven.jar.xerces.
 -WARNING- Overriding Maven properties: 
[/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/build.properties]
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/target/test-reports



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-define-test/gump_work/build_commons-jelly_commons-jelly-tags-define-test.html
Work Name: build_commons-jelly_commons-jelly-tags-define-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 13 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define]
CLASSPATH: 
/opt/jdk1.5/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/dynabean/target/commons-jelly-tags-dynabean-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/log/target/commons-jelly-tags-log-27022006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/commons-jelly-tags-xml-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-27022006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/jaxen-1.1-beta-4/jaxen-1.1-beta-4.jar
-
[junit] at junit.framework.TestResult.runProtected(TestResult.java:124)
[junit] at junit.framework.TestResult.run(TestResult.java:109)
[junit] at junit.framework.TestCase.run(TestCase.java:118)
[junit] at junit.framework.TestSuite.runTest(TestSuite.java:208)
[junit] at junit.framework.TestSuite.run(TestSuite.java:203)
[junit] at 
org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.run(JUnitTestRunner.java:325)
[junit] at 
org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.main(JUnitTestRunner.java:536)
[junit] Feb 27, 2006 5:42:47 AM 
org.apache.commons.jelly.expression.xpath.XPathExpression evaluate
[junit] SEVERE: Error constructing xpath
[junit] org.jaxen.XPathSyntaxException: Node-set expected
[junit] at org.jaxen.BaseXPath.init(BaseXPath.java:131)
[junit] at org.jaxen.BaseXPath.init(BaseXPath.java:156)
[junit] at org.jaxen.dom4j.Dom4jXPath.init(Dom4jXPath.java:101)
[junit] at 
org.apache.commons.jelly.expression.xpath.XPathExpression.evaluate(XPathExpression.java:78)
[junit] at 
org.apache.commons.jelly.expression.ExpressionSupport.evaluateRecurse(ExpressionSupport.java:61)
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:256)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
[junit] at 
org.apache.commons.jelly.tags.junit.CaseTag$1.runTest(CaseTag.java:59)
[junit] at junit.framework.TestCase.runBare(TestCase.java:127)
[junit] at junit.framework.TestResult$1.protect(TestResult.java:106)
[junit] at junit.framework.TestResult.runProtected(TestResult.java:124)
[junit] at 

Re: [daemon] Deploying maven 2 pom for release 1.0.1

2006-02-27 Thread Alex Karasulu

Dennis Lundberg wrote:


Alex Karasulu wrote:


Hiya,

The directory project depends on commons-daemon 1.0.1 and we had to 
update the maven2 repo with a temporary pom.xml to allow our recent 
release to go through.  I wanted to contact this list and make sure 
the deployed pom is correct.  It is located here:


http://test.maven.codehaus.org/maven2/commons-daemon/commons-daemon/1.0.1/ 



Also I'd like to make sure we can get m2 deployments working for 
commons daemon from now on.  I'm a committer but I wanted to ask if 
it's ok to add a m2 pom alongside the m1 project.xml so we can update 
the m2 repository.



If we start to add m2 poms to SVN I do think we should use the Maven 2 
way to declare groupId, like this:


  groupIdorg.apache.commons/groupId
  artifactIdcommons-daemon/artifactId


Yep makes sense.

Alex


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



DO NOT REPLY [Bug 38792] New: - Memory leak in StringUtils

2006-02-27 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=38792.
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=38792

   Summary: Memory leak in StringUtils
   Product: Commons
   Version: 2.1 Final
  Platform: All
OS/Version: other
Status: NEW
  Severity: normal
  Priority: P2
 Component: Lang
AssignedTo: commons-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


The static field PADDING allocates 262152 bytes for nothing.

private static final String[] PADDING = new String[Character.MAX_VALUE];

At least use lazy creation, better completely remove it (move to method) to save
memory (Having 20 apps on one tomcat -- 5MB allocated for nothing).

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



DO NOT REPLY [Bug 38792] - [lang] Memory leak in StringUtils

2006-02-27 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=38792.
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=38792


[EMAIL PROTECTED] changed:

   What|Removed |Added

Summary|Memory leak in StringUtils|[lang] Memory leak in
   ||StringUtils




-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



DO NOT REPLY [Bug 38686] - [VFS] Default VFS cache behavior

2006-02-27 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=38686.
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=38686


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |




--- Additional Comments From [EMAIL PROTECTED]  2006-02-27 17:33 ---
Ok, so lets see if we can add this replicator to VFS ;-)

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



RE: [VOTE] Accept donation of composite pool code

2006-02-27 Thread robert burrell donkin
On Sun, 2006-02-26 at 21:52 -0500, Noel J. Bergman wrote:
 Sandy McArthur wrote:
 
  Noel J. Bergman [EMAIL PROTECTED] wrote:
i'd like to propose that we accept this donation.
   Provided that you do all of the necessaries vis-a-vis IP Clearance, +1.
 
  Took a while to make sure but I'm confident it's clear.
 
 Still needs to be filed.  See http://incubator.apache.org/ip-clearance

yep

a vote from the project pmc is one of the ticks - which is why i've
started this vote :)

it seemed easier to open a JIRA with the completed form rather than
create several patches. 

  Also, isn't this vote a little redundant?
 
 Ask Robert.  :-)

ask noel :)

it's part of the current paperwork but does seem a little pointless. 

IMHO should be sufficient to copy the project pmc when the approval note
is posted to general at the incubator. any project committer who has a
problem with the code can always -1 the commit (as per usual). 

(pedantry is one of my few real talents and it seems a shame to let it
go to waste ;)

- robert


signature.asc
Description: This is a digitally signed message part


DO NOT REPLY [Bug 38798] New: - validator argument - resource=false ignored

2006-02-27 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=38798.
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=38798

   Summary: validator argument - resource=false ignored
   Product: Commons
   Version: unspecified
  Platform: All
OS/Version: other
Status: UNCONFIRMED
  Keywords: ErrorMessage
  Severity: normal
  Priority: P4
 Component: Validator
AssignedTo: commons-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


In ValidationResources.java function addOldArgRules does not set value of
“resource”, like: 
String resource = attributes.getValue(resource);
if (resource != null  !.equals(resource)) {
arg.setResource(resource);
}
As a result I've got struts validation message Field can not be less than null
characters.

Because in config there is defined a value '2' for minlength, but commons.jar
searches for resource with name '2' in resource bundule.

Configuration:

  field property=name
 depends=required,minlength,maxlength

  arg0 key=fieldForm.name/
  arg1
  name=minlength
key=${var:minlength}
  resource=false
  /
  arg1
  name=maxlength
key=${var:maxlength}
  resource=false
  /
  var
var-nameminlength/var-name
var-value2/var-value
  /var
  var
var-namemaxlength/var-name
var-value4/var-value
  /var
  /field

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



[EMAIL PROTECTED]: Project commons-math (in module jakarta-commons) failed

2006-02-27 Thread Stefan Bodewig
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 the folk at [EMAIL PROTECTED]

Project commons-math has an issue affecting its community integration.
This issue affects 1 projects.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-math :  The Jakarta Mathematics Library


Full details are available at:
http://vmgump.apache.org/gump/public/jakarta-commons/commons-math/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-math-27022006.jar] identifier set to project name
 -INFO- Failed with reason build failed
 -INFO- Failed to extract fallback artifacts from Gump Repository



The following work was performed:
http://vmgump.apache.org/gump/public/jakarta-commons/commons-math/gump_work/build_jakarta-commons_commons-math.html
Work Name: build_jakarta-commons_commons-math (Type: Build)
Work ended in a state of : Failed
Elapsed: 57 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/build/xercesImpl.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar
 org.apache.tools.ant.Main -Dgump.merge=/x1/gump/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-math-27022006 jar 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/math]
CLASSPATH: 
/opt/jdk1.5/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/math/target/classes:/usr/local/gump/public/workspace/jakarta-commons/math/target/test-classes:/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-apache-resolver.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-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/xml-commons/java/build/resolver.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-27022006.jar:/usr/local/gump/packages/junit3.8.1/junit.jar
-
Buildfile: build.xml

init:

setProxy:

noProxy:
 [echo] Proxy not used.

get-custom-dep-commons-logging.jar:

get-dep-commons-logging.jar:
  [get] Getting: 
http://www.ibiblio.org/maven/commons-logging/jars/commons-logging-1.0.3.jar
  [get] To: 
/home/gump/.maven/repository/commons-logging/jars/commons-logging-1.0.3.jar
  [get] Not modified - so not downloaded

get-custom-dep-commons-discovery.jar:

get-dep-commons-discovery.jar:
  [get] Getting: 
http://www.ibiblio.org/maven/commons-discovery/jars/commons-discovery-0.2.jar
  [get] To: 
/home/gump/.maven/repository/commons-discovery/jars/commons-discovery-0.2.jar
  [get] Not modified - so not downloaded

get-deps:

compile:
[mkdir] Created dir: 
/x1/gump/public/workspace/jakarta-commons/math/target/classes
[javac] Compiling 133 source files to 
/x1/gump/public/workspace/jakarta-commons/math/target/classes
[javac] 
/x1/gump/public/workspace/jakarta-commons/math/src/java/org/apache/commons/math/distribution/DistributionFactoryImpl.java:166:
 cannot find symbol
[javac] symbol  : class PascalDistributionImpl
[javac] location: class 
org.apache.commons.math.distribution.DistributionFactoryImpl
[javac] return new PascalDistributionImpl(numberOfSuccesses, 
probabilityOfSuccess);
[javac]^
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] 1 error

BUILD FAILED
/x1/gump/public/workspace/jakarta-commons/math/build.xml:72: Compile failed; 
see the compiler error output for details.

Total time: 57 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: http://vmgump.apache.org/gump/public/jakarta-commons/commons-math/rss.xml
- Atom: 
http://vmgump.apache.org/gump/public/jakarta-commons/commons-math/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 18000827022006, vmgump.apache.org:vmgump-public:18000827022006
Gump E-mail Identifier (unique within run) #2.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump]


[EMAIL PROTECTED]: Project commons-math (in module jakarta-commons) failed

2006-02-27 Thread Stefan Bodewig
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 the folk at [EMAIL PROTECTED]

Project commons-math has an issue affecting its community integration.
This issue affects 1 projects.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-math :  The Jakarta Mathematics Library


Full details are available at:
http://vmgump.apache.org/gump/public/jakarta-commons/commons-math/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-math-27022006.jar] identifier set to project name
 -INFO- Failed with reason build failed
 -INFO- Failed to extract fallback artifacts from Gump Repository



The following work was performed:
http://vmgump.apache.org/gump/public/jakarta-commons/commons-math/gump_work/build_jakarta-commons_commons-math.html
Work Name: build_jakarta-commons_commons-math (Type: Build)
Work ended in a state of : Failed
Elapsed: 57 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/build/xercesImpl.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar
 org.apache.tools.ant.Main -Dgump.merge=/x1/gump/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-math-27022006 jar 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/math]
CLASSPATH: 
/opt/jdk1.5/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/math/target/classes:/usr/local/gump/public/workspace/jakarta-commons/math/target/test-classes:/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-apache-resolver.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-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/xml-commons/java/build/resolver.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-27022006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-27022006.jar:/usr/local/gump/packages/junit3.8.1/junit.jar
-
Buildfile: build.xml

init:

setProxy:

noProxy:
 [echo] Proxy not used.

get-custom-dep-commons-logging.jar:

get-dep-commons-logging.jar:
  [get] Getting: 
http://www.ibiblio.org/maven/commons-logging/jars/commons-logging-1.0.3.jar
  [get] To: 
/home/gump/.maven/repository/commons-logging/jars/commons-logging-1.0.3.jar
  [get] Not modified - so not downloaded

get-custom-dep-commons-discovery.jar:

get-dep-commons-discovery.jar:
  [get] Getting: 
http://www.ibiblio.org/maven/commons-discovery/jars/commons-discovery-0.2.jar
  [get] To: 
/home/gump/.maven/repository/commons-discovery/jars/commons-discovery-0.2.jar
  [get] Not modified - so not downloaded

get-deps:

compile:
[mkdir] Created dir: 
/x1/gump/public/workspace/jakarta-commons/math/target/classes
[javac] Compiling 133 source files to 
/x1/gump/public/workspace/jakarta-commons/math/target/classes
[javac] 
/x1/gump/public/workspace/jakarta-commons/math/src/java/org/apache/commons/math/distribution/DistributionFactoryImpl.java:166:
 cannot find symbol
[javac] symbol  : class PascalDistributionImpl
[javac] location: class 
org.apache.commons.math.distribution.DistributionFactoryImpl
[javac] return new PascalDistributionImpl(numberOfSuccesses, 
probabilityOfSuccess);
[javac]^
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] 1 error

BUILD FAILED
/x1/gump/public/workspace/jakarta-commons/math/build.xml:72: Compile failed; 
see the compiler error output for details.

Total time: 57 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: http://vmgump.apache.org/gump/public/jakarta-commons/commons-math/rss.xml
- Atom: 
http://vmgump.apache.org/gump/public/jakarta-commons/commons-math/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 18000827022006, vmgump.apache.org:vmgump-public:18000827022006
Gump E-mail Identifier (unique within run) #2.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump]


svn commit: r381425 - in /jakarta/commons/proper/validator/trunk: src/share/org/apache/commons/validator/ValidatorResources.java xdocs/changes.xml

2006-02-27 Thread niallp
Author: niallp
Date: Mon Feb 27 12:09:49 2006
New Revision: 381425

URL: http://svn.apache.org/viewcvs?rev=381425view=rev
Log:
Fix for Bug 38798 - Validator argument - resource=false ignored for arg0 - 
arg3. Thanks to Rostislav Palivoda 

Modified:

jakarta/commons/proper/validator/trunk/src/share/org/apache/commons/validator/ValidatorResources.java
jakarta/commons/proper/validator/trunk/xdocs/changes.xml

Modified: 
jakarta/commons/proper/validator/trunk/src/share/org/apache/commons/validator/ValidatorResources.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/validator/trunk/src/share/org/apache/commons/validator/ValidatorResources.java?rev=381425r1=381424r2=381425view=diff
==
--- 
jakarta/commons/proper/validator/trunk/src/share/org/apache/commons/validator/ValidatorResources.java
 (original)
+++ 
jakarta/commons/proper/validator/trunk/src/share/org/apache/commons/validator/ValidatorResources.java
 Mon Feb 27 12:09:49 2006
@@ -240,6 +240,9 @@
 Arg arg = new Arg();
 arg.setKey(attributes.getValue(key));
 arg.setName(attributes.getValue(name));
+if (false.equalsIgnoreCase(attributes.getValue(resource))) 
{
+arg.setResource(false);
+}
 try {
 arg.setPosition(Integer.parseInt(name.substring(3)));
 } catch (Exception ex) {

Modified: jakarta/commons/proper/validator/trunk/xdocs/changes.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/validator/trunk/xdocs/changes.xml?rev=381425r1=381424r2=381425view=diff
==
--- jakarta/commons/proper/validator/trunk/xdocs/changes.xml (original)
+++ jakarta/commons/proper/validator/trunk/xdocs/changes.xml Mon Feb 27 
12:09:49 2006
@@ -39,6 +39,9 @@
   body
 
 release version=1.2.1 (alpha) date=in SVN
+  action dev=niallp type=fix issue=38798 due-to=Rostislav 
Palivoda
+ Validator argument - resource=false ignored for arg0 - arg3.
+  /action
   action dev=niallp type=fix issue=38581 due-to=Yugandhar
  Change JavaScript validators to cater for idisabled/i being 
  iundefined/i (an issue in Netscape 4.7).



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



DO NOT REPLY [Bug 38798] - [validator] validator argument - resource=false ignored

2006-02-27 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=38798.
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=38798


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||FIXED
Summary|validator argument -|[validator] validator
   |resource=false ignored|argument - resource=false
   ||ignored




--- Additional Comments From [EMAIL PROTECTED]  2006-02-27 21:14 ---
I have fixed this, thanks for reporting it:

  http://svn.apache.org/viewcvs?rev=381425view=rev

This affects only the deprecared arg0 - arg3 elements. If you switch to the 
newer arg format (available in the 1.1 dtd) then you shouldn't have any 
problems:

 arg position=1
 name=minlength
 key=${var:minlength}
 resource=false
 /


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



Re: [RESULT] [VOTE] Release commons-logging 1.1.0 As Alpha1

2006-02-27 Thread robert burrell donkin
On Mon, 2006-02-27 at 10:21 +1100, Torsten Curdt wrote:
 On 27.02.2006, at 06:29, robert burrell donkin wrote:
 
  too few binding votes have been cast. this release has therefore
  failed.
 
 Argh! Currently a bit semi-offline

not a big problem as it happens: there's no real support for cutting an
alpha (which is my preferred option so that we can try to get it tested)
and there's a problem emerged with websphere. i'll cut some more
candidates and try to talk people into testing them. 

- robert


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



Re: [daemon] Deploying maven 2 pom for release 1.0.1

2006-02-27 Thread Carlos Sanchez
You can change that also in the m1 poms. If there're already releases
we can relocate the to the new groupid, so people using the old one
will get a warning althoug still working.

On 2/27/06, Dennis Lundberg [EMAIL PROTECTED] wrote:
 Alex Karasulu wrote:
  Hiya,
 
  The directory project depends on commons-daemon 1.0.1 and we had to
  update the maven2 repo with a temporary pom.xml to allow our recent
  release to go through.  I wanted to contact this list and make sure the
  deployed pom is correct.  It is located here:
 
  http://test.maven.codehaus.org/maven2/commons-daemon/commons-daemon/1.0.1/
 
  Also I'd like to make sure we can get m2 deployments working for commons
  daemon from now on.  I'm a committer but I wanted to ask if it's ok to
  add a m2 pom alongside the m1 project.xml so we can update the m2
  repository.

 If we start to add m2 poms to SVN I do think we should use the Maven 2
 way to declare groupId, like this:

groupIdorg.apache.commons/groupId
artifactIdcommons-daemon/artifactId

 --
 Dennis Lundberg

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




--
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
 -- The Princess Bride

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



Re: [logging] JCL2.0 design - Architecture

2006-02-27 Thread robert burrell donkin
On Sun, 2006-02-26 at 17:26 +1300, Simon Kitching wrote:
 On Sat, 2006-02-25 at 17:56 +, robert burrell donkin wrote:
  it should be much more reliable to allow per TCCL configuration whilst
  loading implementations from the class classloader. IMHO we've encourage
  too much use of automagic configuration. suggesting that users use
  various arrangements of jars to achieve configurations has proved a poor
  plan. limited automagic configuration to just the class classloader
  would be a major simplification. 
 
 I don't see how that could work.
 
 If the underlying log implementation uses the TCCL to locate config
 info, then things are fairly simple; the user just disables TCCL
 functionality for JCL and lets the underlying logging system do its
 thing.
 
 But if the underlying log implementation is not TCCL-aware, and uses the
 ClassLoader which loaded the logging library to locate its config info,
 then JCL *must* load that implementation via the TCCL in order to get
 the desired behaviour when JCL is deployed in a shared location.
 
 And if we want to allow a webapp to redirect logging from classes it
 calls which are in a shared classpath into a logging lib that is *not*
 in the classpath (eg when webapp deploys log4j, container has something
 else) then again the TCCL must be used.
 
 I do agree that magic configuration wasn't a good idea in hindsight.
 Perhaps a commons-logging.properties file should be mandatory?

i was thinking along the lines of mandatory for actively choosing a
logging system. JCL could still make a reasonable guess but using a
properties file would become the primary recommended mechanism for
configuration. 
 
  i've also been toying with the idea of a Log implementation that
  discovers which implementation to use based on the calling TCCL. when
  debug is called, the Log implementation would be looked up. this would
  allow a library to share a static implementation. of course the
  configuration for each TCCL would have to be stored centrally.
 
 You mean this?
   public boolean isDebugEnabled() {
 // get tccl
 // build a (tccl, categoryname) pair
 // do a hashmap lookup using the above pair to get the real Logger
 // return realLogger.isDebugEnabled()
   }
 That will work under all circumstances, but the crippled performance
 would seem to make this an unworkable solution IMO.

i've been wondering about how big the performance impact would actually
be. it's a way of achieving true isolation for those that really need it
at a price. might encourage users to think about the trade-offs involved
a bit more than they do now. 

- robert


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



Re: [logging] JCL1 LogFactory incompatibility with WAS

2006-02-27 Thread robert burrell donkin
On Mon, 2006-02-27 at 12:13 +0100, Boris Unckel wrote:
 Hello,

hi boris

 I have tested several other cases, the results and conditions
 are in the zip.
 I am really wondering about one case: The delegation mode of all
 tests is PARENT_LAST, for ear and war.
 I have put a commons-logging.properties file in the classpath of the EAR and
 the WAR (each). It still does not work (see subdirectory error).
 
 I will not go further on my own (due to time limitation) but if you have a
 special testcase or a newer version I will test again.

thanks for very much for your work - it's very much appreciated :)

i may have a special test case for you later (but it'll need development
first)

- robert


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



DO NOT REPLY [Bug 38067] - [net] FTP - WinZip file downloads are corrupted

2006-02-27 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=38067.
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=38067





--- Additional Comments From [EMAIL PROTECTED]  2006-02-27 22:15 ---
(In reply to comment #8)

Please try performing the transfers with the ftp.java example program included
with th source, using the -b option.  No progress has been made on this issue
because a complete working compilable/executable program replicating the problem
has not been provided; only an isolated method.  If the ftp.java example program
produces the same results, then provide an ftp URL for a file on a public ftp
site that we can use to reproduce the problem.  All indications up to this point
are that this is a system environment issue, and not an FTPClient bug.
Too many people are transferring gigabytes of data successfully with FTPClient
on a regular basis.  If FTPClient were randomly corrupting files, they'd be
running into the same issue.  Therefore, the first step for us to be able to 
make progress on this issue is to determine whether or not we are able to
reproduce the problem.  If we can reproduce it, then we know there's something
wrong with FTPClient and can investigate the problem rather quickly.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



DO NOT REPLY [Bug 38800] New: - [lang] initial version of DateRange class

2006-02-27 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=38800.
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=38800

   Summary: [lang] initial version of DateRange class
   Product: Commons
   Version: unspecified
  Platform: Other
OS/Version: other
Status: NEW
  Severity: enhancement
  Priority: P2
 Component: Lang
AssignedTo: commons-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


I had a need to create this for some intense date calculations, and I thought
that it would fit well in the lang.time package.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



DO NOT REPLY [Bug 38800] - [lang] initial version of DateRange class

2006-02-27 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=38800.
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=38800





--- Additional Comments From [EMAIL PROTECTED]  2006-02-27 22:52 ---
Created an attachment (id=17803)
 -- (http://issues.apache.org/bugzilla/attachment.cgi?id=17803action=view)
DateRange.java


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



DO NOT REPLY [Bug 38800] - [lang] initial version of DateRange class

2006-02-27 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=38800.
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=38800





--- Additional Comments From [EMAIL PROTECTED]  2006-02-27 22:52 ---
Created an attachment (id=17804)
 -- (http://issues.apache.org/bugzilla/attachment.cgi?id=17804action=view)
unit test


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



[lang] initial crack at DateRange class

2006-02-27 Thread matthew.hawthorne
I mentioned many moons ago that I had created a DateRange class for some 
 vicious date mangling that I had to do.  I have now modified it to fit 
into lang.time, and attached the class + unit test to a bug:


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

I've been away from the commons scene for awhile, so I may have missed 
some protocol-related details.  It'd be great if someone could take a 
look at what I've done.


Below is a quick API description of what is there.  I think that 
subtract is a little iffy (although I did have a need for it), but the 
rest seems to be fairly simple.


Assuming that my commit rights are still in effect, I could add this to 
the codebase myself -- but I wanted to get some feedback to make sure we 
were all on the same page.


Thanks!



DateRange(Date startDate, Date endDate)

equals, compareTo, toString
-- basic stuff

long getTime()
-- endDate.getTime() - startDate.getTime()

boolean contains(Date)
boolean contains(DateRange)
-- true if this range contains the specified Date or DateRange

boolean intersects(DateRange)
-- true if this range intersects with the specified DateRange

DateRange intersection(DateRange)
-- returns a DateRange representing the intersection between this and 
the specified range.


List subtract(DateRange)
-- returns one or more DateRanges representing the difference between 
the two ranges.  If the specified range is larger than this, than the 
list is empty (representing a null range).  If this contains the 
specified range, then the result will have two parts, a range from the 
start of this to the start of the specified range, and a range from the 
end of the specified range to the end of this.


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



Re: [all] building the site?

2006-02-27 Thread Dion Gillard
Ok, that's what I had, but I still get the following error:

BUILD FAILED
File.. C:\Documents and Settings\Dion
Gillard\.maven\cache\maven-xdoc-plugin-1.9.2\plugin.jelly
Element... x:parse
Line.. 471
Column -1
Error on line 18 of document  : Relative URI
../../commons-build/menus/menus.dtd; can not be resolved without a
base U
RI. Nested exception: Relative URI
../../commons-build/menus/menus.dtd; can not be resolved without a
base URI.
Total time   : 2 minutes 18 seconds
Finished at  : Tuesday, 28 February 2006 9:22:43

Any ideas?

On 2/27/06, Dennis Lundberg [EMAIL PROTECTED] wrote:
 Dion Gillard wrote:
  I've tried to build the site for JEXL, but obviously have the
  commons-build directory checked out in the wrong location.
 
  Is it documented anywhere what the directory structure must be?

 You can find it here:
 http://jakarta.apache.org/commons/building.html#Checking%20out%20the%20commons%20sources


 --
 Dennis Lundberg

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




--
http://www.multitask.com.au/people/dion/
Chuck Norris sleeps with a night light. Not because Chuck Norris is
afraid of the dark, but because the dark is afraid of Chuck Norris

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



svn commit: r381471 - in /jakarta/commons/proper/jexl/trunk/xdocs: building.xml navigation.xml

2006-02-27 Thread rahul
Author: rahul
Date: Mon Feb 27 14:35:34 2006
New Revision: 381471

URL: http://svn.apache.org/viewcvs?rev=381471view=rev
Log:
Add a section on building JEXL, wire it to the navbar.


Added:
jakarta/commons/proper/jexl/trunk/xdocs/building.xml   (with props)
Modified:
jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml

Added: jakarta/commons/proper/jexl/trunk/xdocs/building.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/jexl/trunk/xdocs/building.xml?rev=381471view=auto
==
--- jakarta/commons/proper/jexl/trunk/xdocs/building.xml (added)
+++ jakarta/commons/proper/jexl/trunk/xdocs/building.xml Mon Feb 27 14:35:34 
2006
@@ -0,0 +1,61 @@
+?xml version=1.0?
+!--
+Copyright 2006 The Apache Software Foundation.
+ 
+Licensed under the Apache License, Version 2.0 (the License);
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an AS IS BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+--
+document
+ properties
+  titleBuilding Commons JEXL/title
+  author email=commons-dev@jakarta.apache.orgCommons Documentation 
Team/author
+ /properties
+body
+!-- == --
+section name=Overview
+p
+  Commons JEXL uses a href=http://maven.apache.org;Maven/a or
+  a href=http://ant.apache.org;Ant/a as a build system. The source is
+  a 
href=http://svn.apache.org/repos/asf/jakarta/commons/proper/jexl/trunk/;here/a.
+/p
+/section
+!-- == --
+section name=Maven Goals
+  p
+To build a jar file, change into JEXL's root directory (see source link 
above)
+and run maven jar. The result will be in the target subdirectory.
+  /p
+  p
+To build the Javadocs, run maven javadoc.
+The result will be in target/docs/apidocs.
+  /p
+  p
+To build the full website, run maven site. You will need to fetch the
+a 
href=http://svn.apache.org/repos/asf/jakarta/commons/proper/commons-build/trunk/;commons-build/a
+directory to build the full website, and place it as a sibling directory 
of the
+JEXL root directory. The result will be in target/docs.
+  /p
+/section
+!-- == --
+section name=Ant Goals
+  p
+To build a jar file, change into JEXL's root directory and run ant jar.
+The result will be in the target subdirectory.
+  /p
+  p
+To build the Javadocs, run ant javadoc.
+The result will be in dist/docs.
+  /p
+/section
+!-- == --
+/body
+/document

Propchange: jakarta/commons/proper/jexl/trunk/xdocs/building.xml
--
svn:eol-style = native

Propchange: jakarta/commons/proper/jexl/trunk/xdocs/building.xml
--
svn:keywords = Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml?rev=381471r1=381470r2=381471view=diff
==
--- jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml (original)
+++ jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml Mon Feb 27 14:35:34 
2006
@@ -27,8 +27,8 @@
   item name=Examples  
href=http://svn.apache.org/repos/asf/jakarta/commons/proper/jexl/trunk/examples//
   item name=Releases and Builds   href=/releases.html/
   item name=Jar Downloads href=/downloads.html/
-  item name=Reference href=/reference/index.html
-  /item  
+  item name=Reference href=/reference/index.html/
+  item name=Building  href=/building.html/
   item name=JEXL Wiki 
href=http://wiki.apache.org/jakarta-commons/JEXL/
 /menu
 bottom-menus;



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



Re: svn commit: r381471 - in /jakarta/commons/proper/jexl/trunk/xdocs: building.xml navigation.xml

2006-02-27 Thread Dion Gillard
Rahul,

can you get the site to build for JEXL?

On 2/28/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 Author: rahul
 Date: Mon Feb 27 14:35:34 2006
 New Revision: 381471

 URL: http://svn.apache.org/viewcvs?rev=381471view=rev
 Log:
 Add a section on building JEXL, wire it to the navbar.


 Added:
 jakarta/commons/proper/jexl/trunk/xdocs/building.xml   (with props)
 Modified:
 jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml

 Added: jakarta/commons/proper/jexl/trunk/xdocs/building.xml
 URL: 
 http://svn.apache.org/viewcvs/jakarta/commons/proper/jexl/trunk/xdocs/building.xml?rev=381471view=auto
 ==
 --- jakarta/commons/proper/jexl/trunk/xdocs/building.xml (added)
 +++ jakarta/commons/proper/jexl/trunk/xdocs/building.xml Mon Feb 27 14:35:34 
 2006
 @@ -0,0 +1,61 @@
 +?xml version=1.0?
 +!--
 +Copyright 2006 The Apache Software Foundation.
 +
 +Licensed under the Apache License, Version 2.0 (the License);
 +you may not use this file except in compliance with the License.
 +You may obtain a copy of the License at
 +
 + http://www.apache.org/licenses/LICENSE-2.0
 +
 +Unless required by applicable law or agreed to in writing, software
 +distributed under the License is distributed on an AS IS BASIS,
 +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 +See the License for the specific language governing permissions and
 +limitations under the License.
 +--
 +document
 + properties
 +  titleBuilding Commons JEXL/title
 +  author email=commons-dev@jakarta.apache.orgCommons Documentation 
 Team/author
 + /properties
 +body
 +!-- == --
 +section name=Overview
 +p
 +  Commons JEXL uses a href=http://maven.apache.org;Maven/a or
 +  a href=http://ant.apache.org;Ant/a as a build system. The source is
 +  a 
 href=http://svn.apache.org/repos/asf/jakarta/commons/proper/jexl/trunk/;here/a.
 +/p
 +/section
 +!-- == --
 +section name=Maven Goals
 +  p
 +To build a jar file, change into JEXL's root directory (see source link 
 above)
 +and run maven jar. The result will be in the target subdirectory.
 +  /p
 +  p
 +To build the Javadocs, run maven javadoc.
 +The result will be in target/docs/apidocs.
 +  /p
 +  p
 +To build the full website, run maven site. You will need to fetch the
 +a 
 href=http://svn.apache.org/repos/asf/jakarta/commons/proper/commons-build/trunk/;commons-build/a
 +directory to build the full website, and place it as a sibling directory 
 of the
 +JEXL root directory. The result will be in target/docs.
 +  /p
 +/section
 +!-- == --
 +section name=Ant Goals
 +  p
 +To build a jar file, change into JEXL's root directory and run ant jar.
 +The result will be in the target subdirectory.
 +  /p
 +  p
 +To build the Javadocs, run ant javadoc.
 +The result will be in dist/docs.
 +  /p
 +/section
 +!-- == --
 +/body
 +/document

 Propchange: jakarta/commons/proper/jexl/trunk/xdocs/building.xml
 --
 svn:eol-style = native

 Propchange: jakarta/commons/proper/jexl/trunk/xdocs/building.xml
 --
 svn:keywords = Date Author Id Revision HeadURL

 Modified: jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml
 URL: 
 http://svn.apache.org/viewcvs/jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml?rev=381471r1=381470r2=381471view=diff
 ==
 --- jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml (original)
 +++ jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml Mon Feb 27 
 14:35:34 2006
 @@ -27,8 +27,8 @@
item name=Examples  
 href=http://svn.apache.org/repos/asf/jakarta/commons/proper/jexl/trunk/examples//
item name=Releases and Builds   href=/releases.html/
item name=Jar Downloads href=/downloads.html/
 -  item name=Reference 
 href=/reference/index.html
 -  /item
 +  item name=Reference 
 href=/reference/index.html/
 +  item name=Building  href=/building.html/
item name=JEXL Wiki 
 href=http://wiki.apache.org/jakarta-commons/JEXL/
  /menu
  bottom-menus;



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




--
http://www.multitask.com.au/people/dion/
Chuck Norris sleeps with a night light. Not because Chuck Norris is
afraid of the dark, but because the dark is afraid of Chuck Norris


svn commit: r381472 - /jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml

2006-02-27 Thread rahul
Author: rahul
Date: Mon Feb 27 14:44:16 2006
New Revision: 381472

URL: http://svn.apache.org/viewcvs?rev=381472view=rev
Log:
There probably is a good reason why we don't use a space here, but spaces work 
just fine for me when I build. Ofcourse, we can revert if someone points out 
the reason ;-)

In addition, remove tab characters.


Modified:
jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml

Modified: jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml?rev=381472r1=381471r2=381472view=diff
==
--- jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml (original)
+++ jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml Mon Feb 27 14:44:16 
2006
@@ -20,10 +20,10 @@
 project name=Commons JEXL
   titleCommons JEXL/title
   body
-   top-menus;
-menu name=Commons#xA0;Jexl
+top-menus;
+menu name=Commons Jexl
   item name=Overview  href=/index.html /
-  item name=API#xA0;Documentationhref=/apidocs/index.html/
+  item name=API Documentation href=/apidocs/index.html/
   item name=Examples  
href=http://svn.apache.org/repos/asf/jakarta/commons/proper/jexl/trunk/examples//
   item name=Releases and Builds   href=/releases.html/
   item name=Jar Downloads href=/downloads.html/
@@ -36,4 +36,3 @@
 /project
 
 
-   



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



[jira] Commented: (JELLY-194) New tag that copy text files replacing Jelly properties

2006-02-27 Thread Felipe Leme (JIRA)
[ 
http://issues.apache.org/jira/browse/JELLY-194?page=comments#action_12368040 ] 

Felipe Leme commented on JELLY-194:
---

Any clue when/if these issues (JELLY-194, JELLY-203, JELLY-204 and JELLY-205) 
will make it to the codebase? 

In particular, I think this feature is very useful - everytime I start a 
project in a new company, I need to create a small project only to provide such 
tag...

 

 New tag that copy text files replacing Jelly properties
 ---

  Key: JELLY-194
  URL: http://issues.apache.org/jira/browse/JELLY-194
  Project: jelly
 Type: New Feature
   Components: taglib.util
 Versions: 1.0
 Reporter: Felipe Leme
  Attachments: JELLY-194.patch1, JELLY-194.patch2

 Hi,
 It would be nice if there was a Jelly tag similar to ant:copy that would 
 copy text files replacing the Jelly properties.
 For instance, I need to copy a datasource XML definition to JBoss before 
 running Cactus (on maven), but each developer in my project has its own 
 database schema. So, I could have a XML file like this:
  
 datasource
   username${ds.username}/username
   password${ds.password}/password
 /datasource
 And then something like this on maven.xml:
 preGoal name=cactus:test
util:copyAndReplace file=datasource.xml 
  toFile=${env.JBOSS_HOME}/server/default/deploy/ 
 /preGoal
 If you think such tag is useful (and hence would be incorporated on Jelly), I 
 could write the tag and test cases and then submit a patch (I'm just not sure 
 what's the best name for it).
 -- Felipe

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



Re: svn commit: r381471 - in /jakarta/commons/proper/jexl/trunk/xdocs: building.xml navigation.xml

2006-02-27 Thread Rahul Akolkar
On 2/27/06, Dion Gillard [EMAIL PROTECTED] wrote:
 Rahul,

 can you get the site to build for JEXL?

snip/

Yes, planning to update the site in a few -- we have a bunch of
changes (thanks to your recent efforts) so the site will be better
served with a refresh -- that'll also fix some broken links. I will
move the 1.0 Javadocs before republishing so we have both (1.0 and
1.0.1-SNAPSHOT) available via the website.

Sorry, saw your other thread, but I'm sure why its failing for you.

-Rahul

 On 2/28/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
  Author: rahul
  Date: Mon Feb 27 14:35:34 2006
  New Revision: 381471
 
snap/

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



Re: svn commit: r381471 - in /jakarta/commons/proper/jexl/trunk/xdocs: building.xml navigation.xml

2006-02-27 Thread Dion Gillard
Thanks for this!

I've been hoping/trying to get a site refresh out for JEXL for the
last couple of days, but can't get it to work. It's tempting just to
remove the commons-build links and hard code them in.

On 2/28/06, Rahul Akolkar [EMAIL PROTECTED] wrote:
 On 2/27/06, Dion Gillard [EMAIL PROTECTED] wrote:
  Rahul,
 
  can you get the site to build for JEXL?
 
 snip/

 Yes, planning to update the site in a few -- we have a bunch of
 changes (thanks to your recent efforts) so the site will be better
 served with a refresh -- that'll also fix some broken links. I will
 move the 1.0 Javadocs before republishing so we have both (1.0 and
 1.0.1-SNAPSHOT) available via the website.

 Sorry, saw your other thread, but I'm sure why its failing for you.

 -Rahul

  On 2/28/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
   Author: rahul
   Date: Mon Feb 27 14:35:34 2006
   New Revision: 381471
  
 snap/

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




--
http://www.multitask.com.au/people/dion/
Chuck Norris sleeps with a night light. Not because Chuck Norris is
afraid of the dark, but because the dark is afraid of Chuck Norris

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



Re: svn commit: r381472 - /jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml

2006-02-27 Thread Dion Gillard
The idea was that #A0 is a non-breaking space, e.g. API
Documentation shouldn't be split across two lines.

On 2/28/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 Author: rahul
 Date: Mon Feb 27 14:44:16 2006
 New Revision: 381472

 URL: http://svn.apache.org/viewcvs?rev=381472view=rev
 Log:
 There probably is a good reason why we don't use a space here, but spaces 
 work just fine for me when I build. Ofcourse, we can revert if someone points 
 out the reason ;-)

 In addition, remove tab characters.


 Modified:
 jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml

 Modified: jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml
 URL: 
 http://svn.apache.org/viewcvs/jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml?rev=381472r1=381471r2=381472view=diff
 ==
 --- jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml (original)
 +++ jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml Mon Feb 27 
 14:44:16 2006
 @@ -20,10 +20,10 @@
  project name=Commons JEXL
titleCommons JEXL/title
body
 -   top-menus;
 -menu name=Commons#xA0;Jexl
 +top-menus;
 +menu name=Commons Jexl
item name=Overview  href=/index.html /
 -  item name=API#xA0;Documentationhref=/apidocs/index.html/
 +  item name=API Documentation href=/apidocs/index.html/
item name=Examples  
 href=http://svn.apache.org/repos/asf/jakarta/commons/proper/jexl/trunk/examples//
item name=Releases and Builds   href=/releases.html/
item name=Jar Downloads href=/downloads.html/
 @@ -36,4 +36,3 @@
  /project


 -



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




--
http://www.multitask.com.au/people/dion/
Chuck Norris sleeps with a night light. Not because Chuck Norris is
afraid of the dark, but because the dark is afraid of Chuck Norris

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



svn commit: r381474 - /jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/BlockTest.java

2006-02-27 Thread rahul
Author: rahul
Date: Mon Feb 27 14:53:08 2006
New Revision: 381474

URL: http://svn.apache.org/viewcvs?rev=381474view=rev
Log:
More block tests that:
1) Ensure value is the last *executed* statement
2) Flesh out the relationship between an expression and a block (will post on 
this in a bit)

Modified:

jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/BlockTest.java

Modified: 
jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/BlockTest.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/BlockTest.java?rev=381474r1=381473r2=381474view=diff
==
--- 
jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/BlockTest.java
 (original)
+++ 
jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/BlockTest.java
 Mon Feb 27 14:53:08 2006
@@ -53,4 +53,48 @@
 Object o = e.evaluate(jc);
 assertNull(Result is wrong, o);
 }
+
+public void testBlockLastExecuted01() throws Exception {
+Expression e = ExpressionFactory
+.createExpression(if (true) { x = 1; } else { x = 2; });
+JexlContext jc = JexlHelper.createContext();
+Object o = e.evaluate(jc);
+assertEquals(Block result is wrong, new Integer(1), o);
+}
+
+public void testBlockLastExecuted02() throws Exception {
+Expression e = ExpressionFactory
+.createExpression(if (false) { x = 1; } else { x = 2; });
+JexlContext jc = JexlHelper.createContext();
+Object o = e.evaluate(jc);
+assertEquals(Block result is wrong, new Integer(2), o);
+}
+
+public void testNestedBlock() throws Exception {
+Expression e = ExpressionFactory
+.createExpression(if (true) { x = 'hello'; y = 'world';
++  if (true) { x; } y; });
+JexlContext jc = JexlHelper.createContext();
+Object o = e.evaluate(jc);
+assertEquals(Block result is wrong, world, o);
+}
+
+/* Need to flesh out block - expression relationship?
+public void testBlockPlusStatements() throws Exception {
+Expression e = ExpressionFactory
+.createExpression(if (true) { x = 1; } y = 2; );
+JexlContext jc = JexlHelper.createContext();
+Object o = e.evaluate(jc);
+assertEquals(Block result is wrong, new Integer(2), o);
+}
+
+public void testMultipleBlocks() throws Exception {
+Expression e = ExpressionFactory
+.createExpression(if (true) { x = 1; } if (true) { y = 2;});
+JexlContext jc = JexlHelper.createContext();
+Object o = e.evaluate(jc);
+assertEquals(Block result is wrong, new Integer(2), o);
+}
+*/
+
 }



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



Re: [all] building the site?

2006-02-27 Thread Phil Steitz
Brett or someone more knowledgeable can explain in detail why, but you
need to either use maven 1.0.2 or get a more tolerant parser to be
loaded.

Phil

On 2/27/06, Dion Gillard [EMAIL PROTECTED] wrote:
 Ok, that's what I had, but I still get the following error:

 BUILD FAILED
 File.. C:\Documents and Settings\Dion
 Gillard\.maven\cache\maven-xdoc-plugin-1.9.2\plugin.jelly
 Element... x:parse
 Line.. 471
 Column -1
 Error on line 18 of document  : Relative URI
 ../../commons-build/menus/menus.dtd; can not be resolved without a
 base U
 RI. Nested exception: Relative URI
 ../../commons-build/menus/menus.dtd; can not be resolved without a
 base URI.
 Total time   : 2 minutes 18 seconds
 Finished at  : Tuesday, 28 February 2006 9:22:43

 Any ideas?

 On 2/27/06, Dennis Lundberg [EMAIL PROTECTED] wrote:
  Dion Gillard wrote:
   I've tried to build the site for JEXL, but obviously have the
   commons-build directory checked out in the wrong location.
  
   Is it documented anywhere what the directory structure must be?
 
  You can find it here:
  http://jakarta.apache.org/commons/building.html#Checking%20out%20the%20commons%20sources
 
 
  --
  Dennis Lundberg
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 


 --
 http://www.multitask.com.au/people/dion/
 Chuck Norris sleeps with a night light. Not because Chuck Norris is
 afraid of the dark, but because the dark is afraid of Chuck Norris

 -
 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]



Re: svn commit: r381472 - /jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml

2006-02-27 Thread Rahul Akolkar
On 2/27/06, Dion Gillard [EMAIL PROTECTED] wrote:
 The idea was that #A0 is a non-breaking space, e.g. API
 Documentation shouldn't be split across two lines.

snip/

Thanks, I'll revert ;-)

Can we rename API documentation to Javadoc? I prefer the latter,
but I have no strong opinion. Otherwise, we'll have 1.0 API
documentation and Latest API documentation -- seems a tad long for
the navbar?

-Rahul


 On 2/28/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
  Author: rahul
  Date: Mon Feb 27 14:44:16 2006
  New Revision: 381472
 
  URL: http://svn.apache.org/viewcvs?rev=381472view=rev
  Log:
  There probably is a good reason why we don't use a space here, but spaces 
  work just fine for me when I build. Ofcourse, we can revert if someone 
  points out the reason ;-)
 
  In addition, remove tab characters.
 
snap/

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



Re: [logging] JCL2.0 design - Architecture

2006-02-27 Thread Torsten Curdt

For an application, whichever logging lib you want to bundle with the
app.

For a library, any one of them will do. The commons-logging- 
noop.jar is
the simplest one so probably the most convenient. A user of the  
library

can then substitute any other jar they want instead.

Does that work for you?


Yepp ...sounds fine

cheers
--
Torsten



smime.p7s
Description: S/MIME cryptographic signature


Re: svn commit: r381472 - /jakarta/commons/proper/jexl/trunk/xdocs/navigation.xml

2006-02-27 Thread Dion Gillard
+1 on Javadoc

On 2/28/06, Rahul Akolkar [EMAIL PROTECTED] wrote:
 On 2/27/06, Dion Gillard [EMAIL PROTECTED] wrote:
  The idea was that #A0 is a non-breaking space, e.g. API
  Documentation shouldn't be split across two lines.
 
 snip/

 Thanks, I'll revert ;-)

 Can we rename API documentation to Javadoc? I prefer the latter,
 but I have no strong opinion. Otherwise, we'll have 1.0 API
 documentation and Latest API documentation -- seems a tad long for
 the navbar?

 -Rahul


  On 2/28/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
   Author: rahul
   Date: Mon Feb 27 14:44:16 2006
   New Revision: 381472
  
   URL: http://svn.apache.org/viewcvs?rev=381472view=rev
   Log:
   There probably is a good reason why we don't use a space here, but spaces 
   work just fine for me when I build. Ofcourse, we can revert if someone 
   points out the reason ;-)
  
   In addition, remove tab characters.
  
 snap/

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




--
http://www.multitask.com.au/people/dion/
Chuck Norris sleeps with a night light. Not because Chuck Norris is
afraid of the dark, but because the dark is afraid of Chuck Norris

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



Re: [all] building the site?

2006-02-27 Thread Dion Gillard
Maven 1.0.2 fails for a different reason:

xdoc:jelly-transform:
[echo] Generating
C:/source/jakarta/jakarta-commons/jexl/target/docs/changelog-report.html
from C:\source\jakarta\ja
karta-commons\jexl\target\generated-xdocs\changelog-report.xml
Could not find the class: org.apache.commons.jelly.tags.fmt.FmtTagLibrary
java.lang.ClassNotFoundException:
org.apache.commons.jelly.tags.fmt.FmtTagLibrary
at java.net.URLClassLoader$1.run(URLClassLoader.java:199)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:187)

Which seems that commons-site.jsl requires the jelly fmt taglib which
isn't installed in maven102's lib directory by default.

On 2/28/06, Phil Steitz [EMAIL PROTECTED] wrote:
 Brett or someone more knowledgeable can explain in detail why, but you
 need to either use maven 1.0.2 or get a more tolerant parser to be
 loaded.

 Phil

 On 2/27/06, Dion Gillard [EMAIL PROTECTED] wrote:
  Ok, that's what I had, but I still get the following error:
 
  BUILD FAILED
  File.. C:\Documents and Settings\Dion
  Gillard\.maven\cache\maven-xdoc-plugin-1.9.2\plugin.jelly
  Element... x:parse
  Line.. 471
  Column -1
  Error on line 18 of document  : Relative URI
  ../../commons-build/menus/menus.dtd; can not be resolved without a
  base U
  RI. Nested exception: Relative URI
  ../../commons-build/menus/menus.dtd; can not be resolved without a
  base URI.
  Total time   : 2 minutes 18 seconds
  Finished at  : Tuesday, 28 February 2006 9:22:43
 
  Any ideas?
 
  On 2/27/06, Dennis Lundberg [EMAIL PROTECTED] wrote:
   Dion Gillard wrote:
I've tried to build the site for JEXL, but obviously have the
commons-build directory checked out in the wrong location.
   
Is it documented anywhere what the directory structure must be?
  
   You can find it here:
   http://jakarta.apache.org/commons/building.html#Checking%20out%20the%20commons%20sources
  
  
   --
   Dennis Lundberg
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
  --
  http://www.multitask.com.au/people/dion/
  Chuck Norris sleeps with a night light. Not because Chuck Norris is
  afraid of the dark, but because the dark is afraid of Chuck Norris
 
  -
  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]




--
http://www.multitask.com.au/people/dion/
Chuck Norris sleeps with a night light. Not because Chuck Norris is
afraid of the dark, but because the dark is afraid of Chuck Norris

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



Re: [all] building the site?

2006-02-27 Thread Dion Gillard
Ok, so should I use 1.0.2 or 1.1 with commons-site?

On 2/28/06, Arnaud HERITIER [EMAIL PROTECTED] wrote:
 Dion,

   I think that you need to upgrade the xdoc plugin. The one bundled in maven
 1.0.2 is too old. I'm trying to have maven 1.1 fully compatible with commons
 site

   Arnaud

 On 2/28/06, Dion Gillard [EMAIL PROTECTED] wrote:
 
  Maven 1.0.2 fails for a different reason:
 
  xdoc:jelly-transform:
  [echo] Generating
  C:/source/jakarta/jakarta-commons/jexl/target/docs/changelog-report.html
  from C:\source\jakarta\ja
  karta-commons\jexl\target\generated-xdocs\changelog-report.xml
  Could not find the class: org.apache.commons.jelly.tags.fmt.FmtTagLibrary
  java.lang.ClassNotFoundException:
  org.apache.commons.jelly.tags.fmt.FmtTagLibrary
  at java.net.URLClassLoader$1.run(URLClassLoader.java:199)
  at java.security.AccessController.doPrivileged(Native Method)
  at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
 
  Which seems that commons-site.jsl requires the jelly fmt taglib which
  isn't installed in maven102's lib directory by default.
 
  On 2/28/06, Phil Steitz [EMAIL PROTECTED] wrote:
   Brett or someone more knowledgeable can explain in detail why, but you
   need to either use maven 1.0.2 or get a more tolerant parser to be
   loaded.
  
   Phil
  
   On 2/27/06, Dion Gillard [EMAIL PROTECTED] wrote:
Ok, that's what I had, but I still get the following error:
   
BUILD FAILED
File.. C:\Documents and Settings\Dion
Gillard\.maven\cache\maven-xdoc-plugin-1.9.2\plugin.jelly
Element... x:parse
Line.. 471
Column -1
Error on line 18 of document  : Relative URI
../../commons-build/menus/menus.dtd; can not be resolved without a
base U
RI. Nested exception: Relative URI
../../commons-build/menus/menus.dtd; can not be resolved without a
base URI.
Total time   : 2 minutes 18 seconds
Finished at  : Tuesday, 28 February 2006 9:22:43
   
Any ideas?
   
On 2/27/06, Dennis Lundberg [EMAIL PROTECTED] wrote:
 Dion Gillard wrote:
  I've tried to build the site for JEXL, but obviously have the
  commons-build directory checked out in the wrong location.
 
  Is it documented anywhere what the directory structure must be?

 You can find it here:

  http://jakarta.apache.org/commons/building.html#Checking%20out%20the%20commons%20sources


 --
 Dennis Lundberg


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


   
   
--
http://www.multitask.com.au/people/dion/
Chuck Norris sleeps with a night light. Not because Chuck Norris is
afraid of the dark, but because the dark is afraid of Chuck Norris
   
-
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]
  
  
 
 
  --
  http://www.multitask.com.au/people/dion/
  Chuck Norris sleeps with a night light. Not because Chuck Norris is
  afraid of the dark, but because the dark is afraid of Chuck Norris
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 




--
http://www.multitask.com.au/people/dion/
Chuck Norris sleeps with a night light. Not because Chuck Norris is
afraid of the dark, but because the dark is afraid of Chuck Norris

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



Re: [all] building the site?

2006-02-27 Thread Dion Gillard
Arnaud,

if it's a custom xdoc plugin on top of 1.0.2 - which version should I use?

On 2/28/06, Arnaud HERITIER [EMAIL PROTECTED] wrote:
 Dion,

   I think that you need to upgrade the xdoc plugin. The one bundled in maven
 1.0.2 is too old. I'm trying to have maven 1.1 fully compatible with commons
 site

   Arnaud

 On 2/28/06, Dion Gillard [EMAIL PROTECTED] wrote:
 
  Maven 1.0.2 fails for a different reason:
 
  xdoc:jelly-transform:
  [echo] Generating
  C:/source/jakarta/jakarta-commons/jexl/target/docs/changelog-report.html
  from C:\source\jakarta\ja
  karta-commons\jexl\target\generated-xdocs\changelog-report.xml
  Could not find the class: org.apache.commons.jelly.tags.fmt.FmtTagLibrary
  java.lang.ClassNotFoundException:
  org.apache.commons.jelly.tags.fmt.FmtTagLibrary
  at java.net.URLClassLoader$1.run(URLClassLoader.java:199)
  at java.security.AccessController.doPrivileged(Native Method)
  at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
 
  Which seems that commons-site.jsl requires the jelly fmt taglib which
  isn't installed in maven102's lib directory by default.
 
  On 2/28/06, Phil Steitz [EMAIL PROTECTED] wrote:
   Brett or someone more knowledgeable can explain in detail why, but you
   need to either use maven 1.0.2 or get a more tolerant parser to be
   loaded.
  
   Phil
  
   On 2/27/06, Dion Gillard [EMAIL PROTECTED] wrote:
Ok, that's what I had, but I still get the following error:
   
BUILD FAILED
File.. C:\Documents and Settings\Dion
Gillard\.maven\cache\maven-xdoc-plugin-1.9.2\plugin.jelly
Element... x:parse
Line.. 471
Column -1
Error on line 18 of document  : Relative URI
../../commons-build/menus/menus.dtd; can not be resolved without a
base U
RI. Nested exception: Relative URI
../../commons-build/menus/menus.dtd; can not be resolved without a
base URI.
Total time   : 2 minutes 18 seconds
Finished at  : Tuesday, 28 February 2006 9:22:43
   
Any ideas?
   
On 2/27/06, Dennis Lundberg [EMAIL PROTECTED] wrote:
 Dion Gillard wrote:
  I've tried to build the site for JEXL, but obviously have the
  commons-build directory checked out in the wrong location.
 
  Is it documented anywhere what the directory structure must be?

 You can find it here:

  http://jakarta.apache.org/commons/building.html#Checking%20out%20the%20commons%20sources


 --
 Dennis Lundberg


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


   
   
--
http://www.multitask.com.au/people/dion/
Chuck Norris sleeps with a night light. Not because Chuck Norris is
afraid of the dark, but because the dark is afraid of Chuck Norris
   
-
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]
  
  
 
 
  --
  http://www.multitask.com.au/people/dion/
  Chuck Norris sleeps with a night light. Not because Chuck Norris is
  afraid of the dark, but because the dark is afraid of Chuck Norris
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 




--
http://www.multitask.com.au/people/dion/
Chuck Norris sleeps with a night light. Not because Chuck Norris is
afraid of the dark, but because the dark is afraid of Chuck Norris

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



[JEXL] Site

2006-02-27 Thread Rahul Akolkar
I've refreshed the JEXL site [1]. The site was built with JDK1.4, but
that shouldn't be a concern.

I'll try to look at the Javadoc warnings [2],[3] probably over the next weekend.

If you notice any site regressions, ping this thread.

-Rahul

[1] http://jakarta.apache.org/commons/jexl/
[2] http://jakarta.apache.org/commons/jexl/javadoc.html
[3] http://jakarta.apache.org/commons/jexl/javadoc-warnings-report.html

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



Re: [all] building the site?

2006-02-27 Thread Arnaud HERITIER
I hink that you need :
maven 1.0.2 + xdoc 1.9.2

Arnaud

On 2/28/06, Dion Gillard [EMAIL PROTECTED] wrote:

 Arnaud,

 if it's a custom xdoc plugin on top of 1.0.2 - which version should I use?

 On 2/28/06, Arnaud HERITIER [EMAIL PROTECTED] wrote:
  Dion,
 
I think that you need to upgrade the xdoc plugin. The one bundled in
 maven
  1.0.2 is too old. I'm trying to have maven 1.1 fully compatible with
 commons
  site
 
Arnaud
 
  On 2/28/06, Dion Gillard [EMAIL PROTECTED] wrote:
  
   Maven 1.0.2 fails for a different reason:
  
   xdoc:jelly-transform:
   [echo] Generating
   C:/source/jakarta/jakarta-commons/jexl/target/docs/changelog-
 report.html
   from C:\source\jakarta\ja
   karta-commons\jexl\target\generated-xdocs\changelog-report.xml
   Could not find the class:
 org.apache.commons.jelly.tags.fmt.FmtTagLibrary
   java.lang.ClassNotFoundException:
   org.apache.commons.jelly.tags.fmt.FmtTagLibrary
   at java.net.URLClassLoader$1.run(URLClassLoader.java:199)
   at java.security.AccessController.doPrivileged(Native Method)
   at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
  
   Which seems that commons-site.jsl requires the jelly fmt taglib which
   isn't installed in maven102's lib directory by default.
  
   On 2/28/06, Phil Steitz [EMAIL PROTECTED] wrote:
Brett or someone more knowledgeable can explain in detail why, but
 you
need to either use maven 1.0.2 or get a more tolerant parser to be
loaded.
   
Phil
   
On 2/27/06, Dion Gillard [EMAIL PROTECTED] wrote:
 Ok, that's what I had, but I still get the following error:

 BUILD FAILED
 File.. C:\Documents and Settings\Dion
 Gillard\.maven\cache\maven-xdoc-plugin-1.9.2\plugin.jelly
 Element... x:parse
 Line.. 471
 Column -1
 Error on line 18 of document  : Relative URI
 ../../commons-build/menus/menus.dtd; can not be resolved without
 a
 base U
 RI. Nested exception: Relative URI
 ../../commons-build/menus/menus.dtd; can not be resolved without
 a
 base URI.
 Total time   : 2 minutes 18 seconds
 Finished at  : Tuesday, 28 February 2006 9:22:43

 Any ideas?

 On 2/27/06, Dennis Lundberg [EMAIL PROTECTED] wrote:
  Dion Gillard wrote:
   I've tried to build the site for JEXL, but obviously have the
   commons-build directory checked out in the wrong location.
  
   Is it documented anywhere what the directory structure must
 be?
 
  You can find it here:
 
  
 http://jakarta.apache.org/commons/building.html#Checking%20out%20the%20commons%20sources
 
 
  --
  Dennis Lundberg
 
 
   -
  To unsubscribe, e-mail:
 [EMAIL PROTECTED]
  For additional commands, e-mail:
 [EMAIL PROTECTED]
 
 


 --
 http://www.multitask.com.au/people/dion/
 Chuck Norris sleeps with a night light. Not because Chuck Norris
 is
 afraid of the dark, but because the dark is afraid of Chuck Norris


 -
 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]
   
   
  
  
   --
   http://www.multitask.com.au/people/dion/
   Chuck Norris sleeps with a night light. Not because Chuck Norris is
   afraid of the dark, but because the dark is afraid of Chuck Norris
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 


 --
 http://www.multitask.com.au/people/dion/
 Chuck Norris sleeps with a night light. Not because Chuck Norris is
 afraid of the dark, but because the dark is afraid of Chuck Norris

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




svn commit: r381502 - /jakarta/commons/proper/jexl/trunk/xdocs/building.xml

2006-02-27 Thread dion
Author: dion
Date: Mon Feb 27 16:03:34 2006
New Revision: 381502

URL: http://svn.apache.org/viewcvs?rev=381502view=rev
Log:
Add details on maven-xdoc-plugin needed

Modified:
jakarta/commons/proper/jexl/trunk/xdocs/building.xml

Modified: jakarta/commons/proper/jexl/trunk/xdocs/building.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/jexl/trunk/xdocs/building.xml?rev=381502r1=381501r2=381502view=diff
==
--- jakarta/commons/proper/jexl/trunk/xdocs/building.xml (original)
+++ jakarta/commons/proper/jexl/trunk/xdocs/building.xml Mon Feb 27 16:03:34 
2006
@@ -44,6 +44,9 @@
 directory to build the full website, and place it as a sibling directory 
of the
 JEXL root directory. The result will be in target/docs.
   /p
+  p
+To build the site, you need Maven 1.0.2 and version 1.9.2 of the 
maven-xdoc-plugin installed.
+  /p
 /section
 !-- == --
 section name=Ant Goals



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



Re: [all] building the site?

2006-02-27 Thread Dion Gillard
Verified.

I updated JEXL's documentation so that this doesn't get lost for at least
this project.

On 2/28/06, Arnaud HERITIER [EMAIL PROTECTED] wrote:

 I hink that you need :
 maven 1.0.2 + xdoc 1.9.2

 Arnaud

 On 2/28/06, Dion Gillard [EMAIL PROTECTED] wrote:
 
  Arnaud,
 
  if it's a custom xdoc plugin on top of 1.0.2 - which version should I
 use?
 
  On 2/28/06, Arnaud HERITIER [EMAIL PROTECTED] wrote:
   Dion,
  
 I think that you need to upgrade the xdoc plugin. The one bundled in
  maven
   1.0.2 is too old. I'm trying to have maven 1.1 fully compatible with
  commons
   site
  
 Arnaud
  
   On 2/28/06, Dion Gillard [EMAIL PROTECTED] wrote:
   
Maven 1.0.2 fails for a different reason:
   
xdoc:jelly-transform:
[echo] Generating
C:/source/jakarta/jakarta-commons/jexl/target/docs/changelog-
  report.html
from C:\source\jakarta\ja
karta-commons\jexl\target\generated-xdocs\changelog-report.xml
Could not find the class:
  org.apache.commons.jelly.tags.fmt.FmtTagLibrary
java.lang.ClassNotFoundException:
org.apache.commons.jelly.tags.fmt.FmtTagLibrary
at java.net.URLClassLoader$1.run(URLClassLoader.java:199)
at java.security.AccessController.doPrivileged(Native
 Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java
 :187)
   
Which seems that commons-site.jsl requires the jelly fmt taglib
 which
isn't installed in maven102's lib directory by default.
   
On 2/28/06, Phil Steitz [EMAIL PROTECTED] wrote:
 Brett or someone more knowledgeable can explain in detail why, but
  you
 need to either use maven 1.0.2 or get a more tolerant parser to be
 loaded.

 Phil

 On 2/27/06, Dion Gillard [EMAIL PROTECTED] wrote:
  Ok, that's what I had, but I still get the following error:
 
  BUILD FAILED
  File.. C:\Documents and Settings\Dion
  Gillard\.maven\cache\maven-xdoc-plugin-1.9.2\plugin.jelly
  Element... x:parse
  Line.. 471
  Column -1
  Error on line 18 of document  : Relative URI
  ../../commons-build/menus/menus.dtd; can not be resolved
 without
  a
  base U
  RI. Nested exception: Relative URI
  ../../commons-build/menus/menus.dtd; can not be resolved
 without
  a
  base URI.
  Total time   : 2 minutes 18 seconds
  Finished at  : Tuesday, 28 February 2006 9:22:43
 
  Any ideas?
 
  On 2/27/06, Dennis Lundberg [EMAIL PROTECTED] wrote:
   Dion Gillard wrote:
I've tried to build the site for JEXL, but obviously have
 the
commons-build directory checked out in the wrong location.
   
Is it documented anywhere what the directory structure must
  be?
  
   You can find it here:
  
   
 
 http://jakarta.apache.org/commons/building.html#Checking%20out%20the%20commons%20sources
  
  
   --
   Dennis Lundberg
  
  
   
 -
   To unsubscribe, e-mail:
  [EMAIL PROTECTED]
   For additional commands, e-mail:
  [EMAIL PROTECTED]
  
  
 
 
  --
  http://www.multitask.com.au/people/dion/
  Chuck Norris sleeps with a night light. Not because Chuck Norris
  is
  afraid of the dark, but because the dark is afraid of Chuck
 Norris
 
 
  -
  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]


   
   
--
http://www.multitask.com.au/people/dion/
Chuck Norris sleeps with a night light. Not because Chuck Norris is
afraid of the dark, but because the dark is afraid of Chuck Norris
   
   
 -
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
   
   
  
  
 
 
  --
  http://www.multitask.com.au/people/dion/
  Chuck Norris sleeps with a night light. Not because Chuck Norris is
  afraid of the dark, but because the dark is afraid of Chuck Norris
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 




--
http://www.multitask.com.au/people/dion/
Chuck Norris sleeps with a night light. Not because Chuck Norris is afraid
of the dark, but because the dark is afraid of Chuck Norris


Re: [JEXL] Site

2006-02-27 Thread Dion Gillard
Thanks Rahul.

Do you want me to start some documentation on the new features in 1.0.1?

And since there are new features, should we call this release 1.1?

On 2/28/06, Rahul Akolkar [EMAIL PROTECTED] wrote:

 I've refreshed the JEXL site [1]. The site was built with JDK1.4, but
 that shouldn't be a concern.

 I'll try to look at the Javadoc warnings [2],[3] probably over the next
 weekend.

 If you notice any site regressions, ping this thread.

 -Rahul

 [1] http://jakarta.apache.org/commons/jexl/
 [2] http://jakarta.apache.org/commons/jexl/javadoc.html
 [3] http://jakarta.apache.org/commons/jexl/javadoc-warnings-report.html

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




--
http://www.multitask.com.au/people/dion/
Chuck Norris sleeps with a night light. Not because Chuck Norris is afraid
of the dark, but because the dark is afraid of Chuck Norris


[JEXL] Blocks and an Expression

2006-02-27 Thread Rahul Akolkar
Thanks for the recent changes Dion. The bit that is hazy (for me) is
the relationship between an Expression and a block in the current
impl. As demonstrated by the two failing test cases at the end of
BlockTest.java (and therefore, commented out) I think we may need to
flesh out the semantics of value on Expression evaluation becomes
block value, especially when the Expression can contain multiple
blocks or a mix of blocks and statements.

I hope to look at the code soon as well ;-) but didn't want to lose
track of this initial thought while looking at the svn commits fly by.

-Rahul

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



DO NOT REPLY [Bug 38569] - [lang] StringEscapeUtils.unescapeHtml skips first entity after standalone ampersand

2006-02-27 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=38569.
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=38569


[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]




-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



Re: [JEXL] Blocks and an Expression

2006-02-27 Thread Dion Gillard
On 2/28/06, Rahul Akolkar [EMAIL PROTECTED] wrote:

 Thanks for the recent changes Dion. The bit that is hazy (for me) is
 the relationship between an Expression and a block in the current
 impl. As demonstrated by the two failing test cases at the end of
 BlockTest.java (and therefore, commented out) I think we may need to
 flesh out the semantics of value on Expression evaluation becomes
 block value, especially when the Expression can contain multiple
 blocks or a mix of blocks and statements.

 I hope to look at the code soon as well ;-) but didn't want to lose
 track of this initial thought while looking at the svn commits fly by.


Hmm.. This seems to be the same as multiple expression evaluations, e.g. if
you evaluate:

 x = 1; y = 2;

what do you expect? (me, I expect 2!). Blocks shouldn't change the
semantics.

is that your understanding too?

I can look at the failing/commented tests and check out what's happening if
you like.

--
http://www.multitask.com.au/people/dion/
Chuck Norris sleeps with a night light. Not because Chuck Norris is afraid
of the dark, but because the dark is afraid of Chuck Norris


Re: [JEXL] Site

2006-02-27 Thread Rahul Akolkar
On 2/27/06, Dion Gillard [EMAIL PROTECTED] wrote:
 Thanks Rahul.

 Do you want me to start some documentation on the new features in 1.0.1?

snip/

Ideally, it helps if someone *else* documents the new features, but I
need to wrap up on some [scxml] tickets / documentation for now, so I
guess if you start, it'll be much faster.


 And since there are new features, should we call this release 1.1?

snap/

I don't think we can squeeze this out as a 1.0.1. Besides, IMO, JEXL
is truly approaching 1.1 material.

-Rahul

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



Re: [JEXL] Blocks and an Expression

2006-02-27 Thread Rahul Akolkar
On 2/27/06, Dion Gillard [EMAIL PROTECTED] wrote:
 On 2/28/06, Rahul Akolkar [EMAIL PROTECTED] wrote:
 
  Thanks for the recent changes Dion. The bit that is hazy (for me) is
  the relationship between an Expression and a block in the current
  impl. As demonstrated by the two failing test cases at the end of
  BlockTest.java (and therefore, commented out) I think we may need to
  flesh out the semantics of value on Expression evaluation becomes
  block value, especially when the Expression can contain multiple
  blocks or a mix of blocks and statements.
 
  I hope to look at the code soon as well ;-) but didn't want to lose
  track of this initial thought while looking at the svn commits fly by.
 

 Hmm.. This seems to be the same as multiple expression evaluations, e.g. if
 you evaluate:

  x = 1; y = 2;

 what do you expect? (me, I expect 2!).
snip/

Me too. But if (true) { x = 1; } if (true) { y = 2; } evaluates to ?

A JEXL Expression (upper case 'E') may be more than, less than or
equal to a block. For instance, a Perl code block can serve as an
rvalue in an assignment expression, which is the kind of scenario
where the value of the block mostly comes into play. In which case,
there is exactly one block.


 Blocks shouldn't change the
 semantics.

 is that your understanding too?

 I can look at the failing/commented tests and check out what's happening if
 you like.

snap/

Please.

-Rahul

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



svn commit: r381508 - /jakarta/commons/sandbox/scxml/trunk/xdocs/building.xml

2006-02-27 Thread rahul
Author: rahul
Date: Mon Feb 27 16:46:23 2006
New Revision: 381508

URL: http://svn.apache.org/viewcvs?rev=381508view=rev
Log:
Point to source, and post maven and xdoc-plugin versions.

Modified:
jakarta/commons/sandbox/scxml/trunk/xdocs/building.xml

Modified: jakarta/commons/sandbox/scxml/trunk/xdocs/building.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/sandbox/scxml/trunk/xdocs/building.xml?rev=381508r1=381507r2=381508view=diff
==
--- jakarta/commons/sandbox/scxml/trunk/xdocs/building.xml (original)
+++ jakarta/commons/sandbox/scxml/trunk/xdocs/building.xml Mon Feb 27 16:46:23 
2006
@@ -24,7 +24,8 @@
 section name=Overview
 p
   Commons SCXML uses a href=http://maven.apache.org;Maven/a or
-  a href=http://ant.apache.org;Ant/a as a build system.
+  a href=http://ant.apache.org;Ant/a as a build system. The source is
+  a 
href=http://svn.apache.org/repos/asf/jakarta/commons/sandbox/scxml/trunk/;here/a.
 /p
 /section
 !-- == --
@@ -43,6 +44,10 @@
 directory to build the full website, and place it as a sibling directory of
 SCXML's root directory. The result will be in target/docs.
   /p
+  p
+To build the site, you need Maven 1.0.2 and version 1.9.2 of the 
maven-xdoc-plugin installed.
+  /p
+
 /section
 !-- == --
 section name=Ant Goals



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



DO NOT REPLY [Bug 38067] - [net] FTP - WinZip file downloads are corrupted

2006-02-27 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=38067.
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=38067





--- Additional Comments From [EMAIL PROTECTED]  2006-02-28 02:33 ---
(In reply to comment #8)
 (In reply to comment #7)
  Here ya go ... isn't much to it. If ya like I can send the entire class if 
 need be.
  
 ***
 **
   public void fetchFile(String sServerFile, String sLocalFile){
  FileOutputStream fout = null;
...
if(FTPReply.isPositiveIntermediate(getReplyCode())){
  this.completePendingCommand();
}


Also, is it necessary to call completePendingCommand() here?

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



Re: [JEXL] Blocks and an Expression

2006-02-27 Thread Dion Gillard
Ok, I've found the cause of the problem.

ExpressionFactory.createNewExpression on line 125 does this:

SimpleNode node = (SimpleNode) tree.jjtGetChild(0);

So only the first statement of the parsed expression is actually evaluated.

In the cases of the commented out tests, there are multiple statements which
are children of the parse tree.

The use of a block here really isn't significant, using a parse string like
x =1; y=2; causes the same issue.

So, the question becomes, should we support multiple statements for an
expression (outside a block), or do we implement ASTJexlScript so that it
evaluates each of it's children in turn and returns the last value?

On 2/28/06, Rahul Akolkar [EMAIL PROTECTED] wrote:

 On 2/27/06, Dion Gillard [EMAIL PROTECTED] wrote:
  On 2/28/06, Rahul Akolkar [EMAIL PROTECTED] wrote:
  
   Thanks for the recent changes Dion. The bit that is hazy (for me) is
   the relationship between an Expression and a block in the current
   impl. As demonstrated by the two failing test cases at the end of
   BlockTest.java (and therefore, commented out) I think we may need to
   flesh out the semantics of value on Expression evaluation becomes
   block value, especially when the Expression can contain multiple
   blocks or a mix of blocks and statements.
  
   I hope to look at the code soon as well ;-) but didn't want to lose
   track of this initial thought while looking at the svn commits fly by.
  
 
  Hmm.. This seems to be the same as multiple expression evaluations, e.g.
 if
  you evaluate:
 
   x = 1; y = 2;
 
  what do you expect? (me, I expect 2!).
 snip/

 Me too. But if (true) { x = 1; } if (true) { y = 2; } evaluates to ?

 A JEXL Expression (upper case 'E') may be more than, less than or
 equal to a block. For instance, a Perl code block can serve as an
 rvalue in an assignment expression, which is the kind of scenario
 where the value of the block mostly comes into play. In which case,
 there is exactly one block.


  Blocks shouldn't change the
  semantics.
 
  is that your understanding too?
 
  I can look at the failing/commented tests and check out what's happening
 if
  you like.
 
 snap/

 Please.

 -Rahul

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




--
http://www.multitask.com.au/people/dion/
Chuck Norris sleeps with a night light. Not because Chuck Norris is afraid
of the dark, but because the dark is afraid of Chuck Norris


Re: [all] building the site?

2006-02-27 Thread Phil Steitz
Both of these requirements - maven 1.0.2 and xdoc 1.9.2 - are included
in the getting and installing maven section here
http://jakarta.apache.org/commons/building.html

Thanks in advance, Arnaud for any help removing the 1.0.2 restriction.

Phil

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



Re: [all] building the site?

2006-02-27 Thread Simon Kitching
Yep, an updated xdoc plugin is required. I struck this with digester and
commons-logging. The best solution is to add this dependency to the
project's project.xml:

dependency
  groupIdmaven/groupId
  artifactIdmaven-xdoc-plugin/artifactId
  version1.9.2/version

urlhttp://maven.apache.org/maven-1.x/reference/plugins/xdoc//url
  typeplugin/type
  properties
  comment
  lt;stronggt;Site Onlylt;/stronggt; - v1.9.2 (minimum)
  /comment
  /properties
/dependency

Regards,

Simon


On Tue, 2006-02-28 at 00:36 +0100, Arnaud HERITIER wrote:
 Dion,
 
   I think that you need to upgrade the xdoc plugin. The one bundled in maven
 1.0.2 is too old. I'm trying to have maven 1.1 fully compatible with commons
 site
 
   Arnaud
 
 On 2/28/06, Dion Gillard [EMAIL PROTECTED] wrote:
 
  Maven 1.0.2 fails for a different reason:
 
  xdoc:jelly-transform:
  [echo] Generating
  C:/source/jakarta/jakarta-commons/jexl/target/docs/changelog-report.html
  from C:\source\jakarta\ja
  karta-commons\jexl\target\generated-xdocs\changelog-report.xml
  Could not find the class: org.apache.commons.jelly.tags.fmt.FmtTagLibrary
  java.lang.ClassNotFoundException:
  org.apache.commons.jelly.tags.fmt.FmtTagLibrary
  at java.net.URLClassLoader$1.run(URLClassLoader.java:199)
  at java.security.AccessController.doPrivileged(Native Method)
  at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
 
  Which seems that commons-site.jsl requires the jelly fmt taglib which
  isn't installed in maven102's lib directory by default.
 
  On 2/28/06, Phil Steitz [EMAIL PROTECTED] wrote:
   Brett or someone more knowledgeable can explain in detail why, but you
   need to either use maven 1.0.2 or get a more tolerant parser to be
   loaded.
  
   Phil
  
   On 2/27/06, Dion Gillard [EMAIL PROTECTED] wrote:
Ok, that's what I had, but I still get the following error:
   
BUILD FAILED
File.. C:\Documents and Settings\Dion
Gillard\.maven\cache\maven-xdoc-plugin-1.9.2\plugin.jelly
Element... x:parse
Line.. 471
Column -1
Error on line 18 of document  : Relative URI
../../commons-build/menus/menus.dtd; can not be resolved without a
base U
RI. Nested exception: Relative URI
../../commons-build/menus/menus.dtd; can not be resolved without a
base URI.
Total time   : 2 minutes 18 seconds
Finished at  : Tuesday, 28 February 2006 9:22:43
   
Any ideas?
   
On 2/27/06, Dennis Lundberg [EMAIL PROTECTED] wrote:
 Dion Gillard wrote:
  I've tried to build the site for JEXL, but obviously have the
  commons-build directory checked out in the wrong location.
 
  Is it documented anywhere what the directory structure must be?

 You can find it here:

  http://jakarta.apache.org/commons/building.html#Checking%20out%20the%20commons%20sources


 --
 Dennis Lundberg


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


   
   
--
http://www.multitask.com.au/people/dion/
Chuck Norris sleeps with a night light. Not because Chuck Norris is
afraid of the dark, but because the dark is afraid of Chuck Norris
   
-
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]
  
  
 
 
  --
  http://www.multitask.com.au/people/dion/
  Chuck Norris sleeps with a night light. Not because Chuck Norris is
  afraid of the dark, but because the dark is afraid of Chuck Norris
 
  -
  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]



svn commit: r381550 - /jakarta/commons/proper/jexl/trunk/project.xml

2006-02-27 Thread dion
Author: dion
Date: Mon Feb 27 19:47:42 2006
New Revision: 381550

URL: http://svn.apache.org/viewcvs?rev=381550view=rev
Log:
Add xdoc plugin as a dependency

Modified:
jakarta/commons/proper/jexl/trunk/project.xml

Modified: jakarta/commons/proper/jexl/trunk/project.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/jexl/trunk/project.xml?rev=381550r1=381549r2=381550view=diff
==
--- jakarta/commons/proper/jexl/trunk/project.xml (original)
+++ jakarta/commons/proper/jexl/trunk/project.xml Mon Feb 27 19:47:42 2006
@@ -132,6 +132,18 @@
   artifactIdcommons-logging/artifactId
   version1.0.3/version
 /dependency
+dependency
+  groupIdmaven/groupId
+  artifactIdmaven-xdoc-plugin/artifactId
+  version1.9.2/version
+  urlhttp://maven.apache.org/maven-1.x/reference/plugins/xdoc//url
+  typeplugin/type
+  properties
+comment
+lt;stronggt;Site Onlylt;/stronggt; - v1.9.2 (minimum)
+/comment
+  /properties
+/dependency
   /dependencies
   build
 nagEmailAddresscommons-dev@jakarta.apache.org/nagEmailAddress



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



svn commit: r381554 - in /jakarta/commons/proper/jexl/trunk/xdocs/reference: examples.xml syntax.xml

2006-02-27 Thread dion
Author: dion
Date: Mon Feb 27 19:58:56 2006
New Revision: 381554

URL: http://svn.apache.org/viewcvs?rev=381554view=rev
Log:
Fix viewcvs entries to point to svn

Modified:
jakarta/commons/proper/jexl/trunk/xdocs/reference/examples.xml
jakarta/commons/proper/jexl/trunk/xdocs/reference/syntax.xml

Modified: jakarta/commons/proper/jexl/trunk/xdocs/reference/examples.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/jexl/trunk/xdocs/reference/examples.xml?rev=381554r1=381553r2=381554view=diff
==
--- jakarta/commons/proper/jexl/trunk/xdocs/reference/examples.xml (original)
+++ jakarta/commons/proper/jexl/trunk/xdocs/reference/examples.xml Mon Feb 27 
19:58:56 2006
@@ -34,14 +34,14 @@
   p
 You can find two sample programs in JEXL's CVS repository:
 ul
-  lia 
href=http://cvs.apache.org/viewcvs.cgi/jakarta-commons/jexl/examples/ArrayExample.java?view=markup;Using
 arrays/a/li
-  lia 
href=http://cvs.apache.org/viewcvs.cgi/jakarta-commons/jexl/examples/MethodPropertyExample.java?view=markup;Accessing
 Properties and invoking methods/a/li
+  lia 
href=http://svn.apache.org/viewcvs.cgi/jakarta/commons/proper/jexl/trunk/examples/ArrayExample.java?view=markup;Using
 arrays/a/li
+  lia 
href=http://svn.apache.org/viewcvs.cgi/jakarta/commons/proper/jexl/trunk/examples/MethodPropertyExample.java?view=markup;Accessing
 Properties and invoking methods/a/li
 /ul
   /p
   p
-As well, a 
href=http://cvs.apache.org/viewcvs.cgi/jakarta-commons/jexl/src/test/org/apache/commons/jexl/JexlTest.java?view=markup;JEXL's
 Unit Tests/a
+As well, a 
href=http://svn.apache.org/viewcvs.cgi/jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/JexlTest.java?view=markup;JEXL's
 Unit Tests/a
 provide handy examples of expressions. The test code also contains a
-a 
href=http://cvs.apache.org/viewcvs.cgi/jakarta-commons/jexl/src/test/org/apache/commons/jexl/Jexl.java?view=markup;simple
 class/a
+a 
href=http://svn.apache.org/viewcvs.cgi/jakarta/commons/proper/jexl/trunk/src/test/org/apache/commons/jexl/Jexl.java?view=markup;simple
 class/a
 that evaluates its command line arguments as JEXL expressions when run.
   /p
 /section

Modified: jakarta/commons/proper/jexl/trunk/xdocs/reference/syntax.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/jexl/trunk/xdocs/reference/syntax.xml?rev=381554r1=381553r2=381554view=diff
==
--- jakarta/commons/proper/jexl/trunk/xdocs/reference/syntax.xml (original)
+++ jakarta/commons/proper/jexl/trunk/xdocs/reference/syntax.xml Mon Feb 27 
19:58:56 2006
@@ -34,7 +34,7 @@
   p
 For more technical information about the JEXL Grammar, you can find the
 a href=https://javacc.dev.java.net/;JavaCC/a grammar for JEXL
-here: a 
href=http://cvs.apache.org/viewcvs.cgi/jakarta-commons/jexl/src/java/org/apache/commons/jexl/parser/Parser.jj?view=markup;Parser.jj/a
+here: a 
href=http://svn.apache.org/viewcvs.cgi/jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/Parser.jj?view=markup;Parser.jj/a
   /p
 /section
 section name=Language Elements



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



svn commit: r381581 - /jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/Email.java

2006-02-27 Thread dion
Author: dion
Date: Mon Feb 27 22:21:21 2006
New Revision: 381581

URL: http://svn.apache.org/viewcvs?rev=381581view=rev
Log:
Remove 1.4 specific Boolean.toString(value)

Modified:

jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/Email.java

Modified: 
jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/Email.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/Email.java?rev=381581r1=381580r2=381581view=diff
==
--- 
jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/Email.java 
(original)
+++ 
jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/Email.java 
Mon Feb 27 22:21:21 2006
@@ -437,7 +437,7 @@
 
 if (this.authenticator != null)
 {
-properties.setProperty(MAIL_TRANSPORT_TLS, 
Boolean.toString(tls));
+properties.setProperty(MAIL_TRANSPORT_TLS, tls ? true : 
false);
 properties.setProperty(MAIL_SMTP_AUTH, true);
 }
 



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



DO NOT REPLY [Bug 38798] - [validator] validator argument - resource=false ignored

2006-02-27 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=38798.
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=38798





--- Additional Comments From [EMAIL PROTECTED]  2006-02-28 08:51 ---
Thank you!

I use Xdoclet to generate config file. In my case it's 
 * @struts.validator type=minlength arg1value=${var:minlength}
 * @struts.validator-var name=minlength value=2

How can I switch to the new format using XDoclet?

  arg position=1
  name=minlength
  key=${var:minlength}
  resource=false
  /
 



-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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