[PHP-DOC] cvs: phpdoc /de/chapters security.xml /de/functions classobj.xml ldap.xml math.xml pdf.xml /de/language variables.xml /en/chapters install.xml security.xml /en/functions classobj.xml ldap.xml math.xml pdf.xml /en/language variables.xml /es/chapters security.xml /es/functions ldap.xml math.xml /es/language variables.xml /fr/chapters security.xml /fr/functions ldap.xml math.xml /fr/language variables.xml /hu/chapters security.xml /hu/functions classobj.xml ldap.xml math.xml /hu/language variables.xml /it/chapters security.xml /it/functions classobj.xml ldap.xml math.xml /it/language variables.xml /ja/chapters security.xml /ja/functions classobj.xml ldap.xml math.xml pdf.xml /ja/language variables.xml /nl/chapters security.xml /nl/functions classobj.xml ldap.xml math.xml pdf.xml /nl/language variables.xml /pt_BR/chapters security.xml From: Jouni Ahto (jah <email protected>)
Date: 10/14/00

jah Sat Oct 14 06:26:39 2000 EDT

  Modified files:
    /phpdoc/de/chapters security.xml
    /phpdoc/de/functions classobj.xml ldap.xml math.xml pdf.xml
    /phpdoc/de/language variables.xml
    /phpdoc/en/chapters install.xml security.xml
    /phpdoc/en/functions classobj.xml ldap.xml math.xml pdf.xml
    /phpdoc/en/language variables.xml
    /phpdoc/es/chapters security.xml
    /phpdoc/es/functions ldap.xml math.xml
    /phpdoc/es/language variables.xml
    /phpdoc/fr/chapters security.xml
    /phpdoc/fr/functions ldap.xml math.xml
    /phpdoc/fr/language variables.xml
    /phpdoc/hu/chapters security.xml
    /phpdoc/hu/functions classobj.xml ldap.xml math.xml
    /phpdoc/hu/language variables.xml
    /phpdoc/it/chapters security.xml
    /phpdoc/it/functions classobj.xml ldap.xml math.xml
    /phpdoc/it/language variables.xml
    /phpdoc/ja/chapters security.xml
    /phpdoc/ja/functions classobj.xml ldap.xml math.xml pdf.xml
    /phpdoc/ja/language variables.xml
    /phpdoc/nl/chapters security.xml
    /phpdoc/nl/functions classobj.xml ldap.xml math.xml pdf.xml
    /phpdoc/nl/language variables.xml
    /phpdoc/pt_BR/chapters security.xml
  Log:
  
  - Added one <sect1> to <partintro> of ldap.xml, also some reformatting.
  - Gave id to most unnamed <sect[123]>'s.
  
  
Index: phpdoc/de/chapters/security.xml
diff -u phpdoc/de/chapters/security.xml:1.5 phpdoc/de/chapters/security.xml:1.6
--- phpdoc/de/chapters/security.xml:1.5 Tue Aug 22 12:49:29 2000
+++ phpdoc/de/chapters/security.xml Sat Oct 14 06:26:26 2000
@@ -29,7 +29,7 @@
   <sect1 id="security.cgi">
    <title>CGI-Version</title>
 
- <sect2>
+ <sect2 id="security.cgi.attacks">
     <title>Mögliche Angriffe</title>
 
     <simpara>
Index: phpdoc/de/functions/classobj.xml
diff -u phpdoc/de/functions/classobj.xml:1.7 phpdoc/de/functions/classobj.xml:1.8
--- phpdoc/de/functions/classobj.xml:1.7 Tue Oct 3 09:03:28 2000
+++ phpdoc/de/functions/classobj.xml Sat Oct 14 06:26:27 2000
@@ -16,7 +16,7 @@
       ihre Abstammung (d. h. welche Klasse die des Objektes erweitert).
      </para>
     </sect2>
- <sect2>
+ <sect2 id="classobj.example">
      <title>Anwendungsbeispiel</title>
      <para>
       In diesem Beispiel definieren wir zuerst eine Basisklasse und eine
Index: phpdoc/de/functions/ldap.xml
diff -u phpdoc/de/functions/ldap.xml:1.5 phpdoc/de/functions/ldap.xml:1.6
--- phpdoc/de/functions/ldap.xml:1.5 Sat Jun 24 00:38:42 2000
+++ phpdoc/de/functions/ldap.xml Sat Oct 14 06:26:27 2000
@@ -3,47 +3,51 @@
   <titleabbrev>LDAP</titleabbrev>
 
   <partintro>
- <title>Introduction to LDAP</title>
+ <sect1 id="ldap.intro">
+ <title>Introduction to LDAP</title>
     <para>
      LDAP is the Lightweight Directory Access Protocol, and is a
      protocol used to access "Directory Servers". The Directory is a
      special kind of database that holds information in a tree
      structure.
- </para><para>
+ </para>
+ <para>
      The concept is similar to your hard disk directory structure,
      except that in this context, the root directory is "The world"
      and the first level subdirectories are "countries". Lower levels
      of the directory structure contain entries for companies,
      organisations or places, while yet lower still we find directory
      entries for people, and perhaps equipment or documents.
- </para><para>
+ </para>
+ <para>
      To refer to a file in a subdirectory on your hard disk, you might
      use something like
     </para>
-<literallayout>
+ <literallayout>
     /usr/local/myapp/docs
-</literallayout>
+ </literallayout>
     <para>
      The forwards slash marks each division in the reference, and the
      sequence is read from left to right.
- </para><para>
+ </para>
+ <para>
      The equivalent to the fully qualified file reference in LDAP is
      the "distinguished name", referred to simply as "dn". An example
      dn might be.
     </para>
-<literallayout>
+ <literallayout>
     cn=John Smith,ou=Accounts,o=My Company,c=US
-</literallayout>
+ </literallayout>
     <para>
      The comma marks each division in the reference, and the sequence
      is read from right to left. You would read this dn as ..
     </para>
-<literallayout>
+ <literallayout>
     country = US
     organization = My Company
     organizationalUnit = Accounts
     commonName = John Smith
-</literallayout>
+ </literallayout>
     <para>
      In the same way as there are no hard rules about how you organise
      the directory structure of a hard disk, a directory server
@@ -54,6 +58,7 @@
      than you can use a database without some knowledge of what is
      available.
     </para>
+ </sect1>
 
    <sect1 id="ldap-example">
     <title>Complete code example</title>
@@ -108,7 +113,7 @@
 </programlisting>
     </example>
 
- <sect2>
+ <sect2 id="ldap.using">
     <title>Using the PHP LDAP calls</title>
      <para>
       You will need to get and compile LDAP client libraries from
@@ -156,7 +161,7 @@
    </sect2>
 
 
- <sect2>
+ <sect2 id="ldap.moreinfo">
     <title>More Information</title>
      <para>
       Lots of information about LDAP can be found at
Index: phpdoc/de/functions/math.xml
diff -u phpdoc/de/functions/math.xml:1.12 phpdoc/de/functions/math.xml:1.13
--- phpdoc/de/functions/math.xml:1.12 Mon Jul 3 05:36:29 2000
+++ phpdoc/de/functions/math.xml Sat Oct 14 06:26:27 2000
@@ -3,7 +3,7 @@
   <titleabbrev>Math.</titleabbrev>
  
   <partintro>
- <sect1>
+ <sect1 id="math.intro">
     <title>Introduction</title>
     <para>
      Die mathematischen Funktionen behandeln nur Werte im Bereich der
@@ -12,7 +12,7 @@
      sollten Sie sich die <link linkend="ref.bc">mathematische
      Funktionen mit beliebiger Genauigkeit</link> ansehen.
     </para>
- <sect2>
+ <sect2 id="math.constants">
      <title>Mathematische Konstanten</title>
      <para>
       Die folgenden Werte werden von diesem Packet definiert:
Index: phpdoc/de/functions/pdf.xml
diff -u phpdoc/de/functions/pdf.xml:1.26 phpdoc/de/functions/pdf.xml:1.27
--- phpdoc/de/functions/pdf.xml:1.26 Tue Oct 10 01:21:38 2000
+++ phpdoc/de/functions/pdf.xml Sat Oct 14 06:26:27 2000
@@ -2,7 +2,7 @@
   <title>PDF Funktionen</title>
   <titleabbrev>PDF</titleabbrev>
   <partintro>
- <sect1>
+ <sect1 id="pdf.intro">
     <title>Einleitung</title>
     <simpara>
      Mit Hilfe der PDF-Bibliothek von Thomas Merz können mit PHP PDF
@@ -50,7 +50,7 @@
     </simpara>
 
    </sect1>
- <sect1>
+ <sect1 id="pdf.oldlibs.confusion">
     <title>Altlasten</title>
     <para>
      Since the very begining of PDF support in PHP &mdash; starting with
@@ -205,7 +205,7 @@
      </table>
     </para>
    </sect1>
