jsgoupil Fri Dec 16 03:33:00 2005 EDT
Modified files:
/phpdoc/en/reference/sdo reference.xml
Log:
typo and space after links
http://cvs.php.net/viewcvs.cgi/phpdoc/en/reference/sdo/reference.xml?r1=1.18&r2=1.19&diff_format=u
Index: phpdoc/en/reference/sdo/reference.xml
diff -u phpdoc/en/reference/sdo/reference.xml:1.18
phpdoc/en/reference/sdo/reference.xml:1.19
--- phpdoc/en/reference/sdo/reference.xml:1.18 Fri Dec 2 16:14:19 2005
+++ phpdoc/en/reference/sdo/reference.xml Fri Dec 16 03:33:00 2005
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.18 $ -->
+<!-- $Revision: 1.19 $ -->
<!-- Purpose: database.abstract -->
<!-- Membership: pecl -->
<!-- State: experimental -->
@@ -123,8 +123,7 @@
<para>
The latest DLLs for the SDO core and the XML DAS can be
downloaded from
- <ulink url='&url.pecl.win.ext;php_sdo.dll'>php_sdo
- </ulink> and
+ <ulink url='&url.pecl.win.ext;php_sdo.dll'>php_sdo</ulink> and
<ulink url='&url.pecl.win.ext;php_sdo_das_xml.dll'>php_sdo_das_xml
</ulink> respectively.
</para>
@@ -133,8 +132,7 @@
<para>
Check out the Relational DAS from CVS to somewhere on the
PHP
- <link linkend="ini.include-path">include_path</link>
- .
+ <link linkend="ini.include-path">include_path</link>.
</para>
</listitem>
</itemizedlist>
@@ -152,8 +150,7 @@
<para>
Check out the Relational DAS from CVS to somewhere on the
PHP
- <link linkend="ini.include-path">include_path</link>
- .
+ <link linkend="ini.include-path">include_path</link>.
</para>
</listitem>
</itemizedlist>
@@ -246,8 +243,7 @@
update your
<link linkend="ini.include-path">include_path</link>
in &php.ini; to point to the directory that contains
- <filename>sdo/DAS/Relational</filename>
- .
+ <filename>sdo/DAS/Relational</filename>.
</para>
<procedure id='sdo.build.linux.steps'>
<title>Building SDO on Linux</title>
@@ -373,7 +369,7 @@
</step>
<step>
<para>
- XMLHelper/XSDHelper (the XML DAS provide a lot of this functionality)
+ XMLHelper/XSDHelper (the XML DAS provides a lot of this functionality)
</para>
</step>
<step>
@@ -696,7 +692,7 @@
<programlisting role="php" id="sdo.examples.create">
<![CDATA[
<?php
- $ad_tech_dept = $company["departments[name=\"Advanced Technologoies\"]"];
+ $ad_tech_dept = $company["departments[name=\"Advanced Technologies\"]"];
$new_hire = $ad_tech_dept->createDataObject('employees');
$new_hire->name = 'John Johnson';
$new_hire->SN = 'E0005';
@@ -959,9 +955,7 @@
<title>Adding to a sequence</title>
<para>
We can add new values to a sequence using the
- <link linkend='function.SDO-Sequence-insert'>
- <function>SDO_Sequence::insert</function>
- </link>
+ <link
linkend='function.SDO-Sequence-insert'><function>SDO_Sequence::insert</function></link>
method. The following examples assume that the 'firstName' and
'lastName' properties are initially unset.
</para>
@@ -977,7 +971,7 @@
// Append a lastName value to the sequence
// value: 'Jones'
// sequence index: NULL (append)
- // property identifier: 'lastName' (lastName property name)
+ // propertyIdentifier: 'lastName' (lastName property name)
$letters_seq->insert('Jones', NULL, 'lastName');
// Append unstructured text
@@ -1156,16 +1150,14 @@
<itemizedlist>
<listitem>
<para>
- <link linkend='function.SDO-DataObject-getSequence'>
- getSequence
- </link> - get the sequence for the data object
+ <link linkend='function.SDO-DataObject-getSequence'>getSequence</link>
+ - get the sequence for the data object
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-DataObject-createDataObject'>
- createDataObject
- </link> - create a child data object
+ <link
linkend='function.SDO-DataObject-createDataObject'>createDataObject</link>
+ - create a child data object
</para>
</listitem>
<listitem>
@@ -1176,9 +1168,7 @@
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-DataObject-getContainer'>
- getContainer
- </link>
+ <link
linkend='function.SDO-DataObject-getContainer'>getContainer</link>
- get the container (also known as 'parent') of this data object
</para>
</listitem>
@@ -1204,17 +1194,13 @@
<itemizedlist>
<listitem>
<para>
- <link linkend='function.SDO-Sequence-getPropertyIndex'>
- getPropertyIndex
- </link>
+ <link
linkend='function.SDO-Sequence-getPropertyIndex'>getPropertyIndex</link>
- get the property index for a given sequence index
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-Sequence-getPropertyName'>
- getPropertyName
- </link>
+ <link
linkend='function.SDO-Sequence-getPropertyName'>getPropertyName</link>
- get the property name for a given sequence index
</para>
</listitem>
@@ -1303,32 +1289,28 @@
<itemizedlist>
<listitem>
<para>
- <link linkend='function.SDO-Model-ReflectionDataObject-construct'>
- __construct
- </link> - construct a new SDO_Model_ReflectionDataObject.
+ <link
linkend='function.SDO-Model-ReflectionDataObject-construct'>__construct</link>
+ - construct a new SDO_Model_ReflectionDataObject.
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-Model-ReflectionDataObject-getType'>
- getType
- </link> - get the SDO_Model_Type for the data object.
+ <link
linkend='function.SDO-Model-ReflectionDataObject-getType'>getType</link>
+ - get the SDO_Model_Type for the data object.
</para>
</listitem>
<listitem>
<para>
<link linkend=
- 'function.SDO-Model-ReflectionDataObject-getInstanceProperties'>
- getInstanceProperties
- </link> - get the instance properties of the data object.
+
'function.SDO-Model-ReflectionDataObject-getInstanceProperties'>getInstanceProperties</link>
+ - get the instance properties of the data object.
</para>
</listitem>
<listitem>
<para>
<link linkend=
- 'function.SDO-Model-ReflectionDataObject-getContainmentProperty'>
- getContainmentProperty
- </link> - get the parent's SDO_Model_Property which defines the
+
'function.SDO-Model-ReflectionDataObject-getContainmentProperty'>getContainmentProperty</link>
+ - get the parent's SDO_Model_Property which defines the
containment relationship to the reflected data object.
</para>
</listitem>
@@ -1350,65 +1332,56 @@
<itemizedlist>
<listitem>
<para>
- <link linkend='function.SDO-Model-Type-getName'>
- getName
- </link> - get the name of the type.
+ <link linkend='function.SDO-Model-Type-getName'>getName</link>
+ - get the name of the type.
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-Model-Type-getNamespaceURI'>
- getNamespaceURI
- </link> - get the namespace URI of the type.
+ <link
linkend='function.SDO-Model-Type-getNamespaceURI'>getNamespaceURI</link>
+ - get the namespace URI of the type.
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-Model-Type-isInstance'>
- isInstance
- </link> - test for a data object being an instance of the type.
+ <link linkend='function.SDO-Model-Type-isInstance'>isInstance</link>
+ - test for a data object being an instance of the type.
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-Model-Type-getProperties'>
- getProperties
- </link> - get the properties of the type.
+ <link
linkend='function.SDO-Model-Type-getProperties'>getProperties</link>
+ - get the properties of the type.
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-Model-Type-getProperty'>
- getProperty
- </link> - get a property of the type.
+ <link linkend='function.SDO-Model-Type-getProperty'>getProperty</link>
+ - get a property of the type.
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-Model-Type-isDataType'>
- isDataType
- </link> - test to see if this type is a primitive scalar type.
+ <link linkend='function.SDO-Model-Type-isDataType'>isDataType</link>
+ - test to see if this type is a primitive scalar type.
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-Model-Type-isSequencedType'>
- isSequencedType
- </link> - test to see if this is a sequenced type.
+ <link
linkend='function.SDO-Model-Type-isSequencedType'>isSequencedType</link>
+ - test to see if this is a sequenced type.
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-Model-Type-isOpenType'>
- isOpenType
- </link> - test to see if this is an open type.
+ <link linkend='function.SDO-Model-Type-isOpenType'>isOpenType</link>
+ - test to see if this is an open type.
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-Model-Type-getBaseType'>
- getBaseType
- </link> - get the base type of this type (if one exists).
+ <link linkend='function.SDO-Model-Type-getBaseType'>getBaseType</link>
+ - get the base type of this type (if one exists).
</para>
</listitem>
</itemizedlist>
@@ -1430,44 +1403,38 @@
<itemizedlist>
<listitem>
<para>
- <link linkend='function.SDO-Model-Property-getName'>
- getName
- </link> - get the name of the property.
+ <link linkend='function.SDO-Model-Property-getName'>getName</link>
+ - get the name of the property.
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-Model-Property-getType'>
- getType
- </link> - get the type of the property.
+ <link linkend='function.SDO-Model-Property-getType'>getType</link>
+ - get the type of the property.
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-Model-Property-isMany'>
- isMany
- </link> - test to see if the property is many-valued..
+ <link linkend='function.SDO-Model-Property-isMany'>isMany</link>
+ - test to see if the property is many-valued..
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-Model-Property-isContainment'>
- isContainment
- </link> - test to see if the property describes a containment
relationship.
+ <link
linkend='function.SDO-Model-Property-isContainment'>isContainment</link>
+ - test to see if the property describes a containment relationship.
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-Model-Property-getContainingType'>
- getContainingType
- </link> - get the type which contains this property.
+ <link
linkend='function.SDO-Model-Property-getContainingType'>getContainingType</link>
+ - get the type which contains this property.
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-Model-Property-getDefault'>
- getDefault
- </link> - get the default value for a property.
+ <link
linkend='function.SDO-Model-Property-getDefault'>getDefault</link>
+ - get the default value for a property.
</para>
</listitem>
</itemizedlist>
@@ -1490,9 +1457,7 @@
<para>
The interface through which a Data Access Service can access
a data object's
- <link linkend='sdo.class.sdodas-changesummary'>
- SDO_DAS_ChangeSummary
- </link>.
+ <link
linkend='sdo.class.sdodas-changesummary'>SDO_DAS_ChangeSummary</link>.
The change summary is used by the Data Access Service to check for
conflicts when applying changes back to a data source.
</para>
@@ -1500,9 +1465,7 @@
<itemizedlist>
<listitem>
<para>
- <link linkend='function.SDO-DAS-DataObject-getChangeSummary'>
- getChangeSummary
- </link>
+ <link
linkend='function.SDO-DAS-DataObject-getChangeSummary'>getChangeSummary</link>
- get the change summary for a data object
</para>
</listitem>
@@ -1535,57 +1498,43 @@
<itemizedlist>
<listitem>
<para>
- <link linkend='function.SDO-DAS-ChangeSummary-beginLogging'>
- beginLogging
- </link>
+ <link
linkend='function.SDO-DAS-ChangeSummary-beginLogging'>beginLogging</link>
- begin logging changes made to a data object
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-DAS-ChangeSummary-endLogging'>
- endLogging
- </link>
+ <link
linkend='function.SDO-DAS-ChangeSummary-endLogging'>endLogging</link>
- end logging changes made to a data object
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-DAS-ChangeSummary-isLogging'>
- isLogging
- </link>
+ <link
linkend='function.SDO-DAS-ChangeSummary-isLogging'>isLogging</link>
- test to see if change logging is on
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-DAS-ChangeSummary-getChangedDataObjects'>
- getChangedDataObjects
- </link>
+ <link
linkend='function.SDO-DAS-ChangeSummary-getChangedDataObjects'>getChangedDataObjects</link>
- get a list of the data objects which have been changed
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-DAS-ChangeSummary-getChangeType'>
- getChangeType
- </link>
+ <link
linkend='function.SDO-DAS-ChangeSummary-getChangeType'>getChangeType</link>
- get the type of change which has been made to a data object
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-DAS-ChangeSummary-getOldValues'>
- getOldValues
- </link>
+ <link
linkend='function.SDO-DAS-ChangeSummary-getOldValues'>getOldValues</link>
- get a list of old values for a data object
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-DAS-ChangeSummary-getOldContainer'>
- getOldContainer
- </link>
+ <link
linkend='function.SDO-DAS-ChangeSummary-getOldContainer'>getOldContainer</link>
- get the old container data object for a deleted data object
</para>
</listitem>
@@ -1609,42 +1558,34 @@
<itemizedlist>
<listitem>
<para>
- <link linkend='function.SDO-DAS-Setting-getPropertyIndex'>
- getPropertyIndex
- </link>
+ <link
linkend='function.SDO-DAS-Setting-getPropertyIndex'>getPropertyIndex</link>
- get the property index for the changed property
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-DAS-Setting-getPropertyName'>
- getPropertyName
- </link>
+ <link
linkend='function.SDO-DAS-Setting-getPropertyName'>getPropertyName</link>
- get the property name for the changed property
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-DAS-Setting-getValue'>
- getValue
- </link>
+ <link linkend='function.SDO-DAS-Setting-getValue'>getValue</link>
- get the old value for the changed property
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-DAS-Setting-getListIndex'>
- getListIndex
- </link>
+ <link
linkend='function.SDO-DAS-Setting-getListIndex'>getListIndex</link>
- get the list index for the old value if it was part of a
many-valued property
</para>
</listitem>
<listitem>
<para>
- <link linkend='function.SDO-DAS-Setting-isSet'>isSet</link>
+ <link linkend='function.SDO-DAS-Setting-isSet'>isSet</link>
- test to see if the property was set prior to being modified
- </para>
+ </para>
</listitem>
</itemizedlist>
</section>
@@ -1669,9 +1610,7 @@
<itemizedlist>
<listitem>
<para>
- <link linkend='function.SDO-DAS-DataFactory-getDataFactory'>
- getDataFactory
- </link>
+ <link
linkend='function.SDO-DAS-DataFactory-getDataFactory'>getDataFactory</link>
- static methods for getting a concrete data factory instance
</para>
</listitem>
@@ -1679,9 +1618,7 @@
<itemizedlist>
<listitem>
<para>
- <link linkend='function.SDO-DAS-DataFactory-addType'>
- addType
- </link>
+ <link linkend='function.SDO-DAS-DataFactory-addType'>addType</link>
- add a new type to the SDO model
</para>
</listitem>
@@ -1689,9 +1626,7 @@
<itemizedlist>
<listitem>
<para>
- <link linkend='function.SDO-DAS-DataFactory-addPropertyToType'>
- addPropertyToType
- </link>
+ <link
linkend='function.SDO-DAS-DataFactory-addPropertyToType'>addPropertyToType</link>
- add a new property to a type definition in the SDO model
</para>
</listitem>