sterling                Sun Feb  4 01:21:44 2001 EDT

  Modified files:              
    /phpdoc/en/functions        xslt.xml 
  Log:
  Fix the XSLT example...
  
  
  
Index: phpdoc/en/functions/xslt.xml
diff -u phpdoc/en/functions/xslt.xml:1.8 phpdoc/en/functions/xslt.xml:1.9
--- phpdoc/en/functions/xslt.xml:1.8    Tue Dec 12 22:33:36 2000
+++ phpdoc/en/functions/xslt.xml        Sun Feb  4 01:21:44 2001
@@ -243,6 +243,13 @@
      the first argument.
     </para>
     <para>
+     <note>
+      <simpara>
+       This function does not currently support nested output transformations.
+      </simpara>
+     </note>
+    </para>
+    <para>
      <example>
       <title>
        Transforming output through an XSLT stylesheet, using the DOM-XML functions 
for xml generation
@@ -337,13 +344,13 @@
         &lt;tr>
             &lt;td width="20%">
              &nbsp;
-            &lt;/title>
+            &lt;/td>
             &lt;td width="80%">
-                &lt;h2>&lt;xsl:value-of select="title">&lt;/h2>
-                &lt;h3>&lt;xsl:value-of select="author">&lt;/h3>
-                &lt;br>
+                &lt;h2>&lt;xsl:value-of select="title"/>&lt;/h2>
+                &lt;h3>&lt;xsl:value-of select="author"/>&lt;/h3>
+                &lt;br/>
                 
-                &lt;xsl:value-of select="body">
+                &lt;xsl:value-of select="body"/>
             &lt;/td>
         &lt;/tr>
     &lt;/table>
@@ -358,11 +365,11 @@
     &lt;author>Sterling Hughes&lt;/author>
     &lt;body>
       Essential phrases:
-      &lt;br>
-      &lt;br>
-      Komme sie mir sagen, woe die toilette es?&lt;br>
-      Eine grande beer bitte!&lt;br>
-      Noch einem bitte.&lt;br>
+      &lt;br/>
+      &lt;br/>
+      Komme sie mir sagen, woe die toilette es?&lt;br/>
+      Eine grosse beer bitte!&lt;br/>
+      Noch einem bitte.&lt;br/>
     &lt;/body>
 &lt;/article>';
 


Reply via email to