- <sect1>
+ <sect1 id="pdf.install.pdflib">
     <title>Tips zur Installation von pdflib 3.x</title>
     <simpara>
      Seit Version 3.0 von pdflib sollten sie pdflib mit der configure-Option
@@ -213,7 +213,7 @@
     </simpara>
    </sect1>
 
- <sect1>
+ <sect1 id="pdf.oldlibs.hints">
     <title>Verwenden alter pdflib Versionen</title>
     <simpara>
      Mit Version 2.20 von pdflib wurden einige Veränderungen an der API
@@ -249,7 +249,7 @@
     </simpara>
    </sect1>
 
- <sect1>
+ <sect1 id="pdf.examples">
     <title>Beispiele</title>
     <para>
      Die meisten Funktionen sind sehr einfach zu benutzen. Das Schwierigste
Index: phpdoc/de/language/variables.xml
diff -u phpdoc/de/language/variables.xml:1.7 phpdoc/de/language/variables.xml:1.8
--- phpdoc/de/language/variables.xml:1.7 Thu Sep 7 12:15:23 2000
+++ phpdoc/de/language/variables.xml Sat Oct 14 06:26:27 2000
@@ -817,7 +817,7 @@
      Arrays $HTTP_POST_VARS und $HTTP_GET_VARS wieder gefunden werden.
     </simpara>
 
- <sect3>
+ <sect3 id="language.variables.external.form.submit">
      <title>IMAGE SUBMIT Variablen-Bezeichner</title>
      <simpara>
       Zur Übertragung eines Formulars kann auch ein Bild (Image)
@@ -907,7 +907,7 @@
     </para>
    </sect2>
 
- <sect2>
+ <sect2 id="language.variables.external.dot-in-names">
     <title>Punkte in eingelesenen Variablen-Bezeichnern</title>
     <para>
      Normalerweise verändert PHP nicht die Variablen-Bezeichner,
@@ -931,7 +931,7 @@
     </para>
    </sect2>
 
- <sect2>
+ <sect2 id="language.variables.determining-type-of">
     <title>Bestimmung des Variablen-Typs</title>
     <para>
      Da PHP den Typ einer Variablen bestimmt und grundsätzlich selbst
Index: phpdoc/en/chapters/install.xml
diff -u phpdoc/en/chapters/install.xml:1.19 phpdoc/en/chapters/install.xml:1.20
--- phpdoc/en/chapters/install.xml:1.19 Thu Oct 12 17:05:56 2000
+++ phpdoc/en/chapters/install.xml Sat Oct 14 06:26:27 2000
@@ -272,7 +272,7 @@
     </para>
    </sect2>
 
- <sect2>
+ <sect2 id="install.building">
     <title>Building</title>
     <simpara>
      When PHP is configured, you are ready to build the CGI executable
@@ -282,7 +282,7 @@
     </simpara>
    </sect2>
 
- <sect2>
+ <sect2 id="install.testing">
     <title>Testing</title>
     <simpara>
      If you have built PHP as a CGI program, you may test your build
@@ -292,7 +292,7 @@
     </simpara>
    </sect2>
 
- <sect2>
+ <sect2 id="install.benchmarking">
     <title>Benchmarking</title>
     <simpara>
      If you have built PHP as a CGI program, you may benchmark your
@@ -2665,7 +2665,7 @@
     </itemizedlist>
    </para>
    
- <sect2>
+ <sect2 id="install.windows.general">
     <title>General Installation Steps</title>
 
     <para>
@@ -2744,7 +2744,7 @@
 
    </sect2>
 
- <sect2>
+ <sect2 id="install.windows.iis3">
     <title>Windows 95/98/NT and PWS/IIS 3</title>
 
     <simpara>
@@ -2893,7 +2893,7 @@
 
    </sect2>
 
- <sect2>
+ <sect2 id="install.windowsnt.iis4">
     <title>Windows NT and IIS 4</title>
 
     <simpara>
@@ -2952,7 +2952,7 @@
 
    </sect2>
 
- <sect2>
+ <sect2 id="install.windows.apache">
     <title>Windows 9x/NT and Apache 1.3.x</title>
     
     <simpara>
@@ -3013,7 +3013,7 @@
 
    </sect2>
 
- <sect2>
+ <sect2 id="install.windows.omnihttpd">
     <title>Omni HTTPd 2.0b1 for Windows</title>
     
     <simpara>
@@ -3065,7 +3065,7 @@
 
    </sect2>
 
- <sect2>
+ <sect2 id="install.windows.modules">
     <title>PHP Modules</title>
 
     <para>
@@ -3162,7 +3162,7 @@
     </simpara>
    </sect2>
 
- <sect2>
+ <sect2 id="install.bugreports">
     <title>Bug reports</title>
     <simpara>
      If you think you have found a bug in PHP, please report it. The
@@ -3173,7 +3173,7 @@
     </simpara>
    </sect2>
 
- <sect2>
+ <sect2 id="install.otherproblems">
     <title>Other problems</title>
 
     <simpara>
Index: phpdoc/en/chapters/security.xml
diff -u phpdoc/en/chapters/security.xml:1.9 phpdoc/en/chapters/security.xml:1.10
--- phpdoc/en/chapters/security.xml:1.9 Tue Oct 10 15:03:35 2000
+++ phpdoc/en/chapters/security.xml Sat Oct 14 06:26:27 2000
@@ -39,7 +39,7 @@
   <sect1 id="security.cgi">
    <title>Installed as CGI binary</title>
 
- <sect2>
+ <sect2 id="security.cgi.attacks">
     <title>Possible attacks</title>
     <simpara>
      Using PHP as a <acronym>CGI</acronym> binary is an option for
Index: phpdoc/en/functions/classobj.xml
diff -u phpdoc/en/functions/classobj.xml:1.11 phpdoc/en/functions/classobj.xml:1.12
--- phpdoc/en/functions/classobj.xml:1.11 Mon Sep 4 04:51:43 2000
+++ phpdoc/en/functions/classobj.xml Sat Oct 14 06:26:28 2000
@@ -16,7 +16,7 @@
       what class is the object class extending).
      </para>
     </sect2>
- <sect2>
+ <sect2 id="classobj.example">
      <title>An example of use</title>
      <para>
       In this example, we first define a base class and an extension
Index: phpdoc/en/functions/ldap.xml
diff -u phpdoc/en/functions/ldap.xml:1.15 phpdoc/en/functions/ldap.xml:1.16
--- phpdoc/en/functions/ldap.xml:1.15 Sat Sep 30 13:52:00 2000
+++ phpdoc/en/functions/ldap.xml Sat Oct 14 06:26:28 2000
@@ -3,47 +3,51 @@
   <titleabbrev>LDAP</titleabbrev>
 
   <partintro>
- <title>Introduction to LDAP</title>
+ <sect1 id="ldap.intro">
+ <title>Introduction to LDAP</title>
     <para>
      LDAP is the Lightweight Directory Access Protocol, and is a
      protocol used to access "Directory Servers". The Directory is a
      special kind of database that holds information in a tree
      structure.
- </para><para>
+ </para>
+ <para>
      The concept is similar to your hard disk directory structure,
      except that in this context, the root directory is "The world"
      and the first level subdirectories are "countries". Lower levels
      of the directory structure contain entries for companies,
      organisations or places, while yet lower still we find directory
      entries for people, and perhaps equipment or documents.
- </para><para>
+ </para>
+ <para>
      To refer to a file in a subdirectory on your hard disk, you might
      use something like
     </para>
-<literallayout>
+ <literallayout>
     /usr/local/myapp/docs
-</literallayout>
+ </literallayout>
     <para>
      The forwards slash marks each division in the reference, and the
      sequence is read from left to right.
- </para><para>
+ </para>
+ <para>
      The equivalent to the fully qualified file reference in LDAP is
      the "distinguished name", referred to simply as "dn". An example
      dn might be.
     </para>
-<literallayout>
+ <literallayout>
     cn=John Smith,ou=Accounts,o=My Company,c=US
-</literallayout>
+ </literallayout>
     <para>
      The comma marks each division in the reference, and the sequence
      is read from right to left. You would read this dn as ..
     </para>
-<literallayout>
+ <literallayout>
     country = US
     organization = My Company
     organizationalUnit = Accounts
     commonName = John Smith
-</literallayout>
+ </literallayout>
     <para>
      In the same way as there are no hard rules about how you organise
      the directory structure of a hard disk, a directory server
@@ -54,6 +58,7 @@
      than you can use a database without some knowledge of what is
      available.
     </para>
+ </sect1>
 
    <sect1 id="ldap-example">
     <title>Complete code example</title>
@@ -108,7 +113,7 @@
 </programlisting>
     </example>
 
- <sect2>
+ <sect2 id="ldap.using">
     <title>Using the PHP LDAP calls</title>
      <para>
       You will need to get and compile LDAP client libraries from
@@ -156,7 +161,7 @@
    </sect2>
 
 
- <sect2>
+ <sect2 id="ldap.moreinfo">
     <title>More Information</title>
      <para>
       Lots of information about LDAP can be found at
