svn commit: r1452024 - in /commons/proper/beanutils/trunk: checkstyle.xml src/changes/changes.xml

2013-03-03 Thread britter
Author: britter
Date: Sun Mar  3 10:47:03 2013
New Revision: 1452024

URL: http://svn.apache.org/r1452024
Log:
[BEANUTILS-427] - Configure Checkstyle to check for trailing white spaces and 
white spaces on empty lines

Modified:
commons/proper/beanutils/trunk/checkstyle.xml
commons/proper/beanutils/trunk/src/changes/changes.xml

Modified: commons/proper/beanutils/trunk/checkstyle.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/checkstyle.xml?rev=1452024r1=1452023r2=1452024view=diff
==
--- commons/proper/beanutils/trunk/checkstyle.xml (original)
+++ commons/proper/beanutils/trunk/checkstyle.xml Sun Mar  3 10:47:03 2013
@@ -52,6 +52,11 @@ limitations under the License.
   property name=allowUndeclaredRTE value=true/
 /module
  /module
+ !-- Line with trailing spaces --
+module name=RegexpSingleline
+property name=format value=\s+$/
+property name=message value=Line has trailing spaces./
+/module
 /module
 
 

Modified: commons/proper/beanutils/trunk/src/changes/changes.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/changes/changes.xml?rev=1452024r1=1452023r2=1452024view=diff
==
--- commons/proper/beanutils/trunk/src/changes/changes.xml (original)
+++ commons/proper/beanutils/trunk/src/changes/changes.xml Sun Mar  3 10:47:03 
2013
@@ -40,6 +40,9 @@ The action type attribute can be add,u
   body
 
 release version=1.8.4 date=in SVN description=Bug fix for 1.8.3
+  action dev=britter type=update issue=BEANUTILS-427 
+ Configure Checkstyle to check for trailing white spaces and white 
spaces on empty lines
+  /action
   action dev=britter type=fix issue=BEANUTILS-408 
  MethodUtils.invokeMethod() throws NullPointerException when args==null
   /action




svn commit: r1452028 [7/7] - in /commons/proper/beanutils/trunk/src: changes/ main/java/org/apache/commons/beanutils/ main/java/org/apache/commons/beanutils/converters/ main/java/org/apache/commons/be

2013-03-03 Thread britter
Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/memoryleaktests/pojotests/SomePojo.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/memoryleaktests/pojotests/SomePojo.java?rev=1452028r1=1452027r2=1452028view=diff
==
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/memoryleaktests/pojotests/SomePojo.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/memoryleaktests/pojotests/SomePojo.java
 Sun Mar  3 11:19:49 2013
@@ -5,15 +5,15 @@
  * The ASF licenses this file to You 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.beanutils.memoryleaktests.pojotests;
 
 /**

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/priv/PackageBean.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/priv/PackageBean.java?rev=1452028r1=1452027r2=1452028view=diff
==
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/priv/PackageBean.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/priv/PackageBean.java
 Sun Mar  3 11:19:49 2013
@@ -5,15 +5,15 @@
  * The ASF licenses this file to You 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.beanutils.priv;
@@ -22,11 +22,11 @@ package org.apache.commons.beanutils.pri
 /**
  * pThis class is designed to test the default access jvm problem workaround.
  * The issue is that public methods of a public subclass contained in a 
default access
- * superclass are returned by reflection but an IllegalAccessException is 
thrown 
+ * superclass are returned by reflection but an IllegalAccessException is 
thrown
  * when they are invoked./p
  *
  * pThis is the default access superclass/p
- * 
+ *
  * @author Robert Burrell Donkin
  * @version $Revision$ $Date$
  */
@@ -60,7 +60,7 @@ class PackageBean {
 return (this.bar);
 
 }
