diff options
| author | Casey Duncan <casey.duncan@gmail.com> | 2011-01-01 12:20:23 -0700 |
|---|---|---|
| committer | Casey Duncan <casey.duncan@gmail.com> | 2011-01-01 12:20:23 -0700 |
| commit | 2ceb1f3064de5be4765a47800135400e992127ee (patch) | |
| tree | ce4a4aad7dc108a43581d79a0f78b9e612adcdae | |
| parent | f69e1986538ff12fbea36f378b9a2e74cfd11aaf (diff) | |
| download | pyramid-2ceb1f3064de5be4765a47800135400e992127ee.tar.gz pyramid-2ceb1f3064de5be4765a47800135400e992127ee.tar.bz2 pyramid-2ceb1f3064de5be4765a47800135400e992127ee.zip | |
simplify/clarify
| -rw-r--r-- | docs/narr/traversal.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/narr/traversal.rst b/docs/narr/traversal.rst index d1d695dce..bee9ce57b 100644 --- a/docs/narr/traversal.rst +++ b/docs/narr/traversal.rst @@ -26,11 +26,11 @@ code instead of traversal. In that case, you can skip this chapter. Traversal Details ----------------- -:term:`Traversal` is dependent on information in a :term:`request` object. -Every :term:`request` object contains URL path information in the -``PATH_INFO`` portion of the :term:`WSGI` environment. The ``PATH_INFO`` -portion of the WSGI environment is the portion of a request's URL following -the hostname and port number, but before any query string elements or +:term:`Traversal` is dependent on information in a :term:`request` +object. Every :term:`request` object contains URL path information in +the ``PATH_INFO`` portion of the :term:`WSGI` environment. The +``PATH_INFO`` string is the portion of a request's URL following the +hostname and port number, but before any query string elements or fragment element. For example the ``PATH_INFO`` portion of the URL ``http://example.com:8080/a/b/c?foo=1`` is ``/a/b/c``. |
