[svnbook commit] r2612 - trunk/src/en/book

cmpilato noreply at red-bean.com
Fri Jan 5 01:05:32 CST 2007


Author: cmpilato
Date: Fri Jan  5 01:05:30 2007
New Revision: 2612

Modified:
   trunk/src/en/book/ch-advanced-topics.xml

Log:
* src/en/book/ch-advanced-topics.xml
  Bring all the dates up to 2006.

Modified: trunk/src/en/book/ch-advanced-topics.xml
==============================================================================
--- trunk/src/en/book/ch-advanced-topics.xml	(original)
+++ trunk/src/en/book/ch-advanced-topics.xml	Fri Jan  5 01:05:30 2007
@@ -174,17 +174,17 @@
         spaces.)</para>
 
       <screen>
-$ svn checkout -r {2002-02-17}
+$ svn checkout -r {2006-02-17}
 $ svn checkout -r {15:30}
 $ svn checkout -r {15:30:00.200000}
-$ svn checkout -r {"2002-02-17 15:30"}
-$ svn checkout -r {"2002-02-17 15:30 +0230"}
-$ svn checkout -r {2002-02-17T15:30}
-$ svn checkout -r {2002-02-17T15:30Z}
-$ svn checkout -r {2002-02-17T15:30-04:00}
-$ svn checkout -r {20020217T1530}
-$ svn checkout -r {20020217T1530Z}
-$ svn checkout -r {20020217T1530-0500}
+$ svn checkout -r {"2006-02-17 15:30"}
+$ svn checkout -r {"2006-02-17 15:30 +0230"}
+$ svn checkout -r {2006-02-17T15:30}
+$ svn checkout -r {2006-02-17T15:30Z}
+$ svn checkout -r {2006-02-17T15:30-04:00}
+$ svn checkout -r {20060217T1530}
+$ svn checkout -r {20060217T1530Z}
+$ svn checkout -r {20060217T1530-0500}
 …
 </screen>
       
@@ -194,9 +194,9 @@
         number:</para>
         
       <screen>
-$ svn log -r {2002-11-28}
+$ svn log -r {2006-11-28}
 ------------------------------------------------------------------------
-r12 | ira | 2002-11-27 12:31:51 -0600 (Wed, 27 Nov 2002) | 6 lines
+r12 | ira | 2006-11-27 12:31:51 -0600 (Mon, 27 Nov 2006) | 6 lines
 …
 </screen>
         
@@ -205,21 +205,21 @@
         
         <para>If you specify a single date as a revision without
           specifying a time of day (for example
-          <literal>2002-11-27</literal>), you may think that Subversion
+          <literal>2006-11-27</literal>), you may think that Subversion
           should give you the last revision that took place on the
           27th of November.  Instead, you'll get back a revision from
           the 26th, or even earlier.  Remember that Subversion will
           find the <emphasis>most recent revision of the
           repository</emphasis> as of the date you give.  If you give
           a date without a timestamp, like
-          <literal>2002-11-27</literal>, Subversion assumes a time of
+          <literal>2006-11-27</literal>, Subversion assumes a time of
           00:00:00, so looking for the most recent revision won't
           return anything on the day of the 27th.</para>
 
         <para>If you want to include the 27th in your search, you can