-
+
 public void setBar(String bar) {
 
 this.bar = bar;

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/priv/PrivateBean.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/priv/PrivateBean.java?rev=1452028r1=1452027r2=1452028view=diff
==
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/priv/PrivateBean.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/priv/PrivateBean.java
 Sun Mar  3 11:19:49 2013
@@ -5,15 +5,15 @@
  * The ASF licenses this file to You 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.beanutils.priv;

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/priv/PrivateBeanFactory.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/priv/PrivateBeanFactory.java?rev=1452028r1=1452027r2=1452028view=diff
==

svn commit: r852805 - in /websites/production/commons/content/proper/commons-compress: ./ apidocs/ apidocs/org/apache/commons/compress/archivers/ apidocs/org/apache/commons/compress/archivers/ar/ apid

2013-03-03 Thread bodewig
Author: bodewig
Date: Sun Mar  3 16:04:27 2013
New Revision: 852805

Log:
publish site


[This commit notification would consist of 175 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]


svn commit: r1452075 - /commons/proper/collections/trunk/pom.xml

2013-03-03 Thread tn
Author: tn
Date: Sun Mar  3 17:49:03 2013
New Revision: 1452075

URL: http://svn.apache.org/r1452075
Log:
Ignore site-content directory for rat plugin

Modified:
commons/proper/collections/trunk/pom.xml

Modified: commons/proper/collections/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/collections/trunk/pom.xml?rev=1452075r1=1452074r2=1452075view=diff
==
--- commons/proper/collections/trunk/pom.xml (original)
+++ commons/proper/collections/trunk/pom.xml Sun Mar  3 17:49:03 2013
@@ -546,6 +546,15 @@
   /reportSet
 /reportSets
   /plugin
+  plugin
+groupIdorg.apache.rat/groupId
+artifactIdapache-rat-plugin/artifactId
+configuration
+  excludes
+excludesite-content/**/*/exclude
+  /excludes
+/configuration
+  /plugin
 /plugins
   /reporting
 




svn commit: r1452076 - in /commons/cms-site/trunk/content/resources/dtds: validator_1_0.dtd validator_1_0_1.dtd validator_1_1.dtd validator_1_1_3.dtd validator_1_2_0.dtd validator_1_3_0.dtd validator_

2013-03-03 Thread olamy
Author: olamy
Date: Sun Mar  3 18:01:12 2013
New Revision: 1452076

URL: http://svn.apache.org/r1452076
Log:
delete manually imported content will do a copy from validator

Removed:
commons/cms-site/trunk/content/resources/dtds/validator_1_0.dtd
commons/cms-site/trunk/content/resources/dtds/validator_1_0_1.dtd
commons/cms-site/trunk/content/resources/dtds/validator_1_1.dtd
commons/cms-site/trunk/content/resources/dtds/validator_1_1_3.dtd
commons/cms-site/trunk/content/resources/dtds/validator_1_2_0.dtd
commons/cms-site/trunk/content/resources/dtds/validator_1_3_0.dtd
commons/cms-site/trunk/content/resources/dtds/validator_1_4_0.dtd



svn commit: r852819 - in /websites/staging/commons/trunk/content: ./ downloads/ dtds/ gsoc/ gsoc/2010/ releases/

2013-03-03 Thread buildbot
Author: buildbot
Date: Sun Mar  3 18:01:27 2013
New Revision: 852819

Log:
Staging update by buildbot for commons

Removed:
websites/staging/commons/trunk/content/dtds/
Modified:
websites/staging/commons/trunk/content/   (props changed)
websites/staging/commons/trunk/content/bugs.html
websites/staging/commons/trunk/content/building-m1.html
websites/staging/commons/trunk/content/building.html
websites/staging/commons/trunk/content/charter.html
websites/staging/commons/trunk/content/commons-parent-pom.html
websites/staging/commons/trunk/content/components.html
websites/staging/commons/trunk/content/dormant.html
websites/staging/commons/trunk/content/downloads/index.html
websites/staging/commons/trunk/content/gsoc/2010/index.html
websites/staging/commons/trunk/content/gsoc/index.html
websites/staging/commons/trunk/content/index.html
websites/staging/commons/trunk/content/mail-lists.html
websites/staging/commons/trunk/content/new-sandbox-component.html
websites/staging/commons/trunk/content/oldcharter.html
websites/staging/commons/trunk/content/patches.html
websites/staging/commons/trunk/content/project-info.html
websites/staging/commons/trunk/content/releases/index.html
websites/staging/commons/trunk/content/releases/prepare.html
websites/staging/commons/trunk/content/releases/publish-site.html
websites/staging/commons/trunk/content/releases/release.html
websites/staging/commons/trunk/content/releases/versioning.html
websites/staging/commons/trunk/content/sandbox.html
websites/staging/commons/trunk/content/site-publish.html
websites/staging/commons/trunk/content/svninfo.html
websites/staging/commons/trunk/content/team-list.html
websites/staging/commons/trunk/content/volunteering.html

Propchange: websites/staging/commons/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Sun Mar  3 18:01:27 2013
@@ -1 +1 @@
-1451748
+1452076

Modified: websites/staging/commons/trunk/content/bugs.html
==
--- websites/staging/commons/trunk/content/bugs.html (original)
+++ websites/staging/commons/trunk/content/bugs.html Sun Mar  3 18:01:27 2013
@@ -1,5 +1,5 @@
 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
-!-- Generated by Apache Maven Doxia at Feb 26, 2013 ( $Revision: 1080083 $ ) 
--
+!-- Generated by Apache Maven Doxia at Mar 3, 2013 ( $Revision: 1080083 $ ) 
--
 !-- $HeadURL: 
https://svn.apache.org/repos/asf/commons/proper/commons-skin/trunk/src/main/resources/META-INF/maven/site.vm
 $ --
 html xmlns=http://www.w3.org/1999/xhtml; xml:lang=en lang=en
   head
@@ -13,7 +13,7 @@
 /style
 link rel=stylesheet href=./css/print.css type=text/css 
media=print /
   meta name=author content=The Apache Commons Team /
-meta name=Date-Revision-mmdd content=20130226 /
+meta name=Date-Revision-mmdd content=20130303 /
 meta http-equiv=Content-Language content=en /
 
 /head
@@ -32,7 +32,7 @@
 
 
 div class=xleft
-span id=publishDateLast Published: 26 February 2013/span
+span id=publishDateLast Published: 03 March 2013/span
   /div
 div class=xrighta href=components.html 
title=ComponentsComponents/a
 |

Modified: websites/staging/commons/trunk/content/building-m1.html
==
--- websites/staging/commons/trunk/content/building-m1.html (original)
+++ websites/staging/commons/trunk/content/building-m1.html Sun Mar  3 18:01:27 
2013
@@ -1,5 +1,5 @@
 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
-!-- Generated by Apache Maven Doxia at Feb 26, 2013 ( $Revision: 1080083 $ ) 
--
+!-- Generated by Apache Maven Doxia at Mar 3, 2013 ( $Revision: 1080083 $ ) 
--
 !-- $HeadURL: 
https://svn.apache.org/repos/asf/commons/proper/commons-skin/trunk/src/main/resources/META-INF/maven/site.vm
 $ --
 html xmlns=http://www.w3.org/1999/xhtml; xml:lang=en lang=en
   head
@@ -13,7 +13,7 @@
 /style
 link rel=stylesheet href=./css/print.css type=text/css 
media=print /
   meta name=author content=Commons Documentation Team /
-meta name=Date-Revision-mmdd content=20130226 /
+meta name=Date-Revision-mmdd content=20130303 /
 meta http-equiv=Content-Language content=en /
 
 /head
@@ -32,7 +32,7 @@
 
 
 div class=xleft
-span id=publishDateLast Published: 26 February 2013/span
+span id=publishDateLast Published: 03 March 2013/span
   /div
 div class=xright

svn commit: r1452077 - in /commons/cms-site/trunk/content/resources/dtds: validator_1_0.dtd validator_1_0_1.dtd validator_1_1.dtd validator_1_1_3.dtd validator_1_2_0.dtd validator_1_3_0.dtd validator_

2013-03-03 Thread olamy
Author: olamy
Date: Sun Mar  3 18:02:08 2013
New Revision: 1452077

URL: http://svn.apache.org/r1452077
Log:
copy dtds from validator

Added:
commons/cms-site/trunk/content/resources/dtds/validator_1_0.dtd
  - copied unchanged from r1452075, 
commons/proper/validator/trunk/src/main/resources/org/apache/commons/validator/resources/validator_1_0.dtd
commons/cms-site/trunk/content/resources/dtds/validator_1_0_1.dtd
  - copied unchanged from r1452075, 
commons/proper/validator/trunk/src/main/resources/org/apache/commons/validator/resources/validator_1_0_1.dtd
commons/cms-site/trunk/content/resources/dtds/validator_1_1.dtd
  - copied unchanged from r1452075, 
commons/proper/validator/trunk/src/main/resources/org/apache/commons/validator/resources/validator_1_1.dtd
commons/cms-site/trunk/content/resources/dtds/validator_1_1_3.dtd
  - copied unchanged from r1452075, 
commons/proper/validator/trunk/src/main/resources/org/apache/commons/validator/resources/validator_1_1_3.dtd
commons/cms-site/trunk/content/resources/dtds/validator_1_2_0.dtd
  - copied unchanged from r1452075, 
commons/proper/validator/trunk/src/main/resources/org/apache/commons/validator/resources/validator_1_2_0.dtd
commons/cms-site/trunk/content/resources/dtds/validator_1_3_0.dtd
  - copied unchanged from r1452075, 
commons/proper/validator/trunk/src/main/resources/org/apache/commons/validator/resources/validator_1_3_0.dtd
commons/cms-site/trunk/content/resources/dtds/validator_1_4_0.dtd
  - copied unchanged from r1452075, 
commons/proper/validator/trunk/src/main/resources/org/apache/commons/validator/resources/validator_1_4_0.dtd



svn commit: r1452078 - in /commons/proper/collections/trunk/src/site/xdoc: building.xml history.xml index.xml

2013-03-03 Thread tn
Author: tn
Date: Sun Mar  3 18:02:12 2013
New Revision: 1452078

URL: http://svn.apache.org/r1452078
Log:
Correct site for current release.

Modified:
commons/proper/collections/trunk/src/site/xdoc/building.xml
commons/proper/collections/trunk/src/site/xdoc/history.xml
commons/proper/collections/trunk/src/site/xdoc/index.xml

Modified: commons/proper/collections/trunk/src/site/xdoc/building.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/site/xdoc/building.xml?rev=1452078r1=1452077r2=1452078view=diff
==
--- commons/proper/collections/trunk/src/site/xdoc/building.xml (original)
+++ commons/proper/collections/trunk/src/site/xdoc/building.xml Sun Mar  3 
18:02:12 2013
@@ -28,9 +28,6 @@ limitations under the License.
   primary build system, however an a href=http://ant.apache.org;Ant/a
   build is also available.
 /p
-p
-  You may also be interested in the a href=release_3_3.htmlv3.3 release 
notes/a.
-/p
 /section
 !-- == --
 section name=Maven 2 Goals

Modified: commons/proper/collections/trunk/src/site/xdoc/history.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/site/xdoc/history.xml?rev=1452078r1=1452077r2=1452078view=diff
==
--- commons/proper/collections/trunk/src/site/xdoc/history.xml (original)
+++ commons/proper/collections/trunk/src/site/xdoc/history.xml Sun Mar  3 
18:02:12 2013
@@ -104,11 +104,6 @@ Notably MultiValueMap is a new more flex
 bCollections 3.2.1/b Re-packaged v3.2 release which is OSGi enabled.
 /p
 
-p
-bCollections 4.0/b provides more bug fixes and a few enhancements.
-Notably some crucial classes became Serializable. 
-/p
-
 /section
 
 /body

Modified: commons/proper/collections/trunk/src/site/xdoc/index.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/site/xdoc/index.xml?rev=1452078r1=1452077r2=1452078view=diff
==
--- commons/proper/collections/trunk/src/site/xdoc/index.xml (original)
+++ commons/proper/collections/trunk/src/site/xdoc/index.xml Sun Mar  3 
18:02:12 2013
@@ -60,7 +60,7 @@ as are various a href=project-reports.
 The JavaDoc API documents are available online:
 /p
 ul
-liThe a href=javadocs/api-release/index.htmlcurrent release 4.0/a/li
+liThe a href=javadocs/api-release/index.htmlcurrent release 
3.2.1/a/li
 liThe latest 2.x release - a href=javadocs/api-2.1.1/index.htmlversion 
2.1.1/a/li
 liThe a href=apidocs/index.htmllatest SVN/a/li
 /ul
@@ -72,9 +72,9 @@ The a href=source-repository.htmlsub
 !-- == --
 section name=Releases
 p
-The latest version is v4.0 - 
+The latest version is v3.2.1 - 
 a 
href=http://commons.apache.org/collections/download_collections.cgi;Download 
now!/abr /
-It is built for Java 1.5+ and the a href=release_4_0.htmlrelease notes/a 
are also available.
+It is built for Java 1.5+ and the a href=release_3_2_1.htmlrelease 
notes/a are also available.
 /p
 p
 For previous releases, see the a 
href=http://archive.apache.org/dist/commons/collections/;Apache Archive/a




svn commit: r1452081 - /commons/trunks-proper/pom.xml

2013-03-03 Thread olamy
Author: olamy
Date: Sun Mar  3 18:09:48 2013
New Revision: 1452081

URL: http://svn.apache.org/r1452081
Log:
add validator in aggregator build

Modified:
commons/trunks-proper/pom.xml

Modified: commons/trunks-proper/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/trunks-proper/pom.xml?rev=1452081r1=1452080r2=1452081view=diff
==
--- commons/trunks-proper/pom.xml (original)
+++ commons/trunks-proper/pom.xml Sun Mar  3 18:09:48 2013
@@ -48,6 +48,7 @@
 modulejxpath/module
 modulelauncher/module
 moduleprimitives/module
+modulevalidator/module
   /modules
 
   repositories




svn commit: r1452082 - /commons/trunks-proper/pom.xml

2013-03-03 Thread olamy
Author: olamy
Date: Sun Mar  3 18:11:31 2013
New Revision: 1452082

URL: http://svn.apache.org/r1452082
Log:
alpha order

Modified:
commons/trunks-proper/pom.xml

Modified: commons/trunks-proper/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/trunks-proper/pom.xml?rev=1452082r1=1452081r2=1452082view=diff
==
--- commons/trunks-proper/pom.xml (original)
+++ commons/trunks-proper/pom.xml Sun Mar  3 18:11:31 2013
@@ -32,21 +32,21 @@
   /scm
 
   modules
-modulecommons-parent/module
+modulecli/module
 modulecollections/module
+modulecommons-parent/module
 modulecompress/module
-modulelang/module
-modulecli/module
-moduleognl/module
-moduleexec/module
 moduledigester/module
-modulenet/module
-modulepool/module
-moduleio/module
 moduleel/module
+moduleexec/module
 modulefunctor/module
+moduleio/module
 modulejxpath/module
+modulelang/module
 modulelauncher/module
+modulenet/module
+moduleognl/module
+modulepool/module
 moduleprimitives/module
 modulevalidator/module
   /modules




svn commit: r1452083 - in /commons/proper/validator/trunk: pom.xml src/site/site.xml

2013-03-03 Thread olamy
Author: olamy
Date: Sun Mar  3 18:16:45 2013
New Revision: 1452083

URL: http://svn.apache.org/r1452083
Log:
fix javadocs links COMMONSSITE-74

Modified:
commons/proper/validator/trunk/pom.xml
commons/proper/validator/trunk/src/site/site.xml

Modified: commons/proper/validator/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/validator/trunk/pom.xml?rev=1452083r1=1452082r2=1452083view=diff
==
--- commons/proper/validator/trunk/pom.xml (original)
+++ commons/proper/validator/trunk/pom.xml Sun Mar  3 18:16:45 2013
@@ -316,6 +316,50 @@
 /site
   /distributionManagement
 /profile
+profile
+  idsetup-checkout/id
+  activation
+file
+  missingsite-content/missing
+/file
+  /activation
+  build
+plugins
+  plugin
+groupIdorg.apache.maven.plugins/groupId
+artifactIdmaven-antrun-plugin/artifactId
+version1.7/version
+executions
+  execution
+idprepare-checkout/id
+phasepre-site/phase
+goals
+  goalrun/goal
+/goals
+configuration
+  tasks
+exec executable=svn
+  arg line=checkout --depth immediates 
${commons.scmPubUrl} ${commons.scmPubCheckoutDirectory} /
+/exec
+
+exec executable=svn
+  arg line=update --set-depth exclude 
${commons.scmPubCheckoutDirectory}/javadocs /
+/exec
+
+pathconvert pathsep=  property=dirs
+  dirset dir=${commons.scmPubCheckoutDirectory} 
includes=* /
+/pathconvert
+exec executable=svn
+  arg line=update --set-depth infinity ${dirs} /
+/exec
+  /tasks
+/configuration
+  /execution
+/executions
+  /plugin
+/plugins
+  /build
+/profile
   /profiles
 
 /project

Modified: commons/proper/validator/trunk/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/validator/trunk/src/site/site.xml?rev=1452083r1=1452082r2=1452083view=diff
==
--- commons/proper/validator/trunk/src/site/site.xml (original)
+++ commons/proper/validator/trunk/src/site/site.xml Sun Mar  3 18:16:45 2013
@@ -40,12 +40,12 @@
 /menu
 
 menu name=JavaDocs
-  item name=1.4.0 Release   href=/api-1.4.0//
-  item name=1.3.1 Release   href=/api-1.3.1//
-  item name=1.3.0 Release   href=/api-1.3.0//
-  item name=1.2.0 Release   href=/api-1.2.0//
-  item name=1.1.4 Release   href=/api-1.1.4//
-  item name=1.0.2 Release   href=/api-1.0.2//
+  item name=1.4.0 Release   href=javadocs/api-1.4.0//
+  item name=1.3.1 Release   href=javadocs/api-1.3.1//
+  item name=1.3.0 Release   href=javadocs/api-1.3.0//
+  item name=1.2.0 Release   href=javadocs/api-1.2.0//
+  item name=1.1.4 Release   href=javadocs/api-1.1.4//
+  item name=1.0.2 Release   href=javadocs/api-1.0.2//
 /menu
 
 menu name=Development




svn commit: r1452084 - /commons/proper/validator/trunk/pom.xml

2013-03-03 Thread olamy
Author: olamy
Date: Sun Mar  3 18:17:15 2013
New Revision: 1452084

URL: http://svn.apache.org/r1452084
Log:
profile not needed anymore

Modified:
commons/proper/validator/trunk/pom.xml

Modified: commons/proper/validator/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/validator/trunk/pom.xml?rev=1452084r1=1452083r2=1452084view=diff
==
--- commons/proper/validator/trunk/pom.xml (original)
+++ commons/proper/validator/trunk/pom.xml Sun Mar  3 18:17:15 2013
@@ -306,17 +306,6 @@
 
   profiles
 profile
-  idrc/id
-  distributionManagement
-!-- Cannot define in parent ATM, see COMMONSSITE-26 --
-site
-  idapache.website/id
-  nameApache Commons Release Candidate Staging Site/name
-  
url${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/site/url
-/site
-  /distributionManagement
-/profile
-profile
   idsetup-checkout/id
   activation
 file




svn commit: r1452085 - /commons/proper/validator/trunk/pom.xml

2013-03-03 Thread olamy
Author: olamy
Date: Sun Mar  3 18:18:13 2013
New Revision: 1452085

URL: http://svn.apache.org/r1452085
Log:
fix distributionManagement/site

Modified:
commons/proper/validator/trunk/pom.xml

Modified: commons/proper/validator/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/validator/trunk/pom.xml?rev=1452085r1=1452084r2=1452085view=diff
==
--- commons/proper/validator/trunk/pom.xml (original)
+++ commons/proper/validator/trunk/pom.xml Sun Mar  3 18:18:13 2013
@@ -119,11 +119,10 @@
   /scm
 
   distributionManagement
-!-- Cannot define in parent ATM, see COMMONSSITE-26 --
 site
   idapache.website/id
-  nameApache Commons Release Site/name
-  
url${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/validator//url
+  nameApache Commons Site/name
+  
urlscm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-validator//url
 /site
   /distributionManagement
 




svn commit: r852823 [2/12] - in /websites/production/commons/content/proper/commons-collections: ./ cobertura/

2013-03-03 Thread tn
Modified: 
websites/production/commons/content/proper/commons-collections/cobertura/org.apache.commons.collections.IterableSortedMap.html
==
--- 
websites/production/commons/content/proper/commons-collections/cobertura/org.apache.commons.collections.IterableSortedMap.html
 (original)
+++ 
websites/production/commons/content/proper/commons-collections/cobertura/org.apache.commons.collections.IterableSortedMap.html
 Sun Mar  3 18:22:11 2013
@@ -81,6 +81,6 @@
   td class=srcpre class=srcnbsp;}/pre/td/tr
 /table
 
-div class=footerReport generated by a 
href=http://cobertura.sourceforge.net/; target=_topCobertura/a 1.9.4.1 on 
3/2/13 11:37 PM./div
+div class=footerReport generated by a 
href=http://cobertura.sourceforge.net/; target=_topCobertura/a 1.9.4.1 on 
3/3/13 7:09 PM./div
 /body
 /html
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-collections/cobertura/org.apache.commons.collections.IteratorUtils.html
==
--- 
websites/production/commons/content/proper/commons-collections/cobertura/org.apache.commons.collections.IteratorUtils.html
 (original)
+++ 
websites/production/commons/content/proper/commons-collections/cobertura/org.apache.commons.collections.IteratorUtils.html
 Sun Mar  3 18:22:11 2013
@@ -2011,6 +2011,6 @@
   td class=srcpre class=srcnbsp;}/pre/td/tr
 /table
 
-div class=footerReport generated by a 
href=http://cobertura.sourceforge.net/; target=_topCobertura/a 1.9.4.1 on 
3/2/13 11:37 PM./div
+div class=footerReport generated by a 
href=http://cobertura.sourceforge.net/; target=_topCobertura/a 1.9.4.1 on 
3/3/13 7:09 PM./div
 /body
 /html
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-collections/cobertura/org.apache.commons.collections.KeyValue.html
==
--- 
websites/production/commons/content/proper/commons-collections/cobertura/org.apache.commons.collections.KeyValue.html
 (original)
+++ 
websites/production/commons/content/proper/commons-collections/cobertura/org.apache.commons.collections.KeyValue.html
 Sun Mar  3 18:22:11 2013
@@ -113,6 +113,6 @@
   td class=srcpre class=srcnbsp;}/pre/td/tr
 /table
 
