List:Commits« Previous MessageNext Message »
From:anthony.bedford Date:November 13 2008 11:57am
Subject:svn commit - mysqldoc@docsrva: r12451 - trunk/refman-common
View as plain text  
Author: tbedford
Date: 2008-11-13 12:57:19 +0100 (Thu, 13 Nov 2008)
New Revision: 12451

Log:
Source code location is now Launchpad and version control system is Bazaar. Fixes doc bug #39398.

Modified:
   trunk/refman-common/connector-j.xml


Modified: trunk/refman-common/connector-j.xml
===================================================================
--- trunk/refman-common/connector-j.xml	2008-11-13 03:48:10 UTC (rev 12450)
+++ trunk/refman-common/connector-j.xml	2008-11-13 11:57:19 UTC (rev 12451)
Changed blocks: 5, Lines Added: 30, Lines Deleted: 20; 3565 bytes

@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="UTF-8"?>
+<?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd"
 [

@@ -860,9 +860,9 @@
 
         <listitem>
           <para>
-            Subversion, to check out the sources from our repository
-            (available from
-            <ulink url="http://subversion.tigris.org/"/>).
+            A Bazaar client, to check out the sources from our Launchpad
+            repository (available from
+            <ulink url="http://bazaar-vcs.org/"/>).
           </para>
         </listitem>
 

@@ -888,12 +888,9 @@
       </itemizedlist>
 
       <para>
-        The Subversion source code repository for MySQL Connector/J is
-        located at
-        <ulink url="http://svn.mysql.com/svnpublic/connector-j"/>. In
-        general, you should not check out the entire repository because
-        it contains every branch and tag for MySQL Connector/J and is
-        quite large.
+        The source code repository for MySQL Connector/J is located on
+        Launchpad at
+        <ulink url="https://code.launchpad.net/connectorj"/>.
       </para>
 
       <para>

@@ -906,20 +903,31 @@
         <listitem>
           <para>
             Check out the latest code from the branch that you want with
-            the following command (replacing
-            <replaceable>[major]</replaceable> and
-            <replaceable>[minor]</replaceable> with appropriate version
-            numbers):
+            one of the following commands.
           </para>
 
-<programlisting>shell&gt; <userinput>svn co &raquo;
-http://svn.mysql.com/svnpublic/connector-j/branches/branch_<replaceable>[major]_[minor]</replaceable> connector-j</userinput></programlisting>
+          <para>
+            To check out the latest development branch use:
+          </para>
 
+<programlisting>shell&gt; <userinput>bzr branch lp:connectorj</userinput></programlisting>
+
           <para>
-            This creates a <filename>connector-j</filename> subdirectory
+            This creates a <filename>connectorj</filename> subdirectory
             in the current directory that contains the latest sources
             for the requested branch.
           </para>
+
+          <para>
+            To check out the latest 5.1 code use:
+          </para>
+
+<programlisting>shell&gt; <userinput>bzr branch lp:connectorj/5.1</userinput></programlisting>
+
+          <para>
+            This will create a <filename>5.1</filename> subdirectory in
+            the current directory containing the latest 5.1 code.
+          </para>
         </listitem>
 
         <listitem>

@@ -935,11 +943,13 @@
 
         <listitem>
           <para>
-            Change location to the <filename>connector-j</filename>
-            directory to make it your current working directory:
+            Change location to either the
+            <filename>connectorj</filename> or <filename>5.1</filename>
+            directory, depending on which branch you want to build, to
+            make it your current working directory. For example:
           </para>
 
-<programlisting>shell&gt; <userinput>cd connector-j</userinput></programlisting>
+<programlisting>shell&gt; <userinput>cd connectorj</userinput></programlisting>
         </listitem>
 
         <listitem>


Thread
svn commit - mysqldoc@docsrva: r12451 - trunk/refman-commonanthony.bedford13 Nov