]> git.cworth.org Git - hgbook-git/commitdiff
Fill all paragraphs
authorCarl Worth <cworth@cworth.org>
Thu, 27 Sep 2007 22:49:18 +0000 (15:49 -0700)
committerCarl Worth <cworth@cworth.org>
Thu, 27 Sep 2007 22:49:18 +0000 (15:49 -0700)
It's nice to have everything fit comfortably within 80 columns

tour.mdwn

index 490260717bbd9447ab506761c8be26cea2ed7437..641383d903c65e92b6e80c1d261efb33107a91fd 100644 (file)
--- a/tour.mdwn
+++ b/tour.mdwn
@@ -14,13 +14,23 @@ License. Please refer to Appendix D for the license text.
 
 ### 2.1  Installing Mercurial on your system
 
-Prebuilt binary packages of Mercurial are available for every popular operating system. These make it easy to start using Mercurial on your computer immediately. 
+Prebuilt binary packages of Mercurial are available for every popular
+operating system. These make it easy to start using Mercurial on your
+computer immediately.
 
 #### 2.1.1  Linux
 
-Because each Linux distribution has its own packaging tools, policies, and rate of development, it’s difficult to give a comprehensive set of instructions on how to install Mercurial binaries. The version of Mercurial that you will end up with can vary depending on how active the person is who maintains the package for your distribution. 
+Because each Linux distribution has its own packaging tools, policies,
+and rate of development, it’s difficult to give a comprehensive set of
+instructions on how to install Mercurial binaries. The version of
+Mercurial that you will end up with can vary depending on how active
+the person is who maintains the package for your distribution.
 
-To keep things simple, I will focus on installing Mercurial from the command line under the most popular Linux distributions. Most of these distributions provide graphical package managers that will let you install Mercurial with a single click; the package name to look for is mercurial. 
+To keep things simple, I will focus on installing Mercurial from the
+command line under the most popular Linux distributions. Most of these
+distributions provide graphical package managers that will let you
+install Mercurial with a single click; the package name to look for is
+mercurial.
 
   * Debian 
 
@@ -38,11 +48,15 @@ To keep things simple, I will focus on installing Mercurial from the command lin
 
 1  yum install mercurial
 
-  * Ubuntu Ubuntu’s Mercurial package is based on Debian’s. To install it, run the following command. 
+  * Ubuntu Ubuntu’s Mercurial package is based on Debian’s. To install
+it, run the following command.
 
 1  apt-get install mercurial
 
-The Ubuntu package for Mercurial tends to lag behind the Debian version by a considerable time margin (at the time of writing, seven months), which in some cases will mean that on Ubuntu, you may run into problems that have since been fixed in the Debian package.
+The Ubuntu package for Mercurial tends to lag behind the Debian
+version by a considerable time margin (at the time of writing, seven
+months), which in some cases will mean that on Ubuntu, you may run
+into problems that have since been fixed in the Debian package.
 
 #### 2.1.2  Solaris
 
@@ -50,17 +64,29 @@ XXX.
 
 #### 2.1.3  Mac OS X
 
