[Checkins] SVN: zc.buildout/trunk/ Whitespace, formatting and spelling.

Brian Sutherland jinty at web.de
Wed Nov 1 09:29:35 EST 2006


Log message for revision 71017:
  Whitespace, formatting and spelling.

Changed:
  U   zc.buildout/trunk/README.txt
  U   zc.buildout/trunk/zc.recipe.egg_/src/zc/recipe/egg/README.txt

-=-
Modified: zc.buildout/trunk/README.txt
===================================================================
--- zc.buildout/trunk/README.txt	2006-10-31 18:40:40 UTC (rev 71016)
+++ zc.buildout/trunk/README.txt	2006-11-01 14:29:33 UTC (rev 71017)
@@ -17,7 +17,7 @@
 buildout" is the collection of configuration and application-specific
 software that allows an instance of the application to be created.  We
 may refer to such an instance of the application informally as "a Foo
-buildout".  
+buildout".
 
 To get a feel for some of the things you might use buildouts for, see
 the `Buildout examples`_.
@@ -110,7 +110,7 @@
 I use the develop option to create a develop egg based on the current
 directory.  I request a test script named "test" using the
 zc.recipe.testrunner recipe.  In the section for the test script, I
-specify that I want to run the tests in the zc.ngi package.  
+specify that I want to run the tests in the zc.ngi package.
 
 When I check out this project into a new sandbox, I run bootstrap.py
 to get setuptools and zc.buildout and create bin/buildout.  I run
@@ -140,7 +140,7 @@
 whwre foo and bar are packages with scripts that I want available.  As
 I need new scripts, I can add additional sections.  The bin-directory
 option specified that scripts should be installed into the current
-directory. 
+directory.
 
 Multi-program multi-machine systems
 ===================================
@@ -161,7 +161,7 @@
 
 - Multiple test runners
 
-- Multiple deployment modes, including dev, stage, and prod, 
+- Multiple deployment modes, including dev, stage, and prod,
   with prod deployment over multiple servers
 
 Parts installed include:
@@ -179,7 +179,7 @@
 Questions and Bug Reporting
 ***************************
 
-Please send questions and comments to the  
+Please send questions and comments to the
 `distutils SIG mailing list <mailto://distutils-sig@python.org>`_.
 
 Report bugs using the `zc.buildout Launchpad Bug Tracker

Modified: zc.buildout/trunk/zc.recipe.egg_/src/zc/recipe/egg/README.txt
===================================================================
--- zc.buildout/trunk/zc.recipe.egg_/src/zc/recipe/egg/README.txt	2006-10-31 18:40:40 UTC (rev 71016)
+++ zc.buildout/trunk/zc.recipe.egg_/src/zc/recipe/egg/README.txt	2006-11-01 14:29:33 UTC (rev 71017)
@@ -5,7 +5,7 @@
 distutils distributions as eggs.  It takes a number of options:
 
 eggs
-    A list of eggs to install given as one ore more setuptools
+    A list of eggs to install given as one or more setuptools
     requirement strings.  Each string must be given on a separate
     line.
 
@@ -20,14 +20,14 @@
    alternate index with this option.  If you use the links option and
    if the links point to the needed distributions, then the index can
    be anything and will be largely ignored.  In the examples, here,
-   we'll just point to an empty directory on our link server.  This 
+   we'll just point to an empty directory on our link server.  This
    will make our examples run a little bit faster.
 
 python
    The name of a section to get the Python executable from.
    If not specified, then the buildout python option is used.  The
    Python executable is found in the executable option of the named
-   section. 
+   section.
 
 entry-points
    A list of entry-point identifiers of the form name=module#attrs,
@@ -67,7 +67,7 @@
 
 
 We have a sample buildout.  Let's update it's configuration file to
-install the demo package. 
+install the demo package.
 
     >>> write(sample_buildout, 'buildout.cfg',
     ... """
@@ -95,7 +95,7 @@
     zc.buildout.easy_install: Got demo 0.2
     zc.buildout.easy_install: Getting new distribution for demoneeded
     zc.buildout.easy_install: Got demoneeded 1.1
-    
+
 Now, if we look at the buildout eggs directory:
 
     >>> ls(sample_buildout, 'eggs')
@@ -105,7 +105,7 @@
     -  zc.buildout-1.0-py2.3.egg
 
 We see that we got an egg for demo that met the requirement, as well
-as the egg for demoneeded, wich demo requires.  (We also see an egg
+as the egg for demoneeded, which demo requires.  (We also see an egg
 link for the recipe.  This egg link was actually created as part of
 the sample buildout setup. Normally, when using the recipe, you'll get
 a regular egg installation.)
@@ -276,7 +276,7 @@
     ... find-links = %(server)s
     ... index = %(server)s/index
     ... scripts = demo=foo
-    ... extra-paths = 
+    ... extra-paths =
     ...    /foo/bar
     ...    /spam/eggs
     ... """ % dict(server=link_server))
@@ -306,10 +306,9 @@
 Specifying entry points
 -----------------------
 
-Scripts can be generated for entry points declared explcitly.  We can
-declate entry points using the entry-points option:
+Scripts can be generated for entry points declared explicitly.  We can
+declare entry points using the entry-points option:
 
-
     >>> write(sample_buildout, 'buildout.cfg',
     ... """
     ... [buildout]
@@ -319,7 +318,7 @@
     ... recipe = zc.recipe.egg
     ... find-links = %(server)s
     ... index = %(server)s/index
-    ... extra-paths = 
+    ... extra-paths =
     ...    /foo/bar
     ...    /spam/eggs
     ... entry-points = alt=eggrecipedemo:alt other=foo.bar:a.b.c



More information about the Checkins mailing list