You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by eb...@apache.org on 2005/08/02 16:58:21 UTC

svn commit: r227019 - in /jakarta/commons/proper/configuration/trunk: conf/test.plist.xml src/java/org/apache/commons/configuration/plist/XMLPropertyListConfiguration.java

Author: ebourg
Date: Tue Aug  2 07:58:15 2005
New Revision: 227019

URL: http://svn.apache.org/viewcvs?rev=227019&view=rev
Log:
Fixed the version of the property list (1.1 -> 1.0)

Modified:
    jakarta/commons/proper/configuration/trunk/conf/test.plist.xml
    jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/plist/XMLPropertyListConfiguration.java

Modified: jakarta/commons/proper/configuration/trunk/conf/test.plist.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/configuration/trunk/conf/test.plist.xml?rev=227019&r1=227018&r2=227019&view=diff
==============================================================================
--- jakarta/commons/proper/configuration/trunk/conf/test.plist.xml (original)
+++ jakarta/commons/proper/configuration/trunk/conf/test.plist.xml Tue Aug  2 07:58:15 2005
@@ -1,6 +1,6 @@
 <?xml version="1.0"?>
 <!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
-<plist version="1.1">
+<plist version="1.0">
     <dict>
 
         <key>string</key>

Modified: jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/plist/XMLPropertyListConfiguration.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/plist/XMLPropertyListConfiguration.java?rev=227019&r1=227018&r2=227019&view=diff
==============================================================================
--- jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/plist/XMLPropertyListConfiguration.java (original)
+++ jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/plist/XMLPropertyListConfiguration.java Tue Aug  2 07:58:15 2005
@@ -55,7 +55,7 @@
  * <pre>
  * &lt;?xml version="1.0"?>
  * &lt;!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
- * &lt;plist version="1.1">
+ * &lt;plist version="1.0">
  *     &lt;dict>
  *         &lt;key>string&lt;/key>
  *         &lt;string>value1&lt;/string>
@@ -283,7 +283,7 @@
         }
 
         writer.println("<!DOCTYPE plist SYSTEM \"file://localhost/System/Library/DTDs/PropertyList.dtd\">");
-        writer.println("<plist version=\"1.1\">");
+        writer.println("<plist version=\"1.0\">");
 
         printNode(writer, 1, getRoot());
 



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org