[svnbook commit] r1460 - in trunk/src/en: . book

sussman svnbook-dev at red-bean.com
Thu Jun 16 15:31:29 CDT 2005


Author: sussman
Date: Thu Jun 16 15:31:28 2005
New Revision: 1460

Modified:
   trunk/src/en/TODO
   trunk/src/en/book/ch00.xml
Log:

* src/en/book/ch00.xml:  remove the 1.1 releasenotes.  it's just not
     appropriate for the book to reprint this stuff.  the book is not
     an index to all project URLs!

* src/en/TODO:  not gonna put 1.2 releasenotes in the book.


Modified: trunk/src/en/TODO
==============================================================================
--- trunk/src/en/TODO	(original)
+++ trunk/src/en/TODO	Thu Jun 16 15:31:28 2005
@@ -4,8 +4,6 @@
 NEEDED FOR 1.2 COMPLETION
 ============================================================================
 
-  * ch00:  "what's new in svn 1.2".  [BEN]
-
   * ch05: comparison of bdb and fsfs:  make it clear that fsfs is now
     the default, need --fs-type bdb to get bdb.  [MIKE]
 

Modified: trunk/src/en/book/ch00.xml
==============================================================================
--- trunk/src/en/book/ch00.xml	(original)
+++ trunk/src/en/book/ch00.xml	Thu Jun 16 15:31:28 2005
@@ -376,157 +376,6 @@
 
   </sect1>
 
-  <!-- ================================================================= -->
-  <!-- ======================== SECTION 4b ============================= -->
-  <!-- ================================================================= -->
-  <sect1 id="svn.preface.new-1-1">
-    <title>New in Subversion 1.1</title>
-
-    <para>This edition of the book has been updated to cover new
-      features and behavioral changes in Subversion 1.1.  Here's a
-      brief list of pointers to major 1.1 changes.</para>
-
-    <variablelist>
-
-      <varlistentry>
-        <term>Non-database repositories</term>
-        <listitem>
-          <para>It's now possible to create repositories that don't
-            use a BerkeleyDB database.  Instead, these new
-            repositories store data in the ordinary filesystem using a
-            custom file format.  These repositories aren't susceptible
-            to <quote>wedging</quote>, but also aren't as well-tested
-            as Berkeley DB repositories.  See <xref
-            linkend="svn.reposadmin.basics.backends"/>.</para>
-        </listitem>
-      </varlistentry>
-
-      <varlistentry>
-        <term>Symbolic link versioning</term>
-        <listitem>
-          <para>Unix users can now create symbolic links and place
-            them under version control with the <command>svn
-            add</command> command.  See <xref
-            linkend="svn.ref.svn.c.add"/> and <xref
-            linkend="svn.advanced.props.special.special"/>.</para>
-        </listitem>
-      </varlistentry>
-
-      <varlistentry>
-        <term>Client follows copies and renames</term>
-        <listitem>
-          <para>Branches (copies) of files and directories maintain
-            historical connections to their source, but in Subversion
-            1.0 only <command>svn log</command> ever followed that
-            copy/rename history, not other commands like <command>svn
-            diff</command>, <command>svn merge</command>, <command>svn
-            list</command>, or <command>svn cat</command>.  In
-            Subversion 1.1, all client subcommands now transparently
-            trace backwards through copies and renames when examining
-            older versions of files and directories.</para>
-        </listitem>
-      </varlistentry>
-
-      <varlistentry>
-        <term>Client auto-escaping of URIs and IRIs</term>
-        <listitem>
-          <para>In the 1.0 command-line client, users had to escape
-            URLs manually.  The client only accepted <quote>legally
-            correct</quote> URLs, such as
-            <literal>http://host/path%20with%20space/project/espa%F1a</literal>.
-            The 1.1 command-line client now knows how to do what
-            web-browsers have been doing for long time: it
-            auto-escapes characters like spaces and accented letters,
-            as long as the user places the
-            URL in quotes to protect characters from the shell:
-            <literal>"http://host/path with
-            space/project/españa"</literal></para>
-        </listitem>
-      </varlistentry>
-
-      <varlistentry>
-        <term>Localized user messages</term>
-        <listitem>
-          <para>Subversion 1.1 is now using
-            <literal>gettext()</literal> to display translated error,
-            informational, and help messages to the user. There are
-            currently translations for German, Spanish, Polish,
-            Swedish, Traditional Chinese, Japanese, Brazilian
-            Portuguese and Norwegian Bokmal.  To localize your
-            Subversion client, just set your shell's LANG environment
-            variable to a supported locale value (for example,
-            <literal>de_DE</literal>).</para>
-        </listitem>
-      </varlistentry>
-
-      <varlistentry>
-        <term>Shareable working copies</term>
-        <listitem>
-          <para>There have been historical problems with permissions
-            when multiple users share a working copy, which are
-            believed to be fixed now.</para>
-        </listitem>
-      </varlistentry>
-
-      <varlistentry>
-        <term><literal>store-passwords</literal> run-time variable</term>
-        <listitem>
-          <para>This is a new runtime variable which only disables
-            password caching, so that server certificates can still be
-            cached.  See <xref linkend="svn.advanced.confarea.opts.config"/>.</para>
-        </listitem>
-      </varlistentry>
-
-      <varlistentry>
-        <term>Optimizations and bug fixes</term>
-        <listitem>
-          <para>The <command>svn checkout</command>, <command>svn
-            update</command>, <command>svn status</command>, and
-            <command>svn blame</command> commands are faster.  More
-            than fifty small bugs have been fixed, all described in
-            the Subversion project's CHANGES file (at <systemitem
-            class="url">http://svn.collab.net/repos/svn/trunk/CHANGES
-            </systemitem>).</para>
-        </listitem>
-      </varlistentry>
-
-      <varlistentry>
-        <term>New command switches</term>
-        <listitem>
-          <itemizedlist>
-            <listitem><para><command>svn blame --verbose</command>: see
-            <xref linkend="svn.ref.svn.c.blame"/>.
-            </para></listitem>
-
-            <listitem><para><command>svn export --native-eol EOL</command>: see
-            <xref linkend="svn.ref.svn.c.export"/>.
-            </para></listitem>
-            
-            <listitem><para><command>svn add --force</command>: see
-            <xref linkend="svn.ref.svn.c.add"/>.
-            </para></listitem>
-
-            <listitem><para><command>svnadmin dump --deltas</command>: see
-            <xref linkend="svn.reposadmin.maint.migrate"/>.
-            </para></listitem>
-
-            <listitem><para><command>svnadmin create --fs-type TYPE</command>: see
-            <xref linkend="svn.ref.svnadmin.c.create"/>.
-            </para></listitem>
-
-            <listitem><para><command>svnadmin recover --wait</command>: see
-            <xref linkend="svn.ref.svnadmin.c.recover"/>.
-            </para></listitem>
-
-            <listitem><para><command>svnserve --tunnel-user=NAME</command>: see
-            <xref linkend="svn.ref.svnserve.sw"/>.
-            </para></listitem>
-          </itemizedlist>
-        </listitem>
-      </varlistentry>
-    </variablelist>
-
-  </sect1>
 
   <!-- ================================================================= -->
   <!-- ======================== SECTION 5 ============================== -->



More information about the svnbook-dev mailing list