List:Commits« Previous MessageNext Message »
From:mhillyer Date:March 13 2006 9:28pm
Subject:svn commit - mysqldoc@docsrva: r1568 - in trunk: . gui-common refman-4.1 refman-5.0 refman-5.1 refman-common workbench
View as plain text  
Author: mhillyer
Date: 2006-03-13 22:28:12 +0100 (Mon, 13 Mar 2006)
New Revision: 1568

Log:
Document bug 16217.

Added:
   trunk/workbench/
   trunk/workbench/workbench.xml
Modified:
   trunk/gui-common/gui-common.ent
   trunk/refman-4.1/client-utility-programs.xml
   trunk/refman-5.0/client-utility-programs.xml
   trunk/refman-5.1/client-utility-programs.xml
   trunk/refman-common/news-4.1.xml
   trunk/refman-common/news-5.0.xml
   trunk/refman-common/news-5.1.xml

Modified: trunk/gui-common/gui-common.ent
===================================================================
--- trunk/gui-common/gui-common.ent	2006-03-13 18:13:41 UTC (rev 1567)
+++ trunk/gui-common/gui-common.ent	2006-03-13 21:28:12 UTC (rev 1568)
@@ -2,4 +2,5 @@
 <!ENTITY administrator "MySQL Administrator">
 <!ENTITY query_browser "MySQL Query Browser">
 <!ENTITY tray_monitor "MySQL System Tray Monitor">
-<!ENTITY table_editor "MySQL Table Editor">
\ No newline at end of file
+<!ENTITY table_editor "MySQL Table Editor">
+<!ENTITY workbench "MySQL Workbench">
\ No newline at end of file

Modified: trunk/refman-4.1/client-utility-programs.xml
===================================================================
--- trunk/refman-4.1/client-utility-programs.xml	2006-03-13 18:13:41 UTC (rev 1567)
+++ trunk/refman-4.1/client-utility-programs.xml	2006-03-13 21:28:12 UTC (rev 1568)
@@ -4720,6 +4720,7 @@
 tee       (\T) Set outfile [to_outfile]. Append everything into given
                outfile.
 use       (\u) Use another database. Takes database name as argument.
+charset   (\C) Switch to another charset. Might be needed for processing binlog with multi-byte charsets.
 warnings  (\W) Show warnings after every statement.
 nowarning (\w) Don't show warnings after every statement.
 </programlisting>
@@ -5118,6 +5119,9 @@
 </programlisting>
           </listitem>
 
+          <listitem>
+            <para></para>
+          </listitem>
         </itemizedlist>
 
       </refsection>

Modified: trunk/refman-5.0/client-utility-programs.xml
===================================================================
--- trunk/refman-5.0/client-utility-programs.xml	2006-03-13 18:13:41 UTC (rev 1567)
+++ trunk/refman-5.0/client-utility-programs.xml	2006-03-13 21:28:12 UTC (rev 1568)
@@ -4588,6 +4588,7 @@
 tee       (\T) Set outfile [to_outfile]. Append everything into given
                outfile.
 use       (\u) Use another database. Takes database name as argument.
+charset   (\C) Switch to another charset. Might be needed for processing binlog with multi-byte charsets.
 warnings  (\W) Show warnings after every statement.
 nowarning (\w) Don't show warnings after every statement.
 </programlisting>

Modified: trunk/refman-5.1/client-utility-programs.xml
===================================================================
--- trunk/refman-5.1/client-utility-programs.xml	2006-03-13 18:13:41 UTC (rev 1567)
+++ trunk/refman-5.1/client-utility-programs.xml	2006-03-13 21:28:12 UTC (rev 1568)
@@ -4589,6 +4589,7 @@
 tee       (\T) Set outfile [to_outfile]. Append everything into given
                outfile.
 use       (\u) Use another database. Takes database name as argument.
+charset   (\C) Switch to another charset. Might be needed for processing binlog with multi-byte charsets.
 warnings  (\W) Show warnings after every statement.
 nowarning (\w) Don't show warnings after every statement.
 </programlisting>

Modified: trunk/refman-common/news-4.1.xml
===================================================================
--- trunk/refman-common/news-4.1.xml	2006-03-13 18:13:41 UTC (rev 1567)
+++ trunk/refman-common/news-4.1.xml	2006-03-13 21:28:12 UTC (rev 1568)
@@ -172,6 +172,17 @@
         </para>
       </listitem>
 
