gwynne Wed Jun 27 21:19:42 2007 UTC
Modified files:
/phpdoc/en/internals2/pdo preparation.xml
Log:
Kill the callouts; they just don't work right. This does NOT fix the larger
internals problems.
http://cvs.php.net/viewvc.cgi/phpdoc/en/internals2/pdo/preparation.xml?r1=1.3&r2=1.4&diff_format=u
Index: phpdoc/en/internals2/pdo/preparation.xml
diff -u phpdoc/en/internals2/pdo/preparation.xml:1.3
phpdoc/en/internals2/pdo/preparation.xml:1.4
--- phpdoc/en/internals2/pdo/preparation.xml:1.3 Mon Jun 25 17:59:34 2007
+++ phpdoc/en/internals2/pdo/preparation.xml Wed Jun 27 21:19:42 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<sect1 xml:id="internals2.pdo.preparation"
xmlns="http://docbook.org/ns/docbook">
<title>Preparation and Housekeeping</title>
<sect2 xml:id="internals2.pdo.preparation.layout">
@@ -15,41 +15,18 @@
<screen>
<![CDATA[
pdo_SKEL/
- config.m4 <co xml:id="internals2.pdo.layout.co.m4"/>
- config.w32 <co xml:id="internals2.pdo.layout.co.w32"/>
+ config.m4 # unix build script
+ config.w32 # win32 build script
CREDITS
- package.xml <co xml:id="internals2.pdo.layout.co.cred"/>
- pdo_SKEL.c <co xml:id="internals2.pdo.layout.co.glue"/>
+ package.xml # meta information about the package
+ pdo_SKEL.c # standard PHP extension glue
php_pdo_SKEL.h
- php_pdo_SKEL_int.h <co xml:id="internals2.pdo.layout.co.priv"/>
- SKEL_dbh.c <co xml:id="internals2.pdo.layout.co.dbh"/>
- SKEL_stmt.c <co xml:id="internals2.pdo.layout.co.stmt"/>
+ php_pdo_SKEL_int.h # driver private header
+ SKEL_dbh.c # contains the implementation of the PDO driver
interface
+ SKEL_stmt.c # contains the implementation of the PDO
statement interface
tests/
]]>
</screen>
- <calloutlist>
- <callout arearefs="internals2.pdo.layout.co.m4">
- <para>unix build script</para>
- </callout>
- <callout arearefs="internals2.pdo.layout.co.w32">
- <para>win32 build script</para>
- </callout>
- <callout arearefs="internals2.pdo.layout.co.cred">
- <para>meta information about the package</para>
- </callout>
- <callout arearefs="internals2.pdo.layout.co.glue">
- <para>standard PHP extension glue</para>
- </callout>
- <callout arearefs="internals2.pdo.layout.co.priv">
- <para>driver private header</para>
- </callout>
- <callout arearefs="internals2.pdo.layout.co.dbh">
- <para>contains the implementation of the PDO driver interface</para>
- </callout>
- <callout arearefs="internals2.pdo.layout.co.stmt">
- <para>contains the implementation of the PDO statement interface</para>
- </callout>
- </calloutlist>
<para>The contents of these files are defined later in this document.</para>
</sect2>
<sect2 xml:id="internals2.pdo.preparation.create-skel">