Author: shinz
Date: 2005-10-24 18:45:14 +0200 (Mon, 24 Oct 2005)
New Revision: 152
Log:
Rename nodes, removing mysql- prefix
Modified:
trunk/refman-4.1/manual.xml
trunk/refman-4.1/mysql-apis.xml
trunk/refman-4.1/mysql-connectors.xml
trunk/refman-4.1/mysql-database-administration.xml
trunk/refman-4.1/mysql-optimization.xml
trunk/refman-4.1/porting.xml
trunk/refman-4.1/problems.xml
trunk/refman-4.1/sql-syntax.xml
trunk/refman-4.1/tutorial.xml
trunk/refman-4.1/using-mysql-programs.xml
Modified: trunk/refman-4.1/manual.xml
===================================================================
--- trunk/refman-4.1/manual.xml 2005-10-24 15:34:09 UTC (rev 151)
+++ trunk/refman-4.1/manual.xml 2005-10-24 16:45:14 UTC (rev 152)
@@ -23,11 +23,11 @@
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="using-mysql-programs.xml"/>
- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="mysql-database-administration.xml"/>
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="database-administration.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="replication.xml"/>
- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="mysql-optimization.xml"/>
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="optimization.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="client-side-scripts.xml"/>
@@ -49,9 +49,9 @@
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="spatial-extensions-in-mysql.xml"/>
- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="mysql-apis.xml"/>
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="apis.xml"/>
- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="mysql-connectors.xml"/>
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="connectors.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="extending-mysql.xml"/>
Modified: trunk/refman-4.1/mysql-apis.xml
===================================================================
--- trunk/refman-4.1/mysql-apis.xml 2005-10-24 15:34:09 UTC (rev 151)
+++ trunk/refman-4.1/mysql-apis.xml 2005-10-24 16:45:14 UTC (rev 152)
@@ -9,9 +9,9 @@
<!ENTITY % versions.entities SYSTEM "versions.ent">
%versions.entities;
]>
-<chapter id="mysql-apis">
+<chapter id="apis">
- <title id="title-mysql-apis">&title-mysql-apis;</title>
+ <title id="title-apis">&title-apis;</title>
<indexterm>
<primary>client tools</primary>
Modified: trunk/refman-4.1/mysql-connectors.xml
===================================================================
--- trunk/refman-4.1/mysql-connectors.xml 2005-10-24 15:34:09 UTC (rev 151)
+++ trunk/refman-4.1/mysql-connectors.xml 2005-10-24 16:45:14 UTC (rev 152)
@@ -9,9 +9,9 @@
<!ENTITY % versions.entities SYSTEM "versions.ent">
%versions.entities;
]>
-<chapter id="mysql-connectors">
+<chapter id="connectors">
- <title id="title-mysql-connectors">&title-mysql-connectors;</title>
+ <title id="title-connectors">&title-connectors;</title>
<indexterm>
<primary>Connectors</primary>
Modified: trunk/refman-4.1/mysql-database-administration.xml
===================================================================
--- trunk/refman-4.1/mysql-database-administration.xml 2005-10-24 15:34:09 UTC (rev 151)
+++ trunk/refman-4.1/mysql-database-administration.xml 2005-10-24 16:45:14 UTC (rev 152)
@@ -9,9 +9,9 @@
<!ENTITY % versions.entities SYSTEM "versions.ent">
%versions.entities;
]>
-<chapter id="mysql-database-administration">
+<chapter id="database-administration">
- <title id="title-mysql-database-administration">&title-mysql-database-administration;</title>
+ <title id="title-database-administration">&title-database-administration;</title>
<para>
This chapter covers topics that deal with administering a MySQL
Modified: trunk/refman-4.1/mysql-optimization.xml
===================================================================
--- trunk/refman-4.1/mysql-optimization.xml 2005-10-24 15:34:09 UTC (rev 151)
+++ trunk/refman-4.1/mysql-optimization.xml 2005-10-24 16:45:14 UTC (rev 152)
@@ -9,9 +9,9 @@
<!ENTITY % versions.entities SYSTEM "versions.ent">
%versions.entities;
]>
-<chapter id="mysql-optimization">
+<chapter id="optimization">
- <title id="title-mysql-optimization">&title-mysql-optimization;</title>
+ <title id="title-optimization">&title-optimization;</title>
<para>
Optimization is a complex task because ultimately it requires
Modified: trunk/refman-4.1/porting.xml
===================================================================
--- trunk/refman-4.1/porting.xml 2005-10-24 15:34:09 UTC (rev 151)
+++ trunk/refman-4.1/porting.xml 2005-10-24 16:45:14 UTC (rev 152)
@@ -185,7 +185,7 @@
If the problem is that some tables are getting slower and slower
you should try to optimize the table with <literal>OPTIMIZE
TABLE</literal> or <command>myisamchk</command>. See
- <xref linkend="mysql-database-administration"/>. You should also
+ <xref linkend="database-administration"/>. You should also
check the slow queries with <literal>EXPLAIN</literal>.
</para>
@@ -655,7 +655,7 @@
Note that before starting <command>mysqld</command> with
<option>--log</option> you should check all your tables with
<command>myisamchk</command>. See
- <xref linkend="mysql-database-administration"/>.
+ <xref linkend="database-administration"/>.
</para>
<para>
@@ -699,7 +699,7 @@
query that causes <command>mysqld</command> to fail. If this
happens, you should check all your tables with
<command>myisamchk</command> (see
- <xref linkend="mysql-database-administration"/>), and test the
+ <xref linkend="database-administration"/>), and test the
queries in the MySQL log files to see if one doesn't work. If
you find such a query, try first upgrading to the newest MySQL
version. If this doesn't help and you can't find anything in the
Modified: trunk/refman-4.1/problems.xml
===================================================================
--- trunk/refman-4.1/problems.xml 2005-10-24 15:34:09 UTC (rev 151)
+++ trunk/refman-4.1/problems.xml 2005-10-24 16:45:14 UTC (rev 152)
@@ -2758,7 +2758,7 @@
the data directory to check all <literal>MyISAM</literal>
tables, and restart <command>mysqld</command>. This ensures
that you are running from a clean state. See
- <xref linkend="mysql-database-administration"/>.
+ <xref linkend="database-administration"/>.
</para>
</listitem>
Modified: trunk/refman-4.1/sql-syntax.xml
===================================================================
--- trunk/refman-4.1/sql-syntax.xml 2005-10-24 15:34:09 UTC (rev 151)
+++ trunk/refman-4.1/sql-syntax.xml 2005-10-24 16:45:14 UTC (rev 152)
@@ -10300,7 +10300,7 @@
MySQL account information is stored in the tables of the
<literal>mysql</literal> database. This database and the
access control system are discussed extensively in
- <xref linkend="mysql-database-administration"/>, which you
+ <xref linkend="database-administration"/>, which you
should consult for additional details.
</para>
Modified: trunk/refman-4.1/tutorial.xml
===================================================================
--- trunk/refman-4.1/tutorial.xml 2005-10-24 15:34:09 UTC (rev 151)
+++ trunk/refman-4.1/tutorial.xml 2005-10-24 16:45:14 UTC (rev 152)
@@ -60,7 +60,7 @@
connect. If this is not true, contact your MySQL administrator. (If
<emphasis>you</emphasis> are the administrator, you need to consult
the relevant portions of this manual, such as
- <xref linkend="mysql-database-administration"/>.)
+ <xref linkend="database-administration"/>.)
</para>
<para>
Modified: trunk/refman-4.1/using-mysql-programs.xml
===================================================================
--- trunk/refman-4.1/using-mysql-programs.xml 2005-10-24 15:34:09 UTC (rev 151)
+++ trunk/refman-4.1/using-mysql-programs.xml 2005-10-24 16:45:14 UTC (rev 152)
@@ -102,7 +102,7 @@
<para>
These programs are discussed further in
- <xref linkend="mysql-database-administration"/>.
+ <xref linkend="database-administration"/>.
</para>
</listitem>
@@ -208,7 +208,7 @@
<para>
<command>myisamchk</command> is discussed further in
- <xref linkend="mysql-database-administration"/>. The other
+ <xref linkend="database-administration"/>. The other
programs are further in <xref linkend="client-side-scripts"/>.
</para>
</listitem>
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r152 - trunk/refman-4.1 | shinz | 24 Oct |