svn commit: r1484499 - in /commons/proper/compress/trunk/src: main/java/org/apache/commons/compress/archivers/zip/ZipFile.java test/java/org/apache/commons/compress/archivers/zip/ZipFileTest.java

2013-05-20 Thread bodewig
Author: bodewig
Date: Mon May 20 15:33:57 2013
New Revision: 1484499

URL: http://svn.apache.org/r1484499
Log:
COMPRESS-227 ensure ZipFile#getEntry only returns entries that will
return non-null InputStreams in getInputStream.

nameMap isn't used before all local file headers are parsed so it is
easier to only populate it then.  This not only ensure it only
contains ZipArchiveEntries that are known to the entries map, it also
simplifies the case where an entry's name changes due to extra fields.

Modified:

commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipFile.java

commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/archivers/zip/ZipFileTest.java

Modified: 
commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipFile.java
URL: 
http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipFile.java?rev=1484499r1=1484498r2=1484499view=diff
==
--- 
commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipFile.java
 (original)
+++ 
commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipFile.java
 Mon May 20 15:33:57 2013
@@ -534,8 +534,6 @@ public class ZipFile {
 // data offset will be filled later
 entries.put(ze, offset);
 
-nameMap.put(ze.getName(), ze);
-
 byte[] cdExtraData = new byte[extraLen];
 archive.readFully(cdExtraData);
 ze.setCentralDirectoryExtra(cdExtraData);
@@ -889,12 +887,9 @@ public class ZipFile {
 NameAndComment nc = entriesWithoutUTF8Flag.get(ze);
 ZipUtil.setNameAndCommentFromExtraFields(ze, nc.name,
  nc.comment);
-if (!orig.equals(ze.getName())) {
-nameMap.remove(orig);
-nameMap.put(ze.getName(), ze);
-}
 }
 entries.put(ze, offsetEntry);
+nameMap.put(ze.getName(), ze);
 }
 }
 

Modified: 
commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/archivers/zip/ZipFileTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/archivers/zip/ZipFileTest.java?rev=1484499r1=1484498r2=1484499view=diff
==
--- 
commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/archivers/zip/ZipFileTest.java
 (original)
+++ 
commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/archivers/zip/ZipFileTest.java
 Mon May 20 15:33:57 2013
@@ -204,6 +204,48 @@ public class ZipFileTest extends TestCas
 }
 }
 
