List:Commits« Previous MessageNext Message »
From:stefan Date:June 26 2006 9:23pm
Subject:svn commit - mysqldoc@docsrva: r2518 - in trunk: refman-5.0 refman-common
View as plain text  
Author: shinz
Date: 2006-06-26 23:23:54 +0200 (Mon, 26 Jun 2006)
New Revision: 2518

Log:
Fix a few glitches in the CJK FAQ; enable the FAQ in the 5.0 manual, too

Modified:
   trunk/refman-5.0/charset.xml
   trunk/refman-common/cjk-faq.en.xml

Modified: trunk/refman-5.0/charset.xml
===================================================================
--- trunk/refman-5.0/charset.xml	2006-06-26 16:07:34 UTC (rev 2517)
+++ trunk/refman-5.0/charset.xml	2006-06-26 21:23:54 UTC (rev 2518)
@@ -4335,4 +4335,6 @@
 
   </section>
 
+  <xi:include href="../refman-common/cjk-faq.en.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
+
 </chapter>

Modified: trunk/refman-common/cjk-faq.en.xml
===================================================================
--- trunk/refman-common/cjk-faq.en.xml	2006-06-26 16:07:34 UTC (rev 2517)
+++ trunk/refman-common/cjk-faq.en.xml	2006-06-26 21:23:54 UTC (rev 2518)
@@ -37,134 +37,6 @@
     enquiries about CJK (Chinese Japanese Korean) issues.
   </para>
 
-<!-- This list can be removed if TOC shows up correctly
-  <para>
-    Contents:
-
-    <itemizedlist>
-
-      <listitem>
-        <para></para>
-      </listitem>
-
-      <listitem>
-        <para>
-          SELECT shows non-Latin characters as "?"s. Why?
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
-          Troubles with GB character sets (Chinese)
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
-          Troubles with Big5 character set (Chinese)
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
-          Troubles with character-set conversions (Japanese)
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
-          The Great Yen Sign Problem (Japanese)
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
-          Troubles with euckr character set (Korean)
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
-          The "Data truncated" message
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
-          Troubles with Access (or Perl) (or PHP) (etc.)
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
-          How can I get old MySQL-4.0 behaviour back?
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
-          Why do some LIKE and FULLTEXT searches fail?
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
-          What CJK character sets are available?
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
-          Is character X available in all character sets?
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
-          Strings Don't Sort Correctly in Unicode (I)
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
-          Strings Don't Sort Correctly in Unicode (II)
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
-          My supplementary characters get rejected
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
-          Shouldn't it be CJKV (V for Vietnamese)?
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
-          Will MySQL fix any CJK problems in version 5.1?
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
-          When will MySQL translate the manual again?
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
-          Whom can I talk to?
-        </para>
-      </listitem>
-
-    </itemizedlist>
-  </para>
--->
-
   <section id="cjk-faq-question-marks">
 
     <title>SELECT shows non-Latin characters as "?"s. Why?</title>
@@ -197,11 +69,11 @@
             this:
 
 <programlisting>
-        SELECT character_set_name, collation_name
-        FROM   information_schema.columns WHERE  table_schema = your_database_name
-        AND    table_name = your_table_name
-        AND    column_name = your_column_name;
-      </programlisting>
+SELECT character_set_name, collation_name
+FROM   information_schema.columns WHERE  table_schema = your_database_name
+AND    table_name = your_table_name
+AND    column_name = your_column_name;
+</programlisting>
           </para>
         </listitem>
 
@@ -210,9 +82,9 @@
             Find out: what is the hexadecimal value?
 
 <programlisting>
-          SELECT HEX(your_column_name)
-          FROM your_table_name;
-        </programlisting>
+SELECT HEX(your_column_name)
+FROM your_table_name;
+</programlisting>
 
             If you see <literal>3F</literal>, then that really is the
             encoding for <literal>?</literal>, so no wonder you see
@@ -1276,9 +1148,8 @@
       for us under contract. It's complete and can be found on
       <ulink url="http://dev.mysql.com/doc/#chinese-5.1"/>. It's up to
       date as of version 5.1.2. The Japanese manual can be downloaded
-      from this page: http://dev.mysql.com/doc/ (Scroll down the page
-      until you see the word <quote>Japanese</quote>.) It is still for
-      version 4.1.
+      from <ulink url="http://dev.mysql.com/doc/#japanese-4.1"/>. 
+      It is still for version 4.1.
     </para>
 
   </section>

Thread
svn commit - mysqldoc@docsrva: r2518 - in trunk: refman-5.0 refman-commonstefan26 Jun