Skip to content

Commit

Permalink
Fix minor wording and formatting issues
Browse files Browse the repository at this point in the history
... in section "URL Traversal" in chapter ObjectPublishing of the Zope Developer's Guide.
  • Loading branch information
jugmac00 authored Feb 9, 2019
1 parent bd17e8f commit e2288bd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/zdgbook/ObjectPublishing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ walking along the URL. Take for example a collection of objects::

This collection of objects forms an object hierarchy. Using Zope you
can publish objects with URLs. For example, the URL
'http://zope/vertebrates/mammals/monkey/screech', will traverse the
object hierarchy, find the 'monkey' object and call its 'screech'
http://zope/vertebrates/mammals/monkey/screech will traverse the
object hierarchy, find the *monkey* object and call its *screech*
method.

.. figure:: Figures/2-2.png
Expand All @@ -132,14 +132,14 @@ and continues to move from object to object using the URL as a guide.

Typically the next object is a sub-object of the current object that
is named by the path segment. So in the example above, when the
publisher gets to the 'vertebrates' object, the next path segment is
"mammals", and this tells the publisher to look for a sub-object of
publisher gets to the *vertebrates* object, the next path segment is
*mammals*, and this tells the publisher to look for a sub-object of
the current object with that name. Traversal stops when Zope comes to
the end of the URL. If the final object is found, then it is
published, otherwise an error is returned.

Now let's take a closer look at traversal.

Now let's take a more rigorous look at traversal.

Traversal Interfaces
====================
Expand Down

0 comments on commit e2288bd

Please sign in to comment.