+public void XtestDuplicateEntry() throws Exception {
+File f = File.createTempFile(commons-compress-zipfiletest, .zip);
+f.deleteOnExit();
+File f2 = File.createTempFile(commons-compress-zipfiletest, .txt);
+f2.deleteOnExit();
+
+OutputStream o = null;
+try {
+o = new FileOutputStream(f);
+ZipArchiveOutputStream zo = new ZipArchiveOutputStream(o);
+// simple way to ensure entries have extra data
+zo.setUseZip64(Zip64Mode.Always);
+
+// add the same file twice
+ZipArchiveEntry ze = new ZipArchiveEntry(f2, foo);
+zo.putArchiveEntry(ze);
+zo.write(new byte[0]);
+zo.closeArchiveEntry();
+ze = new ZipArchiveEntry(f2, foo);
+zo.putArchiveEntry(ze);
+zo.write(new byte[0]);
+zo.closeArchiveEntry();
+zo.close();
+
+o.close();
+o = null;
+
+
System.err.println(---vvv---);
+zf = new ZipFile(f);
+ze = zf.getEntry(foo);
+assertNotNull(ze);
+assertNotNull(zf.getInputStream(ze));
+} finally {
+
System.err.println(---^^^---);
+if (o != null) {
+o.close();
+}
+f.delete();
+f2.delete();
+}
+}
+
 /*
  * ordertest.zip has been handcrafted.
  *




svn commit: r1484494 - /commons/sandbox/monitoring/trunk/src/site/xdoc/tutorial.xml

2013-05-20 Thread mbenson
Author: mbenson
Date: Mon May 20 14:55:23 2013
New Revision: 1484494

URL: http://svn.apache.org/r1484494
Log:
sp

Modified:
commons/sandbox/monitoring/trunk/src/site/xdoc/tutorial.xml

Modified: commons/sandbox/monitoring/trunk/src/site/xdoc/tutorial.xml
URL: 
http://svn.apache.org/viewvc/commons/sandbox/monitoring/trunk/src/site/xdoc/tutorial.xml?rev=1484494r1=1484493r2=1484494view=diff
==
--- commons/sandbox/monitoring/trunk/src/site/xdoc/tutorial.xml (original)
+++ commons/sandbox/monitoring/trunk/src/site/xdoc/tutorial.xml Mon May 20 
14:55:23 2013
@@ -53,7 +53,7 @@
 a bRepository/b. It is identified by a name, a category (technical 
description of the application
 component) and a subsystem (functional description). In the previous 
code sample, only a name was set
 as category and subsystem are optional. We recommend to use them to 
create monitors as this is a
-convenient and powerfull way to group and sort monitors and associated 
statistics.
+convenient and powerful way to group and sort monitors and associated 
statistics.
   /p
   p
 The monitor maintains a set of Metrics, that can be either 
bCounters/b or bGauges/b.




svn commit: r2024 - /dev/commons/logging/binaries/ /dev/commons/logging/source/ /release/commons/logging/binaries/ /release/commons/logging/source/

2013-05-20 Thread tn
Author: tn
Date: Mon May 20 16:48:34 2013
New Revision: 2024

Log:
Publish commons-logging 1.1.3 Release

Added:
release/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz
  - copied unchanged from r2023, 
dev/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz
release/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.asc
  - copied unchanged from r2023, 
dev/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.asc
release/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.md5
  - copied unchanged from r2023, 
dev/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.md5
release/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.sha1
  - copied unchanged from r2023, 
dev/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.sha1
release/commons/logging/binaries/commons-logging-1.1.3-bin.zip
  - copied unchanged from r2023, 
dev/commons/logging/binaries/commons-logging-1.1.3-bin.zip
release/commons/logging/binaries/commons-logging-1.1.3-bin.zip.asc
  - copied unchanged from r2023, 
dev/commons/logging/binaries/commons-logging-1.1.3-bin.zip.asc
release/commons/logging/binaries/commons-logging-1.1.3-bin.zip.md5
  - copied unchanged from r2023, 
dev/commons/logging/binaries/commons-logging-1.1.3-bin.zip.md5
release/commons/logging/binaries/commons-logging-1.1.3-bin.zip.sha1
  - copied unchanged from r2023, 
dev/commons/logging/binaries/commons-logging-1.1.3-bin.zip.sha1
release/commons/logging/source/commons-logging-1.1.3-src.tar.gz
  - copied unchanged from r2023, 
dev/commons/logging/source/commons-logging-1.1.3-src.tar.gz
release/commons/logging/source/commons-logging-1.1.3-src.tar.gz.asc
  - copied unchanged from r2023, 
dev/commons/logging/source/commons-logging-1.1.3-src.tar.gz.asc
release/commons/logging/source/commons-logging-1.1.3-src.tar.gz.md5
  - copied unchanged from r2023, 
dev/commons/logging/source/commons-logging-1.1.3-src.tar.gz.md5
release/commons/logging/source/commons-logging-1.1.3-src.tar.gz.sha1
  - copied unchanged from r2023, 
dev/commons/logging/source/commons-logging-1.1.3-src.tar.gz.sha1
release/commons/logging/source/commons-logging-1.1.3-src.zip
  - copied unchanged from r2023, 
dev/commons/logging/source/commons-logging-1.1.3-src.zip
release/commons/logging/source/commons-logging-1.1.3-src.zip.asc
  - copied unchanged from r2023, 
dev/commons/logging/source/commons-logging-1.1.3-src.zip.asc
release/commons/logging/source/commons-logging-1.1.3-src.zip.md5
  - copied unchanged from r2023, 
dev/commons/logging/source/commons-logging-1.1.3-src.zip.md5
release/commons/logging/source/commons-logging-1.1.3-src.zip.sha1
  - copied unchanged from r2023, 
dev/commons/logging/source/commons-logging-1.1.3-src.zip.sha1
Removed:
dev/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz
dev/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.asc
dev/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.md5
dev/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.sha1
dev/commons/logging/binaries/commons-logging-1.1.3-bin.zip
dev/commons/logging/binaries/commons-logging-1.1.3-bin.zip.asc
dev/commons/logging/binaries/commons-logging-1.1.3-bin.zip.md5
dev/commons/logging/binaries/commons-logging-1.1.3-bin.zip.sha1
dev/commons/logging/source/commons-logging-1.1.3-src.tar.gz
dev/commons/logging/source/commons-logging-1.1.3-src.tar.gz.asc
dev/commons/logging/source/commons-logging-1.1.3-src.tar.gz.md5
dev/commons/logging/source/commons-logging-1.1.3-src.tar.gz.sha1
dev/commons/logging/source/commons-logging-1.1.3-src.zip
dev/commons/logging/source/commons-logging-1.1.3-src.zip.asc
dev/commons/logging/source/commons-logging-1.1.3-src.zip.md5
dev/commons/logging/source/commons-logging-1.1.3-src.zip.sha1



svn commit: r2024 - /dev/commons/logging/binaries/ /dev/commons/logging/source/ /release/commons/logging/binaries/ /release/commons/logging/source/

2013-05-20 Thread tn
Author: tn
Date: Mon May 20 16:48:34 2013
New Revision: 2024

Log:
Publish commons-logging 1.1.3 Release

Added:
release/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz
  - copied unchanged from r2023, 
dev/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz
release/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.asc
  - copied unchanged from r2023, 
dev/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.asc
release/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.md5
  - copied unchanged from r2023, 
dev/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.md5
release/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.sha1
  - copied unchanged from r2023, 
dev/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.sha1
release/commons/logging/binaries/commons-logging-1.1.3-bin.zip
  - copied unchanged from r2023, 
dev/commons/logging/binaries/commons-logging-1.1.3-bin.zip
release/commons/logging/binaries/commons-logging-1.1.3-bin.zip.asc
  - copied unchanged from r2023, 
dev/commons/logging/binaries/commons-logging-1.1.3-bin.zip.asc
release/commons/logging/binaries/commons-logging-1.1.3-bin.zip.md5
  - copied unchanged from r2023, 
dev/commons/logging/binaries/commons-logging-1.1.3-bin.zip.md5
release/commons/logging/binaries/commons-logging-1.1.3-bin.zip.sha1
  - copied unchanged from r2023, 
dev/commons/logging/binaries/commons-logging-1.1.3-bin.zip.sha1
release/commons/logging/source/commons-logging-1.1.3-src.tar.gz
  - copied unchanged from r2023, 
dev/commons/logging/source/commons-logging-1.1.3-src.tar.gz
release/commons/logging/source/commons-logging-1.1.3-src.tar.gz.asc
  - copied unchanged from r2023, 
dev/commons/logging/source/commons-logging-1.1.3-src.tar.gz.asc
release/commons/logging/source/commons-logging-1.1.3-src.tar.gz.md5
  - copied unchanged from r2023, 
dev/commons/logging/source/commons-logging-1.1.3-src.tar.gz.md5
release/commons/logging/source/commons-logging-1.1.3-src.tar.gz.sha1
  - copied unchanged from r2023, 
dev/commons/logging/source/commons-logging-1.1.3-src.tar.gz.sha1
release/commons/logging/source/commons-logging-1.1.3-src.zip
  - copied unchanged from r2023, 
dev/commons/logging/source/commons-logging-1.1.3-src.zip
release/commons/logging/source/commons-logging-1.1.3-src.zip.asc
  - copied unchanged from r2023, 
dev/commons/logging/source/commons-logging-1.1.3-src.zip.asc
release/commons/logging/source/commons-logging-1.1.3-src.zip.md5
  - copied unchanged from r2023, 
dev/commons/logging/source/commons-logging-1.1.3-src.zip.md5
release/commons/logging/source/commons-logging-1.1.3-src.zip.sha1
  - copied unchanged from r2023, 
dev/commons/logging/source/commons-logging-1.1.3-src.zip.sha1
Removed:
dev/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz
dev/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.asc
dev/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.md5
dev/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.sha1
dev/commons/logging/binaries/commons-logging-1.1.3-bin.zip
dev/commons/logging/binaries/commons-logging-1.1.3-bin.zip.asc
dev/commons/logging/binaries/commons-logging-1.1.3-bin.zip.md5
dev/commons/logging/binaries/commons-logging-1.1.3-bin.zip.sha1
dev/commons/logging/source/commons-logging-1.1.3-src.tar.gz
dev/commons/logging/source/commons-logging-1.1.3-src.tar.gz.asc
dev/commons/logging/source/commons-logging-1.1.3-src.tar.gz.md5
dev/commons/logging/source/commons-logging-1.1.3-src.tar.gz.sha1
dev/commons/logging/source/commons-logging-1.1.3-src.zip
dev/commons/logging/source/commons-logging-1.1.3-src.zip.asc
dev/commons/logging/source/commons-logging-1.1.3-src.zip.md5
dev/commons/logging/source/commons-logging-1.1.3-src.zip.sha1



svn commit: r2025 - in /release/commons/logging: README.html RELEASE-NOTES.txt binaries/README.html source/README.html

2013-05-20 Thread tn
Author: tn
Date: Mon May 20 16:50:02 2013
New Revision: 2025

Log:
Update release-notes and readme files after release.

Modified:
release/commons/logging/README.html
release/commons/logging/RELEASE-NOTES.txt
release/commons/logging/binaries/README.html
release/commons/logging/source/README.html

Modified: release/commons/logging/README.html
==
--- release/commons/logging/README.html (original)
+++ release/commons/logging/README.html Mon May 20 16:50:02 2013
@@ -1,7 +1,7 @@
-h1Commons-Logging v1.1.2/h1
+h1Commons-Logging v1.1.3/h1
 
 
-pThis is the 1.1.2 version of commons-logging. It is available in both 
+pThis is the 1.1.3 version of commons-logging. It is available in both 
 binary and source distributions./p
 
 pstrongNote:/strong the larger size of the new downloads is due to 
improved documentation shipping
@@ -33,13 +33,13 @@
 
 preAlways test available signatures, ie.g./i,
 $ pgpk -a KEYS
-$ pgpv commons-logging-1.1.2-bin.tar.gz.asc
+$ pgpv commons-logging-1.1.3-bin.tar.gz.asc
 or,
 $ pgp -ka KEYS
-$ pgp commons-logging-1.1.2-bin.tar.gz.asc
+$ pgp commons-logging-1.1.3-bin.tar.gz.asc
 or,
 $ gpg --import KEYS
-$ gpg --verify commons-logging-1.1.2-bin.tar.gz.asc
+$ gpg --verify commons-logging-1.1.3-bin.tar.gz.asc
 /pre
 p
 

Modified: release/commons/logging/RELEASE-NOTES.txt
==
--- release/commons/logging/RELEASE-NOTES.txt (original)
+++ release/commons/logging/RELEASE-NOTES.txt Mon May 20 16:50:02 2013
@@ -1,8 +1,8 @@
   Apache Commons Logging
-  Version 1.1.2
+  Version 1.1.3
   RELEASE NOTES
 
-The Commons Logging team is pleased to announce the release of Apache Commons 
Logging 1.1.2
+The Commons Logging team is pleased to announce the release of Apache Commons 
Logging 1.1.3
 
 Commons Logging is a thin adapter allowing configurable bridging to other,
 well known logging systems.
@@ -11,34 +11,12 @@
 
 Changes in this version include:
 
-
 Fixed Bugs:
-o LOGGING-124:  The jar manifest now contains proper OSGi-related metadata 
information. Thanks to Christian Schneider.
-o LOGGING-144:  LogFactory and LogFactoryImpl will not swallow certain errors 
anymore (ThreadDeath
-and VirtualMachineError). Thanks to Sebastian Bazley.
-o LOGGING-132:  Jdk14Logger now correctly uses the specified logger name. 
Thanks to Nathan Niesen.
-o LOGGING-146:  Properly synchronize access to protected static field 
LogFactory.nullClassLoaderFactory.
-Thanks to Sebastian Bazley.
-o LOGGING-119:  Prevent potential deadlock scenario in WeakHashtable. Thanks 
to Nitzan Niv, Philippe Mouawad.
-o LOGGING-130:  Potential missing privileged block for class loader. Thanks to 
Matthew P. Del Buono.
-o LOGGING-145:  LogFactoryImpl.setAttribute - possible NPE.
-o LOGGING-142:  Log4JLogger uses deprecated static members of Priority such as 
INFO. Thanks to Jingguo Yao.
-o LOGGING-128:  Static analysis suggests a number of potential improvements. 
Thanks to Peter Lawrey.
-o LOGGING-147:  SimpleLog.log - unsafe update of shortLogName.
-o LOGGING-148:  LogFactory.diagnosticPrefix and diagnosticsStream could be 
final.
-
-Changes:
-o LOGGING-135:  Improved thread-safety for several log adapters, including 
AvalonLogger, SimpleLog,
-Log4JLogger, LogKitLogger. Thanks to Sebastian Bazley.
-o LOGGING-138:  In case of a discovery failure now also the stacktrace of the 
cause will be
-added to the diagnostic message. Thanks to Luke Lu.
-o LOGGING-133:  Change scope of Jdk14Logger.log(Level, String, Throwable) to 
protected, allowing
-subclasses to modify the logging output. Thanks to Shevek.
-
+o LOGGING-151:  Use org.apache.commons.logging as bundle symbolic name. 
Thanks to Krzysztof Daniel.
 
-Historical list of changes: 
http://commons.apache.org/logging/changes-report.html
+Historical list of changes: 
http://commons.apache.org/proper/commons-logging/changes-report.html
 
 For complete information on Commons Logging, including instructions on how to 
submit bug reports,
 patches, or suggestions for improvement, see the Apache Commons Logging 
website:
 
-http://commons.apache.org/logging/
\ No newline at end of file
+http://commons.apache.org/proper/commons-logging/
\ No newline at end of file

Modified: release/commons/logging/binaries/README.html
==
--- release/commons/logging/binaries/README.html (original)
+++ release/commons/logging/binaries/README.html Mon May 20 16:50:02 2013
@@ -1,7 +1,7 @@
-h1Commons-Logging v1.1.2/h1
+h1Commons-Logging v1.1.3/h1
 
 
-pThis is the 1.1.2 version of commons-logging. It is available in both 
+pThis is the 1.1.3 version of commons-logging. It is available in both 
 binary and source distributions./p
 
 

svn commit: r2025 - in /release/commons/logging: README.html RELEASE-NOTES.txt binaries/README.html source/README.html

2013-05-20 Thread tn
Author: tn
Date: Mon May 20 16:50:02 2013
New Revision: 2025

Log:
Update release-notes and readme files after release.

Modified:
release/commons/logging/README.html
release/commons/logging/RELEASE-NOTES.txt
release/commons/logging/binaries/README.html
release/commons/logging/source/README.html

Modified: release/commons/logging/README.html
==
--- release/commons/logging/README.html (original)
+++ release/commons/logging/README.html Mon May 20 16:50:02 2013
@@ -1,7 +1,7 @@
-h1Commons-Logging v1.1.2/h1
+h1Commons-Logging v1.1.3/h1
 
 
-pThis is the 1.1.2 version of commons-logging. It is available in both 
+pThis is the 1.1.3 version of commons-logging. It is available in both 
 binary and source distributions./p
 
 pstrongNote:/strong the larger size of the new downloads is due to 
improved documentation shipping
@@ -33,13 +33,13 @@
 
 preAlways test available signatures, ie.g./i,
 $ pgpk -a KEYS
-$ pgpv commons-logging-1.1.2-bin.tar.gz.asc
+$ pgpv commons-logging-1.1.3-bin.tar.gz.asc
 or,
 $ pgp -ka KEYS
-$ pgp commons-logging-1.1.2-bin.tar.gz.asc
+$ pgp commons-logging-1.1.3-bin.tar.gz.asc
 or,
 $ gpg --import KEYS
-$ gpg --verify commons-logging-1.1.2-bin.tar.gz.asc
+$ gpg --verify commons-logging-1.1.3-bin.tar.gz.asc
 /pre
 p
 

Modified: release/commons/logging/RELEASE-NOTES.txt
==
--- release/commons/logging/RELEASE-NOTES.txt (original)
+++ release/commons/logging/RELEASE-NOTES.txt Mon May 20 16:50:02 2013
@@ -1,8 +1,8 @@
   Apache Commons Logging
-  Version 1.1.2
+  Version 1.1.3
   RELEASE NOTES
 
-The Commons Logging team is pleased to announce the release of Apache Commons 
Logging 1.1.2
+The Commons Logging team is pleased to announce the release of Apache Commons 
Logging 1.1.3
 
 Commons Logging is a thin adapter allowing configurable bridging to other,
 well known logging systems.
@@ -11,34 +11,12 @@
 
 Changes in this version include:
 
-
 Fixed Bugs:
-o LOGGING-124:  The jar manifest now contains proper OSGi-related metadata 
information. Thanks to Christian Schneider.
-o LOGGING-144:  LogFactory and LogFactoryImpl will not swallow certain errors 
anymore (ThreadDeath
-and VirtualMachineError). Thanks to Sebastian Bazley.
-o LOGGING-132:  Jdk14Logger now correctly uses the specified logger name. 
Thanks to Nathan Niesen.
-o LOGGING-146:  Properly synchronize access to protected static field 
LogFactory.nullClassLoaderFactory.
-Thanks to Sebastian Bazley.
-o LOGGING-119:  Prevent potential deadlock scenario in WeakHashtable. Thanks 
to Nitzan Niv, Philippe Mouawad.
-o LOGGING-130:  Potential missing privileged block for class loader. Thanks to 
Matthew P. Del Buono.
-o LOGGING-145:  LogFactoryImpl.setAttribute - possible NPE.
-o LOGGING-142:  Log4JLogger uses deprecated static members of Priority such as 
INFO. Thanks to Jingguo Yao.
-o LOGGING-128:  Static analysis suggests a number of potential improvements. 
Thanks to Peter Lawrey.
-o LOGGING-147:  SimpleLog.log - unsafe update of shortLogName.
-o LOGGING-148:  LogFactory.diagnosticPrefix and diagnosticsStream could be 
final.
-
-Changes:
-o LOGGING-135:  Improved thread-safety for several log adapters, including 
AvalonLogger, SimpleLog,
-Log4JLogger, LogKitLogger. Thanks to Sebastian Bazley.
-o LOGGING-138:  In case of a discovery failure now also the stacktrace of the 
cause will be
-added to the diagnostic message. Thanks to Luke Lu.
-o LOGGING-133:  Change scope of Jdk14Logger.log(Level, String, Throwable) to 
protected, allowing
-subclasses to modify the logging output. Thanks to Shevek.
-
+o LOGGING-151:  Use org.apache.commons.logging as bundle symbolic name. 
Thanks to Krzysztof Daniel.
 
-Historical list of changes: 
http://commons.apache.org/logging/changes-report.html
+Historical list of changes: 
http://commons.apache.org/proper/commons-logging/changes-report.html
 
 For complete information on Commons Logging, including instructions on how to 
submit bug reports,
 patches, or suggestions for improvement, see the Apache Commons Logging 
website:
 
-http://commons.apache.org/logging/
\ No newline at end of file
+http://commons.apache.org/proper/commons-logging/
\ No newline at end of file

Modified: release/commons/logging/binaries/README.html
==
--- release/commons/logging/binaries/README.html (original)
+++ release/commons/logging/binaries/README.html Mon May 20 16:50:02 2013
@@ -1,7 +1,7 @@
-h1Commons-Logging v1.1.2/h1
+h1Commons-Logging v1.1.3/h1
 
 
-pThis is the 1.1.2 version of commons-logging. It is available in both 
+pThis is the 1.1.3 version of commons-logging. It is available in both 
 binary and source distributions./p
 
 

Nexus: Promotion Completed.

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

svn commit: r862526 - in /websites/production/commons/content/proper/commons-logging: ./ apidocs/ apidocs/org/apache/commons/logging/ apidocs/org/apache/commons/logging/class-use/ apidocs/org/apache/c

2013-05-20 Thread tn
Author: tn
Date: Mon May 20 17:07:42 2013
New Revision: 862526

Log:
Site checkin for project Commons Logging


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


svn commit: r862527 - in /websites/production/commons/content/proper/commons-logging/javadocs: api-1.1.2/ api-release/

2013-05-20 Thread tn
Author: tn
Date: Mon May 20 17:14:35 2013
New Revision: 862527

Log:
move 1.1.2 release docs.

Added:

websites/production/commons/content/proper/commons-logging/javadocs/api-1.1.2/
  - copied from r862526, 
websites/production/commons/content/proper/commons-logging/javadocs/api-release/
Removed:

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



svn commit: r862528 - /websites/production/commons/content/proper/commons-logging/javadocs/api-release/

2013-05-20 Thread tn
Author: tn
Date: Mon May 20 17:15:53 2013
New Revision: 862528

Log:
Add 1.1.3 release docs.

Added:

websites/production/commons/content/proper/commons-logging/javadocs/api-release/
  - copied from r862526, 
websites/production/commons/content/proper/commons-logging/apidocs/



svn commit: r1484534 - /commons/proper/logging/tags/LOGGING_1_1_3/

2013-05-20 Thread tn
Author: tn
Date: Mon May 20 17:24:47 2013
New Revision: 1484534

URL: http://svn.apache.org/r1484534
Log:
RC2 becomes the 1.1.3 official version.

Added:
commons/proper/logging/tags/LOGGING_1_1_3/
  - copied from r1484533, commons/proper/logging/tags/LOGGING_1_1_3_RC2/



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

2013-05-20 Thread sebb
Author: sebb
Date: Mon May 20 18:06:24 2013
New Revision: 1484546

URL: http://svn.apache.org/r1484546
Log:
Correct name of AL2.0

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=1484546r1=1484545r2=1484546view=diff
==
--- commons/proper/ognl/trunk/pom.xml (original)
+++ commons/proper/ognl/trunk/pom.xml Mon May 20 18:06:24 2013
@@ -41,7 +41,7 @@ limitations under the License.
   /organization
   licenses
 license
-  nameThe Apache Software License, Version 2.0/name
+  nameThe Apache License, Version 2.0/name
   urlhttp://www.apache.org/licenses/LICENSE-2.0.txt/url
   distributionrepo/distribution
 /license