You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by eb...@apache.org on 2008/02/17 01:04:29 UTC

svn commit: r628392 - in /commons/proper/configuration/trunk: build.xml project.xml xdocs/changes.xml

Author: ebourg
Date: Sat Feb 16 16:04:27 2008
New Revision: 628392

URL: http://svn.apache.org/viewvc?rev=628392&view=rev
Log:
Fixed the missing DTD for the XMLPropertyListConfigurations (CONFIGURATION-309)

Modified:
    commons/proper/configuration/trunk/build.xml
    commons/proper/configuration/trunk/project.xml
    commons/proper/configuration/trunk/xdocs/changes.xml

Modified: commons/proper/configuration/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/build.xml?rev=628392&r1=628391&r2=628392&view=diff
==============================================================================
--- commons/proper/configuration/trunk/build.xml (original)
+++ commons/proper/configuration/trunk/build.xml Sat Feb 16 16:04:27 2008
@@ -93,6 +93,8 @@
         </include>
         <include name="properties.dtd">
         </include>
+        <include name="PropertyList-1.0.dtd">
+        </include>
       </fileset>
     </copy>
   </target>

Modified: commons/proper/configuration/trunk/project.xml
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/project.xml?rev=628392&r1=628391&r2=628392&view=diff
==============================================================================
--- commons/proper/configuration/trunk/project.xml (original)
+++ commons/proper/configuration/trunk/project.xml Sat Feb 16 16:04:27 2008
@@ -607,6 +607,7 @@
         <includes>
           <include>digesterRules.xml</include>
           <include>properties.dtd</include>
+          <include>PropertyList-1.0.dtd</include>
         </includes>
       </resource>
       <resource>

Modified: commons/proper/configuration/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/xdocs/changes.xml?rev=628392&r1=628391&r2=628392&view=diff
==============================================================================
--- commons/proper/configuration/trunk/xdocs/changes.xml (original)
+++ commons/proper/configuration/trunk/xdocs/changes.xml Sat Feb 16 16:04:27 2008
@@ -36,6 +36,10 @@
         circumstances when saving an XMLConfiguration that was created using
         the constructor that takes a HierarchicalConfiguration.
       </action>
+      <action dev="ebourg" type="fix" issue="CONFIGURATION-309">
+        Instantiating an XMLPropertyListConfiguration no longer fails
+        if the DTD is missing from the classpath.
+      </action>
     </release>
 
     <release version="1.5" date="2007-11-24" description="Many smaller bugfixes">