-div class=footerReport generated by a 
href=http://cobertura.sourceforge.net/; target=_topCobertura/a 1.9.4.1 on 
3/2/13 11:37 PM./div
+div class=footerReport generated by a 
href=http://cobertura.sourceforge.net/; target=_topCobertura/a 1.9.4.1 on 
3/3/13 7:09 PM./div
 /body
 /html
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-collections/cobertura/org.apache.commons.collections.ListUtils.html
==
--- 
websites/production/commons/content/proper/commons-collections/cobertura/org.apache.commons.collections.ListUtils.html
 (original)
+++ 
websites/production/commons/content/proper/commons-collections/cobertura/org.apache.commons.collections.ListUtils.html
 Sun Mar  3 18:22:11 2013
@@ -1262,6 +1262,6 @@
   td class=srcpre class=srcnbsp;}/pre/td/tr
 /table
 
-div class=footerReport generated by a 
href=http://cobertura.sourceforge.net/; target=_topCobertura/a 1.9.4.1 on 
3/2/13 11:37 PM./div
+div class=footerReport generated by a 
href=http://cobertura.sourceforge.net/; target=_topCobertura/a 1.9.4.1 on 
3/3/13 7:09 PM./div
 /body
 /html
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-collections/cobertura/org.apache.commons.collections.MapIterator.html
==
--- 
websites/production/commons/content/proper/commons-collections/cobertura/org.apache.commons.collections.MapIterator.html
 (original)
