| Anantoju Veera Srinivas 2005-07-25, 5:31 pm |
| ansriniv Sun Jul 24 16:50:14 2005 EDT
Modified files:
/phpdoc/en/reference/sdo_das_xml reference.xml
Log:
Changes in installation instructions.
http://cvs.php.net/diff.php/phpdoc/...1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/sdo_das_xml/reference.xml
diff -u phpdoc/en/reference/sdo_das_xml/reference.xml:1.5 phpdoc/en/reference/sdo_das_xml/reference.xml:1.6
--- phpdoc/en/reference/sdo_das_xml/reference.xml:1.5 Sat Jul 23 07:08:36 2005
+++ phpdoc/en/reference/sdo_das_xml/reference.xml Sun Jul 24 16:50:13 2005
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- Generated by xml_proto.php v2.2. Found in /scripts directory of phpdoc. -->
<reference id="ref.sdo-das-xml">
<title>SDO XML Data Access Service Functions</title>
@@ -18,7 +18,8 @@
the data graph, the data object, XPath and property expressions,
and so on.
If you are not familiar with these ideas, you might want to look first at
- <link linkend='ref.sdo'>the section on SDO</link>.
+ <link linkend='ref.sdo'>the section on SDO</link>
+ .
</para>
<para>
The job of the XML DAS is to move data between the
@@ -52,8 +53,7 @@
&reftitle.install;
<para>
The XML Data Access Service is packaged and installed as part of the
- <link linkend='ref.sdo'>SDO extension</link>.
- There are additional installations steps required.
+ <link linkend='ref.sdo'>SDO extension.</link> Please Refer <link linkend="sdo.installation">SDO installation instructions.</link>
</para>
</section>
@@ -245,11 +245,13 @@
The following examples are based on the
<link linkend="sdo.sample.sequence">letter example</link>
described in the
- <link linkend="ref.sdo">SDO documentation</link>.
+ <link linkend="ref.sdo">SDO documentation</link>
+ .
The examples assume the XML Schema for the letter is contained in a file
<filename>letter.xsd</filename>
and the letter instance is in the file
- <filename>letter.xml</filename>.
+ <filename>letter.xml</filename>
+ .
</para>
<example>
@@ -384,7 +386,7 @@
$xmldas = SDO_DAS_XML::create("letter.xsd");
$xdoc = $xmldas->loadFromFile("letter.xml");
print("Encoding is set to : " . $xdoc->getEncoding());
- print("XML Version : " . $xdoc->getXMLVersion());
+ print("XML Version : " . $xdoc->getXMLVersion();
$xdoc->setXMLVersion("1.1");
print($xmldas->saveDocumentToString($xdoc));
} catch (SDO_TypeNotFoundException $e) {
@@ -634,7 +636,8 @@
</title>
<para>
Is a subclass of
- <classname>SDO_Exception</classname>.
+ <classname>SDO_Exception</classname>
+ .
Thrown for any parser errors while loading the xsd/xml file.
</para>
</section>
|