[seam-commits] Seam SVN: r9577 - trunk/doc/Seam_Reference_Guide/en-US.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Sun Nov 16 05:11:22 EST 2008


Author: dan.j.allen
Date: 2008-11-16 05:11:21 -0500 (Sun, 16 Nov 2008)
New Revision: 9577

Modified:
   trunk/doc/Seam_Reference_Guide/en-US/Itext.xml
Log:
fix invalid namespace declarations


Modified: trunk/doc/Seam_Reference_Guide/en-US/Itext.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Itext.xml	2008-11-16 07:01:39 UTC (rev 9576)
+++ trunk/doc/Seam_Reference_Guide/en-US/Itext.xml	2008-11-16 10:11:21 UTC (rev 9577)
@@ -2506,9 +2506,13 @@
             functionality by instructing the document store to generate URLs with the correct filename extension for
             the document type being generated. </para>
         
-        <programlisting role="XML"><![CDATA[<components xmlns="http://jboss.com/products/seam/document"
-            xmlns:pdf="http://jboss.com/products/seam/document">
-    <document:document-store use-extensions="true" />
+        <programlisting role="XML"><![CDATA[<components xmlns="http://jboss.com/products/seam/components"
+    xmlns:document="http://jboss.com/products/seam/document"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="
+        http://jboss.com/products/seam/document http://jboss.com/products/seam/document-2.1.xsd
+        http://jboss.com/products/seam/components http://jboss.com/products/seam/components-2.1.xsd">
+    <document:document-store use-extensions="true"/>
 </components>]]></programlisting>
         
         <para> The document store stores documents in conversation scope, and documents will expire when the conversation ends. At




More information about the seam-commits mailing list