Author: pd221994
Date: 2011-04-01 18:29:00 +0200 (Fri, 01 Apr 2011)
New Revision: 25670
Log:
r46572@dhcp-adc-twvpn-1-vpnpool-10-154-10-228: paul | 2011-04-01 10:01:22 -0500
Minor wording revisions
Modified:
svk:merge
trunk/refman-5.1/extending-mysql.xml
trunk/refman-5.5/extending-mysql.xml
trunk/refman-5.6/extending-mysql.xml
trunk/refman-6.0/extending-mysql.xml
Property changes on: trunk
___________________________________________________________________
Modified: svk:merge
===================================================================
Changed blocks: 0, Lines Added: 0, Lines Deleted: 0; 1277 bytes
Modified: trunk/refman-5.1/extending-mysql.xml
===================================================================
--- trunk/refman-5.1/extending-mysql.xml 2011-04-01 16:28:49 UTC (rev 25669)
+++ trunk/refman-5.1/extending-mysql.xml 2011-04-01 16:29:00 UTC (rev 25670)
Changed blocks: 6, Lines Added: 15, Lines Deleted: 14; 3803 bytes
@@ -411,7 +411,7 @@
type of version applies to individual plugins. Each specific
type of plugin has a version for its interface, so each
plugin in a library has a type-specific version number. For
- example, a library containing a full-text parsing plugin has
+ example, a library containing a full-text parser plugin has
a general plugin API version number, and the plugin has a
version number specific to the full-text plugin interface.
</para>
@@ -2266,7 +2266,7 @@
<para>
This section provides a step-by-step guide to creating a plugin
library. It shows how to develop a library that contains a
- full-text parsing plugin named <literal>simple_parser</literal>.
+ full-text parser plugin named <literal>simple_parser</literal>.
This plugin performs parsing based on simpler rules than those
used by the MySQL built-in full-text parser: Words are nonempty
runs of whitespace characters. For example plugin source code,
@@ -2325,13 +2325,14 @@
<listitem>
<para>
- Set up the general plugin descriptor for the plugin library
- file.
+ Set up the library descriptor for the plugin library file.
+ This descriptor contains the general plugin descriptor for
+ each server plugin in the file.
</para>
<para>
- Every plugin library must include a general descriptor that
- must define two symbols:
+ Every plugin library must include a library descriptor that
+ defines two symbols:
</para>
<itemizedlist>
@@ -2355,14 +2356,14 @@
is an instance of the <literal>st_mysql_plugin</literal>
structure (also defined in
<filename>plugin.h</filename>). There must be one of
- these for each plugin in the library.
+ these for each server plugin in the library.
</para>
</listitem>
</itemizedlist>
<para>
- If the server does not find these two symbols in a library,
+ If the server does not find those two symbols in a library,
it does not accept it as a legal plugin library and rejects
it with an error. This prevents use of a library for plugin
purposes unless it was built specifically as a plugin
@@ -2384,8 +2385,8 @@
</programlisting>
<para>
- For example, the general plugin descriptor for a library
- that contains a single plugin named
+ For example, the library descriptor for a library that
+ contains a single full-text parser plugin named
<literal>simple_parser</literal> looks like this:
</para>
@@ -2451,10 +2452,10 @@
Those declarations define the
<literal>_mysql_plugin_interface_version_</literal> symbol
only if the <literal>MYSQL_DYNAMIC_PLUGIN</literal> symbol
- is defined. This means that you must provide
- <literal>-DMYSQL_DYNAMIC_PLUGIN</literal> as part of the
- compilation command to build the plugin as a shared
- library.
+ is defined. This means that
+ <literal>-DMYSQL_DYNAMIC_PLUGIN</literal> must be provided
+ as part of the compilation command to build the plugin as
+ a shared library.
</para>
</note>
Modified: trunk/refman-5.5/extending-mysql.xml
===================================================================
--- trunk/refman-5.5/extending-mysql.xml 2011-04-01 16:28:49 UTC (rev 25669)
+++ trunk/refman-5.5/extending-mysql.xml 2011-04-01 16:29:00 UTC (rev 25670)
Changed blocks: 6, Lines Added: 15, Lines Deleted: 14; 3803 bytes
@@ -416,7 +416,7 @@
type of version applies to individual plugins. Each specific
type of plugin has a version for its interface, so each
plugin in a library has a type-specific version number. For
- example, a library containing a full-text parsing plugin has
+ example, a library containing a full-text parser plugin has
a general plugin API version number, and the plugin has a
version number specific to the full-text plugin interface.
</para>
@@ -2784,7 +2784,7 @@
<para>
This section provides a step-by-step guide to creating a plugin
library. It shows how to develop a library that contains a
- full-text parsing plugin named <literal>simple_parser</literal>.
+ full-text parser plugin named <literal>simple_parser</literal>.
This plugin performs parsing based on simpler rules than those
used by the MySQL built-in full-text parser: Words are nonempty
runs of whitespace characters. For example plugin source code,
@@ -2843,13 +2843,14 @@
<listitem>
<para>
- Set up the general plugin descriptor for the plugin library
- file.
+ Set up the library descriptor for the plugin library file.
+ This descriptor contains the general plugin descriptor for
+ each server plugin in the file.
</para>
<para>
- Every plugin library must include a general descriptor that
- must define two symbols:
+ Every plugin library must include a library descriptor that
+ defines two symbols:
</para>
<itemizedlist>
@@ -2873,14 +2874,14 @@
is an instance of the <literal>st_mysql_plugin</literal>
structure (also defined in
<filename>plugin.h</filename>). There must be one of
- these for each plugin in the library.
+ these for each server plugin in the library.
</para>
</listitem>
</itemizedlist>
<para>
- If the server does not find these two symbols in a library,
+ If the server does not find those two symbols in a library,
it does not accept it as a legal plugin library and rejects
it with an error. This prevents use of a library for plugin
purposes unless it was built specifically as a plugin
@@ -2902,8 +2903,8 @@
</programlisting>
<para>
- For example, the general plugin descriptor for a library
- that contains a single plugin named
+ For example, the library descriptor for a library that
+ contains a single full-text parser plugin named
<literal>simple_parser</literal> looks like this:
</para>
@@ -2969,10 +2970,10 @@
Those declarations define the
<literal>_mysql_plugin_interface_version_</literal> symbol
only if the <literal>MYSQL_DYNAMIC_PLUGIN</literal> symbol
- is defined. This means that you must provide
- <literal>-DMYSQL_DYNAMIC_PLUGIN</literal> as part of the
- compilation command to build the plugin as a shared
- library.
+ is defined. This means that
+ <literal>-DMYSQL_DYNAMIC_PLUGIN</literal> must be provided
+ as part of the compilation command to build the plugin as
+ a shared library.
</para>
</note>
Modified: trunk/refman-5.6/extending-mysql.xml
===================================================================
--- trunk/refman-5.6/extending-mysql.xml 2011-04-01 16:28:49 UTC (rev 25669)
+++ trunk/refman-5.6/extending-mysql.xml 2011-04-01 16:29:00 UTC (rev 25670)
Changed blocks: 6, Lines Added: 15, Lines Deleted: 14; 3803 bytes
@@ -416,7 +416,7 @@
type of version applies to individual plugins. Each specific
type of plugin has a version for its interface, so each
plugin in a library has a type-specific version number. For
- example, a library containing a full-text parsing plugin has
+ example, a library containing a full-text parser plugin has
a general plugin API version number, and the plugin has a
version number specific to the full-text plugin interface.
</para>
@@ -2784,7 +2784,7 @@
<para>
This section provides a step-by-step guide to creating a plugin
library. It shows how to develop a library that contains a
- full-text parsing plugin named <literal>simple_parser</literal>.
+ full-text parser plugin named <literal>simple_parser</literal>.
This plugin performs parsing based on simpler rules than those
used by the MySQL built-in full-text parser: Words are nonempty
runs of whitespace characters. For example plugin source code,
@@ -2843,13 +2843,14 @@
<listitem>
<para>
- Set up the general plugin descriptor for the plugin library
- file.
+ Set up the library descriptor for the plugin library file.
+ This descriptor contains the general plugin descriptor for
+ each server plugin in the file.
</para>
<para>
- Every plugin library must include a general descriptor that
- must define two symbols:
+ Every plugin library must include a library descriptor that
+ defines two symbols:
</para>
<itemizedlist>
@@ -2873,14 +2874,14 @@
is an instance of the <literal>st_mysql_plugin</literal>
structure (also defined in
<filename>plugin.h</filename>). There must be one of
- these for each plugin in the library.
+ these for each server plugin in the library.
</para>
</listitem>
</itemizedlist>
<para>
- If the server does not find these two symbols in a library,
+ If the server does not find those two symbols in a library,
it does not accept it as a legal plugin library and rejects
it with an error. This prevents use of a library for plugin
purposes unless it was built specifically as a plugin
@@ -2902,8 +2903,8 @@
</programlisting>
<para>
- For example, the general plugin descriptor for a library
- that contains a single plugin named
+ For example, the library descriptor for a library that
+ contains a single full-text parser plugin named
<literal>simple_parser</literal> looks like this:
</para>
@@ -2969,10 +2970,10 @@
Those declarations define the
<literal>_mysql_plugin_interface_version_</literal> symbol
only if the <literal>MYSQL_DYNAMIC_PLUGIN</literal> symbol
- is defined. This means that you must provide
- <literal>-DMYSQL_DYNAMIC_PLUGIN</literal> as part of the
- compilation command to build the plugin as a shared
- library.
+ is defined. This means that
+ <literal>-DMYSQL_DYNAMIC_PLUGIN</literal> must be provided
+ as part of the compilation command to build the plugin as
+ a shared library.
</para>
</note>
Modified: trunk/refman-6.0/extending-mysql.xml
===================================================================
--- trunk/refman-6.0/extending-mysql.xml 2011-04-01 16:28:49 UTC (rev 25669)
+++ trunk/refman-6.0/extending-mysql.xml 2011-04-01 16:29:00 UTC (rev 25670)
Changed blocks: 6, Lines Added: 15, Lines Deleted: 14; 3803 bytes
@@ -450,7 +450,7 @@
type of version applies to individual plugins. Each specific
type of plugin has a version for its interface, so each
plugin in a library has a type-specific version number. For
- example, a library containing a full-text parsing plugin has
+ example, a library containing a full-text parser plugin has
a general plugin API version number, and the plugin has a
version number specific to the full-text plugin interface.
</para>
@@ -2432,7 +2432,7 @@
<para>
This section provides a step-by-step guide to creating a plugin
library. It shows how to develop a library that contains a
- full-text parsing plugin named <literal>simple_parser</literal>.
+ full-text parser plugin named <literal>simple_parser</literal>.
This plugin performs parsing based on simpler rules than those
used by the MySQL built-in full-text parser: Words are nonempty
runs of whitespace characters. For example plugin source code,
@@ -2491,13 +2491,14 @@
<listitem>
<para>
- Set up the general plugin descriptor for the plugin library
- file.
+ Set up the library descriptor for the plugin library file.
+ This descriptor contains the general plugin descriptor for
+ each server plugin in the file.
</para>
<para>
- Every plugin library must include a general descriptor that
- must define two symbols:
+ Every plugin library must include a library descriptor that
+ defines two symbols:
</para>
<itemizedlist>
@@ -2521,14 +2522,14 @@
is an instance of the <literal>st_mysql_plugin</literal>
structure (also defined in
<filename>plugin.h</filename>). There must be one of
- these for each plugin in the library.
+ these for each server plugin in the library.
</para>
</listitem>
</itemizedlist>
<para>
- If the server does not find these two symbols in a library,
+ If the server does not find those two symbols in a library,
it does not accept it as a legal plugin library and rejects
it with an error. This prevents use of a library for plugin
purposes unless it was built specifically as a plugin
@@ -2550,8 +2551,8 @@
</programlisting>
<para>
- For example, the general plugin descriptor for a library
- that contains a single plugin named
+ For example, the library descriptor for a library that
+ contains a single full-text parser plugin named
<literal>simple_parser</literal> looks like this:
</para>
@@ -2617,10 +2618,10 @@
Those declarations define the
<literal>_mysql_plugin_interface_version_</literal> symbol
only if the <literal>MYSQL_DYNAMIC_PLUGIN</literal> symbol
- is defined. This means that you must provide
- <literal>-DMYSQL_DYNAMIC_PLUGIN</literal> as part of the
- compilation command to build the plugin as a shared
- library.
+ is defined. This means that
+ <literal>-DMYSQL_DYNAMIC_PLUGIN</literal> must be provided
+ as part of the compilation command to build the plugin as
+ a shared library.
</para>
</note>
| Thread |
|---|
| • svn commit - mysqldoc@oter02: r25670 - in trunk: . refman-5.1 refman-5.5 refman-5.6 refman-6.0 | paul.dubois | 1 Apr |