+++ 
websites/production/commons/content/proper/commons-collections/cobertura/org.apache.commons.collections.MapIterator.html
 Sun Mar  3 18:22:11 2013
@@ -237,6 +237,6 @@
   td class=srcpre class=srcnbsp;}/pre/td/tr
 /table
 
-div class=footerReport generated by a 
href=http://cobertura.sourceforge.net/; target=_topCobertura/a 1.9.4.1 on 
3/2/13 11:37 PM./div
+div class=footerReport generated by a 
href=http://cobertura.sourceforge.net/; target=_topCobertura/a 1.9.4.1 on 
3/3/13 7:09 PM./div
 /body
 /html
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-collections/cobertura/org.apache.commons.collections.MapUtils.html
==
--- 
websites/production/commons/content/proper/commons-collections/cobertura/org.apache.commons.collections.MapUtils.html
 (original)
+++ 
websites/production/commons/content/proper/commons-collections/cobertura/org.apache.commons.collections.MapUtils.html
 Sun Mar  3 18:22:11 2013
@@ -3213,6 +3213,6 @@
   td class=srcpre 

svn commit: r852823 [12/12] - in /websites/production/commons/content/proper/commons-collections: ./ cobertura/

2013-03-03 Thread tn
Modified: 
websites/production/commons/content/proper/commons-collections/release_3_2.html
==
--- 
websites/production/commons/content/proper/commons-collections/release_3_2.html 
(original)
+++ 
websites/production/commons/content/proper/commons-collections/release_3_2.html 
Sun Mar  3 18:22:11 2013
@@ -1,5 +1,5 @@
 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
-!-- Generated by Apache Maven Doxia at Mar 2, 2013 ( $Revision: 1080083 $ ) 
--
+!-- Generated by Apache Maven Doxia at Mar 3, 2013 ( $Revision: 1080083 $ ) 
--
 !-- $HeadURL: 
https://svn.apache.org/repos/asf/commons/proper/commons-skin/trunk/src/main/resources/META-INF/maven/site.vm
 $ --
 html xmlns=http://www.w3.org/1999/xhtml; xml:lang=en lang=en
   head
@@ -13,7 +13,7 @@
 /style
 link rel=stylesheet href=./css/print.css type=text/css 
media=print /
   meta name=author content=Commons Documentation Team /
-meta name=Date-Revision-mmdd content=20130302 /
+meta name=Date-Revision-mmdd content=20130303 /
 meta http-equiv=Content-Language content=en /
 
 link rel=stylesheet type=text/css media=all href=./css/prettify.css/ 
   
@@ -42,7 +42,7 @@
 
 
 div class=xleft
-span id=publishDateLast Published: 02 March 2013/span
+span id=publishDateLast Published: 03 March 2013/span
   nbsp;| span id=projectVersionVersion: 
4.0-SNAPSHOT/span
   /div
 div class=xrighta 
href=http://www.apachecon.com/; class=externalLink 
title=ApacheConApacheCon/a

Modified: 
websites/production/commons/content/proper/commons-collections/release_3_2_1.html
==
--- 
websites/production/commons/content/proper/commons-collections/release_3_2_1.html
 (original)
+++ 
websites/production/commons/content/proper/commons-collections/release_3_2_1.html
 Sun Mar  3 18:22:11 2013
@@ -1,5 +1,5 @@
 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
-!-- Generated by Apache Maven Doxia at Mar 2, 2013 ( $Revision: 1080083 $ ) 
--
+!-- Generated by Apache Maven Doxia at Mar 3, 2013 ( $Revision: 1080083 $ ) 
--
 !-- $HeadURL: 
https://svn.apache.org/repos/asf/commons/proper/commons-skin/trunk/src/main/resources/META-INF/maven/site.vm
 $ --
 html xmlns=http://www.w3.org/1999/xhtml; xml:lang=en lang=en
   head
@@ -13,7 +13,7 @@
 /style
 link rel=stylesheet href=./css/print.css type=text/css 
media=print /
   meta name=author content=Commons Documentation Team /
-meta name=Date-Revision-mmdd content=20130302 /
+meta name=Date-Revision-mmdd content=20130303 /
 meta http-equiv=Content-Language content=en /
 
 link rel=stylesheet type=text/css media=all href=./css/prettify.css/ 
   
@@ -42,7 +42,7 @@
 
 
 div class=xleft
-span id=publishDateLast Published: 02 March 2013/span
+span id=publishDateLast Published: 03 March 2013/span
   nbsp;| span id=projectVersionVersion: 
4.0-SNAPSHOT/span
   /div
 div class=xrighta 
href=http://www.apachecon.com/; class=externalLink 
title=ApacheConApacheCon/a

Modified: 
websites/production/commons/content/proper/commons-collections/release_4_0.html
==
--- 
websites/production/commons/content/proper/commons-collections/release_4_0.html 
(original)
+++ 
websites/production/commons/content/proper/commons-collections/release_4_0.html 
Sun Mar  3 18:22:11 2013
@@ -1,5 +1,5 @@
 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
-!-- Generated by Apache Maven Doxia at Mar 2, 2013 ( $Revision$ ) --
+!-- Generated by Apache Maven Doxia at Mar 3, 2013 ( $Revision$ ) --
 !-- $HeadURL$ --
 html xmlns=http://www.w3.org/1999/xhtml; xml:lang=en lang=en
   head
@@ -13,7 +13,7 @@
 /style
 link rel=stylesheet href=./css/print.css type=text/css 
media=print /
   meta name=author content=Commons Documentation Team /
-meta name=Date-Revision-mmdd content=20130302 /
+meta name=Date-Revision-mmdd content=20130303 /
 meta http-equiv=Content-Language content=en /
 
 link rel=stylesheet type=text/css media=all href=./css/prettify.css/ 
   
@@ -42,7 +42,7 @@
 
 
 div

svn commit: r852823 [10/12] - in /websites/production/commons/content/proper/commons-collections: ./ cobertura/

2013-03-03 Thread tn
Modified: 
websites/production/commons/content/proper/commons-collections/findbugs.html
==
--- 
websites/production/commons/content/proper/commons-collections/findbugs.html 
(original)
+++ 
websites/production/commons/content/proper/commons-collections/findbugs.html 
Sun Mar  3 18:22:11 2013
@@ -1,5 +1,5 @@
 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
-!-- Generated by Apache Maven Doxia at Mar 2, 2013 ( $Revision: 1080083 $ ) 
--
+!-- Generated by Apache Maven Doxia at Mar 3, 2013 ( $Revision: 1080083 $ ) 
--
 !-- $HeadURL: 
https://svn.apache.org/repos/asf/commons/proper/commons-skin/trunk/src/main/resources/META-INF/maven/site.vm
 $ --
 html xmlns=http://www.w3.org/1999/xhtml; xml:lang=en lang=en
   head
@@ -11,7 +11,7 @@
   @import url(./css/site.css);
 /style
 link rel=stylesheet href=./css/print.css type=text/css 
media=print /
-meta name=Date-Revision-mmdd content=20130302 /
+meta name=Date-Revision-mmdd content=20130303 /
 meta http-equiv=Content-Language content=en /
 
 link rel=stylesheet type=text/css media=all href=./css/prettify.css/ 
   
@@ -40,7 +40,7 @@
 
 
 div class=xleft
-span id=publishDateLast Published: 02 March 2013/span
+span id=publishDateLast Published: 03 March 2013/span
   nbsp;| span id=projectVersionVersion: 
4.0-SNAPSHOT/span
   /div
 div class=xrighta 
href=http://www.apachecon.com/; class=externalLink 
title=ApacheConApacheCon/a

Modified: 
websites/production/commons/content/proper/commons-collections/history.html
==
--- websites/production/commons/content/proper/commons-collections/history.html 
(original)
+++ websites/production/commons/content/proper/commons-collections/history.html 
Sun Mar  3 18:22:11 2013
@@ -1,5 +1,5 @@
 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
-!-- Generated by Apache Maven Doxia at Mar 2, 2013 ( $Revision: 1080083 $ ) 
--
+!-- Generated by Apache Maven Doxia at Mar 3, 2013 ( $Revision: 1080083 $ ) 
--
 !-- $HeadURL: 
https://svn.apache.org/repos/asf/commons/proper/commons-skin/trunk/src/main/resources/META-INF/maven/site.vm
 $ --
 html xmlns=http://www.w3.org/1999/xhtml; xml:lang=en lang=en
   head
@@ -13,7 +13,7 @@
 /style
 link rel=stylesheet href=./css/print.css type=text/css 