+      <listitem>
+        <para>
+          New <literal>charset</literal> command added to
+          <command>mysql</command> command-line client. By typing
+          <literal>charset <replaceable>name</replaceable></literal> or
+            <literal>\C <replaceable>name</replaceable></literal> (such
+            as <literal>\C UTF8</literal>), the client character set can
+          be changed without reconnecting. (Bug #16217)
+        </para>
+      </listitem>
+      
     </itemizedlist>
 
     <para>

Modified: trunk/refman-common/news-5.0.xml
===================================================================
--- trunk/refman-common/news-5.0.xml	2006-03-13 18:13:41 UTC (rev 1567)
+++ trunk/refman-common/news-5.0.xml	2006-03-13 21:28:12 UTC (rev 1568)
@@ -490,6 +490,17 @@
         </para>
       </listitem>
 
+      <listitem>
+        <para>
+          New <literal>charset</literal> command added to
+          <command>mysql</command> command-line client. By typing
+          <literal>charset <replaceable>name</replaceable></literal> or
+          <literal>\C <replaceable>name</replaceable></literal> (such
+          as <literal>\C UTF8</literal>), the client character set can
+          be changed without reconnecting. (Bug #16217)
+        </para>
+      </listitem>
+      
     </itemizedlist>
 
     <para>

Modified: trunk/refman-common/news-5.1.xml
===================================================================
--- trunk/refman-common/news-5.1.xml	2006-03-13 18:13:41 UTC (rev 1567)
+++ trunk/refman-common/news-5.1.xml	2006-03-13 21:28:12 UTC (rev 1568)
@@ -845,6 +845,17 @@
         </para>
       </listitem>
 
+      <listitem>
+        <para>
+          New <literal>charset</literal> command added to
+          <command>mysql</command> command-line client. By typing
+          <literal>charset <replaceable>name</replaceable></literal> or
+          <literal>\C <replaceable>name</replaceable></literal> (such
+          as <literal>\C UTF8</literal>), the client character set can
+          be changed without reconnecting. (Bug #16217)
+        </para>
+      </listitem>
+      
     </itemizedlist>
 
     <para>

Added: trunk/workbench/workbench.xml
===================================================================
--- trunk/workbench/workbench.xml	2006-03-13 18:13:41 UTC (rev 1567)
+++ trunk/workbench/workbench.xml	2006-03-13 21:28:12 UTC (rev 1568)
@@ -0,0 +1,113 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" 
+"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" 
+[
+    <!ENTITY % gui-common.entities    SYSTEM "../gui-common/gui-common.ent">
+    %gui-common.entities;
+]>
+<book id="mysql-workbench" lang="en">
+
+<!--
+If <indexterm> elements are added to this document sometime, add an
+empty <index/> element before the closing </book> tag to enable
+index-generation.  Right now there is no such element because there
+is no point in generating an empty index.
+-->
+
+  <title>&workbench;</title>
+
+  <bookinfo>
+
+    <title>&workbench;</title>
+
+    <abstract>
+
+      <para>
+        This is the &workbench; Manual.
+      </para>
+
+      <para>
+        Document generated on:
+
+<?dbtimestamp format="Y-m-d"?>
+
+        <remark role="repository.revision"/>
+      </para>
+
+    </abstract>
+
+    <copyright>
+
+      <year>2004-2006</year>
+
+      <holder>MySQL AB</holder>
+
+    </copyright>
+
+    <legalnotice>
+
+      <para>
+        This manual is NOT distributed under a GPL style license. Use of
+        the manual is subject to the following terms:
+
+        <itemizedlist>
+
+          <listitem>
+            <para>
+              Conversion to other formats is allowed, but the actual
+              content may not be altered or edited in any way.
+            </para>
+          </listitem>
+
+          <listitem>
+            <para>
+              You may create a printed copy for your own personal use.
+            </para>
+          </listitem>
+
+          <listitem>
+            <para>
+              For all other uses, such as selling printed copies or
+              using (parts of) the manual in another publication, prior
+              written agreement from MySQL AB is required.
+            </para>
+          </listitem>
+
+        </itemizedlist>
+
+        Please email docs@stripped for more information or if you are
+        interested in doing a translation.
+      </para>
+
+    </legalnotice>
+
+  </bookinfo>
+
+  <chapter id="mysql-workbench-introduction">
+
+    <title>Introduction to &workbench;</title>
+
+    <para>
+      &workbench; is a schema design application, allowing users to
+      graphically design and modify tables and other objects, then
+      create that design in MySQL automatically.
+    </para>
+
+    <para>
+      &workbench; is designed to work with MySQL versions 4.0 and
+      higher.
+    </para>
+
+    <para>
+      &workbench; is beta software and should not be used on production
+      systems. It is strongly recommended you backup all data before
+      using &workbench;. If you find it's lacking some feature important to you,
+      or if you discover a bug, please use our
+      <ulink 
+url="http://bugs.mysql.com">MySQL Bug System</ulink> to
+      request features or report problems.
+    </para>
+
+  </chapter>
+
+</book>

Thread
svn commit - mysqldoc@docsrva: r1568 - in trunk: . gui-common refman-4.1 refman-5.0 refman-5.1 refman-common workbenchmhillyer13 Mar