Index: phpdoc/en/functions/math.xml
diff -u phpdoc/en/functions/math.xml:1.18 phpdoc/en/functions/math.xml:1.19
--- phpdoc/en/functions/math.xml:1.18 Fri Sep 15 09:09:43 2000
+++ phpdoc/en/functions/math.xml Sat Oct 14 06:26:28 2000
@@ -3,7 +3,7 @@
   <titleabbrev>Math.</titleabbrev>
   
   <partintro>
- <sect1>
+ <sect1 id="math.intro">
     <title>Introduction</title>
     <para>
      These math functions will only handle values within the range of
@@ -11,7 +11,7 @@
      handle bigger numbers, take a look at the <link
      linkend="ref.bc">arbitrary precision math functions</link>.
     </para>
- <sect2>
+ <sect2 id="math.constants">
      <title>Math constants</title>
      <para>
       The following values are defined as constants in PHP by the math
Index: phpdoc/en/functions/pdf.xml
diff -u phpdoc/en/functions/pdf.xml:1.31 phpdoc/en/functions/pdf.xml:1.32
--- phpdoc/en/functions/pdf.xml:1.31 Tue Oct 10 01:21:38 2000
+++ phpdoc/en/functions/pdf.xml Sat Oct 14 06:26:28 2000
@@ -3,7 +3,7 @@
   <titleabbrev>PDF</titleabbrev>
 
   <partintro>
- <sect1>
+ <sect1 id="pdf.intro">
     <title>Introduction</title>
     <simpara>
      You can use the PDF functions in PHP to create PDF files if you
@@ -41,7 +41,7 @@
      almost all functions need it as its first parameter.
      </simpara>
    </sect1>
- <sect1>
+ <sect1 id="pdf.oldlibs.confusion">
     <title>Confusion with old pdflib versions</title>
     <simpara>
      Since the very begining of PDF support in PHP &mdash; starting with
@@ -196,14 +196,14 @@
      </table>
     </para>
    </sect1>
- <sect1>
+ <sect1 id="pdf.install.pdflib">
     <title>Hints for installation of pdflib 3.x</title>
     <simpara>
      Since version 3.0 of pdflib you should configure pdflib with the option
      <literal>--enable-shared-pdflib</literal>.
     </simpara>
    </sect1>
- <sect1>
+ <sect1 id="pdf.oldlibs.hints">
     <title>Issues with older versions of pdflib</title>
     <simpara>
      If you use pdflib 2.01 check how the lib was installed.
@@ -233,7 +233,7 @@
       with version newer than 2.01.
     </simpara>
    </sect1>
- <sect1>
+ <sect1 id="pdf.examples">
     <title>Examples</title>
     <simpara>
      Most of the functions are fairly easy to use. The most difficult part
Index: phpdoc/en/language/variables.xml
diff -u phpdoc/en/language/variables.xml:1.8 phpdoc/en/language/variables.xml:1.9
--- phpdoc/en/language/variables.xml:1.8 Fri Sep 15 09:09:44 2000
+++ phpdoc/en/language/variables.xml Sat Oct 14 06:26:28 2000
@@ -880,7 +880,7 @@
      single-dimensional arrays. In PHP 4, no such restriction applies.
     </para>
 
- <sect3>
+ <sect3 id="language.variables.external.form.submit">
      <title>IMAGE SUBMIT variable names</title>
 
      <simpara>
@@ -976,7 +976,7 @@
     </para>
    </sect2>
 
- <sect2>
+ <sect2 id="language.variables.external.dot-in-names">
     <title>Dots in incoming variable names</title>
 
     <para>
@@ -1002,7 +1002,7 @@
 
    </sect2>
 
- <sect2>
+ <sect2 id="language.variables.determining-type-of">
     <title>Determining variable types</title>
 
     <para>
Index: phpdoc/es/chapters/security.xml
diff -u phpdoc/es/chapters/security.xml:1.2 phpdoc/es/chapters/security.xml:1.3
--- phpdoc/es/chapters/security.xml:1.2 Wed Aug 23 23:51:15 2000
+++ phpdoc/es/chapters/security.xml Sat Oct 14 06:26:28 2000
@@ -26,7 +26,7 @@
   <sect1 id="security.cgi">
    <title>Binarios CGI</title>
 
- <sect2>
+ <sect2 id="security.cgi.attacks">
     <title>Posibles ataques</title>
     <simpara>
      Usando PHP como un binario <acronym>CGI</acronym> es una opci&oacute;n para
Index: phpdoc/es/functions/ldap.xml
diff -u phpdoc/es/functions/ldap.xml:1.3 phpdoc/es/functions/ldap.xml:1.4
--- phpdoc/es/functions/ldap.xml:1.3 Wed Aug 23 23:51:15 2000
+++ phpdoc/es/functions/ldap.xml Sat Oct 14 06:26:28 2000
@@ -3,14 +3,16 @@
   <titleabbrev>LDAP</titleabbrev>
 
   <partintro>
- <title>Introducci&oacute;n a LDAP</title>
+ <sect1 id="ldap.intro">
+ <title>Introducci&oacute;n a LDAP</title>
     <para>
      LDAP es el protocolo de acceso a directorios ligero (Lightweight
      Directory Access Protocol), un protocolo usado para acceder a
      "Servidores de Directorio". El directorio es una clase especial
      de base de datos que contiene informaci&oacute;n estructurada en forma
      de &aacute;rbol.
- </para><para>
+ </para>
+ <para>
      El concepto es similar a la estructura de directorios de los discos
      duros, pero en este caso, el directorio raiz es "El Mundo" y los
      subdirectorios de primer nivel son los "pa&iacute;ses". Niveles inferiores
@@ -18,34 +20,36 @@
      organizaciones o lugares, y en niveles a&uacute;n inferiores se encuentran
      las entradas para la gente, y quiz&aacute;s de equipos inform&aacute;ticos y
      documentos.
- </para><para>
+ </para>
+ <para>
      Para referirse a un fichero en un subdirectorio del disco duro
      se usa algo como
     </para>
-<literallayout>
+ <literallayout>
     /usr/local/misapps/docs
-</literallayout>
+ </literallayout>
     <para>
      Las barras marcan cada divisi&oacute;n en la referencia al fichero, y
      la secuencia es leida de izquierda a derecha.
- </para><para>
+ </para>
+ <para>
      El equivalente a la referencia a un fichero en LDAP es el
      "distinguished name" (nombre distinguible), abreviado como "db".
      Un ejemplo de dn podr&iacute;a ser.
     </para>
-<literallayout>
+ <literallayout>
     cn=Pedro P&eacute;rez,ou=Contabilidad,o=Mi Compa&ntilde;&iacute;a,c=ES
-</literallayout>
+ </literallayout>
     <para>
      Las comas marcan cada divisi&oacute;n en la referencia, y la secuencia
      se lee de derecha a izquierda. Este dn se leer&iacute;a como ..
     </para>
-<literallayout>
+ <literallayout>
     country = ES
     organization = Mi Compa&ntilde;&iacute;a
     organizationalUnit = Contabilidad
     commonName = Pedro P&eacute;rez
-</literallayout>
+ </literallayout>
     <para>
      De la misma manera que no hay reglas estrictas sobre como organizar
      la estructura de directorios de un disco duro, un administrador de un
@@ -56,6 +60,7 @@
      estructura, igual que no se puede usar una base de datos sin alg&uacute;n
      conocimiento sobre lo que est&aacute; disponible en ella.
     </para>
+ </sect1>
 
    <sect1 id="ldap-example">
     <title>Ejemplo de c&oacute;digo completo</title>
@@ -110,7 +115,7 @@
 </programlisting>
     </example>
 
- <sect2>
+ <sect2 id="ldap.using">
     <title>Usando las llamadas LDAP de PHP</title>
      <para>
       Es necesario conseguir y compilar la librer&iacute;as cliente de LDAP
@@ -158,7 +163,7 @@
    </sect2>
 
 
- <sect2>
+ <sect2 id="ldap.moreinfo">
     <title>M&aacute;s informaci&oacute;n</title>
      <para>
       Mucha informaci&oacute;n acerca de LDAP puede ser consultada en
Index: phpdoc/es/functions/math.xml
diff -u phpdoc/es/functions/math.xml:1.2 phpdoc/es/functions/math.xml:1.3
--- phpdoc/es/functions/math.xml:1.2 Wed Aug 23 23:51:15 2000
+++ phpdoc/es/functions/math.xml Sat Oct 14 06:26:28 2000
@@ -3,7 +3,7 @@
   <titleabbrev>Math.</titleabbrev>
 
   <partintro>
- <sect1>
+ <sect1 id="math.intro">
     <title>Introducci&oacute;n</title>
     <para>
      Estas funciones matem&aacute;ticas solo manejan valores dentro de los rangos
@@ -11,7 +11,7 @@
      n&uacute;meros mayores, pege un vistazo a
      <link linkend="ref.bc">funciones matem&aacute;ticas de precisi&oacute;n arbitraria</link>.
     </para>