media=print /
   meta name=author content=Commons Documentation Team /
-meta name=Date-Revision-mmdd content=20130302 /
+meta name=Date-Revision-mmdd content=20130303 /
 meta http-equiv=Content-Language content=en /
 
 link rel=stylesheet type=text/css media=all href=./css/prettify.css/ 
   
@@ -42,7 +42,7 @@
 
 
 div class=xleft
-span id=publishDateLast Published: 02 March 2013/span
+span id=publishDateLast Published: 03 March 2013/span
   nbsp;| span id=projectVersionVersion: 
4.0-SNAPSHOT/span
   /div
 div class=xrighta 
href=http://www.apachecon.com/; class=externalLink 
title=ApacheConApacheCon/a
@@ -271,11 +271,6 @@ Notably MultiValueMap is a new more flex
 bCollections 3.2.1/b Re-packaged v3.2 release which is OSGi enabled.
 /p
 
-p
-bCollections 4.0/b provides more bug fixes and a few enhancements.
-Notably some crucial classes became Serializable. 
-/p
-
 /div
 
 

Modified: 
websites/production/commons/content/proper/commons-collections/index.html
==
--- websites/production/commons/content/proper/commons-collections/index.html 
(original)
+++ websites/production/commons/content/proper/commons-collections/index.html 
Sun Mar  3 18:22:11 2013
@@ -1,5 +1,5 @@
 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
-!-- Generated by Apache Maven Doxia at Mar 2, 2013 ( $Revision: 1080083 $ ) 
--
+!-- Generated by Apache Maven Doxia at Mar 3, 2013 ( $Revision: 1080083 $ ) 
--
 !-- $HeadURL: 
https://svn.apache.org/repos/asf/commons/proper/commons-skin/trunk/src/main/resources/META-INF/maven/site.vm
 $ --
 html xmlns=http://www.w3.org/1999/xhtml; xml:lang=en lang=en
   head
@@ -13,7 +13,7 @@
 /style
 link rel=stylesheet href=./css/print.css type=text/css 
media=print /
   meta name=author content=Commons Documentation Team /
-meta name=Date-Revision-mmdd content=20130302 /
+meta name=Date

svn commit: r1452086 - /commons/proper/validator/trunk/pom.xml

2013-03-03 Thread olamy
Author: olamy
Date: Sun Mar  3 18:24:19 2013
New Revision: 1452086

URL: http://svn.apache.org/r1452086
Log:
upgrade parent

Modified:
commons/proper/validator/trunk/pom.xml

Modified: commons/proper/validator/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/validator/trunk/pom.xml?rev=1452086r1=1452085r2=1452086view=diff
==
--- commons/proper/validator/trunk/pom.xml (original)
+++ commons/proper/validator/trunk/pom.xml Sun Mar  3 18:24:19 2013
@@ -20,7 +20,7 @@
   parent
 groupIdorg.apache.commons/groupId
 artifactIdcommons-parent/artifactId
-version23/version
+version24/version
   /parent
   modelVersion4.0.0/modelVersion
   groupIdcommons-validator/groupId




svn commit: r1452087 - /commons/proper/lang/trunk/pom.xml

2013-03-03 Thread olamy
Author: olamy
Date: Sun Mar  3 18:25:50 2013
New Revision: 1452087

URL: http://svn.apache.org/r1452087
Log:
fix distManagement/site

Modified:
commons/proper/lang/trunk/pom.xml

Modified: commons/proper/lang/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/lang/trunk/pom.xml?rev=1452087r1=1452086r2=1452087view=diff
==
--- commons/proper/lang/trunk/pom.xml (original)
+++ commons/proper/lang/trunk/pom.xml Sun Mar  3 18:25:50 2013
@@ -454,7 +454,7 @@
 site
   idapache.website/id
   nameApache Commons Site/name
-  
url${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid}/url
+  
urlscm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-lang//url
 /site
   /distributionManagement
 




svn commit: r1452088 - /commons/proper/validator/trunk/pom.xml

2013-03-03 Thread olamy
Author: olamy
Date: Sun Mar  3 18:28:36 2013
New Revision: 1452088

URL: http://svn.apache.org/r1452088
Log:
add missing property

Modified:
commons/proper/validator/trunk/pom.xml

Modified: commons/proper/validator/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/validator/trunk/pom.xml?rev=1452088r1=1452087r2=1452088view=diff
==
--- commons/proper/validator/trunk/pom.xml (original)
+++ commons/proper/validator/trunk/pom.xml Sun Mar  3 18:28:36 2013
@@ -138,6 +138,9 @@
 commons.release.2.binary.suffix /
 commons.jira.idVALIDATOR/commons.jira.id
 commons.jira.pid12310494/commons.jira.pid
+
+
commons.scmPubCheckoutDirectorysite-content/commons.scmPubCheckoutDirectory
+
commons.scmPubUrlhttps://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-validator/commons.scmPubUrl
   /properties 
 
   build




svn commit: r1452089 - /commons/proper/validator/trunk/

2013-03-03 Thread olamy
Author: olamy
Date: Sun Mar  3 18:29:12 2013
New Revision: 1452089

URL: http://svn.apache.org/r1452089
Log:
ignore site-content

Modified:
commons/proper/validator/trunk/   (props changed)

Propchange: commons/proper/validator/trunk/
--
--- svn:ignore (original)
+++ svn:ignore Sun Mar  3 18:29:12 2013
@@ -10,4 +10,6 @@ m-target
 lib
 
 .idea
-commons-validator.iml
+*.iml
+site-content
+




svn commit: r1452091 - /commons/proper/validator/trunk/pom.xml

2013-03-03 Thread olamy
Author: olamy
Date: Sun Mar  3 18:30:17 2013
New Revision: 1452091

URL: http://svn.apache.org/r1452091
Log:
ignore site-content in rat report

Modified:
commons/proper/validator/trunk/pom.xml

Modified: commons/proper/validator/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/validator/trunk/pom.xml?rev=1452091r1=1452090r2=1452091view=diff
==
--- commons/proper/validator/trunk/pom.xml (original)
+++ commons/proper/validator/trunk/pom.xml Sun Mar  3 18:30:17 2013
@@ -302,7 +302,15 @@
   
!--excludeFilterFile${basedir}/findbugs-exclude-filter.xml/excludeFilterFile--
 /configuration
   /plugin
-
+  plugin
+groupIdorg.apache.rat/groupId
+artifactIdapache-rat-plugin/artifactId
+configuration
+  excludes
+excludesite-content/**/exclude
+  /excludes
+/configuration
+  /plugin
 /plugins
   /reporting
 




svn commit: r1452093 - /commons/trunks-proper/pom.xml

2013-03-03 Thread olamy
Author: olamy
Date: Sun Mar  3 18:36:27 2013
New Revision: 1452093

URL: http://svn.apache.org/r1452093
Log:
codec in aggregator build

Modified:
commons/trunks-proper/pom.xml

Modified: commons/trunks-proper/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/trunks-proper/pom.xml?rev=1452093r1=1452092r2=1452093view=diff
==
--- commons/trunks-proper/pom.xml (original)
+++ commons/trunks-proper/pom.xml Sun Mar  3 18:36:27 2013
@@ -33,6 +33,7 @@
 
   modules
 modulecli/module
+modulecodec/module
 modulecollections/module
 modulecommons-parent/module
 modulecompress/module




svn commit: r852825 - in /websites/production/commons/content/proper/commons-validator: ./ apidocs/ apidocs/org/apache/commons/validator/ apidocs/org/apache/commons/validator/class-use/ apidocs/org/ap

2013-03-03 Thread olamy
Author: olamy
Date: Sun Mar  3 18:35:53 2013
New Revision: 852825

Log:
Site checkin for project Commons Validator


[This commit notification would consist of 238 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]


svn commit: r1452095 - in /commons/proper/codec/trunk: pom.xml src/site/site.xml

2013-03-03 Thread olamy
Author: olamy
Date: Sun Mar  3 18:38:28 2013
New Revision: 1452095

URL: http://svn.apache.org/r1452095
Log:
fix javadoc links [COMMONSSITE-74]

Modified:
commons/proper/codec/trunk/pom.xml
commons/proper/codec/trunk/src/site/site.xml

Modified: commons/proper/codec/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/codec/trunk/pom.xml?rev=1452095r1=1452094r2=1452095view=diff
==
--- commons/proper/codec/trunk/pom.xml (original)
+++ commons/proper/codec/trunk/pom.xml Sun Mar  3 18:38:28 2013
@@ -241,15 +241,7 @@ limitations under the License.
 plugin
   groupIdorg.apache.maven.plugins/groupId
   artifactIdmaven-site-plugin/artifactId
-  version3.1/version
-  dependencies
-dependency
-  !-- add support for ssh/scp --
-  groupIdorg.apache.maven.wagon/groupId
-  artifactIdwagon-ssh/artifactId
-  version1.0/version
-/dependency
-  /dependencies
+  version3.2/version
 /plugin
   /plugins
 /pluginManagement

Modified: commons/proper/codec/trunk/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/site/site.xml?rev=1452095r1=1452094r2=1452095view=diff
==
--- commons/proper/codec/trunk/src/site/site.xml (original)
+++ commons/proper/codec/trunk/src/site/site.xml Sun Mar  3 18:38:28 2013
@@ -27,7 +27,7 @@
 item name=Overview  href=/index.html/
 item name=Download  
