didou           Thu Jul 22 18:23:36 2004 EDT

  Modified files:              
    /phpdoc/en/reference/xslt/functions xslt-getopt.xml xslt-setopt.xml 
  Log:
  document xslt_getopt() and xslt_setopt()
  
http://cvs.php.net/diff.php/phpdoc/en/reference/xslt/functions/xslt-getopt.xml?r1=1.1&r2=1.2&ty=u
Index: phpdoc/en/reference/xslt/functions/xslt-getopt.xml
diff -u phpdoc/en/reference/xslt/functions/xslt-getopt.xml:1.1 
phpdoc/en/reference/xslt/functions/xslt-getopt.xml:1.2
--- phpdoc/en/reference/xslt/functions/xslt-getopt.xml:1.1      Wed May 19 12:01:20 
2004
+++ phpdoc/en/reference/xslt/functions/xslt-getopt.xml  Thu Jul 22 18:23:36 2004
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
   <refentry id="function.xslt-getopt">
    <refnamediv>
     <refname>xslt_getopt</refname>
@@ -13,9 +13,14 @@
      <type>int</type><methodname>xslt_getopt</methodname>
      <methodparam><type>resource</type><parameter>processor</parameter></methodparam>
     </methodsynopsis>
-
-     &warn.undocumented.func;
-
+    <para>
+     <function>xslt_getopt</function> returns the options on the given 
+     <parameter>processor</parameter>.
+    </para>
+    <para>
+     See also:
+     <function>xslt_setopt</function>.
+    </para>
    </refsect1>
   </refentry>
 
http://cvs.php.net/diff.php/phpdoc/en/reference/xslt/functions/xslt-setopt.xml?r1=1.1&r2=1.2&ty=u
Index: phpdoc/en/reference/xslt/functions/xslt-setopt.xml
diff -u phpdoc/en/reference/xslt/functions/xslt-setopt.xml:1.1 
phpdoc/en/reference/xslt/functions/xslt-setopt.xml:1.2
--- phpdoc/en/reference/xslt/functions/xslt-setopt.xml:1.1      Wed May 19 12:01:20 
2004
+++ phpdoc/en/reference/xslt/functions/xslt-setopt.xml  Thu Jul 22 18:23:36 2004
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
   <refentry id="function.xslt-setopt">
    <refnamediv>
     <refname>xslt_setopt</refname>
@@ -14,9 +14,64 @@
      <methodparam><type>resource</type><parameter>processor</parameter></methodparam>
      <methodparam><type>int</type><parameter>newmask</parameter></methodparam>
     </methodsynopsis>
+    <para>
+     <function>xslt_setopt</function> sets the options specified by 
+     <parameter>newmask</parameter> on the given <parameter>processor</parameter>.
+    </para>
+    <para>
+     <parameter>newmask</parameter> is a bitmask constructed with the following
+     constants: 
+     <itemizedlist>
+      <listitem>
+       <para>
+        <constant>XSLT_SABOPT_PARSE_PUBLIC_ENTITIES</constant> - Tell the processor
+        to parse public entities. By default this has been turned off.
+       </para>
+      </listitem>
+      <listitem>
+       <para>
+        <constant>XSLT_SABOPT_DISABLE_ADDING_META</constant> - Do not add the meta
+        tag "Content-Type" for HTML output. The default is set during the compilation
+        of the processor.
+       </para>
+      </listitem>
+      <listitem>
+       <para>
+        <constant>XSLT_SABOPT_DISABLE_STRIPPING</constant> - Suppress the whitespace
+        stripping (on data files only). 
+       </para>
+      </listitem>
+      <listitem>
+       <para>
+        <constant>XSLT_SABOPT_IGNORE_DOC_NOT_FOUND</constant> - Consider unresolved
+        documents (the document() function) non-lethal. 
+       </para>
+      </listitem>
+     </itemizedlist>
+    </para>
+    <para>
+     <example>
+      <programlisting role="php">
+<![CDATA[
+<?php
 
-     &warn.undocumented.func;
+$xh = xslt_create();
 
+// Tell Sablotron to process public entities
+xslt_setopt($xh, XSLT_SABOPT_PARSE_PUBLIC_ENTITIES);
+
+// Let's also ask him to suppress whitespace stripping
+xslt_setopt($xh, xslt_getopt($xh) | XSLT_SABOPT_PARSE_PUBLIC_ENTITIES);
+
+?>
+]]>
+      </programlisting>     
+     </example>
+    </para>
+    <para>
+     See also:
+     <function>xslt_getopt</function>.
+    </para>
    </refsect1>
   </refentry>
 
@@ -39,4 +94,4 @@
 vim600: syn=xml fen fdm=syntax fdl=2 si
 vim: et tw=78 syn=sgml
 vi: ts=1 sw=1
--->
+-->
\ No newline at end of file

Reply via email to