diff options
| author | Chris McDonough <chrism@plope.com> | 2013-03-23 03:32:23 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2013-03-23 03:32:23 -0400 |
| commit | 0bda2652728ae33ea37adc1f7f2f382e0ebbf4df (patch) | |
| tree | 018ba9bd30d5ec4ef40c8650c919aadc790374c9 /docs/narr/traversal.rst | |
| parent | e7b21013bab17d5eccdc60f6125cc898996021cf (diff) | |
| download | pyramid-0bda2652728ae33ea37adc1f7f2f382e0ebbf4df.tar.gz pyramid-0bda2652728ae33ea37adc1f7f2f382e0ebbf4df.tar.bz2 pyramid-0bda2652728ae33ea37adc1f7f2f382e0ebbf4df.zip | |
create optionality note for traversal chapter, see issue #879
Diffstat (limited to 'docs/narr/traversal.rst')
| -rw-r--r-- | docs/narr/traversal.rst | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/docs/narr/traversal.rst b/docs/narr/traversal.rst index 1234620c2..a2eac61de 100644 --- a/docs/narr/traversal.rst +++ b/docs/narr/traversal.rst @@ -22,10 +22,13 @@ resource found as the result of a traversal becomes the subsystem is used to find some view code willing to "publish" this resource by generating a :term:`response`. -Using :term:`Traversal` to map a URL to code is optional. It is often -less easy to understand than :term:`URL dispatch`, so if you're a rank -beginner, it probably makes sense to use URL dispatch to map URLs to -code instead of traversal. In that case, you can skip this chapter. +.. note:: + + Using :term:`Traversal` to map a URL to code is optional. If you're creating + your first Pyramid application it probably makes more sense to use :term:`URL + dispatch` to map URLs to code instead of traversal, as new Pyramid developers + tend to find URL dispatch slightly easier to understand. If you use URL + dispatch, you needn't read this chapter. .. index:: single: traversal details |