href=http://commons.apache.org/codec/download_codec.cgi/
 item name=Users guide   href=/userguide.html/
-item name=Javadoc v1.7  href=api-release/index.html/
+item name=Javadoc v1.7  href=javadocs/api-release/index.html/
 /menu
 
 menu name=Development




svn commit: r1452097 - in /commons/proper/codec/trunk/src/site/resources: download_code.cgi download_codec.cgi

2013-03-03 Thread olamy
Author: olamy
Date: Sun Mar  3 18:38:59 2013
New Revision: 1452097

URL: http://svn.apache.org/r1452097
Log:
fix cgi file name

Added:
commons/proper/codec/trunk/src/site/resources/download_codec.cgi
  - copied unchanged from r1452075, 
commons/proper/codec/trunk/src/site/resources/download_code.cgi
Removed:
commons/proper/codec/trunk/src/site/resources/download_code.cgi



svn commit: r852826 - in /websites/production/commons/content/proper/commons-codec: ./ apidocs/ apidocs/org/apache/commons/codec/ apidocs/org/apache/commons/codec/binary/ apidocs/org/apache/commons/co

2013-03-03 Thread olamy
Author: olamy
Date: Sun Mar  3 18:46:58 2013
New Revision: 852826

Log:
Site checkin for project Commons Codec


[This commit notification would consist of 299 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]


svn commit: r1452098 - /commons/proper/email/tags/EMAIL_1_3_1/

2013-03-03 Thread tn
Author: tn
Date: Sun Mar  3 18:52:35 2013
New Revision: 1452098

URL: http://svn.apache.org/r1452098
Log:
EMAIL 1.3.1 RC3 becomes the official 1.3.1 release.

Added:
commons/proper/email/tags/EMAIL_1_3_1/
  - copied from r1452097, commons/proper/email/tags/EMAIL_1_3_1_RC3/



Nexus: Promotion Completed.

2013-03-03 Thread Nexus Repository Manager
Description:Release commons-email 1.3.1.Details:The following artifacts have been promoted to the Releases repository.archetype-catalog.xmlcommons-email-1.3.1-sources.jarcommons-email-1.3.1.pom.asccommons-email-1.3.1-sources.jar.asccommons-email-1.3.1-bin.zip.asccommons-email-1.3.1.jar.asccommons-email-1.3.1-tests.jar.asccommons-email-1.3.1-src.zipcommons-email-1.3.1-test-sources.jar.asccommons-email-1.3.1-bin.zipcommons-email-1.3.1-src.tar.gz.asccommons-email-1.3.1-src.zip.asccommons-email-1.3.1.pomcommons-email-1.3.1-tests.jarcommons-email-1.3.1-src.tar.gzcommons-email-1.3.1-bin.tar.gzcommons-email-1.3.1-javadoc.jarcommons-email-1.3.1-bin.tar.gz.asccommons-email-1.3.1-javadoc.jar.asccommons-email-1.3.1-test-sources.jarcommons-email-1.3.1.jar

svn commit: r1505 [2/14] - in /release/commons: ./ attributes/ attributes/binaries/ attributes/source/ bcel/ bcel/binaries/ bcel/source/ beanutils/ beanutils/binaries/ beanutils/source/ betwixt/ betwi

2013-03-03 Thread olamy

Added: release/commons/HEADER.html
==
--- release/commons/HEADER.html (added)
+++ release/commons/HEADER.html Sun Mar  3 21:07:32 2013
@@ -0,0 +1,11 @@
+h2Apache Commons Project Distributions/h2
+
+pThe most recent source and binary releases for the Apache Commons project 
are available from this directory listing. For older releases, please use the 
a href=http://archive.apache.org/dist/commons/;archives/a. /p
+
+h2Important Notices/h2
+
+ul
+lia href=#mirrorsDownload from your nearest mirror site!/a/li
+lia href=#sigPGP/GPG Signatures/a/li
+/ul
+




svn commit: r1505 [2/14] - in /release/commons: ./ attributes/ attributes/binaries/ attributes/source/ bcel/ bcel/binaries/ bcel/source/ beanutils/ beanutils/binaries/ beanutils/source/ betwixt/ betwi

2013-03-03 Thread olamy

Added: release/commons/HEADER.html
==
--- release/commons/HEADER.html (added)
+++ release/commons/HEADER.html Sun Mar  3 21:07:32 2013
@@ -0,0 +1,11 @@
+h2Apache Commons Project Distributions/h2
+
+pThe most recent source and binary releases for the Apache Commons project 
are available from this directory listing. For older releases, please use the 
a href=http://archive.apache.org/dist/commons/;archives/a. /p
+
+h2Important Notices/h2
+
+ul
+lia href=#mirrorsDownload from your nearest mirror site!/a/li
+lia href=#sigPGP/GPG Signatures/a/li
+/ul
+




svn commit: r1505 [14/14] - in /release/commons: ./ attributes/ attributes/binaries/ attributes/source/ bcel/ bcel/binaries/ bcel/source/ beanutils/ beanutils/binaries/ beanutils/source/ betwixt/ betw

2013-03-03 Thread olamy
Added: release/commons/validator/source/commons-validator-1.3.1-src.zip.asc
==
Binary file - no diff available.

Propchange: release/commons/validator/source/commons-validator-1.3.1-src.zip.asc
--
svn:mime-type = application/pgp-signature

Added: release/commons/validator/source/commons-validator-1.3.1-src.zip.md5
==
--- release/commons/validator/source/commons-validator-1.3.1-src.zip.md5 (added)
+++ release/commons/validator/source/commons-validator-1.3.1-src.zip.md5 Sun 
Mar  3 21:07:32 2013
@@ -0,0 +1 @@
+55e9a2a853a97df242cf9987b2654d3a *commons-validator-1.3.1-src.zip
\ No newline at end of file

Added: release/commons/validator/source/commons-validator-1.4.0-src.tar.gz
==
Binary file - no diff available.

Propchange: release/commons/validator/source/commons-validator-1.4.0-src.tar.gz
--
svn:mime-type = application/x-gzip

Added: release/commons/validator/source/commons-validator-1.4.0-src.tar.gz.asc
==
Binary file - no diff available.

Propchange: 
release/commons/validator/source/commons-validator-1.4.0-src.tar.gz.asc
--
svn:mime-type = application/pgp-signature

Added: release/commons/validator/source/commons-validator-1.4.0-src.tar.gz.md5
==
--- release/commons/validator/source/commons-validator-1.4.0-src.tar.gz.md5 
(added)
+++ release/commons/validator/source/commons-validator-1.4.0-src.tar.gz.md5 Sun 
Mar  3 21:07:32 2013
@@ -0,0 +1 @@
+f1e9418095cd1e99a00cb67747078277

Added: release/commons/validator/source/commons-validator-1.4.0-src.tar.gz.sha1
==
--- release/commons/validator/source/commons-validator-1.4.0-src.tar.gz.sha1 
(added)
+++ release/commons/validator/source/commons-validator-1.4.0-src.tar.gz.sha1 
Sun Mar  3 21:07:32 2013
@@ -0,0 +1 @@
+0851ab986ebc46cf3e1a4f9089986da301e76b60

Added: release/commons/validator/source/commons-validator-1.4.0-src.zip
==
Binary file - no diff available.

Propchange: release/commons/validator/source/commons-validator-1.4.0-src.zip
--
svn:mime-type = application/zip

Added: release/commons/validator/source/commons-validator-1.4.0-src.zip.asc
==
Binary file - no diff available.

Propchange: release/commons/validator/source/commons-validator-1.4.0-src.zip.asc
--
svn:mime-type = application/pgp-signature

Added: release/commons/validator/source/commons-validator-1.4.0-src.zip.md5
==
--- release/commons/validator/source/commons-validator-1.4.0-src.zip.md5 (added)
+++ release/commons/validator/source/commons-validator-1.4.0-src.zip.md5 Sun 
Mar  3 21:07:32 2013
@@ -0,0 +1 @@
+82c20ac73c78adad49309ab1c2858748

Added: release/commons/validator/source/commons-validator-1.4.0-src.zip.sha1
==
--- release/commons/validator/source/commons-validator-1.4.0-src.zip.sha1 
(added)
+++ release/commons/validator/source/commons-validator-1.4.0-src.zip.sha1 Sun 
Mar  3 21:07:32 2013
@@ -0,0 +1 @@
+28093c2e8ea72003185345a7be6b7384ccbdb74a

Added: release/commons/vfs/HEADER.html
==
--- release/commons/vfs/HEADER.html (added)
+++ release/commons/vfs/HEADER.html Sun Mar  3 21:07:32 2013
@@ -0,0 +1,13 @@
+h1Index of /dist/commons/h1
+
+h2Apache Commons Project Distributions/h2
+
+pThe most recent source and binary releases for the Apache Commons project 
are available from this directory listing. For older releases, please use the 
a href=http://archive.apache.org/dist/commons/;archives/a. /p
+
+h2Important Notices/h2
+
+ul
+lia href=#mirrorsDownload from your nearest mirror site!/a/li
+lia href=#sigPGP/GPG Signatures/a/li
+/ul
+

