nlopess Sun Aug 15 08:42:40 2004 EDT
Modified files:
/phpdoc/en/faq obtaining.xml
/phpdoc/en/install/windows building.xml index.xml
/phpdoc/en/language/oop5 basic.xml
Log:
fix build
http://cvs.php.net/diff.php/phpdoc/en/faq/obtaining.xml?r1=1.19&r2=1.20&ty=u
Index: phpdoc/en/faq/obtaining.xml
diff -u phpdoc/en/faq/obtaining.xml:1.19 phpdoc/en/faq/obtaining.xml:1.20
--- phpdoc/en/faq/obtaining.xml:1.19 Mon May 10 14:23:46 2004
+++ phpdoc/en/faq/obtaining.xml Sun Aug 15 08:42:40 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.19 $ -->
+<!-- $Revision: 1.20 $ -->
<chapter id="faq.obtaining">
<title>Obtaining PHP</title>
<titleabbrev>Obtaining PHP</titleabbrev>
@@ -203,7 +203,7 @@
First, you will need Microsoft Visual C++ v6 (v5 may do
it also, but we do it with v6), and you will need some
support files. See the manual section about
- <link linkend="install.windows.build">building PHP from
+ <link linkend="install.windows.building">building PHP from
source on Windows</link>.
</para>
</answer>
http://cvs.php.net/diff.php/phpdoc/en/install/windows/building.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/install/windows/building.xml
diff -u phpdoc/en/install/windows/building.xml:1.3
phpdoc/en/install/windows/building.xml:1.4
--- phpdoc/en/install/windows/building.xml:1.3 Tue Aug 10 12:30:15 2004
+++ phpdoc/en/install/windows/building.xml Sun Aug 15 08:42:40 2004
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
- <sect1 id="install.windows.build">
+<!-- $Revision: 1.4 $ -->
+ <sect1 id="install.windows.building">
<title>Building from source</title>
<para>
Before getting started, it is worthwhile answering the question:
@@ -27,7 +27,7 @@
</listitem>
</orderedlist>
- <sect2 id="install.windows.build.requirement">
+ <sect2 id="install.windows.building.requirement">
&reftitle.required;
<para>
To compile and build PHP you need a Microsoft
@@ -72,7 +72,7 @@
</simpara>
</sect2>
- <sect2 id="install.windows.build.install">
+ <sect2 id="install.windows.building.install">
<title>Putting it all together</title>
<para>
After downloading the required packages you have to extract them in a
@@ -155,7 +155,7 @@
</note>
</sect2>
- <sect2 id="install.windows.build.configure">
+ <sect2 id="install.windows.building.configure">
<title>Configure MVC ++</title>
<para>
The next step is to configure MVC ++ to prepare for compiling.
@@ -185,7 +185,7 @@
</para>
</sect2>
- <sect2 id="install.windows.build.resolvlib">
+ <sect2 id="install.windows.building.resolvlib">
<title>Build resolv.lib</title>
<para>
You must build the <filename>resolv.lib</filename> library.
@@ -231,7 +231,7 @@
</para>
</sect2>
- <sect2 id="install.windows.build.compile">
+ <sect2 id="install.windows.building.compile">
<title>Compiling</title>
<simpara>
The best way to get started is to build the CGI version.
http://cvs.php.net/diff.php/phpdoc/en/install/windows/index.xml?r1=1.12&r2=1.13&ty=u
Index: phpdoc/en/install/windows/index.xml
diff -u phpdoc/en/install/windows/index.xml:1.12
phpdoc/en/install/windows/index.xml:1.13
--- phpdoc/en/install/windows/index.xml:1.12 Fri Aug 6 11:09:50 2004
+++ phpdoc/en/install/windows/index.xml Sun Aug 15 08:42:40 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.12 $ -->
+<!-- $Revision: 1.13 $ -->
<chapter id="install.windows">
<title>Installation on Windows systems</title>
<para>
@@ -15,7 +15,7 @@
</para>
<para>
If you have Microsoft Visual Studio, you can also
- <link linkend="install.windows.build">build</link>
+ <link linkend="install.windows.building">build</link>
PHP from the original source code.
</para>
<para>
http://cvs.php.net/diff.php/phpdoc/en/language/oop5/basic.xml?r1=1.1&r2=1.2&ty=u
Index: phpdoc/en/language/oop5/basic.xml
diff -u phpdoc/en/language/oop5/basic.xml:1.1 phpdoc/en/language/oop5/basic.xml:1.2
--- phpdoc/en/language/oop5/basic.xml:1.1 Sat Aug 14 20:17:12 2004
+++ phpdoc/en/language/oop5/basic.xml Sun Aug 15 08:42:40 2004
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
<sect1 id="language.oop5.basic">
<title>The Basics</title>
- <sect1 id="oop5.basic.class">
+ <sect2 id="language.oop5.basic.class">
<title>class</title>
<para>
Every class definition begins with the keyword class, followed by a class
@@ -33,9 +33,9 @@
]]>
</programlisting>
</example>
- </sect1>
+ </sect2>
- <sect1 id="oop5.basic.new">
+ <sect2 id="language.oop5.basic.new">
<title>new</title>
<para>
To create an instance of an object, a new object must be created and
@@ -93,9 +93,9 @@
]]>
</screen>
</example>
- </sect1>
+ </sect2>
- <sect1 id="oop5.basic.extend">
+ <sect2 id="language.oop5.basic.extend">
<title>extend</title>
<para>
A class can inherit methods and members of another class by using the
@@ -108,7 +108,7 @@
linkend="language.oop5.final">final</link>, by redeclaring them
within the same name defined in the parent class. It is possible to access the
overloaded
method or members by referencing them with <link
- linkend="lanuguage.oop5.paamayim-nekudotayim">parent::</link>
+ linkend="language.oop5.paamayim-nekudotayim">parent::</link>
</para>
<example>
<title>Simple Class Inherintance</title>
@@ -137,7 +137,7 @@
]]>
</screen>
</example>
- </sect1>
+ </sect2>
</sect1>