1
0
mirror of synced 2025-01-30 12:01:44 +03:00

docbook docs update

This commit is contained in:
pookey 2007-06-01 10:18:49 +00:00
parent 2662b46e9a
commit 614ec1fb21

View File

@ -113,9 +113,10 @@
<sect1 id="features"> <sect1 id="features">
<title>Features</title> <title>Features</title>
<para> <sect3 id="features-general">
<title>
General Features General Features
</para> </title>
<itemizedlist> <itemizedlist>
<listitem>Fully object-oriented following best practices and design patterns</listitem> <listitem>Fully object-oriented following best practices and design patterns</listitem>
<listitem>Multiple databases</listitem> <listitem>Multiple databases</listitem>
@ -125,10 +126,11 @@
<listitem>The runtime components can be compiled into a single fileM</listitem> <listitem>The runtime components can be compiled into a single fileM</listitem>
<listitem>Leveled configuration (attributes can be set at global, connection and table levels)</listitem> <listitem>Leveled configuration (attributes can be set at global, connection and table levels)</listitem>
</itemizedlist> </itemizedlist>
</sect3>
<para> <sect3>
<title>
Database Abstraction Database Abstraction
</para> </title>
<itemizedlist> <itemizedlist>
<listitem>A DSN (data source name) or array format for specifying database servers</listitem> <listitem>A DSN (data source name) or array format for specifying database servers</listitem>
<listitem>Datatype abstraction and on demand datatype conversion</listitem> <listitem>Datatype abstraction and on demand datatype conversion</listitem>
@ -150,7 +152,7 @@
<listitem>Reverse engineering schemas from an existing database</listitem> <listitem>Reverse engineering schemas from an existing database</listitem>
<listitem>LIMIT / OFFSET emulation </listitem> <listitem>LIMIT / OFFSET emulation </listitem>
</itemizedlist> </itemizedlist>
</sect3>
<sect3 id="features-orm"> <sect3 id="features-orm">
<title> <title>
Object Relational Mapping Object Relational Mapping
@ -218,10 +220,16 @@
<title>Requirements</title> <title>Requirements</title>
<para> <para>
Doctrine requires PHP >= 5.1, and it doesn't require any external libraries. Doctrine requires PHP >= 5.1, and it doesn't require any external libraries.
It runs on both windows and *nix based platforms.
</para> </para>
<para> <para>
For database abstraction Doctrine uses PDO which is bundled with php by For database abstraction Doctrine uses PDO which is bundled with php by
default. Doctrine also requires a little adodb-hack for table creation, default. You will need PDO support for whatever database you intend to
use, and if you want to be able to run the included unit tests, you
will need SQLite support.
</para>
<para>
Doctrine also requires a little adodb-hack for table creation,
which comes with doctrine. which comes with doctrine.
</para> </para>
</sect1> </sect1>
@ -229,15 +237,8 @@
<sect1 id="community"> <sect1 id="community">
<title>Community</title> <title>Community</title>
<para> <para>
Doctrine has 3 mailing lists, an IRC channel, a forum, and a wiki. Doctrine has 3 mailing lists, an IRC channel, a forum, and a wiki/trac.
</para> </para>
<sect2 id="community-forum">
<title>Forum</title>
<para>
The Doctrine forum can be found here:
<ulink url="http://www.phpbbserver.com/phpdoctrine/">http://www.phpbbserver.com/phpdoctrine/</ulink>
</para>
</sect2>
<sect2 id="community-mailinglist"> <sect2 id="community-mailinglist">
<title>Mailing Lists</title> <title>Mailing Lists</title>
<para> <para>
@ -273,6 +274,13 @@
url="http://doctrine.pengus.net/trac">http://doctrine.pengus.net/trac</ulink> url="http://doctrine.pengus.net/trac">http://doctrine.pengus.net/trac</ulink>
</para> </para>
</sect2> </sect2>
<sect2 id="community-forum">
<title>Forum</title>
<para>
The Doctrine forum can be found here:
<ulink url="http://www.phpbbserver.com/phpdoctrine/">http://www.phpbbserver.com/phpdoctrine/</ulink>
</para>
</sect2>
</sect1> </sect1>
<sect1 id="contributing"> <sect1 id="contributing">