[Checkins] SVN: bluebream/website/docs/v1.0/ Spelling.

Chris McDonough chrism at plope.com
Wed Jan 20 22:08:57 EST 2010


Log message for revision 108345:
  Spelling.
  

Changed:
  U   bluebream/website/docs/v1.0/concepts.rst
  U   bluebream/website/docs/v1.0/faq.rst
  U   bluebream/website/docs/v1.0/gettingstarted.rst
  U   bluebream/website/docs/v1.0/glossary.rst
  U   bluebream/website/docs/v1.0/howto/defaultview.rst
  U   bluebream/website/docs/v1.0/tutorial1.rst

-=-
Modified: bluebream/website/docs/v1.0/concepts.rst
===================================================================
--- bluebream/website/docs/v1.0/concepts.rst	2010-01-21 01:23:38 UTC (rev 108344)
+++ bluebream/website/docs/v1.0/concepts.rst	2010-01-21 03:08:52 UTC (rev 108345)
@@ -38,7 +38,7 @@
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 The main idea in the Zope Component Architecture is the use of
-components, rather than multiple-inheritence for managing complexity.
+components, rather than multiple-inheritance for managing complexity.
 
 Zope Component Architecture is about how to create reusable
 components, but not reusable components itself.
@@ -60,7 +60,7 @@
 They are used to extend processing by providing processing plug
 points.
 
-Adpater
+Adapter
 ~~~~~~~
 
 Adapter takes the Interface of an existing component and adapts it to
@@ -128,7 +128,7 @@
 The Zope Object Database provides an object-oriented database for
 Python that provides a high-degree of transparency.  Applications can
 take advantage of object database features with few, if any, changes
-to application logic.  ZODB includes features such as a plugable
+to application logic.  ZODB includes features such as a pluggable
 storage interface, rich transaction support, and undo.
 
 WSGI

Modified: bluebream/website/docs/v1.0/faq.rst
===================================================================
--- bluebream/website/docs/v1.0/faq.rst	2010-01-21 01:23:38 UTC (rev 108344)
+++ bluebream/website/docs/v1.0/faq.rst	2010-01-21 03:08:52 UTC (rev 108345)
@@ -349,7 +349,7 @@
   instance URL=http://localhost:9060/@@login.html>, <InterfaceClass 
   zope.authentication.interfaces.ILoginPassword>)
 
-You need to inlcude ``zope.login`` package in your ZCML configuration
+You need to include ``zope.login`` package in your ZCML configuration
 file (``site.zcml``) as the adapter registration is available there::
 
    <include package="zope.login" />
@@ -372,7 +372,7 @@
 and clear doctests. It takes not too much time to get up and running
 with them.  However the packages do not include an example of how to
 configure your new useful code into your project. It is clear from the
