You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by vs...@apache.org on 2009/06/22 13:13:17 UTC

svn commit: r787201 - in /maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site: fml/faq.fml pdf.xml pdf_filtering.xml site.xml xdoc/entities.xml xdoc/usage.xml

Author: vsiveton
Date: Mon Jun 22 11:13:17 2009
New Revision: 787201

URL: http://svn.apache.org/viewvc?rev=787201&view=rev
Log:
o specify xsds in xml tests files

Modified:
    maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/fml/faq.fml
    maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/pdf.xml
    maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/pdf_filtering.xml
    maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/site.xml
    maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/xdoc/entities.xml
    maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/xdoc/usage.xml

Modified: maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/fml/faq.fml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/fml/faq.fml?rev=787201&r1=787200&r2=787201&view=diff
==============================================================================
--- maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/fml/faq.fml (original)
+++ maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/fml/faq.fml Mon Jun 22 11:13:17 2009
@@ -19,7 +19,10 @@
 under the License.
 -->
 
-<faqs title="Frequently Asked Questions">
+<faqs xmlns="http://maven.apache.org/FML/1.0.1"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/FML/1.0.1 http://maven.apache.org/xsd/fml-1.0.1.xsd"
+  title="Frequently Asked Questions">
   <part id="General">
     <faq id="create_book">
       <question>Is it possible to create a book?</question>

Modified: maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/pdf.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/pdf.xml?rev=787201&r1=787200&r2=787201&view=diff
==============================================================================
--- maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/pdf.xml (original)
+++ maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/pdf.xml Mon Jun 22 11:13:17 2009
@@ -21,7 +21,10 @@
  */
  -->
 
-<document outputName="maven-pdf-plugin-doc">
+<document xmlns="http://maven.apache.org/DOCUMENT/1.0.1"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/DOCUMENT/1.0.1 http://maven.apache.org/xsd/document-1.0.1.xsd"
+  outputName="maven-pdf-plugin-doc">
 
   <meta>
     <title>Maven PDF Plugin</title>

Modified: maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/pdf_filtering.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/pdf_filtering.xml?rev=787201&r1=787200&r2=787201&view=diff
==============================================================================
--- maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/pdf_filtering.xml (original)
+++ maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/pdf_filtering.xml Mon Jun 22 11:13:17 2009
@@ -21,9 +21,9 @@
  */
  -->
 
-<document xmlns="http://maven.apache.org/DOCUMENT/1.0.0"
+<document xmlns="http://maven.apache.org/DOCUMENT/1.0.1"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-  xsi:schemaLocation="http://maven.apache.org/DOCUMENT/1.0.0 http://maven.apache.org/xsd/document-1.0.0.xsd"
+  xsi:schemaLocation="http://maven.apache.org/DOCUMENT/1.0.1 http://maven.apache.org/xsd/document-1.0.1.xsd"
   outputName="maven-pdf-plugin-doc-${project.version}">
 
   <meta>

Modified: maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/site.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/site.xml?rev=787201&r1=787200&r2=787201&view=diff
==============================================================================
--- maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/site.xml (original)
+++ maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/site.xml Mon Jun 22 11:13:17 2009
@@ -19,7 +19,10 @@
 under the License.
 -->
 
-<project name="Pdf Mojo Test">
+<project xmlns="http://maven.apache.org/DECORATION/1.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"
+  name="Pdf Mojo Test">
 
   <bannerLeft>
     <name>Pdf Mojo Test</name>

Modified: maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/xdoc/entities.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/xdoc/entities.xml?rev=787201&r1=787200&r2=787201&view=diff
==============================================================================
--- maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/xdoc/entities.xml (original)
+++ maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/xdoc/entities.xml Mon Jun 22 11:13:17 2009
@@ -28,8 +28,9 @@
 %HTMLsymbol;
 ]>
 
-<document xmlns="http://maven.apache.org/XDOC/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
+<document xmlns="http://maven.apache.org/XDOC/2.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
 
   <properties>
     <title>List of XML and HTML character entity references</title>
@@ -985,7 +986,7 @@
         <td>ISOnum</td>
         <td>division sign</td>
         </tr>
- 
+
         <tr>
         <td>oslash</td>
         <td>&oslash;</td>
@@ -1815,7 +1816,7 @@
         <td><i>NEW</i></td>
         <td>double low-9 quotation mark</td>
         </tr>
- 
+
         <tr>
         <td>dagger</td>
         <td>&dagger;</td>

Modified: maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/xdoc/usage.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/xdoc/usage.xml?rev=787201&r1=787200&r2=787201&view=diff
==============================================================================
--- maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/xdoc/usage.xml (original)
+++ maven/plugins/trunk/maven-pdf-plugin/src/test/resources/unit/pdf/src/site/xdoc/usage.xml Mon Jun 22 11:13:17 2009
@@ -19,7 +19,9 @@
  */
  -->
 
-<document>
+<document xmlns="http://maven.apache.org/XDOC/2.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
 
   <properties>
     <title>Usage - Test</title>