# HG changeset patch
# User Giulio@puck
# Date 1249934589 -7200
# Node ID c09a6231bc79a948c814f908619c63a21a9d9764
# Parent  0bf0bf61493e085ef3f3bed04eb3edc9dc3a2e84
Added code snippets I left behind from Ch.2.

diff -r 0bf0bf61493e -r c09a6231bc79 it/examples/auto-snippets.xml
--- a/it/examples/auto-snippets.xml	Mon Aug 10 21:59:18 2009 +0200
+++ b/it/examples/auto-snippets.xml	Mon Aug 10 22:03:09 2009 +0200
@@ -232,7 +232,7 @@
 <!ENTITY interaction.tour.clone SYSTEM "tour.clone.it">
 <!ENTITY interaction.tour.clone-pull SYSTEM "tour.clone-pull.it">
 <!ENTITY interaction.tour.clone-push SYSTEM "tour.clone-push.it">
-<!ENTITY interaction.tour.commit SYSTEM "results/tour.commit.lxo">
+<!ENTITY interaction.tour.commit SYSTEM "tour.commit.it">
 <!ENTITY interaction.tour.diff SYSTEM "tour.diff.it">
 <!ENTITY interaction.tour.help SYSTEM "tour.help.it">
 <!ENTITY interaction.tour.incoming SYSTEM "tour.incoming.it">
@@ -242,7 +242,7 @@
 <!ENTITY interaction.tour.log-vp SYSTEM "tour.log-vp.it">
 <!ENTITY interaction.tour.log.range SYSTEM "tour.log.range.it">
 <!ENTITY interaction.tour.ls SYSTEM "tour.ls.it">
-<!ENTITY interaction.tour.ls-a SYSTEM "results/tour.ls-a.lxo">
+<!ENTITY interaction.tour.ls-a SYSTEM "tour.ls-a.it">
 <!ENTITY interaction.tour.lxogoing SYSTEM "results/tour.lxogoing.lxo">
 <!ENTITY interaction.tour.lxogoing.net SYSTEM "results/tour.lxogoing.net.lxo">
 <!ENTITY interaction.tour.merge.cat SYSTEM "results/tour.merge.cat.lxo">
@@ -270,7 +270,7 @@
 <!ENTITY interaction.tour.push.nothing SYSTEM "tour.push.nothing.it">
 <!ENTITY interaction.tour.reclone SYSTEM "tour.reclone.it">
 <!ENTITY interaction.tour.sed SYSTEM "results/tour.sed.lxo">
-<!ENTITY interaction.tour.status SYSTEM "results/tour.status.lxo">
+<!ENTITY interaction.tour.status SYSTEM "tour.status.it">
 <!ENTITY interaction.tour.tip SYSTEM "tour.tip.it">
 <!ENTITY interaction.tour.update SYSTEM "tour.update.it">
 <!ENTITY interaction.tour.version SYSTEM "tour.version.it">
diff -r 0bf0bf61493e -r c09a6231bc79 it/examples/tour.commit.it
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/it/examples/tour.commit.it	Mon Aug 10 22:03:09 2009 +0200
@@ -0,0 +1,4 @@
+<!-- BEGIN tour.commit -->
+<screen><prompt>$</prompt> <userinput>hg commit</userinput>
+</screen>
+<!-- END tour.commit -->
diff -r 0bf0bf61493e -r c09a6231bc79 it/examples/tour.ls-a.it
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/it/examples/tour.ls-a.it	Mon Aug 10 22:03:09 2009 +0200
@@ -0,0 +1,6 @@
+<!-- BEGIN tour.ls-a -->
+<screen><prompt>$</prompt> <userinput>cd hello</userinput>
+<prompt>$</prompt> <userinput>ls -a</userinput>
+.  ..  .hg  Makefile  hello.c
+</screen>
+<!-- END tour.ls-a -->
diff -r 0bf0bf61493e -r c09a6231bc79 it/examples/tour.status.it
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/it/examples/tour.status.it	Mon Aug 10 22:03:09 2009 +0200
@@ -0,0 +1,7 @@
+<!-- BEGIN tour.status -->
+<screen><prompt>$</prompt> <userinput>ls</userinput>
+Makefile  hello.c
+<prompt>$</prompt> <userinput>hg status</userinput>
+M hello.c
+</screen>
+<!-- END tour.status -->