- <sect2>
+ <sect2 id="math.constants">
      <title>Constantes matem&aacute;ticas</title>
      <para>
       Los siguientes valores estan definidos como constantes en PHP
Index: phpdoc/es/language/variables.xml
diff -u phpdoc/es/language/variables.xml:1.2 phpdoc/es/language/variables.xml:1.3
--- phpdoc/es/language/variables.xml:1.2 Wed Aug 23 23:51:16 2000
+++ phpdoc/es/language/variables.xml Sat Oct 14 06:26:29 2000
@@ -790,7 +790,7 @@
      en los arrays asociativos globales $HTTP_POST_VARS y $HTTP_GET_VARS.
     </simpara>
 
- <sect3>
+ <sect3 id="language.variables.external.form.submit">
      <title>IMAGE SUBMIT variable names</title>
 
      <simpara>
@@ -886,7 +886,7 @@
     </para>
    </sect2>
 
- <sect2>
+ <sect2 id="language.variables.external.dot-in-names">
     <title>Puntos en los nombres de variables de entrada</title>
 
     <para>
@@ -912,7 +912,7 @@
 
    </sect2>
 
- <sect2>
+ <sect2 id="language.variables.determining-type-of">
     <title>Determinando los tipos de variables</title>
 
     <para>
Index: phpdoc/fr/chapters/security.xml
diff -u phpdoc/fr/chapters/security.xml:1.1 phpdoc/fr/chapters/security.xml:1.2
--- phpdoc/fr/chapters/security.xml:1.1 Fri Jul 21 03:27:50 2000
+++ phpdoc/fr/chapters/security.xml Sat Oct 14 06:26:29 2000
@@ -24,7 +24,7 @@
   <sect1 id="security.cgi">
    <title>CGI binary</title>
 
- <sect2>
+ <sect2 id="security.cgi.attacks">
     <title>Faiblesses connues</title>
     <simpara>
         Utiliser le PHP comme un <acronym>CGI</acronym> ex&eacute;cutable vient la plupart
Index: phpdoc/fr/functions/ldap.xml
diff -u phpdoc/fr/functions/ldap.xml:1.2 phpdoc/fr/functions/ldap.xml:1.3
--- phpdoc/fr/functions/ldap.xml:1.2 Sat Jul 22 06:43:41 2000
+++ phpdoc/fr/functions/ldap.xml Sat Oct 14 06:26:30 2000
@@ -3,7 +3,8 @@
   <titleabbrev>LDAP</titleabbrev>
 
   <partintro>
- <title>Introduction &agrave; LDAP</title>
+ <sect1 id="ldap.intro">
+ <title>Introduction &agrave; LDAP</title>
     <para>
       LDAP est l'acronyme de Lightweight Directory Access Protocol, c'est &agrave; dire
       Protocole L&eacute;ger d'Acc&egrave;s aux Dossiers. C'est un protocole utilis&eacute; pour acc&eacute;der &agrave;
@@ -21,9 +22,9 @@
       Pour acc&eacute;der &agrave; un fichier sur votre disque, vous devez utiliser la syntaxe
       suivante :
     </para>
-<literallayout>
+ <literallayout>
     /usr/local/myapp/docs
-</literallayout>
+ </literallayout>
     <para>
       Le slash indique une division de la r&eacute;f&eacute;rence, et la s&eacute;quence est lue de gauche
       &agrave; droite.
@@ -33,19 +34,19 @@
       "noms distincts" ("distinguished names"), aussi appel&eacute; "nd" ("dn" en anglais).
       Par exemple :
     </para>
-<literallayout>
+ <literallayout>
     cn=Jean Dupont,ou=Comptes,o=Ma Soci&eacute;t&eacute;,c=Fr
-</literallayout>
+ </literallayout>
     <para>
       La virgule marque une division de la r&eacute;f&eacute;r&eacute;nce, et la s&eacute;quence est lue de droite
       &agrave; gauche. Vous pouvez la lire comme ceci :
     </para>
-<literallayout>
+ <literallayout>
     country = Fr
     organization = Ma Soci&eacute;t&eacute;
     organizationalUnit = Comptes
     commonName = Jean Dupont
-</literallayout>
+ </literallayout>
     <para>
       De la m&ecirc;me fa&ccedil;on qu'il n'y a pas de r&egrave;gle universelle d'organisation d'un disque
       dur, un serveur de dossier peut supporter n'importe quelle structure du moment
@@ -54,6 +55,7 @@
       structure, de la m&ecirc;me fa&ccedil;on que vous ne pouvez pas utiliser une base de donn&eacute;es
       sans en conna&icirc;tre les tables.
     </para>
+ </sect1>
 
    <sect1 id="ldap-example">
     <title>Exemple complet </title>
@@ -108,7 +110,7 @@
 </programlisting>
     </example>
 
- <sect2>
+ <sect2 id="ldap.using">
     <title>Utilisation des fonctions PHP LDAP </title>
      <para>
        Il faut d'abord que les biblioth&egrave;ques client LDAP soient compil&eacute;es avec PHP.
@@ -153,7 +155,7 @@
    </sect2>
 
 
- <sect2>
+ <sect2 id="ldap.moreinfo">
     <title>Plus d'informations</title>
      <para>
        Vous pouvez en apprendre encore plus, mais en anglais, aux adresses suivantes :
Index: phpdoc/fr/functions/math.xml
diff -u phpdoc/fr/functions/math.xml:1.1 phpdoc/fr/functions/math.xml:1.2
--- phpdoc/fr/functions/math.xml:1.1 Fri Jul 21 03:27:50 2000
+++ phpdoc/fr/functions/math.xml Sat Oct 14 06:26:30 2000
@@ -3,14 +3,14 @@
   <titleabbrev>Maths</titleabbrev>
 
   <partintro>
- <sect1>
+ <sect1 id="math.intro">
     <title>Introduction</title>
     <para>
       Ces fonctions ne sont capables de manipuler que des entiers double, ou des long.
       Si vous avez besoin de manipuler des nombres plus grands, reportez vous &agrave;
       <link linkend="ref.bc">fonctions math&eacute;matiques de nombre de taille arbitraire</link>.
     </para>
- <sect2>
+ <sect2 id="math.constants">
      <title>Constantes math&eacute;matiques</title>
      <para>
       Les valeurs suivantes sont d&eacute;finies comme des constantes dans PHP:
Index: phpdoc/fr/language/variables.xml
diff -u phpdoc/fr/language/variables.xml:1.2 phpdoc/fr/language/variables.xml:1.3
--- phpdoc/fr/language/variables.xml:1.2 Sat Jul 22 05:56:19 2000
+++ phpdoc/fr/language/variables.xml Sat Oct 14 06:26:30 2000
@@ -759,7 +759,7 @@
         suivant la m&eacute;thode utlis&eacute;e.
     </simpara>
 
- <sect3>
+ <sect3 id="language.variables.external.form.submit">
      <title>Bouton "submit" sous forme d'image</title>
 
      <simpara>
@@ -856,7 +856,7 @@
     </para>
    </sect2>
 
- <sect2>
+ <sect2 id="language.variables.external.dot-in-names">
     <title>Cas des points dans les noms de variables</title>
 
     <para>
@@ -879,7 +879,7 @@
 
    </sect2>
 
- <sect2>
+ <sect2 id="language.variables.determining-type-of">
     <title>D&eacute;termination du type des variables</title>
 
     <para>
Index: phpdoc/hu/chapters/security.xml
diff -u phpdoc/hu/chapters/security.xml:1.3 phpdoc/hu/chapters/security.xml:1.4
--- phpdoc/hu/chapters/security.xml:1.3 Sat Aug 12 17:07:56 2000
+++ phpdoc/hu/chapters/security.xml Sat Oct 14 06:26:30 2000
@@ -25,7 +25,7 @@
   <sect1 id="security.cgi">
    <title>CGI futtatható állomány</title>
 
- <sect2>
+ <sect2 id="security.cgi.attacks">
     <title>Lehetséges támadások</title>
     <simpara>
      A PHP <acronym>CGI</acronym> futtatható állományként való használata
Index: phpdoc/hu/functions/classobj.xml
diff -u phpdoc/hu/functions/classobj.xml:1.1 phpdoc/hu/functions/classobj.xml:1.2
--- phpdoc/hu/functions/classobj.xml:1.1 Tue Aug 8 07:48:35 2000
+++ phpdoc/hu/functions/classobj.xml Sat Oct 14 06:26:31 2000
@@ -17,7 +17,7 @@
     az adott objektum osztály).
    </para>
   </sect2>
- <sect2>
+ <sect2 id="classobj.example">
    <title>Egy használati példa</title>
    <para>
     Ebben a példában definiálunk egy alap osztályt, és