-          either specify the 27th with the time (<literal>{"2002-11-27
+          either specify the 27th with the time (<literal>{"2006-11-27
           23:59"}</literal>), or just specify the next day
-          (<literal>{2002-11-28}</literal>).</para>
+          (<literal>{2006-11-28}</literal>).</para>
         
       </sidebar>
       
@@ -227,7 +227,7 @@
         all revisions between both dates, inclusive:</para>
       
       <screen>
-$ svn log -r {2002-11-20}:{2002-11-29}
+$ svn log -r {2006-11-20}:{2006-11-29}
 …
 </screen>
         
@@ -740,7 +740,7 @@
         subcommand.</para>
 
       <screen>
-$ svn propset copyright '(c) 2003 Red-Bean Software' calc/button.c
+$ svn propset copyright '(c) 2006 Red-Bean Software' calc/button.c
 property 'copyright' set on 'calc/button.c'
 $
 </screen>
@@ -802,7 +802,7 @@
         have done:</para>
 
       <screen>
-$ svn propset copyright '(c) 2002 Red-Bean Software' calc/*
+$ svn propset copyright '(c) 2006 Red-Bean Software' calc/*
 property 'copyright' set on 'calc/Makefile'
 property 'copyright' set on 'calc/button.c'
 property 'copyright' set on 'calc/integer.c'
@@ -828,7 +828,7 @@
   copyright
   license
 $ svn propget copyright calc/button.c
-(c) 2003 Red-Bean Software
+(c) 2006 Red-Bean Software
 </screen>
 
       <para>There's even a variation of the
@@ -839,9 +839,9 @@
       <screen>
 $ svn proplist --verbose calc/button.c
 Properties on 'calc/button.c':
-  copyright : (c) 2003 Red-Bean Software
+  copyright : (c) 2006 Red-Bean Software
   license : ================================================================
-Copyright (c) 2003 Red-Bean Software.  All rights reserved.
+Copyright (c) 2006 Red-Bean Software.  All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions 
@@ -865,7 +865,7 @@
 property 'license' set on 'calc/button.c'
 $ svn proplist --verbose calc/button.c
 Properties on 'calc/button.c':
-  copyright : (c) 2003 Red-Bean Software
+  copyright : (c) 2006 Red-Bean Software
   license : 
 $
 </screen>
@@ -879,7 +879,7 @@
 property 'license' deleted from 'calc/button.c'.
 $ svn proplist --verbose calc/button.c
 Properties on 'calc/button.c':
-  copyright : (c) 2003 Red-Bean Software
+  copyright : (c) 2006 Red-Bean Software
 $
 </screen>
 
@@ -978,7 +978,7 @@
 Property changes on: calc/button.c
 ___________________________________________________________________
 Name: copyright
-   + (c) 2003 Red-Bean Software
+   + (c) 2006 Red-Bean Software
 
 $
 </screen>
@@ -1677,7 +1677,7 @@
           <para>This keyword describes the last time the file was
             known to have been changed in the repository, and
             looks something like <literal>$Date:
-            2002-07-22 21:42:37 -0700 (Mon, 22 Jul 2002)
+            2006-07-22 21:42:37 -0700 (Sat, 22 Jul 2006)
             $</literal>.  It may also be specified as
             <literal>LastChangedDate</literal>.</para>
         </listitem>
@@ -1719,10 +1719,10 @@
         <listitem>
           <para>This keyword is a compressed combination of the
             other keywords.  Its substitution looks something like
-            <literal>$Id: calc.c 148 2002-07-28 21:30:43Z sally
+            <literal>$Id: calc.c 148 2006-07-28 21:30:43Z sally
             $</literal>, and is interpreted to mean that the file
             <filename>calc.c</filename> was last changed in revision
-            148 on the evening of July 28, 2002 by the user
+            148 on the evening of July 28, 2006 by the user
             <literal>sally</literal>.</para>
         </listitem>
       </varlistentry>
@@ -1798,7 +1798,7 @@
 
     <screen>
 Here is the latest report from the front lines.
-$LastChangedDate: 2002-07-22 21:42:37 -0700 (Mon, 22 Jul 2002) $
+$LastChangedDate: 2006-07-22 21:42:37 -0700 (Sat, 22 Jul 2006) $
 $Rev$
 Cumulus clouds are appearing more frequently as summer approaches.
 </screen>
@@ -2171,13 +2171,13 @@
 Schedule: normal
 Last Changed Author: frank
 Last Changed Rev: 1950
-Last Changed Date: 2005-03-15 12:43:04 -0600 (Tue, 15 Mar 2005)
-Text Last Updated: 2005-06-08 19:23:07 -0500 (Wed, 08 Jun 2005)
-Properties Last Updated: 2005-06-08 19:23:07 -0500 (Wed, 08 Jun 2005)
+Last Changed Date: 2006-03-15 12:43:04 -0600 (Wed, 15 Mar 2006)
+Text Last Updated: 2006-06-08 19:23:07 -0500 (Thu, 08 Jun 2006)
+Properties Last Updated: 2006-06-08 19:23:07 -0500 (Thu, 08 Jun 2006)
 Checksum: 3b110d3b10638f5d1f4fe0f436a5a2a5
 Lock Token: opaquelocktoken:0c0f600b-88f9-0310-9e48-355b44d4a58e
 Lock Owner: harry
-Lock Created: 2005-06-14 17:20:31 -0500 (Tue, 14 Jun 2005)
+Lock Created: 2006-06-14 17:20:31 -0500 (Wed, 14 Jun 2006)
 Lock Comment (1 line):
 Editing file for tomorrow's release.
 
@@ -2328,10 +2328,10 @@
 Node Kind: file
 Last Changed Author: sally
 Last Changed Rev: 32
-Last Changed Date: 2005-01-25 12:43:04 -0600 (Tue, 25 Jan 2005)
+Last Changed Date: 2006-01-25 12:43:04 -0600 (Sun, 25 Jan 2006)
 Lock Token: opaquelocktoken:fc2b4dee-98f9-0310-abf3-653ff3226e6b
 Lock Owner: harry
-Lock Created: 2005-02-16 13:29:18 -0500 (Wed, 16 Feb 2005)
+Lock Created: 2006-02-16 13:29:18 -0500 (Thu, 16 Feb 2006)
 Lock Comment (1 line):
 Need to make a quick tweak to this image.
 $
@@ -2384,7 +2384,7 @@
 Path: /project2/images/banana.jpg
 UUID Token: opaquelocktoken:c32b4d88-e8fb-2310-abb3-153ff1236923
 Owner: frank
-Created: 2005-06-15 13:29:18 -0500 (Wed, 15 Jun 2005)
+Created: 2006-06-15 13:29:18 -0500 (Thu, 15 Jun 2006)
 Expires: 
 Comment (1 line):
 Still improving the yellow color.
@@ -2392,7 +2392,7 @@
 Path: /project/raisin.jpg
 UUID Token: opaquelocktoken:fc2b4dee-98f9-0310-abf3-653ff3226e6b
 Owner: harry
-Created: 2005-02-16 13:29:18 -0500 (Wed, 16 Feb 2005)
+Created: 2006-02-16 13:29:18 -0500 (Thu, 16 Feb 2006)
 Expires: 
 Comment (1 line):
 Need to make a quick tweak to this image.
@@ -2570,7 +2570,7 @@
 $ svn info http://svn.example.com/repos/project/raisin.jpg | grep Lock
 Lock Token: opaquelocktoken:fc2b4dee-98f9-0310-abf3-653ff3226e6b
 Lock Owner: harry
-Lock Created: 2005-06-08 07:29:18 -0500 (Thu, 08 June 2005)
+Lock Created: 2006-06-08 07:29:18 -0500 (Thu, 08 June 2006)
 Lock Comment (1 line):
 Making some tweaks.  Locking for the next two hours.
 $




More information about the svnbook-dev mailing list