darvina         Fri Apr 26 16:10:14 2002 EDT

  Modified files:              
    /phpdoc/en/reference/xml    reference.xml 
  Log:
  WS
  
Index: phpdoc/en/reference/xml/reference.xml
diff -u phpdoc/en/reference/xml/reference.xml:1.3 
phpdoc/en/reference/xml/reference.xml:1.4
--- phpdoc/en/reference/xml/reference.xml:1.3   Mon Apr 22 16:35:26 2002
+++ phpdoc/en/reference/xml/reference.xml       Fri Apr 26 16:10:13 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
  <reference id="ref.xml">
   <title>XML parser functions</title>
   <titleabbrev>XML</titleabbrev>
@@ -81,84 +81,84 @@
       <table>
        <title>Supported XML handlers</title>
        <tgroup cols="2">
-    <thead>
-     <row>
-      <entry>PHP function to set handler</entry>
-      <entry>Event description</entry>
-     </row>
-    </thead>
-    <tbody>
-     <row>
-      <entry><function>xml_set_element_handler</function></entry>
-      <entry>
-       Element events are issued whenever the XML parser
-       encounters start or end tags.  There are separate handlers
-       for start tags and end tags.
-      </entry>
-     </row>
-     <row>
-      <entry>
-       <function>xml_set_character_data_handler</function>
-      </entry>
-      <entry>
-       Character data is roughly all the non-markup contents of
-       XML documents, including whitespace between tags.  Note
-       that the XML parser does not add or remove any whitespace,
-       it is up to the application (you) to decide whether
-       whitespace is significant.
-      </entry>
-     </row>
-     <row>
-      <entry>
-       <function>xml_set_processing_instruction_handler</function>
-      </entry>
-      <entry>
-       PHP programmers should be familiar with processing
-       instructions (PIs) already.  &lt;?php ?&gt; is a processing
-       instruction, where <replaceable>php</replaceable> is called
-       the "PI target".  The handling of these are
-       application-specific, except that all PI targets starting
-       with "XML" are reserved.
-      </entry>
-     </row>
-     <row>
-      <entry><function>xml_set_default_handler</function></entry>
-      <entry>
-       What goes not to another handler goes to the default
-       handler.  You will get things like the XML and document
-       type declarations in the default handler.
-      </entry>
-     </row>
-     <row>
-      <entry>
-       <function>xml_set_unparsed_entity_decl_handler</function>
-      </entry>
-      <entry>
-       This handler will be called for declaration of an unparsed
-       (NDATA) entity.
-      </entry>
-     </row>
-     <row>
-      <entry>
-       <function>xml_set_notation_decl_handler</function>
-      </entry>
-      <entry>
-       This handler is called for declaration of a notation.
-      </entry>
-     </row>
-     <row>
-      <entry>
-       <function>xml_set_external_entity_ref_handler</function>
-      </entry>
-      <entry>
-       This handler is called when the XML parser finds a
-       reference to an external parsed general entity.  This can
-       be a reference to a file or URL, for example.  See <link
-       linkend="example.xml-external-entity">the external entity
-       example</link> for a demonstration.
-      </entry>
-     </row>
-    </tbody>
+        <thead>
+         <row>
+          <entry>PHP function to set handler</entry>
+          <entry>Event description</entry>
+         </row>
+        </thead>
+        <tbody>
+         <row>
+          <entry><function>xml_set_element_handler</function></entry>
+          <entry>
+           Element events are issued whenever the XML parser
+           encounters start or end tags.  There are separate handlers
+           for start tags and end tags.
+          </entry>
+         </row>
+         <row>
+          <entry>
+           <function>xml_set_character_data_handler</function>
+          </entry>
+          <entry>
+           Character data is roughly all the non-markup contents of
+           XML documents, including whitespace between tags.  Note
+           that the XML parser does not add or remove any whitespace,
+           it is up to the application (you) to decide whether
+           whitespace is significant.
+          </entry>
+         </row>
+         <row>
+          <entry>
+           <function>xml_set_processing_instruction_handler</function>
+          </entry>
+          <entry>
+           PHP programmers should be familiar with processing
+           instructions (PIs) already.  &lt;?php ?&gt; is a processing
+           instruction, where <replaceable>php</replaceable> is called
+           the "PI target".  The handling of these are
+           application-specific, except that all PI targets starting
+           with "XML" are reserved.
+          </entry>
+         </row>
+         <row>
+          <entry><function>xml_set_default_handler</function></entry>
+          <entry>
+           What goes not to another handler goes to the default
+           handler.  You will get things like the XML and document
+           type declarations in the default handler.
+          </entry>
+         </row>
+         <row>
+          <entry>
+           <function>xml_set_unparsed_entity_decl_handler</function>
+          </entry>
+          <entry>
+           This handler will be called for declaration of an unparsed
+           (NDATA) entity.
+          </entry>
+         </row>
+         <row>
+          <entry>
+           <function>xml_set_notation_decl_handler</function>
+          </entry>
+          <entry>
+           This handler is called for declaration of a notation.
+          </entry>
+         </row>
+         <row>
+          <entry>
+           <function>xml_set_external_entity_ref_handler</function>
+          </entry>
+          <entry>
+           This handler is called when the XML parser finds a
+           reference to an external parsed general entity.  This can
+           be a reference to a file or URL, for example.  See <link
+           linkend="example.xml-external-entity">the external entity
+           example</link> for a demonstration.
+          </entry>
+         </row>
+        </tbody>
        </tgroup>
       </table>
      </para>


Reply via email to