Index: phpdoc/hu/functions/ldap.xml
diff -u phpdoc/hu/functions/ldap.xml:1.1 phpdoc/hu/functions/ldap.xml:1.2
--- phpdoc/hu/functions/ldap.xml:1.1 Tue Aug 8 07:48:35 2000
+++ phpdoc/hu/functions/ldap.xml Sat Oct 14 06:26:31 2000
@@ -3,47 +3,51 @@
   <titleabbrev>LDAP</titleabbrev>
 
   <partintro>
- <title>Introduction to LDAP</title>
+ <sect1 id="ldap.intro">
+ <title>Introduction to LDAP</title>
     <para>
      LDAP is the Lightweight Directory Access Protocol, and is a
      protocol used to access "Directory Servers". The Directory is a
      special kind of database that holds information in a tree
      structure.
- </para><para>
+ </para>
+ <para>
      The concept is similar to your hard disk directory structure,
      except that in this context, the root directory is "The world"
      and the first level subdirectories are "countries". Lower levels
      of the directory structure contain entries for companies,
      organisations or places, while yet lower still we find directory
      entries for people, and perhaps equipment or documents.
- </para><para>
+ </para>
+ <para>
      To refer to a file in a subdirectory on your hard disk, you might
      use something like
     </para>
-<literallayout>
+ <literallayout>
     /usr/local/myapp/docs
-</literallayout>
+ </literallayout>
     <para>
      The forwards slash marks each division in the reference, and the
      sequence is read from left to right.
- </para><para>
+ </para>
+ <para>
      The equivalent to the fully qualified file reference in LDAP is
      the "distinguished name", referred to simply as "dn". An example
      dn might be.
     </para>
-<literallayout>
+ <literallayout>
     cn=John Smith,ou=Accounts,o=My Company,c=US
-</literallayout>
+ </literallayout>
     <para>
      The comma marks each division in the reference, and the sequence
      is read from right to left. You would read this dn as ..
     </para>
-<literallayout>
+ <literallayout>
     country = US
     organization = My Company
     organizationalUnit = Accounts
     commonName = John Smith
-</literallayout>
+ </literallayout>
     <para>
      In the same way as there are no hard rules about how you organise
      the directory structure of a hard disk, a directory server
@@ -54,6 +58,7 @@
      than you can use a database without some knowledge of what is
      available.
     </para>
+ </sect1>
 
    <sect1 id="ldap-example">
     <title>Complete code example</title>
@@ -108,7 +113,7 @@
 </programlisting>
     </example>
 
- <sect2>
+ <sect2 id="ldap.using">
     <title>Using the PHP LDAP calls</title>
      <para>
       You will need to get and compile LDAP client libraries from
@@ -156,7 +161,7 @@
    </sect2>
 
 
- <sect2>
+ <sect2 id="ldap.moreinfo">
     <title>More Information</title>
      <para>
       Lots of information about LDAP can be found at
Index: phpdoc/hu/functions/math.xml
diff -u phpdoc/hu/functions/math.xml:1.2 phpdoc/hu/functions/math.xml:1.3
--- phpdoc/hu/functions/math.xml:1.2 Sun Sep 17 01:04:57 2000
+++ phpdoc/hu/functions/math.xml Sat Oct 14 06:26:31 2000
@@ -3,14 +3,14 @@
   <titleabbrev>Matematika</titleabbrev>
 
   <partintro>
- <sect1>
+ <sect1 id="math.intro">
     <title>Introduction</title>
     <para>
      These math functions will only handle values within the range of
      the long and double types on your computer. If you need to
      handle bigger numbers, take a look at the <link linkend="ref.bc">arbitrary precision math functions</link>.
     </para>
- <sect2>
+ <sect2 id="math.constants">
      <title>Math constants</title>
      <para>
       The following values are defined as constants in PHP by the math
Index: phpdoc/hu/language/variables.xml
diff -u phpdoc/hu/language/variables.xml:1.3 phpdoc/hu/language/variables.xml:1.4
--- phpdoc/hu/language/variables.xml:1.3 Sun Sep 17 01:04:57 2000
+++ phpdoc/hu/language/variables.xml Sat Oct 14 06:26:31 2000
@@ -879,7 +879,7 @@
      asszociatív tömbökben.
     </simpara>
 
- <sect3>
+ <sect3 id="language.variables.external.form.submit">
      <title>IMAGE SUBMIT változónevek</title>
 
      <simpara>
@@ -983,7 +983,7 @@
     </para>
    </sect2>
 
- <sect2>
+ <sect2 id="language.variables.external.dot-in-names">
     <title>Pontok a bejövõ változónevekben</title>
 
     <para>
@@ -1009,7 +1009,7 @@
 
    </sect2>
 
- <sect2>
+ <sect2 id="language.variables.determining-type-of">
     <title>Változótípusok meghatározása</title>
 
     <para>
Index: phpdoc/it/chapters/security.xml
diff -u phpdoc/it/chapters/security.xml:1.4 phpdoc/it/chapters/security.xml:1.5
--- phpdoc/it/chapters/security.xml:1.4 Wed Oct 11 06:42:27 2000
+++ phpdoc/it/chapters/security.xml Sat Oct 14 06:26:31 2000
@@ -39,7 +39,7 @@
   <sect1 id="security.cgi">
    <title>Installed as CGI binary</title>
 
- <sect2>
+ <sect2 id="security.cgi.attacks">
     <title>Possible attacks</title>
     <simpara>
      Using PHP as a <acronym>CGI</acronym> binary is an option for
Index: phpdoc/it/functions/classobj.xml
diff -u phpdoc/it/functions/classobj.xml:1.5 phpdoc/it/functions/classobj.xml:1.6
--- phpdoc/it/functions/classobj.xml:1.5 Thu Aug 31 15:20:58 2000
+++ phpdoc/it/functions/classobj.xml Sat Oct 14 06:26:32 2000
@@ -16,7 +16,7 @@
           what class is the object class extending).
          </para>
         </sect2>
- <sect2>
+ <sect2 id="classobj.example">
          <title>An example of use</title>
          <para>
           In this example, we first define a base class and an extension
Index: phpdoc/it/functions/ldap.xml
diff -u phpdoc/it/functions/ldap.xml:1.5 phpdoc/it/functions/ldap.xml:1.6
--- phpdoc/it/functions/ldap.xml:1.5 Thu Aug 31 15:39:27 2000
+++ phpdoc/it/functions/ldap.xml Sat Oct 14 06:26:32 2000
@@ -3,47 +3,51 @@
   <titleabbrev>LDAP</titleabbrev>
 
   <partintro>
- <title>Introduction to LDAP</title>
+ <sect1 id="ldap.intro">
+ <title>Introduction to LDAP</title>
     <para>
      LDAP is the Lightweight Directory Access Protocol, and is a
      protocol used to access "Directory Servers". The Directory is a
      special kind of database that holds information in a tree
      structure.
- </para><para>
+ </para>
+ <para>
      The concept is similar to your hard disk directory structure,
      except that in this context, the root directory is "The world"
      and the first level subdirectories are "countries". Lower levels
      of the directory structure contain entries for companies,
      organisations or places, while yet lower still we find directory
      entries for people, and perhaps equipment or documents.
- </para><para>
+ </para>
+ <para>
      To refer to a file in a subdirectory on your hard disk, you might
      use something like
     </para>
-<literallayout>
+ <literallayout>
     /usr/local/myapp/docs
-</literallayout>
+ </literallayout>
     <para>
      The forwards slash marks each division in the reference, and the
      sequence is read from left to right.
- </para><para>
+ </para>
+ <para>
      The equivalent to the fully qualified file reference in LDAP is
      the "distinguished name", referred to simply as "dn". An example
      dn might be.
     </para>
-<literallayout>
+ <literallayout>
     cn=John Smith,ou=Accounts,o=My Company,c=US
-</literallayout>
+ </literallayout>
     <para>
      The comma marks each division in the reference, and the sequence
      is read from right to left. You would read this dn as ..
     </para>
-<literallayout>
+ <literallayout>
     country = US
     organization = My Company
     organizationalUnit = Accounts
     commonName = John Smith
-</literallayout>
+ </literallayout>
     <para>
      In the same way as there are no hard rules about how you organise
      the directory structure of a hard disk, a directory server
@@ -54,6 +58,7 @@
      than you can use a database without some knowledge of what is
      available.
     </para>
+ </sect1>
 
    <sect1 id="ldap-example">
     <title>Complete code example</title>
@@ -108,7 +113,7 @@
 </programlisting>
     </example>
 
- <sect2>
+ <sect2 id="ldap.using">
     <title>Using the PHP LDAP calls</title>
      <para>
       You will need to get and compile LDAP client libraries from
@@ -156,7 +161,7 @@
    </sect2>
 
 
- <sect2>
+ <sect2 id="ldap.moreinfo">
     <title>More Information</title>
      <para>
       Lots of information about LDAP can be found at
Index: phpdoc/it/functions/math.xml
diff -u phpdoc/it/functions/math.xml:1.8 phpdoc/it/functions/math.xml:1.9
--- phpdoc/it/functions/math.xml:1.8 Sun Sep 17 12:41:10 2000
+++ phpdoc/it/functions/math.xml Sat Oct 14 06:26:32 2000
@@ -3,14 +3,14 @@
   <titleabbrev>Mat.</titleabbrev>
 
   <partintro>