Added: release/commons/vfs/README.html
==
--- release/commons/vfs/README.html (added)
+++ release/commons/vfs/README.html Sun Mar  3 21:07:32 2013
@@ -0,0 +1,41 @@
+h1Commons VFS v2.0/h1
+
+
+pThis is the 2.0 version of commons-VFS. It is available in both binary 

svn commit: r1505 [14/14] - in /release/commons: ./ attributes/ attributes/binaries/ attributes/source/ bcel/ bcel/binaries/ bcel/source/ beanutils/ beanutils/binaries/ beanutils/source/ betwixt/ betw

2013-03-03 Thread olamy
Added: release/commons/validator/source/commons-validator-1.3.1-src.zip.asc
==
Binary file - no diff available.

Propchange: release/commons/validator/source/commons-validator-1.3.1-src.zip.asc
--
svn:mime-type = application/pgp-signature

Added: release/commons/validator/source/commons-validator-1.3.1-src.zip.md5
==
--- release/commons/validator/source/commons-validator-1.3.1-src.zip.md5 (added)
+++ release/commons/validator/source/commons-validator-1.3.1-src.zip.md5 Sun 
Mar  3 21:07:32 2013
@@ -0,0 +1 @@
+55e9a2a853a97df242cf9987b2654d3a *commons-validator-1.3.1-src.zip
\ No newline at end of file

Added: release/commons/validator/source/commons-validator-1.4.0-src.tar.gz
==
Binary file - no diff available.

Propchange: release/commons/validator/source/commons-validator-1.4.0-src.tar.gz
--
svn:mime-type = application/x-gzip

Added: release/commons/validator/source/commons-validator-1.4.0-src.tar.gz.asc
==
Binary file - no diff available.

Propchange: 
release/commons/validator/source/commons-validator-1.4.0-src.tar.gz.asc
--
svn:mime-type = application/pgp-signature

Added: release/commons/validator/source/commons-validator-1.4.0-src.tar.gz.md5
==
--- release/commons/validator/source/commons-validator-1.4.0-src.tar.gz.md5 
(added)
+++ release/commons/validator/source/commons-validator-1.4.0-src.tar.gz.md5 Sun 
Mar  3 21:07:32 2013
@@ -0,0 +1 @@
+f1e9418095cd1e99a00cb67747078277

Added: release/commons/validator/source/commons-validator-1.4.0-src.tar.gz.sha1
==
--- release/commons/validator/source/commons-validator-1.4.0-src.tar.gz.sha1 
(added)
+++ release/commons/validator/source/commons-validator-1.4.0-src.tar.gz.sha1 
Sun Mar  3 21:07:32 2013
@@ -0,0 +1 @@
+0851ab986ebc46cf3e1a4f9089986da301e76b60

Added: release/commons/validator/source/commons-validator-1.4.0-src.zip
==
Binary file - no diff available.

Propchange: release/commons/validator/source/commons-validator-1.4.0-src.zip
--
svn:mime-type = application/zip

Added: release/commons/validator/source/commons-validator-1.4.0-src.zip.asc
==
Binary file - no diff available.

Propchange: release/commons/validator/source/commons-validator-1.4.0-src.zip.asc
--
svn:mime-type = application/pgp-signature

Added: release/commons/validator/source/commons-validator-1.4.0-src.zip.md5
==
--- release/commons/validator/source/commons-validator-1.4.0-src.zip.md5 (added)
+++ release/commons/validator/source/commons-validator-1.4.0-src.zip.md5 Sun 
Mar  3 21:07:32 2013
@@ -0,0 +1 @@
+82c20ac73c78adad49309ab1c2858748

Added: release/commons/validator/source/commons-validator-1.4.0-src.zip.sha1
==
--- release/commons/validator/source/commons-validator-1.4.0-src.zip.sha1 
(added)
+++ release/commons/validator/source/commons-validator-1.4.0-src.zip.sha1 Sun 
Mar  3 21:07:32 2013
@@ -0,0 +1 @@
+28093c2e8ea72003185345a7be6b7384ccbdb74a

Added: release/commons/vfs/HEADER.html
==
--- release/commons/vfs/HEADER.html (added)
+++ release/commons/vfs/HEADER.html Sun Mar  3 21:07:32 2013
@@ -0,0 +1,13 @@
+h1Index of /dist/commons/h1
+
+h2Apache Commons Project Distributions/h2
+
+pThe most recent source and binary releases for the Apache Commons project 
are available from this directory listing. For older releases, please use the 
a href=http://archive.apache.org/dist/commons/;archives/a. /p
+
+h2Important Notices/h2
+
+ul
+lia href=#mirrorsDownload from your nearest mirror site!/a/li
+lia href=#sigPGP/GPG Signatures/a/li
+/ul
+

Added: release/commons/vfs/README.html
==
--- release/commons/vfs/README.html (added)
+++ release/commons/vfs/README.html Sun Mar  3 21:07:32 2013
@@ -0,0 +1,41 @@
+h1Commons VFS v2.0/h1
+
+
+pThis is the 2.0 version of commons-VFS. It is available in both binary 

svn commit: r1452122 - in /commons/proper/configuration/trunk/src: main/java/org/apache/commons/configuration/ main/java/org/apache/commons/configuration/web/ test/java/org/apache/commons/configuratio

2013-03-03 Thread oheger
Author: oheger
Date: Sun Mar  3 21:17:21 2013
New Revision: 1452122

URL: http://svn.apache.org/r1452122
Log:
[CONFIGURATION-527] Made AbstractConfiguration.clearPropertyDirect() abstract.
This caused some adaptations of other configuration classes.

Modified:

commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/AbstractConfiguration.java

commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/BaseHierarchicalConfiguration.java

commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/DataConfiguration.java

commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/JNDIConfiguration.java

commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/web/BaseWebConfiguration.java

commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/NonCloneableConfiguration.java

commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/TestDataConfiguration.java

Modified: 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/AbstractConfiguration.java
URL: 
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/AbstractConfiguration.java?rev=1452122r1=1452121r2=1452122view=diff
==
--- 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/AbstractConfiguration.java
 (original)
+++ 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/AbstractConfiguration.java
 Sun Mar  3 21:17:21 2013
@@ -616,15 +616,11 @@ public abstract class AbstractConfigurat
 /**
  * Removes the specified property from this configuration. This method is
  * called by {@code clearProperty()} after it has done some
- * preparations. It should be overridden in sub classes. This base
- * implementation is just left empty.
+ * preparations. It must be overridden in sub classes.
  *
  * @param key the key to be removed
  */