-doctests (and from your own doctests writen while making and testing
+doctests (and from your own doctests written while making and testing
 your own code) **what** needs to be configured. But if you are like me
 and it all isn't yet quite second-nature, it isn't clear **how** it
 can be configured. So, for z3c.traverser::
@@ -658,7 +658,7 @@
   >>> IPerson.validateInvariants(jill)
   Traceback (most recent call last):
   ...
-  Exception: At least one contact info is rquired
+  Exception: At least one contact info is required
 
 How do I get the parent of location?
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -865,7 +865,7 @@
 
 Look at schema.xml inside zope.app.appsetup egg
 And this xml file can point you to rest of the syntax.
-for details about <zodb> look for component.xml in ZOBD egg
+for details about <zodb> look for component.xml in ZODB egg
 
 How do I register a browser resource in a test?
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -935,7 +935,7 @@
 and clear doctests. It takes not too much time to get up and running
 with them.  However the packages do not include an example of how to
 configure your new useful code into your project. It is clear from the
-doctests (and from your own doctests writen while making and testing
+doctests (and from your own doctests written while making and testing
 your own code) **what** needs to be configured. But if you are like me
 and it all isn't yet quite second-nature, it isn't clear **how** it
 can be configured. So, for z3c.traverser::
@@ -1214,7 +1214,7 @@
   with a simple File object.
 
 Okay, I18n file is a demo that is probably not well-developed. Don't
-use it. I will propose to not distribute it anymore. Noone is using
+use it. I will propose to not distribute it anymore. No one is using
 it, so you are on your own finding the problem and providing a patch.
 
 When running $instance/bin/runzope zlib import error appears?

Modified: bluebream/website/docs/v1.0/gettingstarted.rst
===================================================================
--- bluebream/website/docs/v1.0/gettingstarted.rst	2010-01-21 01:23:38 UTC (rev 108344)
+++ bluebream/website/docs/v1.0/gettingstarted.rst	2010-01-21 03:08:52 UTC (rev 108345)
@@ -14,7 +14,7 @@
 Introduction
 ------------
 
-This chapter narrate creating a web application project using
+This chapter narrates creating a web application project using
 BlueBream.  If you complete this chapter, you should be able to:
 
 - Install PasteScript based BlueBream project template
@@ -45,7 +45,7 @@
 - **Package directory structure:** -- Show the directory structure
   and describe the purpose of each directories and files.
 
-- At the end, few hello world examples are also given.
+- At the end, a few hello world examples are also given.
 
 
 .. _started-preparations:
@@ -352,7 +352,7 @@
 directive.  In BlueBream, it is called as *Browser Page* or more
 generic term, *View* which can be used to refer XMLRPC, REST and
 other views.  By default, the default page which you are getting when
-you access: http://localhost:8080 is a page registerd like this.  You
+you access: http://localhost:8080 is a page registered like this.  You
 can see the registration inside ``configure.zcml``, the name of view
 will be ``index``.  You can access the default page by explicitly
 mentioning the page name in the URL like this:

Modified: bluebream/website/docs/v1.0/glossary.rst
===================================================================
--- bluebream/website/docs/v1.0/glossary.rst	2010-01-21 01:23:38 UTC (rev 108344)
+++ bluebream/website/docs/v1.0/glossary.rst	2010-01-21 03:08:52 UTC (rev 108345)
@@ -26,7 +26,7 @@
 
   Zope
     A `developer community`_ which has created many frameworks and Python
-    libraries. The term Zope originally refered to :term:`Zope 2`.
+    libraries. The term Zope originally referred to :term:`Zope 2`.
 
   Zope Component Architecture
     `Zope Component Architecture`_ (ZCA) is a Python
@@ -81,7 +81,7 @@
    The `Zope Object Database`_ provides an object-oriented database 
    for Python that provides a high-degree of transparency. Applications 
    can take advantage of object database features with few, if any, changes 
-   to application logic. ZODB includes features such as a plugable storage 
+   to application logic. ZODB includes features such as a pluggable storage 
    interface, rich transaction support, and undo.
     
   ZCML

Modified: bluebream/website/docs/v1.0/howto/defaultview.rst
===================================================================
--- bluebream/website/docs/v1.0/howto/defaultview.rst	2010-01-21 01:23:38 UTC (rev 108344)
+++ bluebream/website/docs/v1.0/howto/defaultview.rst	2010-01-21 03:08:52 UTC (rev 108345)
@@ -95,11 +95,11 @@
 
 .. [#type_of_object] To specify a particular type of object, BlueBream use interface.
 
-.. [#access_directive] In order to use any ZCML excepte few built-ins
+.. [#access_directive] In order to use any ZCML except few built-ins
    like ``configure`` and ``include``, you include the ZCML where it
    is defined the directive, conventionally in BlueBream it will be
    inside ``meta.zcml`` for any package.  For example, to use
-   ``defaultView`` directive, you need to include ``mata.zcml`` file
+   ``defaultView`` directive, you need to include ``meta.zcml`` file
    inside ``zope.publisher``::
 
      <include package="zope.publisher" file="meta.zcml" />

Modified: bluebream/website/docs/v1.0/tutorial1.rst
===================================================================
--- bluebream/website/docs/v1.0/tutorial1.rst	2010-01-21 01:23:38 UTC (rev 108344)
+++ bluebream/website/docs/v1.0/tutorial1.rst	2010-01-21 03:08:52 UTC (rev 108345)
@@ -636,7 +636,7 @@
 testing module called `zope.testbrowser
 <http://pypi.python.org/pypi/zope.testbrowser>`_ . To setup the test
 cases, layers etc. BlueBream use `z3c.testsetup
-<http://pypi.python.org/pypi/z3c.testsetup>` pacakge.
+<http://pypi.python.org/pypi/z3c.testsetup>` package.
 
 BlueBream use the Buildout recipe called `zc.recipe.testrunner
 <http://pypi.python.org/pypi/zc.recipe.testrunner>` to generate test
@@ -811,9 +811,9 @@
        />
   </class>
 
-The ``class`` directive is a complext directive, that is there are
+The ``class`` directive is a complex directive, that is there are
 some subdirective below that.  The above ``class`` directive also
-delcared permission setting for ``Collector``.
+declared permission setting for ``Collector``.
 
 A view for adding collector
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -862,10 +862,10 @@
      class=".views.AddTicketCollector"
      />
 
-Now you can acces the URL:
+Now you can access the URL:
 http://localhost:8080/@@add_ticket_collector .  It should display a
 form where you can enter details like ``name`` and ``description``.
-You cann enter the ``name`` as ``mycolector``, after entering data,
+You can enter the ``name`` as ``mycolector``, after entering data,
 submit the form.
 
 You can see the file size of ``var/filestorage/Data.fs`` is
@@ -899,7 +899,7 @@
 A default view for collector
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-As you have alreay seen in the :ref:`started-getting` chapter, you
+As you have already seen in the :ref:`started-getting` chapter, you
 can create a simple view and register it from ZCML.
 
 In the ``src/tc/main/views.py`` add a new view like this::
@@ -924,7 +924,7 @@
   Hello ticket collector!
 
 In the next section, you will see more details about the main page
-for collector.  Also we are ging to learn about Zope Page Template.
+for collector.  Also we are going to learn about Zope Page Template.
 
 .. _tut1-main-page:
 
@@ -941,7 +941,7 @@
       pass
 
 Then add a ``template`` attribute with value as ``collectormain.pt``.
-This tells to use the Zope Page Teplate to render as the page.  The
+This tells to use the Zope Page Template to render as the page.  The
 ZCML registration will look like this::
 
   <browser:page



More information about the checkins mailing list