- <sect1>
+ <sect1 id="math.intro">
     <title>Introduzione</title>
     <para>
      Queste funzioni matematiche operano esclusivamente nel range dei tipi di dato "long"
      e "double" del singolo computer. Se si ha necessità di lavorare con numeri più
      grandi, fare riferimento alle <link linkend="ref.bc">funzioni matematiche a precisione arbitraria</link>.
     </para>
- <sect2>
+ <sect2 id="math.constants">
      <title>Costanti Matematiche</title>
      <para>
       I seguenti valori sono definiti come costanti nel PHP dall'estensione matematica del linguaggio:
Index: phpdoc/it/language/variables.xml
diff -u phpdoc/it/language/variables.xml:1.3 phpdoc/it/language/variables.xml:1.4
--- phpdoc/it/language/variables.xml:1.3 Sun Sep 17 12:49:14 2000
+++ phpdoc/it/language/variables.xml Sat Oct 14 06:26:32 2000
@@ -812,7 +812,7 @@
      $HTTP_POST_VARS and $HTTP_GET_VARS as appropriate.
     </simpara>
 
- <sect3>
+ <sect3 id="language.variables.external.form.submit">
      <title>IMAGE SUBMIT variable names</title>
 
      <simpara>
@@ -908,7 +908,7 @@
     </para>
    </sect2>
 
- <sect2>
+ <sect2 id="language.variables.external.dot-in-names">
     <title>Dots in incoming variable names</title>
 
     <para>
@@ -934,7 +934,7 @@
 
    </sect2>
 
- <sect2>
+ <sect2 id="language.variables.determining-type-of">
     <title>Determining variable types</title>
 
     <para>
Index: phpdoc/ja/chapters/security.xml
diff -u phpdoc/ja/chapters/security.xml:1.4 phpdoc/ja/chapters/security.xml:1.5
--- phpdoc/ja/chapters/security.xml:1.4 Fri Oct 13 08:30:56 2000
+++ phpdoc/ja/chapters/security.xml Sat Oct 14 06:26:32 2000
@@ -38,7 +38,7 @@
   <sect1 id="security.cgi">
    <title>CGI ãƒã‚¤ãƒŠãƒªã¨ã—ã¦ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«</title>
    
- <sect2>
+ <sect2 id="security.cgi.attacks">
     <title>有りã†ã‚‹æ”»æ’ƒ</title>
 
     <simpara>
Index: phpdoc/ja/functions/classobj.xml
diff -u phpdoc/ja/functions/classobj.xml:1.6 phpdoc/ja/functions/classobj.xml:1.7
--- phpdoc/ja/functions/classobj.xml:1.6 Sat Sep 9 22:15:10 2000
+++ phpdoc/ja/functions/classobj.xml Sat Oct 14 06:26:33 2000
@@ -16,7 +16,7 @@
       ã“ã¨ã‚‚å¯èƒ½ã§ã™ã€‚
      </para>
     </sect2>
- <sect2>
+ <sect2 id="classobj.example">
      <title>使用例</title>
      <para>
       ã“ã®ä¾‹ã§ã¯ã€ã¾ãšåŸºåº•クラスãŠã‚ˆã³ãã®ã‚¯ãƒ©ã‚¹ã®æ´¾ç”Ÿã‚¯ãƒ©ã‚¹ã‚’定義ã—ã¾
Index: phpdoc/ja/functions/ldap.xml
diff -u phpdoc/ja/functions/ldap.xml:1.11 phpdoc/ja/functions/ldap.xml:1.12
--- phpdoc/ja/functions/ldap.xml:1.11 Sun Oct 1 08:36:45 2000
+++ phpdoc/ja/functions/ldap.xml Sat Oct 14 06:26:33 2000
@@ -3,58 +3,60 @@
   <titleabbrev>LDAP</titleabbrev>
   
   <partintro>
- <title>LDAP 入門</title>
- <para>
- LDAP ã¨ã¯ Lightweight Directory Access Protocol ã‚’æ„味ã—ã€"ディレ
- クトリ・サーãƒãƒ¼" ã«ã‚¢ã‚¯ã‚»ã‚¹ã™ã‚‹ãŸã‚ã«ä½¿ç”¨ã•れるプロトコルã§ã™ã€‚ディ
- レクトリã¨ã¯ã€ãƒ„ãƒªãƒ¼æ§‹é€ ã«æƒ…å ±ã‚’ä¿æŒã—ã¦ã„る特殊ãªãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã®ã“
- ã¨ã§ã™ã€‚
- </para>
- <para>
- ã“ã®æ¦‚念ã¯ã€ãƒãƒ¼ãƒ‰ãƒ‡ã‚£ã‚¹ã‚¯ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªæ§‹é€ ã«ä¼¼ã¦ã„ã¾ã™ã€‚
- ãŸã ã—ã€ãã®å†…容ã¯ç•°ãªã£ã¦ãŠã‚Šã€ãƒ«ãƒ¼ãƒˆãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã¯ "世界" ã§ã‚りã€
- 最åˆã®ãƒ¬ãƒ™ãƒ«ã®ã‚µãƒ–ディレクトリ㯠"国" ã¨ãªã‚Šã¾ã™ã€‚ディレクトリ構造
- ã®ä¸‹ä½ã«ã¯ã€ä¼šç¤¾ã‚„機関ã€å ´æ‰€ã®ã‚¨ãƒ³ãƒˆãƒªãŒã‚りã¾ã™ã€‚ã•らã«ä¸‹ä½ã«ã¯ã€
- 人やãŠãらãé“具や文書ã«é–¢ã™ã‚‹ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚¨ãƒ³ãƒˆãƒªã‚‚ã‚りã¾ã™ã€‚
- </para>
- <para>
- ãƒãƒ¼ãƒ‰ãƒ‡ã‚£ã‚¹ã‚¯ã«ã‚るサブディレクトリã«ã‚るファイルをå‚ç…§ã™ã‚‹ã«ã¯ã€
- 次ã®ã‚ˆã†ã«ã—ã¾ã™ã€‚
- </para>
- <literallayout>
+ <sect1 id="ldap.intro">
+ <title>LDAP 入門</title>
+ <para>
+ LDAP ã¨ã¯ Lightweight Directory Access Protocol ã‚’æ„味ã—ã€"ディレ
+ クトリ・サーãƒãƒ¼" ã«ã‚¢ã‚¯ã‚»ã‚¹ã™ã‚‹ãŸã‚ã«ä½¿ç”¨ã•れるプロトコルã§ã™ã€‚ディ
+ レクトリã¨ã¯ã€ãƒ„ãƒªãƒ¼æ§‹é€ ã«æƒ…å ±ã‚’ä¿æŒã—ã¦ã„る特殊ãªãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã®ã“
+ ã¨ã§ã™ã€‚
+ </para>
+ <para>
+ ã“ã®æ¦‚念ã¯ã€ãƒãƒ¼ãƒ‰ãƒ‡ã‚£ã‚¹ã‚¯ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªæ§‹é€ ã«ä¼¼ã¦ã„ã¾ã™ã€‚
+ ãŸã ã—ã€ãã®å†…容ã¯ç•°ãªã£ã¦ãŠã‚Šã€ãƒ«ãƒ¼ãƒˆãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã¯ "世界" ã§ã‚りã€
+ 最åˆã®ãƒ¬ãƒ™ãƒ«ã®ã‚µãƒ–ディレクトリ㯠"国" ã¨ãªã‚Šã¾ã™ã€‚ディレクトリ構造
+ ã®ä¸‹ä½ã«ã¯ã€ä¼šç¤¾ã‚„機関ã€å ´æ‰€ã®ã‚¨ãƒ³ãƒˆãƒªãŒã‚りã¾ã™ã€‚ã•らã«ä¸‹ä½ã«ã¯ã€
+ 人やãŠãらãé“具や文書ã«é–¢ã™ã‚‹ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚¨ãƒ³ãƒˆãƒªã‚‚ã‚りã¾ã™ã€‚
+ </para>
+ <para>
+ ãƒãƒ¼ãƒ‰ãƒ‡ã‚£ã‚¹ã‚¯ã«ã‚るサブディレクトリã«ã‚るファイルをå‚ç…§ã™ã‚‹ã«ã¯ã€
+ 次ã®ã‚ˆã†ã«ã—ã¾ã™ã€‚
+ </para>
+ <literallayout>
 /usr/local/myapp/docs