-Lee Cantey publishes an installer of Mercurial for Mac OS X at [http://mercurial.berkwood.com][6]. This package works on both Intel- and Power-based Macs. Before you can use it, you must install a compatible version of Universal MacPython [[BI][7]]. This is easy to do; simply follow the instructions on Lee’s site. 
+Lee Cantey publishes an installer of Mercurial for Mac OS X at
+[http://mercurial.berkwood.com][6]. This package works on both
+Intel- and Power-based Macs. Before you can use it, you must install a
+compatible version of Universal MacPython [[BI][7]]. This is easy to
+do; simply follow the instructions on Lee’s site.
 
 #### 2.1.4  Windows
 
-Lee Cantey also publishes an installer of Mercurial for Windows at [http://mercurial.berkwood.com][6]. This package has no external dependencies; it “just works”. 
+Lee Cantey also publishes an installer of Mercurial for Windows at
+[http://mercurial.berkwood.com][6]. This package has no external
+dependencies; it “just works”.
 
-Note: The Windows version of Mercurial does not automatically convert line endings between Windows and Unix styles. If you want to share work with Unix users, you must do a little additional configuration work. XXX Flesh this out. 
+Note: The Windows version of Mercurial does not automatically convert
+line endings between Windows and Unix styles. If you want to share
+work with Unix users, you must do a little additional configuration
+work. XXX Flesh this out.
 
 ### 2.2  Getting started
 
-To begin, we’ll use the “hg version” command to find out whether Mercurial is actually installed properly. The actual version information that it prints isn’t so important; it’s whether it prints anything at all that we care about. 
+To begin, we’ll use the “hg version” command to find out whether
+Mercurial is actually installed properly. The actual version
+information that it prints isn’t so important; it’s whether it prints
+anything at all that we care about.
 
 1  $ hg version   
 2  Mercurial Distributed SCM (version 2937d0dbfab0)   
@@ -71,7 +97,12 @@ To begin, we’ll use the “hg version” command to find out whether Mercurial
 
 #### 2.2.1  Built-in help
 
-Mercurial provides a built-in help system. This is invaluable for those times when you find yourself stuck trying to remember how to run a command. If you are completely stuck, simply run “hg help”; it will print a brief list of commands, along with a description of what each does. If you ask for help on a specific command (as below), it prints more detailed information. 
+Mercurial provides a built-in help system. This is invaluable for
+those times when you find yourself stuck trying to remember how to run
+a command. If you are completely stuck, simply run “hg help”; it will
+print a brief list of commands, along with a description of what each
+does. If you ask for help on a specific command (as below), it prints
+more detailed information.
 
 1  $ hg help init   
 2  hg init [-e CMD] [--remotecmd CMD] [DEST]   
@@ -94,17 +125,28 @@ Mercurial provides a built-in help system. This is invaluable for those times wh
 19     
 20  use "hg -v help init" to show global options
 
-For a more impressive level of detail (which you won’t usually need) run “hg help -v”. The -v option is short for --verbose, and tells Mercurial to print more information than it usually would. 
+For a more impressive level of detail (which you won’t usually need)
+run “hg help -v”. The -v option is short for --verbose, and tells
+Mercurial to print more information than it usually would.
 
 ### 2.3  Working with a repository
 
-In Mercurial, everything happens inside a repository. The repository for a project contains all of the files that “belong to” that project, along with a historical record of the project’s files. 
+In Mercurial, everything happens inside a repository. The repository
+for a project contains all of the files that “belong to” that project,
+along with a historical record of the project’s files.
 
-There’s nothing particularly magical about a repository; it is simply a directory tree in your filesystem that Mercurial treats as special. You can rename or delete a repository any time you like, using either the command line or your file browser. 
+There’s nothing particularly magical about a repository; it is simply
+a directory tree in your filesystem that Mercurial treats as
+special. You can rename or delete a repository any time you like,
+using either the command line or your file browser.
 
 #### 2.3.1  Making a local copy of a repository
 
-Copying a repository is just a little bit special. While you could use a normal file copying command to make a copy of a repository, it’s best to use a built-in command that Mercurial provides. This command is called “hg clone”, because it creates an identical copy of an existing repository. 
+Copying a repository is just a little bit special. While you could use
+a normal file copying command to make a copy of a repository, it’s
+best to use a built-in command that Mercurial provides. This command
+is called “hg clone”, because it creates an identical copy of an
+existing repository.
 
 1  $ hg clone http://hg.serpentine.com/tutorial/hello   
 2  destination directory: hello   
@@ -115,7 +157,8 @@ Copying a repository is just a little bit special. While you could use a normal
 7  added 5 changesets with 5 changes to 2 files   
 8  2 files updated, 0 files merged, 0 files removed, 0 files unresolved
 
-If our clone succeeded, we should now have a local directory called hello. This directory will contain some files. 
+If our clone succeeded, we should now have a local directory called
+hello. This directory will contain some files.
 
 1  $ ls -l   
 2  total 4   
@@ -123,27 +166,45 @@ If our clone succeeded, we should now have a local directory called hello. This
 4  $ ls hello   
 5  Makefile  hello.c
 
-These files have the same contents and history in our repository as they do in the repository we cloned. 
+These files have the same contents and history in our repository as
+they do in the repository we cloned.
 
-Every Mercurial repository is complete, self-contained, and independent. It contains its own private copy of a project’s files and history. A cloned repository remembers the location of the repository it was cloned from, but it does not communicate with that repository, or any other, unless you tell it to. 
+Every Mercurial repository is complete, self-contained, and
+independent. It contains its own private copy of a project’s files and
+history. A cloned repository remembers the location of the repository
+it was cloned from, but it does not communicate with that repository,
+or any other, unless you tell it to.
 
-What this means for now is that we’re free to experiment with our repository, safe in the knowledge that it’s a private “sandbox” that won’t affect anyone else. 
+What this means for now is that we’re free to experiment with our
+repository, safe in the knowledge that it’s a private “sandbox” that
+won’t affect anyone else.
 
 #### 2.3.2  What’s in a repository?
 
-When we take a more detailed look inside a repository, we can see that it contains a directory named .hg. This is where Mercurial keeps all of its metadata for the repository. 
+When we take a more detailed look inside a repository, we can see that
+it contains a directory named .hg. This is where Mercurial keeps all
+of its metadata for the repository.
 
 1  $ cd hello   
 2  $ ls -a   
 3  .  ..  .hg  Makefile  hello.c
 
-The contents of the .hg directory and its subdirectories are private to Mercurial. Every other file and directory in the repository is yours to do with as you please. 
+The contents of the .hg directory and its subdirectories are private
+to Mercurial. Every other file and directory in the repository is
+yours to do with as you please.
 
-To introduce a little terminology, the .hg directory is the “real” repository, and all of the files and directories that coexist with it are said to live in the working directory. An easy way to remember the distinction is that the repository contains the history of your project, while the working directory contains a snapshot of your project at a particular point in history. 
+To introduce a little terminology, the .hg directory is the “real”
+repository, and all of the files and directories that coexist with it
+are said to live in the working directory. An easy way to remember the
+distinction is that the repository contains the history of your
+project, while the working directory contains a snapshot of your
+project at a particular point in history.
 
 ### 2.4  A tour through history
 
-One of the first things we might want to do with a new, unfamiliar repository is understand its history. The “hg log” command gives us a view of history. 
+One of the first things we might want to do with a new, unfamiliar
+repository is understand its history. The “hg log” command gives us a
+view of history.
 
 1  $ hg log   
 2  changeset:   4:b57f9a090b62   
@@ -173,24 +234,39 @@ One of the first things we might want to do with a new, unfamiliar repository is
 26  summary:     Create a standard "hello, world" program   
 27  
 
-By default, this command prints a brief paragraph of output for each change to the project that was recorded. In Mercurial terminology, we call each of these recorded events a changeset, because it can contain a record of changes to several files. 
+By default, this command prints a brief paragraph of output for each
+change to the project that was recorded. In Mercurial terminology, we
+call each of these recorded events a changeset, because it can contain
+a record of changes to several files.
 
 The fields in a record of output from “hg log” are as follows. 
 
-  * changeset This field has the format of a number, followed by a colon, followed by a hexadecimal string. These are identifiers for the changeset. There are two identifiers because the number is shorter and easier to type than the hex string. 
-  * user The identity of the person who created the changeset. This is a free-form field, but it most often contains a person’s name and email address. 
-  * date The date and time on which the changeset was created, and the timezone in which it was created. (The date and time are local to that timezone; they display what time and date it was for the person who created the changeset.) 
-  * summary The first line of the text message that the creator of the changeset entered to describe the changeset.
-
-The default output printed by “hg log” is purely a summary; it is missing a lot of detail. 
-
-Figure [2.1][8] provides a graphical representation of the history of the hello repository, to make it a little easier to see which direction history is “flowing” in. We’ll be returning to this figure several times in this chapter and the chapter that follows. 
+  * changeset This field has the format of a number, followed by a
+    colon, followed by a hexadecimal string. These are identifiers for
+    the changeset. There are two identifiers because the number is
+    shorter and easier to type than the hex string.
+  * user The identity of the person who created the changeset. This is
+    a free-form field, but it most often contains a person’s name and
+    email address.
+  * date The date and time on which the changeset was created, and the
+    timezone in which it was created. (The date and time are local to
+    that timezone; they display what time and date it was for the
+    person who created the changeset.)
+  * summary The first line of the text message that the creator of the
+    changeset entered to describe the changeset.
+
+The default output printed by “hg log” is purely a summary; it is
+missing a lot of detail.
+
+Figure [2.1][8] provides a graphical representation of the history of
+the hello repository, to make it a little easier to see which
+direction history is “flowing” in. We’ll be returning to this figure
+several times in this chapter and the chapter that follows.
 
 * * *
 
 ![PIC][9]   
 
-
 Figure 2.1: 
 Graphical history of the hello repository
 
@@ -198,20 +274,44 @@ Graphical history of the hello repository
 
 #### 2.4.1  Changesets, revisions, and talking to other people
 
-As English is a notoriously sloppy language, and computer science has a hallowed history of terminological confusion (why use one term when four will do?), revision control has a variety of words and phrases that mean the same thing. If you are talking about Mercurial history with other people, you will find that the word “changeset” is often compressed to “change” or (when written) “cset”, and sometimes a changeset is referred to as a “revision” or a “rev”. 
+As English is a notoriously sloppy language, and computer science has
+a hallowed history of terminological confusion (why use one term when
+four will do?), revision control has a variety of words and phrases
+that mean the same thing. If you are talking about Mercurial history
+with other people, you will find that the word “changeset” is often
+compressed to “change” or (when written) “cset”, and sometimes a
+changeset is referred to as a “revision” or a “rev”.
 
-While it doesn’t matter what word you use to refer to the concept of “a changeset”, the identifier that you use to refer to “a specific changeset” is of great importance. Recall that the changeset field in the output from “hg log” identifies a changeset using both a number and a hexadecimal string. 
+While it doesn’t matter what word you use to refer to the concept of
+“a changeset”, the identifier that you use to refer to “a specific
+changeset” is of great importance. Recall that the changeset field in
+the output from “hg log” identifies a changeset using both a number
+and a hexadecimal string.
 
   * The revision number is only valid in that repository, 
-  * while the hex string is the permanent, unchanging identifier that will always identify that exact changeset in every copy of the repository.
-
-This distinction is important. If you send someone an email talking about “revision 33”, there’s a high likelihood that their revision 33 will not be the same as yours. The reason for this is that a revision number depends on the order in which changes arrived in a repository, and there is no guarantee that the same changes will happen in the same order in different repositories. Three changes a,b,c can easily appear in one repository as 0,1,2, while in another as 1,0,2. 
-
-Mercurial uses revision numbers purely as a convenient shorthand. If you need to discuss a changeset with someone, or make a record of a changeset for some other reason (for example, in a bug report), use the hexadecimal identifier. 
+  * while the hex string is the permanent, unchanging identifier that
+    will always identify that exact changeset in every copy of the
+    repository.
+
+This distinction is important. If you send someone an email talking
+about “revision 33”, there’s a high likelihood that their revision 33
+will not be the same as yours. The reason for this is that a revision
+number depends on the order in which changes arrived in a repository,
+and there is no guarantee that the same changes will happen in the
+same order in different repositories. Three changes a,b,c can easily
+appear in one repository as 0,1,2, while in another as 1,0,2.
+
+Mercurial uses revision numbers purely as a convenient shorthand. If
+you need to discuss a changeset with someone, or make a record of a
+changeset for some other reason (for example, in a bug report), use
+the hexadecimal identifier.
 
 #### 2.4.2  Viewing specific revisions
 
-To narrow the output of “hg log” down to a single revision, use the -r (or --rev) option. You can use either a revision number or a long-form changeset identifier, and you can provide as many revisions as you want. 
+To narrow the output of “hg log” down to a single revision, use the -r
+(or --rev) option. You can use either a revision number or a long-form
+changeset identifier, and you can provide as many revisions as you
+want.
 
 1  $ hg log -r 3   
 2  changeset:   3:ff5d7b70a2a9   
@@ -238,7 +338,9 @@ To narrow the output of “hg log” down to a single revision, use the -r (or -
 23  summary:     Trim comments.   
 24  
 
-If you want to see the history of several revisions without having to list each one, you can use range notation; this lets you express the idea “I want all revisions between a and b, inclusive”. 
+If you want to see the history of several revisions without having to
+list each one, you can use range notation; this lets you express the
+idea “I want all revisions between a and b, inclusive”.
 
 1  $ hg log -r 2:4   
 2  changeset:   2:057d3c2d823c   
@@ -258,11 +360,17 @@ If you want to see the history of several revisions without having to list each
 16  summary:     Trim comments.   
 17  
 
-Mercurial also honours the order in which you specify revisions, so “hg log -r 2:4” prints 2,3,4 while “hg log -r 4:2” prints 4,3,2. 
+Mercurial also honours the order in which you specify revisions, so
+“hg log -r 2:4” prints 2,3,4 while “hg log -r 4:2” prints 4,3,2.
 
 #### 2.4.3  More detailed information
 
-While the summary information printed by “hg log” is useful if you already know what you’re looking for, you may need to see a complete description of the change, or a list of the files changed, if you’re trying to decide whether a changeset is the one you’re looking for. The “hg log” command’s -v (or --verbose) option gives you this extra detail. 
+While the summary information printed by “hg log” is useful if you
+already know what you’re looking for, you may need to see a complete
+description of the change, or a list of the files changed, if you’re
+trying to decide whether a changeset is the one you’re looking
+for. The “hg log” command’s -v (or --verbose) option gives you this
+extra detail.
 
 1  $ hg log -v -r 3   
 2  changeset:   3:ff5d7b70a2a9   
@@ -274,7 +382,10 @@ While the summary information printed by “hg log” is useful if you already k
 8     
 9  
 
-If you want to see both the description and content of a change, add the -p (or --patch) option. This displays the content of a change as a unified diff (if you’ve never seen a unified diff before, see section [12.4][10] for an overview). 
+If you want to see both the description and content of a change, add
+the -p (or --patch) option. This displays the content of a change as a
+unified diff (if you’ve never seen a unified diff before, see
+section [12.4][10] for an overview).
 
 1  $ hg log -v -p -r 2   
 2  changeset:   2:057d3c2d823c   
@@ -300,48 +411,89 @@ If you want to see both the description and content of a change, add the -p (or
 
 ### 2.5  All about command options
 
-Let’s take a brief break from exploring Mercurial commands to discuss a pattern in the way that they work; you may find this useful to keep in mind as we continue our tour. 
-
-Mercurial has a consistent and straightforward approach to dealing with the options that you can pass to commands. It follows the conventions for options that are common to modern Linux and Unix systems. 
-
-  * Every option has a long name. For example, as we’ve already seen, the “hg log” command accepts a --rev option. 
-  * Most options have short names, too. Instead of --rev, we can use -r. (The reason that some options don’t have short names is that the options in question are rarely used.) 
-  * Long options start with two dashes (e.g. --rev), while short options start with one (e.g. -r). 
-  * Option naming and usage is consistent across commands. For example, every command that lets you specify a changeset ID or revision number accepts both -r and --rev arguments.
-
-In the examples throughout this book, I use short options instead of long. This just reflects my own preference, so don’t read anything significant into it. 
-
-Most commands that print output of some kind will print more output when passed a -v (or --verbose) option, and less when passed -q (or --quiet). 
+Let’s take a brief break from exploring Mercurial commands to discuss
+a pattern in the way that they work; you may find this useful to keep
+in mind as we continue our tour.
+
+Mercurial has a consistent and straightforward approach to dealing
+with the options that you can pass to commands. It follows the
+conventions for options that are common to modern Linux and Unix
+systems.
+
+  * Every option has a long name. For example, as we’ve already seen,
+    the “hg log” command accepts a --rev option.
+  * Most options have short names, too. Instead of --rev, we can use
+    -r. (The reason that some options don’t have short names is that
+    the options in question are rarely used.)
+  * Long options start with two dashes (e.g. --rev), while short
+    options start with one (e.g. -r).
+  * Option naming and usage is consistent across commands. For
+    example, every command that lets you specify a changeset ID or
+    revision number accepts both -r and --rev arguments.
+
+In the examples throughout this book, I use short options instead of
+long. This just reflects my own preference, so don’t read anything
+significant into it.
+
+Most commands that print output of some kind will print more output
+when passed a -v (or --verbose) option, and less when passed -q (or
+--quiet).
 
 ### 2.6  Making and reviewing changes
 
-Now that we have a grasp of viewing history in Mercurial, let’s take a look at making some changes and examining them. 
+Now that we have a grasp of viewing history in Mercurial, let’s take a
+look at making some changes and examining them.
 
-The first thing we’ll do is isolate our experiment in a repository of its own. We use the “hg clone” command, but we don’t need to clone a copy of the remote repository. Since we already have a copy of it locally, we can just clone that instead. This is much faster than cloning over the network, and cloning a local repository uses less disk space in most cases, too. 
+The first thing we’ll do is isolate our experiment in a repository of
+its own. We use the “hg clone” command, but we don’t need to clone a
+copy of the remote repository. Since we already have a copy of it
+locally, we can just clone that instead. This is much faster than
+cloning over the network, and cloning a local repository uses less
+disk space in most cases, too.
 
 1  $ cd ..   
 2  $ hg clone hello my-hello   
 3  2 files updated, 0 files merged, 0 files removed, 0 files unresolved   
 4  $ cd my-hello
 
-As an aside, it’s often good practice to keep a “pristine” copy of a remote repository around, which you can then make temporary clones of to create sandboxes for each task you want to work on. This lets you work on multiple tasks in parallel, each isolated from the others until it’s complete and you’re ready to integrate it back. Because local clones are so cheap, there’s almost no overhead to cloning and destroying repositories whenever you want. 
-
-In our my-hello repository, we have a file hello.c that contains the classic “hello, world” program. Let’s use the ancient and venerable sed command to edit this file so that it prints a second line of output. (I’m only using sed to do this because it’s easy to write a scripted example this way. Since you’re not under the same constraint, you probably won’t want to use sed; simply use your preferred text editor to do the same thing.) 
+As an aside, it’s often good practice to keep a “pristine” copy of a
+remote repository around, which you can then make temporary clones of
+to create sandboxes for each task you want to work on. This lets you
+work on multiple tasks in parallel, each isolated from the others
+until it’s complete and you’re ready to integrate it back. Because
+local clones are so cheap, there’s almost no overhead to cloning and
+destroying repositories whenever you want.
+
+In our my-hello repository, we have a file hello.c that contains the
+classic “hello, world” program. Let’s use the ancient and venerable
+sed command to edit this file so that it prints a second line of
+output. (I’m only using sed to do this because it’s easy to write a
+scripted example this way. Since you’re not under the same constraint,
+you probably won’t want to use sed; simply use your preferred text
+editor to do the same thing.)
 
 1  $ sed -i '/printf/a∖∖tprintf("hello again!∖∖n");' hello.c
 
-Mercurial’s “hg status” command will tell us what Mercurial knows about the files in the repository. 
+Mercurial’s “hg status” command will tell us what Mercurial knows
+about the files in the repository.
 
 1  $ ls   
 2  Makefile  hello.c   
 3  $ hg status   
 4  M hello.c
 
-The “hg status” command prints no output for some files, but a line starting with “M” for hello.c. Unless you tell it to, “hg status” will not print any output for files that have not been modified. 
+The “hg status” command prints no output for some files, but a line
+starting with “M” for hello.c. Unless you tell it to, “hg status” will
+not print any output for files that have not been modified.
 
-The “M” indicates that Mercurial has noticed that we modified hello.c. We didn’t need to inform Mercurial that we were going to modify the file before we started, or that we had modified the file after we were done; it was able to figure this out itself. 
+The “M” indicates that Mercurial has noticed that we modified
+hello.c. We didn’t need to inform Mercurial that we were going to
+modify the file before we started, or that we had modified the file
+after we were done; it was able to figure this out itself.
 
-It’s a little bit helpful to know that we’ve modified hello.c, but we might prefer to know exactly what changes we’ve made to it. To do this, we use the “hg diff” command. 
+It’s a little bit helpful to know that we’ve modified hello.c, but we
+might prefer to know exactly what changes we’ve made to it. To do
+this, we use the “hg diff” command.
 
 1  $ hg diff   
 2  diff -r b57f9a090b62 hello.c   
@@ -357,75 +509,136 @@ It’s a little bit helpful to know that we’ve modified hello.c, but we might
 
 ### 2.7  Recording changes in a new changeset
 
-We can modify files, build and test our changes, and use “hg status” and “hg diff” to review our changes, until we’re satisfied with what we’ve done and arrive at a natural stopping point where we want to record our work in a new changeset. 
+We can modify files, build and test our changes, and use “hg status”
+and “hg diff” to review our changes, until we’re satisfied with what
+we’ve done and arrive at a natural stopping point where we want to
+record our work in a new changeset.
 
-The “hg commit” command lets us create a new changeset; we’ll usually refer to this as “making a commit” or “committing”. 
+The “hg commit” command lets us create a new changeset; we’ll usually
+refer to this as “making a commit” or “committing”.
 
 #### 2.7.1  Setting up a username
 
-When you try to run “hg commit” for the first time, it is not guaranteed to succeed. Mercurial records your name and address with each change that you commit, so that you and others will later be able to tell who made each change. Mercurial tries to automatically figure out a sensible username to commit the change with. It will attempt each of the following methods, in order: 
+When you try to run “hg commit” for the first time, it is not
+guaranteed to succeed. Mercurial records your name and address with
+each change that you commit, so that you and others will later be able
+to tell who made each change. Mercurial tries to automatically figure
+out a sensible username to commit the change with. It will attempt
+each of the following methods, in order:
 
-  1. If you specify a -u option to the “hg commit” command on the command line, followed by a username, this is always given the highest precedence. 
+  1. If you specify a -u option to the “hg commit” command on the
+     command line, followed by a username, this is always given the
+     highest precedence.
   2. If you have set the HGUSER environment variable, this is checked next. 
-  3. If you create a file in your home directory called .hgrc, with a username entry, that will be used next. To see what the contents of this file should look like, refer to section [2.7.1][11] below. 
-  4. If you have set the EMAIL environment variable, this will be used next. 
-  5. Mercurial will query your system to find out your local user name and host name, and construct a username from these components. Since this often results in a username that is not very useful, it will print a warning if it has to do this.
-
-If all of these mechanisms fail, Mercurial will fail, printing an error message. In this case, it will not let you commit until you set up a username. 
-
-You should think of the HGUSER environment variable and the -u option to the “hg commit” command as ways to override Mercurial’s default selection of username. For normal use, the simplest and most robust way to set a username for yourself is by creating a .hgrc file; see below for details. 
+  3. If you create a file in your home directory called .hgrc, with a
+     username entry, that will be used next. To see what the contents
+     of this file should look like, refer to section [2.7.1][11]
+     below.
+  4. If you have set the EMAIL environment variable, this will be used
+     next.
+  5. Mercurial will query your system to find out your local user name
+     and host name, and construct a username from these
+     components. Since this often results in a username that is not
+     very useful, it will print a warning if it has to do this.
+
+If all of these mechanisms fail, Mercurial will fail, printing an
+error message. In this case, it will not let you commit until you set
+up a username.
+
+You should think of the HGUSER environment variable and the -u option
+to the “hg commit” command as ways to override Mercurial’s default
+selection of username. For normal use, the simplest and most robust
+way to set a username for yourself is by creating a .hgrc file; see
+below for details.
 
 ##### Creating a Mercurial configuration file
 
-To set a user name, use your favourite editor to create a file called .hgrc in your home directory. Mercurial will use this file to look up your personalised configuration settings. The initial contents of your .hgrc should look like this. 
+To set a user name, use your favourite editor to create a file called
+.hgrc in your home directory. Mercurial will use this file to look up
+your personalised configuration settings. The initial contents of your
+.hgrc should look like this.
 
 1  # This is a Mercurial configuration file.   
 2  [ui]   
 3  username = Firstname Lastname <email.address@domain.net>
 
-The “[ui]” line begins a section of the config file, so you can read the “username = ...” line as meaning “set the value of the username item in the ui section”. A section continues until a new section begins, or the end of the file. Mercurial ignores empty lines and treats any text from “#” to the end of a line as a comment. 
+The “[ui]” line begins a section of the config file, so you can read
+the “username = ...” line as meaning “set the value of the username
+item in the ui section”. A section continues until a new section
+begins, or the end of the file. Mercurial ignores empty lines and
+treats any text from “#” to the end of a line as a comment.
 
 ##### Choosing a user name
 
-You can use any text you like as the value of the username config item, since this information is for reading by other people, but for interpreting by Mercurial. The convention that most people follow is to use their name and email address, as in the example above. 
+You can use any text you like as the value of the username config
+item, since this information is for reading by other people, but for
+interpreting by Mercurial. The convention that most people follow is
+to use their name and email address, as in the example above.
 
-Note: Mercurial’s built-in web server obfuscates email addresses, to make it more difficult for the email harvesting tools that spammers use. This reduces the likelihood that you’ll start receiving more junk email if you publish a Mercurial repository on the web. 
+Note: Mercurial’s built-in web server obfuscates email addresses, to
+make it more difficult for the email harvesting tools that spammers
+use. This reduces the likelihood that you’ll start receiving more junk
+email if you publish a Mercurial repository on the web.
 
 #### 2.7.2  Writing a commit message
 
-When we commit a change, Mercurial drops us into a text editor, to enter a message that will describe the modifications we’ve made in this changeset. This is called the commit message. It will be a record for readers of what we did and why, and it will be printed by “hg log” after we’ve finished committing. 
+When we commit a change, Mercurial drops us into a text editor, to
+enter a message that will describe the modifications we’ve made in
+this changeset. This is called the commit message. It will be a record
+for readers of what we did and why, and it will be printed by “hg log”
+after we’ve finished committing.
 
 1  $ hg commit
 
-The editor that the “hg commit” command drops us into will contain an empty line, followed by a number of lines starting with “HG:”. 
+The editor that the “hg commit” command drops us into will contain an
+empty line, followed by a number of lines starting with “HG:”.
 
 1  empty line   
 2  HG: changed hello.c
 
-Mercurial ignores the lines that start with “HG:”; it uses them only to tell us which files it’s recording changes to. Modifying or deleting these lines has no effect. 
+Mercurial ignores the lines that start with “HG:”; it uses them only
+to tell us which files it’s recording changes to. Modifying or
+deleting these lines has no effect.
 
 #### 2.7.3  Writing a good commit message
 
-Since “hg log” only prints the first line of a commit message by default, it’s best to write a commit message whose first line stands alone. Here’s a real example of a commit message that doesn’t follow this guideline, and hence has a summary that is not readable. 
+Since “hg log” only prints the first line of a commit message by
+default, it’s best to write a commit message whose first line stands
+alone. Here’s a real example of a commit message that doesn’t follow
+this guideline, and hence has a summary that is not readable.
 
 1  changeset:   73:584af0e231be   
 2  user:        Censored Person <censored.person@example.org>   
 3  date:        Tue Sep 26 21:37:07 2006 -0700   
 4  summary:     include buildmeister/commondefs.   Add an exports and install
 
-As far as the remainder of the contents of the commit message are concerned, there are no hard-and-fast rules. Mercurial itself doesn’t interpret or care about the contents of the commit message, though your project may have policies that dictate a certain kind of formatting. 
+As far as the remainder of the contents of the commit message are
+concerned, there are no hard-and-fast rules. Mercurial itself doesn’t
+interpret or care about the contents of the commit message, though
+your project may have policies that dictate a certain kind of
+formatting.
 
-My personal preference is for short, but informative, commit messages that tell me something that I can’t figure out with a quick glance at the output of “hg log --patch”. 
+My personal preference is for short, but informative, commit messages
+that tell me something that I can’t figure out with a quick glance at
+the output of “hg log --patch”.
 
 #### 2.7.4  Aborting a commit
 
-If you decide that you don’t want to commit while in the middle of editing a commit message, simply exit from your editor without saving the file that it’s editing. This will cause nothing to happen to either the repository or the working directory. 
+If you decide that you don’t want to commit while in the middle of
+editing a commit message, simply exit from your editor without saving
+the file that it’s editing. This will cause nothing to happen to
+either the repository or the working directory.
 
-If we run the “hg commit” command without any arguments, it records all of the changes we’ve made, as reported by “hg status” and “hg diff”. 
+If we run the “hg commit” command without any arguments, it records
+all of the changes we’ve made, as reported by “hg status” and “hg
+diff”.
 
 #### 2.7.5  Admiring our new handiwork
 
-Once we’ve finished the commit, we can use the “hg tip” command to display the changeset we just created. This command produces output that is identical to “hg log”, but it only displays the newest revision in the repository. 
+Once we’ve finished the commit, we can use the “hg tip” command to
+display the changeset we just created. This command produces output
+that is identical to “hg log”, but it only displays the newest
+revision in the repository.
 
 1  $ hg tip -vp   
 2  changeset:   5:fa1321bf0c80   
@@ -449,21 +662,31 @@ Once we’ve finished the commit, we can use the “hg tip” command to display
 20   }   
 21  
 
-We refer to the newest revision in the repository as the tip revision, or simply the tip. 
+We refer to the newest revision in the repository as the tip revision,
+or simply the tip.
 
 ### 2.8  Sharing changes
 
-We mentioned earlier that repositories in Mercurial are self-contained. This means that the changeset we just created exists only in our my-hello repository. Let’s look at a few ways that we can propagate this change into other repositories. 
+We mentioned earlier that repositories in Mercurial are
+self-contained. This means that the changeset we just created exists
+only in our my-hello repository. Let’s look at a few ways that we can
+propagate this change into other repositories.
 
 #### 2.8.1  Pulling changes from another repository
 
-To get started, let’s clone our original hello repository, which does not contain the change we just committed. We’ll call our temporary repository hello-pull. 
+To get started, let’s clone our original hello repository, which does
+not contain the change we just committed. We’ll call our temporary
+repository hello-pull.
 
 1  $ cd ..   
 2  $ hg clone hello hello-pull   
 3  2 files updated, 0 files merged, 0 files removed, 0 files unresolved
 
-We’ll use the “hg pull” command to bring changes from my-hello into hello-pull. However, blindly pulling unknown changes into a repository is a somewhat scary prospect. Mercurial provides the “hg incoming” command to tell us what changes the “hg pull” command would pull into the repository, without actually pulling the changes in. 
+We’ll use the “hg pull” command to bring changes from my-hello into
+hello-pull. However, blindly pulling unknown changes into a repository
+is a somewhat scary prospect. Mercurial provides the “hg incoming”
+command to tell us what changes the “hg pull” command would pull into
+the repository, without actually pulling the changes in.
 
 1  $ cd hello-pull   
 2  $ hg incoming ../my-hello   
@@ -476,9 +699,13 @@ We’ll use the “hg pull” command to bring changes from my-hello into hello-
 9  summary:     Added an extra line of output   
 10  
 
-(Of course, someone could cause more changesets to appear in the repository that we ran “hg incoming” in, before we get a chance to “hg pull” the changes, so that we could end up pulling changes that we didn’t expect.) 
+(Of course, someone could cause more changesets to appear in the
+repository that we ran “hg incoming” in, before we get a chance to “hg
+pull” the changes, so that we could end up pulling changes that we
+didn’t expect.)
 
-Bringing changes into a repository is a simple matter of running the “hg pull” command, and telling it which repository to pull from. 
+Bringing changes into a repository is a simple matter of running the
+“hg pull” command, and telling it which repository to pull from.
 
 1  $ hg tip   
 2  changeset:   4:b57f9a090b62   
@@ -503,11 +730,18 @@ Bringing changes into a repository is a simple matter of running the “hg pull
 21  summary:     Added an extra line of output   
 22  
 
-As you can see from the before-and-after output of “hg tip”, we have successfully pulled changes into our repository. There remains one step before we can see these changes in the working directory. 
+As you can see from the before-and-after output of “hg tip”, we have
+successfully pulled changes into our repository. There remains one
+step before we can see these changes in the working directory.
 
 #### 2.8.2  Updating the working directory
 
-We have so far glossed over the relationship between a repository and its working directory. The “hg pull” command that we ran in section [2.8.1][12] brought changes into the repository, but if we check, there’s no sign of those changes in the working directory. This is because “hg pull” does not (by default) touch the working directory. Instead, we use the “hg update” command to do this. 
+We have so far glossed over the relationship between a repository and
+its working directory. The “hg pull” command that we ran in
+section [2.8.1][12] brought changes into the repository, but if we
+check, there’s no sign of those changes in the working directory. This
+is because “hg pull” does not (by default) touch the working
+directory. Instead, we use the “hg update” command to do this.
 
 1  $ grep printf hello.c   
 2   printf("hello, world!∖");   
@@ -517,17 +751,30 @@ We have so far glossed over the relationship between a repository and its workin
 6   printf("hello, world!∖");   
 7   printf("hello again!∖n");
 
-It might seem a bit strange that “hg pull” doesn’t update the working directory automatically. There’s actually a good reason for this: you can use “hg update” to update the working directory to the state it was in at any revision in the history of the repository. If you had the working directory updated to an old revision—to hunt down the origin of a bug, say—and ran a “hg pull” which automatically updated the working directory to a new revision, you might not be terribly happy. 
+It might seem a bit strange that “hg pull” doesn’t update the working
+directory automatically. There’s actually a good reason for this: you
+can use “hg update” to update the working directory to the state it
+was in at any revision in the history of the repository. If you had
+the working directory updated to an old revision—to hunt down the
+origin of a bug, say—and ran a “hg pull” which automatically updated
+the working directory to a new revision, you might not be terribly
+happy.
 
-However, since pull-then-update is such a common thing to do, Mercurial lets you combine the two by passing the -u option to “hg pull”. 
+However, since pull-then-update is such a common thing to do,
+Mercurial lets you combine the two by passing the -u option to “hg
+pull”.
 
 1  hg pull -u
 
-If you look back at the output of “hg pull” in section [2.8.1][12] when we ran it without -u, you can see that it printed a helpful reminder that we’d have to take an explicit step to update the working directory: 
+If you look back at the output of “hg pull” in section [2.8.1][12]
+when we ran it without -u, you can see that it printed a helpful
+reminder that we’d have to take an explicit step to update the working
+directory:
 
 1  (run 'hg update' to get a working copy)
 
-To find out what revision the working directory is at, use the “hg parents” command. 
+To find out what revision the working directory is at, use the “hg
+parents” command.
 
 1  $ hg parents   
 2  changeset:   5:fa1321bf0c80   
@@ -537,9 +784,14 @@ To find out what revision the working directory is at, use the “hg parents”
 6  summary:     Added an extra line of output   
 7  
 
-If you look back at figure [2.1][8], you’ll see arrows connecting each changeset. The node that the arrow leads from in each case is a parent, and the node that the arrow leads to is its child. The working directory has a parent in just the same way; this is the changeset that the working directory currently contains. 
+If you look back at figure [2.1][8], you’ll see arrows connecting each
+changeset. The node that the arrow leads from in each case is a
+parent, and the node that the arrow leads to is its child. The working
+directory has a parent in just the same way; this is the changeset
+that the working directory currently contains.
 
-To update the working directory to a particular revision, give a revision number or changeset ID to the “hg update” command. 
+To update the working directory to a particular revision, give a
+revision number or changeset ID to the “hg update” command.
 
 1  $ hg update 2   
 2  2 files updated, 0 files merged, 0 files removed, 0 files unresolved   
@@ -552,17 +804,22 @@ To update the working directory to a particular revision, give a revision number
 9  $ hg update   
 10  2 files updated, 0 files merged, 0 files removed, 0 files unresolved
 
-If you omit an explicit revision, “hg update” will update to the tip revision, as shown by the second call to “hg update” in the example above. 
+If you omit an explicit revision, “hg update” will update to the tip
+revision, as shown by the second call to “hg update” in the example
+above.
 
 #### 2.8.3  Pushing changes to another repository
 
-Mercurial lets us push changes to another repository, from the repository we’re currently visiting. As with the example of “hg pull” above, we’ll create a temporary repository to push our changes into. 
+Mercurial lets us push changes to another repository, from the
+repository we’re currently visiting. As with the example of “hg pull”
+above, we’ll create a temporary repository to push our changes into.
 
 1  $ cd ..   
 2  $ hg clone hello hello-push   
 3  2 files updated, 0 files merged, 0 files removed, 0 files unresolved
 
-The “hg outgoing” command tells us what changes would be pushed into another repository. 
+The “hg outgoing” command tells us what changes would be pushed into
+another repository.
 
 1  $ cd my-hello   
 2  $ hg outgoing ../hello-push   
@@ -585,9 +842,13 @@ And the “hg push” command does the actual push.
 6  adding file changes   
 7  added 1 changesets with 1 changes to 1 files
 
-As with “hg pull”, the “hg push” command does not update the working directory in the repository that it’s pushing changes into. (Unlike “hg pull”, “hg push” does not provide a -u option that updates the other repository’s working directory.) 
+As with “hg pull”, the “hg push” command does not update the working
+directory in the repository that it’s pushing changes into. (Unlike
+“hg pull”, “hg push” does not provide a -u option that updates the
+other repository’s working directory.)
 
-What happens if we try to pull or push changes and the receiving repository already has those changes? Nothing too exciting. 
+What happens if we try to pull or push changes and the receiving
+repository already has those changes? Nothing too exciting.
 
 1  $ hg push ../hello-push   
 2  pushing to ../hello-push   
@@ -596,7 +857,10 @@ What happens if we try to pull or push changes and the receiving repository alre
 
 #### 2.8.4  Sharing changes over a network
 
-The commands we have covered in the previous few sections are not limited to working with local repositories. Each works in exactly the same fashion over a network connection; simply pass in a URL instead of a local path. 
+The commands we have covered in the previous few sections are not
+limited to working with local repositories. Each works in exactly the
+same fashion over a network connection; simply pass in a URL instead
+of a local path.
 
 1  $ hg outgoing http://hg.serpentine.com/tutorial/hello   
 2  comparing with http://hg.serpentine.com/tutorial/hello   
@@ -608,7 +872,9 @@ The commands we have covered in the previous few sections are not limited to wor
 8  summary:     Added an extra line of output   
 9  
 
-In this example, we can see what changes we could push to the remote repository, but the repository is understandably not set up to let anonymous users push to it. 
+In this example, we can see what changes we could push to the remote
+repository, but the repository is understandably not set up to let
+anonymous users push to it.
 
 1  $ hg push http://hg.serpentine.com/tutorial/hello   
 2  pushing to http://hg.serpentine.com/tutorial/hello   
@@ -636,59 +902,119 @@ Version 1.0, 8 June 1999
 
 ### D.1  Requirements on both unmodified and modified versions
 
-The Open Publication works may be reproduced and distributed in whole or in part, in any medium physical or electronic, provided that the terms of this license are adhered to, and that this license or an incorporation of it by reference (with any options elected by the author(s) and/or publisher) is displayed in the reproduction. 
+The Open Publication works may be reproduced and distributed in whole
+or in part, in any medium physical or electronic, provided that the
+terms of this license are adhered to, and that this license or an
+incorporation of it by reference (with any options elected by the
+author(s) and/or publisher) is displayed in the reproduction.
 
 Proper form for an incorporation by reference is as follows: 
 
-Copyright (c) year by author’s name or designee. This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, vx.y or later (the latest version is presently available at [http://www.opencontent.org/openpub/][http://www.opencontent.org/openpub/]).
+Copyright (c) year by author’s name or designee. This material may be
+distributed only subject to the terms and conditions set forth in the
+Open Publication License, vx.y or later (the latest version is
+presently available at
+[http://www.opencontent.org/openpub/][http://www.opencontent.org/openpub/]).
 
-The reference must be immediately followed with any options elected by the author(s) and/or publisher of the document (see section D.6). 
+The reference must be immediately followed with any options elected by
+the author(s) and/or publisher of the document (see section D.6).
 
-Commercial redistribution of Open Publication-licensed material is permitted. 
+Commercial redistribution of Open Publication-licensed material is
+permitted.
 
-Any publication in standard (paper) book form shall require the citation of the original publisher and author. The publisher and author’s names shall appear on all outer surfaces of the book. On all outer surfaces of the book the original publisher’s name shall be as large as the title of the work and cited as possessive with respect to the title. 
+Any publication in standard (paper) book form shall require the
+citation of the original publisher and author. The publisher and
+author’s names shall appear on all outer surfaces of the book. On all
+outer surfaces of the book the original publisher’s name shall be as
+large as the title of the work and cited as possessive with respect to
+the title.
 
 ### D.2  Copyright
 
-The copyright to each Open Publication is owned by its author(s) or designee. 
+The copyright to each Open Publication is owned by its author(s) or
+designee.
 
 ### D.3  Scope of license
 
-The following license terms apply to all Open Publication works, unless otherwise explicitly stated in the document. 
+The following license terms apply to all Open Publication works,
+unless otherwise explicitly stated in the document.
 
-Mere aggregation of Open Publication works or a portion of an Open Publication work with other works or programs on the same media shall not cause this license to apply to those other works. The aggregate work shall contain a notice specifying the inclusion of the Open Publication material and appropriate copyright notice. 
+Mere aggregation of Open Publication works or a portion of an Open
+Publication work with other works or programs on the same media shall
+not cause this license to apply to those other works. The aggregate
+work shall contain a notice specifying the inclusion of the Open
+Publication material and appropriate copyright notice.
 
-Severability. If any part of this license is found to be unenforceable in any jurisdiction, the remaining portions of the license remain in force. 
+Severability. If any part of this license is found to be unenforceable
+in any jurisdiction, the remaining portions of the license remain in
+force.
 
-No warranty. Open Publication works are licensed and provided “as is” without warranty of any kind, express or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose or a warranty of non-infringement. 
+No warranty. Open Publication works are licensed and provided “as is”
+without warranty of any kind, express or implied, including, but not
+limited to, the implied warranties of merchantability and fitness for
+a particular purpose or a warranty of non-infringement.
 
 ### D.4  Requirements on modified works
 
-All modified versions of documents covered by this license, including translations, anthologies, compilations and partial documents, must meet the following requirements: 
+All modified versions of documents covered by this license, including
+translations, anthologies, compilations and partial documents, must
+meet the following requirements:
 
   1. The modified version must be labeled as such. 
-  2. The person making the modifications must be identified and the modifications dated. 
-  3. Acknowledgement of the original author and publisher if applicable must be retained according to normal academic citation practices. 
+  2. The person making the modifications must be identified and the
+     modifications dated.
+  3. Acknowledgement of the original author and publisher if
+     applicable must be retained according to normal academic citation
+     practices.
   4. The location of the original unmodified document must be identified. 
-  5. The original author’s (or authors’) name(s) may not be used to assert or imply endorsement of the resulting document without the original author’s (or authors’) permission.
+  5. The original author’s (or authors’) name(s) may not be used to
+     assert or imply endorsement of the resulting document without the
+     original author’s (or authors’) permission.
 
 ### D.5  Good-practice recommendations
 
-In addition to the requirements of this license, it is requested from and strongly recommended of redistributors that: 
-
-  1. If you are distributing Open Publication works on hardcopy or CD-ROM, you provide email notification to the authors of your intent to redistribute at least thirty days before your manuscript or media freeze, to give the authors time to provide updated documents. This notification should describe modifications, if any, made to the document. 
-  2. All substantive modifications (including deletions) be either clearly marked up in the document or else described in an attachment to the document. 
-  3. Finally, while it is not mandatory under this license, it is considered good form to offer a free copy of any hardcopy and CD-ROM expression of an Open Publication-licensed work to its author(s).
+In addition to the requirements of this license, it is requested from
+and strongly recommended of redistributors that:
+
+  1. If you are distributing Open Publication works on hardcopy or
+     CD-ROM, you provide email notification to the authors of your
+     intent to redistribute at least thirty days before your
+     manuscript or media freeze, to give the authors time to provide
+     updated documents. This notification should describe
+     modifications, if any, made to the document.
+  2. All substantive modifications (including deletions) be either
+     clearly marked up in the document or else described in an
+     attachment to the document.
+  3. Finally, while it is not mandatory under this license, it is
+     considered good form to offer a free copy of any hardcopy and
+     CD-ROM expression of an Open Publication-licensed work to its
+     author(s).
 
 ### D.6  License options
 
-The author(s) and/or publisher of an Open Publication-licensed document may elect certain options by appending language to the reference to or copy of the license. These options are considered part of the license instance and must be included with the license (or its incorporation by reference) in derived works. 
-
-  1. To prohibit distribution of substantively modified versions without the explicit permission of the author(s). “Substantive modification” is defined as a change to the semantic content of the document, and excludes mere changes in format or typographical corrections. 
-
-To accomplish this, add the phrase “Distribution of substantively modified versions of this document is prohibited without the explicit permission of the copyright holder.” to the license reference or copy. 
-
-  2. To prohibit any publication of this work or derivative works in whole or in part in standard (paper) book form for commercial purposes is prohibited unless prior permission is obtained from the copyright holder. 
-
-To accomplish this, add the phrase “Distribution of the work or derivative of the work in any standard (paper) book form is prohibited unless prior permission is obtained from the copyright holder.” to the license reference or copy.
-
+The author(s) and/or publisher of an Open Publication-licensed
+document may elect certain options by appending language to the
+reference to or copy of the license. These options are considered part
+of the license instance and must be included with the license (or its
+incorporation by reference) in derived works.
+
+  1. To prohibit distribution of substantively modified versions
+     without the explicit permission of the author(s). “Substantive
+     modification” is defined as a change to the semantic content of
+     the document, and excludes mere changes in format or
+     typographical corrections.
+
+     To accomplish this, add the phrase “Distribution of substantively
+     modified versions of this document is prohibited without the
+     explicit permission of the copyright holder.” to the license
+     reference or copy.
+
+  2. To prohibit any publication of this work or derivative works in
+     whole or in part in standard (paper) book form for commercial
+     purposes is prohibited unless prior permission is obtained from
+     the copyright holder.
+
+     To accomplish this, add the phrase “Distribution of the work or
+     derivative of the work in any standard (paper) book form is
+     prohibited unless prior permission is obtained from the copyright
+     holder.” to the license reference or copy.