[DOC-CVS] [doc-en] master: pdo_cubrid : fix XML by converting para to simpara tags via script
[email protected] (Gina Peter Banyard)
| Newsgroups | php.doc.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Gina Peter Banyard (Girgias)
Date: 2026-01-19T03:31:49Z
Commit: https://github.com/php/doc-en/commit/59ce48edd7eb51e3f9bc19828386ce053dd95690
Raw diff: https://github.com/php/doc-en/commit/59ce48edd7eb51e3f9bc19828386ce053dd95690.diff
pdo_cubrid : fix XML by converting para to simpara tags via script
Changed paths:
M reference/pdo_cubrid/configure.xml
M reference/pdo_cubrid/pdo_overloaded/cubrid-schema.xml
M reference/pdo_cubrid/reference.xml
Diff:
diff --git a/reference/pdo_cubrid/configure.xml b/reference/pdo_cubrid/configure.xml
index 7e7df0eb013d..8ad8101eeb7c 100644
--- a/reference/pdo_cubrid/configure.xml
+++ b/reference/pdo_cubrid/configure.xml
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<section xml:id="ref.pdo-cubrid.installation" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+<section xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="ref.pdo-cubrid.installation">
&reftitle.install;
<para>
To build the PDO_CUBRID extension, the CUBRID DBMS must be installed on the
same system as PHP.
PDO_CUBRID is a &link.pecl; extension, so follow the instructions in
- <xref linkend='install.pecl' />
+ <xref linkend="install.pecl"/>
to install the PDO_CUBRID extension.
Issue the <command>configure</command> command to point to the location of the
CUBRID base dir as follows:
@@ -20,13 +20,12 @@
<envar>CUBRID</envar>
environment variable.
</para>
- <para>
+ <simpara>
&pecl.windows.download; Detailed information about installation on Linux and
Windows manually, please read build-guide.html in PECL package CUBRID for
reference.
- </para>
+ </simpara>
</section>
-
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
diff --git a/reference/pdo_cubrid/pdo_overloaded/cubrid-schema.xml b/reference/pdo_cubrid/pdo_overloaded/cubrid-schema.xml
index f51d5b25ea90..b2339b268d30 100644
--- a/reference/pdo_cubrid/pdo_overloaded/cubrid-schema.xml
+++ b/reference/pdo_cubrid/pdo_overloaded/cubrid-schema.xml
@@ -14,20 +14,20 @@
<methodparam choice="opt"><type>string</type><parameter>table_name</parameter></methodparam>
<methodparam choice="opt"><type>string</type><parameter>col_name</parameter></methodparam>
</methodsynopsis>
- <para>
+ <simpara>
This function is used to get the requested schema information from
database. You have to designate <parameter>table_name</parameter>, if you
want to get information on certain table, <parameter>col_name</parameter>,
if you want to get information on certain column (can be used only with
PDO::CUBRID_SCH_COL_PRIVILEGE).
- </para>
+ </simpara>
- <para>
+ <simpara>
The result of this function is returned as a two-dimensional array (column
(associative array) * row (numeric array)). The following tables shows types
of schema and the column structure of the result array to be returned based
on the schema type.
- </para>
+ </simpara>
<table>
<title>Result Composition of Each Type</title>
@@ -405,25 +405,25 @@
<varlistentry>
<term><parameter>schema_type</parameter></term>
<listitem>
- <para>
+ <simpara>
Schema type that you want to know.
- </para>
+ </simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>table_name</parameter></term>
<listitem>
- <para>
+ <simpara>
Table you want to know the schema of.
- </para>
+ </simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>col_name</parameter></term>
<listitem>
- <para>
+ <simpara>
Column you want to know the schema of.
- </para>
+ </simpara>
</listitem>
</varlistentry>
</variablelist>
@@ -431,21 +431,21 @@
<refsect1 role="returnvalues">
&reftitle.returnvalues;
- <para>
+ <simpara>
Array containing the schema information, when process is successful;
- </para>
- <para>
+ </simpara>
+ <simpara>
FALSE, when process is unsuccessful
- </para>
+ </simpara>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<example>
<title>A <function>PDO::cubrid_schema</function> example</title>
- <para>
+ <simpara>
This example shows how to get primary key and foreign keys of table game.
- </para>
+ </simpara>
<programlisting role="php">
<![CDATA[
<?php
diff --git a/reference/pdo_cubrid/reference.xml b/reference/pdo_cubrid/reference.xml
index 6560d5b232d5..0d635ef197e1 100644
--- a/reference/pdo_cubrid/reference.xml
+++ b/reference/pdo_cubrid/reference.xml
@@ -5,14 +5,14 @@
<partintro>
<section xml:id="pdo-cubrid.intro">&reftitle.intro;
- <para>
+ <simpara>
PDO_CUBRID is a driver that implements the
<link linkend="intro.pdo">PHP Data Objects (PDO) interface</link>
to enable access from PHP to CUBRID databases.
- </para>
- <note><para>
+ </simpara>
+ <note><simpara>
Current version of PDO_CUBRID doesn't support persistent connection now.
- </para></note>
+ </simpara></note>
</section>
<!-- Information found in configure.xml -->
@@ -258,25 +258,25 @@ var_Dump($ret);
<varlistentry>
<term><literal>host</literal></term>
<listitem>
- <para>
+ <simpara>
The hostname on which the database server resides.
- </para>
+ </simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>port</literal></term>
<listitem>
- <para>
+ <simpara>
The port on which the database server is running.
- </para>
+ </simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>dbname</literal></term>
<listitem>
- <para>
+ <simpara>
The name of the database.
- </para>
+ </simpara>
</listitem>
</varlistentry>
</variablelist>
@@ -286,10 +286,10 @@ var_Dump($ret);
<refsect1 role="notes">
&reftitle.notes;
<note>
- <para>
+ <simpara>
When you estalish the connection to CUBRID, you should give username and
password except DSN.
- </para>
+ </simpara>
</note>
</refsect1>