- </literallayout>
- <para>
- スラッシュã¯ã€ãƒªãƒ•ァレンスã®å„部分を区分ã—ã€è§£é‡ˆã¯å·¦ã‹ã‚‰å³ã«è¡Œã‚れã¾ã™ã€‚
- </para>
- <para>
- LDAP ã«ãŠã„ã¦ã“ã®å®Œå…¨ã«æ­£ã—ã„ファイルå‚ç…§ã«ç­‰ä¾¡ãªã‚‚ã®ã¯
+ </literallayout>
+ <para>
+ スラッシュã¯ã€ãƒªãƒ•ァレンスã®å„部分を区分ã—ã€è§£é‡ˆã¯å·¦ã‹ã‚‰å³ã«è¡Œã‚れã¾ã™ã€‚
+ </para>
+ <para>
+ LDAP ã«ãŠã„ã¦ã“ã®å®Œå…¨ã«æ­£ã—ã„ファイルå‚ç…§ã«ç­‰ä¾¡ãªã‚‚ã®ã¯
     "区分ã•れãŸåå‰(distinguished name)"ã§ã‚りã€å˜ã«"dn"ã¨è¡¨ã•れã¾ã™ã€‚
- 例ã¨ã—㦠dn ãŒæ¬¡ã®ã‚ˆã†ã«ãªã£ã¦ã„ã‚‹ã¨ã—ã¾ã—ょã†ã€‚
- </para>
- <literallayout>
+ 例ã¨ã—㦠dn ãŒæ¬¡ã®ã‚ˆã†ã«ãªã£ã¦ã„ã‚‹ã¨ã—ã¾ã—ょã†ã€‚
+ </para>
+ <literallayout>
      cn=John Smith,ou=Accounts,o=My Company,c=US
- </literallayout>
- <para>
- カンマã¯å„部分を区分ã—ã€å³ã‹ã‚‰å·¦ã«è§£é‡ˆã•れã¾ã™ã€‚ã“ã® dn ã¯æ¬¡ã®ã‚ˆã†
- ã«è§£é‡ˆã•れã¾ã™ã€‚
- </para>
- <literallayout>
+ </literallayout>
+ <para>
+ カンマã¯å„部分を区分ã—ã€å³ã‹ã‚‰å·¦ã«è§£é‡ˆã•れã¾ã™ã€‚ã“ã® dn ã¯æ¬¡ã®ã‚ˆã†
+ ã«è§£é‡ˆã•れã¾ã™ã€‚
+ </para>
+ <literallayout>
     country = US
     organization = My Company
     organizationalUnit = Accounts
     commonName = John Smith
- </literallayout>
- <para>
- ãƒãƒ¼ãƒ‰ãƒ‡ã‚£ã‚¹ã‚¯ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªæ§‹é€ ã‚’管ç†ã™ã‚‹æ‰‹æ³•ã«ã¤ã„ã¦æ˜Žç¢ºãªè¦ç´„ãŒ
- ãªã„ã®ã¨åŒæ§˜ã«ã€ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚µãƒ¼ãƒãƒ¼ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã¯ã€ç›®çš„ã«é©ã—ãŸã‚
- らゆる構造を設定ã™ã‚‹ã“ã¨ãŒå¯èƒ½ã§ã™ã€‚ã—ã‹ã—ã€å®Ÿç”¨çš„ã«ã¯ã„ãã¤ã‹ã®æ…£
- ç¿’ãŒã‚りã¾ã™ã€‚
- 利用å¯èƒ½ãªã‚‚ã®ã«é–¢ã™ã‚‹æƒ…報をæŒãŸãšã«ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã‚’使用ã™ã‚‹
- ã“ã¨ãŒã§ããªã„ã®ã¨åŒæ§˜ã«ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã®æ§‹é€ ã«é–¢ã™ã‚‹æƒ…å ±ãªãã—ã¦
- ディレクトリサーãƒãƒ¼ã«ã‚¢ã‚¯ã‚»ã‚¹ã™ã‚‹ã‚³ãƒ¼ãƒ‰ã‚’書ãã“ã¨ã¯ã§ããªã„
- ã¨ã„ã†ã“ã¨ãŒè¨€ãˆã¾ã™ã€‚
- </para>
+ </literallayout>
+ <para>
+ ãƒãƒ¼ãƒ‰ãƒ‡ã‚£ã‚¹ã‚¯ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªæ§‹é€ ã‚’管ç†ã™ã‚‹æ‰‹æ³•ã«ã¤ã„ã¦æ˜Žç¢ºãªè¦ç´„ãŒ
+ ãªã„ã®ã¨åŒæ§˜ã«ã€ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚µãƒ¼ãƒãƒ¼ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã¯ã€ç›®çš„ã«é©ã—ãŸã‚
+ らゆる構造を設定ã™ã‚‹ã“ã¨ãŒå¯èƒ½ã§ã™ã€‚ã—ã‹ã—ã€å®Ÿç”¨çš„ã«ã¯ã„ãã¤ã‹ã®æ…£
+ ç¿’ãŒã‚りã¾ã™ã€‚
+ 利用å¯èƒ½ãªã‚‚ã®ã«é–¢ã™ã‚‹æƒ…報をæŒãŸãšã«ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã‚’使用ã™ã‚‹
+ ã“ã¨ãŒã§ããªã„ã®ã¨åŒæ§˜ã«ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã®æ§‹é€ ã«é–¢ã™ã‚‹æƒ…å ±ãªãã—ã¦
+ ディレクトリサーãƒãƒ¼ã«ã‚¢ã‚¯ã‚»ã‚¹ã™ã‚‹ã‚³ãƒ¼ãƒ‰ã‚’書ãã“ã¨ã¯ã§ããªã„
+ ã¨ã„ã†ã“ã¨ãŒè¨€ãˆã¾ã™ã€‚
+ </para>
+ </sect1>
  
    <sect1 id="ldap-example">
     <title>完全ãªã‚³ãƒ¼ãƒ‰ã®ä¾‹</title>
@@ -107,7 +109,7 @@
      </programlisting>
     </example>
     
- <sect2>
+ <sect2 id="ldap.using">
      <title>PHP LDAP コールã®ä½¿ç”¨æ³•</title>
      <para>
       ãƒŸã‚·ã‚¬ãƒ³å¤§ã® ldap-3.3 パッケージã¾ãŸã¯ Netscape Directory SDK
@@ -153,7 +155,7 @@
       </literallayout>
      </para>
     </sect2>
- <sect2>
+ <sect2 id="ldap.moreinfo">
      <title>ä»–ã®æƒ…å ±</title>
      <para>
       LDAP ã«é–¢ã™ã‚‹å¤šãã®æƒ…報を以下ã®å ´æ‰€ã§å¾—ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚
Index: phpdoc/ja/functions/math.xml
diff -u phpdoc/ja/functions/math.xml:1.11 phpdoc/ja/functions/math.xml:1.12
--- phpdoc/ja/functions/math.xml:1.11 Fri Sep 29 19:01:27 2000
+++ phpdoc/ja/functions/math.xml Sat Oct 14 06:26:33 2000
@@ -4,7 +4,7 @@
   <titleabbrev>Math.</titleabbrev>
 
   <partintro>
- <sect1>
+ <sect1 id="math.intro">
     <title>å°Žå…¥</title>
     <para>
      ã“ã‚Œã‚‰ã®æ•°å­¦é–¢æ•°ã¯ã€å®Ÿè¡Œã™ã‚‹ã‚³ãƒ³ãƒ”ューターã®å€ç²¾åº¦æ•´æ•°(long)ãŠã‚ˆ
@@ -12,7 +12,7 @@
      ç†ã™ã‚‹å¿…è¦ãŒã‚ã‚‹å ´åˆã«ã¯ã€<link linkend="ref.bc">ä»»æ„精度数学関数
      </link>ã®ä½¿ç”¨ã‚’ãŠå‹§ã‚ã—ã¾ã™ã€‚
     </para>
- <sect2>
+ <sect2 id="math.constants">
      <title>数学定数</title>
      <para>
       ä»¥ä¸‹ã®å€¤ã¯ PHP ã®æ•°å­¦æ‹¡å¼µæ©Ÿèƒ½ã«ã‚ˆã‚Šå®šæ•°ã¨ã—ã¦å®šç¾©ã•れã¦ã„ã¾ã™ã€‚
Index: phpdoc/ja/functions/pdf.xml
diff -u phpdoc/ja/functions/pdf.xml:1.13 phpdoc/ja/functions/pdf.xml:1.14
--- phpdoc/ja/functions/pdf.xml:1.13 Fri Sep 29 19:01:27 2000
+++ phpdoc/ja/functions/pdf.xml Sat Oct 14 06:26:33 2000
@@ -3,7 +3,7 @@
   <titleabbrev>pdf</titleabbrev>
 
   <partintro>
- <sect1>
+ <sect1 id="pdf.intro">
     <title>å°Žå…¥</title>
     <simpara>
      Thomas Merzã«ã‚ˆã‚‹pdfライブラリをインストールã—ã¦ã„ã‚‹å ´åˆã€PHPã§
@@ -38,7 +38,7 @@
      ã¼å…¨ã¦ã®é–¢æ•°ã«å¿…è¦ã§ã™ã€‚
     </simpara>
    </sect1>