-protected void clearPropertyDirect(String key)
-{
-// override in sub classes
-}
+protected abstract void clearPropertyDirect(String key);
 
 public void clear()
 {

Modified: 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/BaseHierarchicalConfiguration.java
URL: 
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/BaseHierarchicalConfiguration.java?rev=1452122r1=1452121r2=1452122view=diff
==
--- 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/BaseHierarchicalConfiguration.java
 (original)
+++ 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/BaseHierarchicalConfiguration.java
 Sun Mar  3 21:17:21 2013
@@ -843,17 +843,14 @@ public class BaseHierarchicalConfigurati
  * @param key the key of the property to be removed
  */
 @Override
-public void clearProperty(String key)
+protected void clearPropertyDirect(String key)
 {
-fireEvent(EVENT_CLEAR_PROPERTY, key, null, true);
 ListConfigurationNode nodes = fetchNodeList(key);
 
 for (ConfigurationNode node : nodes)
 {
 clearNode(node);
 }
-
-fireEvent(EVENT_CLEAR_PROPERTY, key, null, false);
 }
 
 /**

Modified: 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/DataConfiguration.java
URL: 
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/DataConfiguration.java?rev=1452122r1=1452121r2=1452122view=diff
==
--- 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/DataConfiguration.java
 (original)
+++ 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/DataConfiguration.java
 Sun Mar  3 21:17:21 2013
@@ -164,6 +164,19 @@ public class DataConfiguration extends A
 }
 
 @Override
+protected void clearPropertyDirect(String key)
+{
+if (configuration instanceof AbstractConfiguration)
+{
+((AbstractConfiguration) configuration).clearPropertyDirect(key);
+}
+else
+{
+configuration.clearProperty(key);
+}
+}
+
+@Override
 public void setProperty(String key, Object value)
 {
 configuration.setProperty(key, value);

Modified: 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/JNDIConfiguration.java
URL: 

svn commit: r1452125 - /commons/proper/configuration/trunk/src/changes/changes.xml

2013-03-03 Thread oheger
Author: oheger
Date: Sun Mar  3 21:20:19 2013
New Revision: 1452125

URL: http://svn.apache.org/r1452125
Log:
[CONFIGURATION-527] Updated changes.xml.

Modified:
commons/proper/configuration/trunk/src/changes/changes.xml

Modified: commons/proper/configuration/trunk/src/changes/changes.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/changes/changes.xml?rev=1452125r1=1452124r2=1452125view=diff
==
--- commons/proper/configuration/trunk/src/changes/changes.xml (original)
+++ commons/proper/configuration/trunk/src/changes/changes.xml Sun Mar  3 
21:20:19 2013
@@ -27,6 +27,9 @@
   body
 release version=2.0 date=in SVN
   description=TBD
+  action dev=oheger type=update issue=CONFIGURATION-527 
due-to=Matthias Richter
+AbstractConfiguration.clearPropertyDirect() is now abstract.
+  /action
   action dev=oheger type=update issue=CONFIGURATION-526 
due-to=Oliver Kopp
 XMLPropertiesConfiguration now supports loading from and saving to DOM
 nodes.




svn commit: r1452126 - /commons/proper/codec/trunk/

2013-03-03 Thread olamy
Author: olamy
Date: Sun Mar  3 21:23:43 2013
New Revision: 1452126

URL: http://svn.apache.org/r1452126
Log:
ignore *.iml

Modified:
commons/proper/codec/trunk/   (props changed)

Propchange: commons/proper/codec/trunk/
--
--- svn:ignore (original)
+++ svn:ignore Sun Mar  3 21:23:43 2013
@@ -16,3 +16,4 @@ build.properties
 .externalToolBuilders
 maven-eclipse.xml
 .fbprefs
+*.iml




svn commit: r852847 - in /websites/production/commons/content/proper/commons-email/javadocs: api-1.3/ api-release/

2013-03-03 Thread tn
Author: tn
Date: Sun Mar  3 22:05:34 2013
New Revision: 852847

Log:
Move api-release to api-1.3

Added:
websites/production/commons/content/proper/commons-email/javadocs/api-1.3/
  - copied from r850917, 
websites/production/commons/content/proper/commons-email/javadocs/api-release/
Removed:

websites/production/commons/content/proper/commons-email/javadocs/api-release/



svn commit: r852848 [16/22] - in /websites/production/commons/content/proper/commons-email/javadocs/api-release: ./ org/ org/apache/ org/apache/commons/ org/apache/commons/mail/ org/apache/commons/mai

2013-03-03 Thread tn
Added: 
websites/production/commons/content/proper/commons-email/javadocs/api-release/src-html/org/apache/commons/mail/ByteArrayDataSource.html
==
--- 
websites/production/commons/content/proper/commons-email/javadocs/api-release/src-html/org/apache/commons/mail/ByteArrayDataSource.html
 (added)
+++ 
websites/production/commons/content/proper/commons-email/javadocs/api-release/src-html/org/apache/commons/mail/ByteArrayDataSource.html
 Sun Mar  3 22:09:55 2013
@@ -0,0 +1,321 @@
+!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN 
http://www.w3.org/TR/html4/loose.dtd;
+html lang=en
+head
+titleSource code/title
+link rel=stylesheet type=text/css href=../../../../../stylesheet.css 
title=Style
+/head
+body
+div class=sourceContainer
+prespan class=sourceLineNo001/span/*a name=line.1/a
+span class=sourceLineNo002/span * Licensed to the Apache Software 
Foundation (ASF) under one or morea name=line.2/a
+span class=sourceLineNo003/span * contributor license agreements.  See 
the NOTICE file distributed witha name=line.3/a
+span class=sourceLineNo004/span * this work for additional information 
regarding copyright ownership.a name=line.4/a
+span class=sourceLineNo005/span * The ASF licenses this file to You 
under the Apache License, Version 2.0a name=line.5/a
+span class=sourceLineNo006/span * (the License); you may not use this 
file except in compliance witha name=line.6/a
+span class=sourceLineNo007/span * the License.  You may obtain a copy of 
the License ata name=line.7/a
+span class=sourceLineNo008/span *a name=line.8/a
+span class=sourceLineNo009/span * 
http://www.apache.org/licenses/LICENSE-2.0a name=line.9/a
+span class=sourceLineNo010/span *a name=line.10/a
+span class=sourceLineNo011/span * Unless required by applicable law or 
agreed to in writing, softwarea name=line.11/a
+span class=sourceLineNo012/span * distributed under the License is 
distributed on an AS IS BASIS,a name=line.12/a
+span class=sourceLineNo013/span * WITHOUT WARRANTIES OR CONDITIONS OF 
ANY KIND, either express or implied.a name=line.13/a
+span class=sourceLineNo014/span * See the License for the specific 
language governing permissions anda name=line.14/a
+span class=sourceLineNo015/span * limitations under the License.a 
name=line.15/a
+span class=sourceLineNo016/span */a name=line.16/a
+span class=sourceLineNo017/spanpackage org.apache.commons.mail;a 
name=line.17/a
+span class=sourceLineNo018/spana name=line.18/a
+span class=sourceLineNo019/spanimport java.io.BufferedInputStream;a 
name=line.19/a
+span class=sourceLineNo020/spanimport java.io.BufferedOutputStream;a 
name=line.20/a
+span class=sourceLineNo021/spanimport java.io.ByteArrayInputStream;a 
name=line.21/a
+span class=sourceLineNo022/spanimport java.io.ByteArrayOutputStream;a 
name=line.22/a
+span class=sourceLineNo023/spanimport java.io.IOException;a 
name=line.23/a
+span class=sourceLineNo024/spanimport java.io.InputStream;a 
name=line.24/a
+span class=sourceLineNo025/spanimport java.io.OutputStream;a 
name=line.25/a
+span class=sourceLineNo026/spanimport 
java.io.UnsupportedEncodingException;a name=line.26/a
+span class=sourceLineNo027/spana name=line.27/a
+span class=sourceLineNo028/spanimport javax.activation.DataSource;a 
name=line.28/a
+span class=sourceLineNo029/spana name=line.29/a
+span class=sourceLineNo030/span/**a name=line.30/a
+span class=sourceLineNo031/span * This class implements a typed 
DataSource from:lt;brgt;a name=line.31/a
+span class=sourceLineNo032/span *a name=line.32/a
+span class=sourceLineNo033/span * - an InputStreamlt;brgt;a 
name=line.33/a
+span class=sourceLineNo034/span * - a byte arraylt;brgt;a 
name=line.34/a
+span class=sourceLineNo035/span * - a Stringlt;brgt;a 
name=line.35/a
+span class=sourceLineNo036/span *a name=line.36/a
+span class=sourceLineNo037/span * lt;pgt;a name=line.37/a
+span class=sourceLineNo038/span * From version 1.3.1, it is possible to 
set a name for this DataSource,a name=line.38/a
+span class=sourceLineNo039/span * and it is recommended to do so.a 
name=line.39/a
+span class=sourceLineNo040/span *a name=line.40/a
+span class=sourceLineNo041/span * @since 1.0a name=line.41/a
+span class=sourceLineNo042/span * @author lt;a 
href=mailto:colin.chalm...@maxware.nlgt;Colin Chalmerslt;/agt;a 
name=line.42/a
+span class=sourceLineNo043/span * @author lt;a 
href=mailto:j...@latchkey.comgt;Jon S. Stevenslt;/agt;a 
name=line.43/a
+span class=sourceLineNo044/span * @author lt;a 
href=mailto:bmcla...@algx.netgt;Brett McLaughlinlt;/agt;a 
name=line.44/a
+span class=sourceLineNo045/span * @version $Id$a name=line.45/a
+span class=sourceLineNo046/span */a name=line.46/a
+span class=sourceLineNo047/spanpublic class ByteArrayDataSource 
implements DataSourcea name=line.47/a
+span class=sourceLineNo048/span{a name=line.48/a
+span class=sourceLineNo049/span/** Define the buffer size. */a 
name=line.49/a
+span 

svn commit: r852851 - in /websites/production/commons/content/proper/commons-email: ./ announcements/ apidocs/ apidocs/org/apache/commons/mail/ apidocs/org/apache/commons/mail/class-use/ apidocs/org/a

2013-03-03 Thread tn
Author: tn
Date: Sun Mar  3 22:22:51 2013
New Revision: 852851

Log:
Site checkin for project Commons Email


[This commit notification would consist of 106 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]


svn commit: r1452198 - /commons/proper/ognl/trunk/pom.xml

2013-03-03 Thread lukaszlenart
Author: lukaszlenart
Date: Mon Mar  4 07:07:11 2013
New Revision: 1452198

URL: http://svn.apache.org/r1452198
Log:
Reverts back the change where site-content is placed

Modified:
commons/proper/ognl/trunk/pom.xml

Modified: commons/proper/ognl/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/ognl/trunk/pom.xml?rev=1452198r1=1452197r2=1452198view=diff
==
--- commons/proper/ognl/trunk/pom.xml (original)
+++ commons/proper/ognl/trunk/pom.xml Mon Mar  4 07:07:11 2013
@@ -178,7 +178,7 @@ limitations under the License.
 maven.compile.source1.5/maven.compile.source
 maven.compile.target1.5/maven.compile.target
 
-
commons.scmPubCheckoutDirectory${project.build.directory}/site-content/commons.scmPubCheckoutDirectory
+
commons.scmPubCheckoutDirectorysite-content/commons.scmPubCheckoutDirectory
   /properties
 
   dependencies
@@ -506,7 +506,7 @@ limitations under the License.
   idsetup-checkout/id
   activation
 file
-  missing${project.build.directory}/site-content/missing
+  missingsite-content/missing
 /file
   /activation
   build