- <sect1>
+ <sect1 id="pdf.oldlibs.confusion">
     <title>å¤ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®pdflibã¨ã®æ··ä¹±</title>
     <simpara>
      PHPã«ãŠã„ã¦pdfサãƒãƒ¼ãƒˆãŒé–‹å§‹ã•れãŸã®ã¯ã€&mdash; pdflib 0.6
@@ -234,7 +234,7 @@
      </table>
     </para>
    </sect1>
- <sect1>
+ <sect1 id="pdf.install.pdflib">
     <title>pdflib 3.xã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã«é–¢ã™ã‚‹ãƒ’ント</title>
     <simpara>
      PDFLIBã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³3.0以é™ã§ã¯ã€ã‚ªãƒ—ション
@@ -242,7 +242,7 @@
      configureを行ã†å¿…è¦ãŒã‚りã¾ã™ã€‚
     </simpara>
    </sect1>
- <sect1>
+ <sect1 id="pdf.oldlibs.hints">
     <title>pdflibã®å¤ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«é–¢ã™ã‚‹å•題</title>
     <simpara>
      PDFLIB 2.01を使用ã—ã¦ã„ã‚‹å ´åˆã€ãƒ©ã‚¤ãƒ–ラリãŒã©ã®ã‚ˆã†ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«
@@ -276,7 +276,7 @@
      PDFLIB3を使用å¯èƒ½ã§ã™ã€‚)
     </simpara>
    </sect1>
- <sect1>
+ <sect1 id="pdf.examples">
     <title>例</title>
     <simpara>
      å¤šãã®é–¢æ•°ã®ä½¿ç”¨æ³•ã¯ç°¡å˜ã§ã™ã€‚最も困難ãªã®ã¯ã€éžå¸¸ã«ç°¡å˜ãªpdfドキュ
Index: phpdoc/ja/language/variables.xml
diff -u phpdoc/ja/language/variables.xml:1.7 phpdoc/ja/language/variables.xml:1.8
--- phpdoc/ja/language/variables.xml:1.7 Fri Sep 29 19:01:28 2000
+++ phpdoc/ja/language/variables.xml Sat Oct 14 06:26:33 2000
@@ -829,7 +829,7 @@
      $HTTP_POST_VARS ãŠã‚ˆã³ $HTTP_GET_VARS よりアクセスã§ãã¾ã™ã€‚
     </simpara>
  
- <sect3>
+ <sect3 id="language.variables.external.form.submit">
      <title>IMAGE SUBMIT 変数å</title>
      <simpara>
       ãƒ•ォームを投稿ã™ã‚‹éš›ã€æ¬¡ã®ã‚¿ã‚°ã®ã‚ˆã†ã«æ¨™æº–ã®æŠ•ç¨¿ãƒœã‚¿ãƒ³ã®ä»£ã‚りã«
@@ -913,7 +913,7 @@
     </para>
    </sect2>
 
- <sect2>
+ <sect2 id="language.variables.external.dot-in-names">
     <title>外部変数åã®ãƒ‰ãƒƒãƒˆ</title>
     
     <para>
@@ -935,7 +935,7 @@
     
    </sect2>
  
- <sect2>
+ <sect2 id="language.variables.determining-type-of">
     <title>変数ã®åž‹ã®å®šç¾©</title>
     <para>
      PHPã¯ã€å¤‰æ•°ã®åž‹ã‚’定義ã—ã€å¿…è¦ã«å¿œã˜ã¦å¤‰æ›ã—ã¾ã™ã€‚ã“ã®ãŸã‚ã€ã‚る変
Index: phpdoc/nl/chapters/security.xml
diff -u phpdoc/nl/chapters/security.xml:1.2 phpdoc/nl/chapters/security.xml:1.3
--- phpdoc/nl/chapters/security.xml:1.2 Wed Oct 11 09:55:45 2000
+++ phpdoc/nl/chapters/security.xml Sat Oct 14 06:26:33 2000
@@ -39,7 +39,7 @@
   <sect1 id="security.cgi">
    <title>Installed as CGI binary</title>
 
- <sect2>
+ <sect2 id="security.cgi.attacks">
     <title>Possible attacks</title>
     <simpara>
      Using PHP as a <acronym>CGI</acronym> binary is an option for
Index: phpdoc/nl/functions/classobj.xml
diff -u phpdoc/nl/functions/classobj.xml:1.1 phpdoc/nl/functions/classobj.xml:1.2
--- phpdoc/nl/functions/classobj.xml:1.1 Tue Oct 10 15:07:53 2000
+++ phpdoc/nl/functions/classobj.xml Sat Oct 14 06:26:34 2000
@@ -16,7 +16,7 @@
       what class is the object class extending).
      </para>
     </sect2>
- <sect2>
+ <sect2 id="classobj.example">
      <title>An example of use</title>
      <para>
       In this example, we first define a base class and an extension
Index: phpdoc/nl/functions/ldap.xml
diff -u phpdoc/nl/functions/ldap.xml:1.1 phpdoc/nl/functions/ldap.xml:1.2
--- phpdoc/nl/functions/ldap.xml:1.1 Tue Oct 10 15:07:53 2000
+++ phpdoc/nl/functions/ldap.xml Sat Oct 14 06:26:34 2000
@@ -3,47 +3,51 @@
   <titleabbrev>LDAP</titleabbrev>
 
   <partintro>
- <title>Introduction to LDAP</title>
+ <sect1 id="ldap.intro">
+ <title>Introduction to LDAP</title>
     <para>
      LDAP is the Lightweight Directory Access Protocol, and is a
      protocol used to access "Directory Servers". The Directory is a
      special kind of database that holds information in a tree
      structure.
- </para><para>
+ </para>
+ <para>
      The concept is similar to your hard disk directory structure,
      except that in this context, the root directory is "The world"
      and the first level subdirectories are "countries". Lower levels
      of the directory structure contain entries for companies,
      organisations or places, while yet lower still we find directory
      entries for people, and perhaps equipment or documents.
- </para><para>
+ </para>
+ <para>
      To refer to a file in a subdirectory on your hard disk, you might
      use something like
     </para>
-<literallayout>
+ <literallayout>
     /usr/local/myapp/docs
-</literallayout>
+ </literallayout>
     <para>
      The forwards slash marks each division in the reference, and the
      sequence is read from left to right.
- </para><para>
+ </para>
+ <para>
      The equivalent to the fully qualified file reference in LDAP is
      the "distinguished name", referred to simply as "dn". An example
      dn might be.
     </para>
-<literallayout>
+ <literallayout>
     cn=John Smith,ou=Accounts,o=My Company,c=US
-</literallayout>
+ </literallayout>
     <para>
      The comma marks each division in the reference, and the sequence
      is read from right to left. You would read this dn as ..
     </para>
-<literallayout>
+ <literallayout>
     country = US
     organization = My Company
     organizationalUnit = Accounts
     commonName = John Smith
-</literallayout>
+ </literallayout>
     <para>
      In the same way as there are no hard rules about how you organise
      the directory structure of a hard disk, a directory server
@@ -54,6 +58,7 @@
      than you can use a database without some knowledge of what is
      available.
     </para>
+ </sect1>
 
    <sect1 id="ldap-example">
     <title>Complete code example</title>
@@ -108,7 +113,7 @@
 </programlisting>
     </example>
 
- <sect2>
+ <sect2 id="ldap.using">
     <title>Using the PHP LDAP calls</title>
      <para>
       You will need to get and compile LDAP client libraries from
@@ -156,7 +161,7 @@
    </sect2>
 
 
- <sect2>
+ <sect2 id="ldap.moreinfo">
     <title>More Information</title>
      <para>
       Lots of information about LDAP can be found at
Index: phpdoc/nl/functions/math.xml
diff -u phpdoc/nl/functions/math.xml:1.1 phpdoc/nl/functions/math.xml:1.2
--- phpdoc/nl/functions/math.xml:1.1 Tue Oct 10 15:07:53 2000
+++ phpdoc/nl/functions/math.xml Sat Oct 14 06:26:34 2000
@@ -3,7 +3,7 @@
   <titleabbrev>Math.</titleabbrev>
   
   <partintro>
- <sect1>
+ <sect1 id="math.intro">
     <title>Introduction</title>
     <para>
      These math functions will only handle values within the range of
@@ -11,7 +11,7 @@
      handle bigger numbers, take a look at the <link
      linkend="ref.bc">arbitrary precision math functions</link>.
     </para>
- <sect2>
+ <sect2 id="math.constants">
      <title>Math constants</title>
      <para>
       The following values are defined as constants in PHP by the math
Index: phpdoc/nl/functions/pdf.xml
diff -u phpdoc/nl/functions/pdf.xml:1.1 phpdoc/nl/functions/pdf.xml:1.2
--- phpdoc/nl/functions/pdf.xml:1.1 Tue Oct 10 15:07:53 2000
+++ phpdoc/nl/functions/pdf.xml Sat Oct 14 06:26:34 2000
@@ -3,7 +3,7 @@
   <titleabbrev>PDF</titleabbrev>
 
   <partintro>
- <sect1>
+ <sect1 id=&q