summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/routing.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-03-02 22:57:48 -0800
committerSteve Piercy <web@stevepiercy.com>2016-03-02 22:58:23 -0800
commit6c36d783bf6d3a289afe559d6595d96de3d99d89 (patch)
tree67a1cac8c545c2d122aca6bb16c3b8e3a0e77801 /docs/quick_tutorial/routing.rst
parent74675f77aa96e82c228861d7339ff639fb7f243c (diff)
downloadpyramid-6c36d783bf6d3a289afe559d6595d96de3d99d89.tar.gz
pyramid-6c36d783bf6d3a289afe559d6595d96de3d99d89.tar.bz2
pyramid-6c36d783bf6d3a289afe559d6595d96de3d99d89.zip
update link to videos
Diffstat (limited to 'docs/quick_tutorial/routing.rst')
-rw-r--r--docs/quick_tutorial/routing.rst16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/quick_tutorial/routing.rst b/docs/quick_tutorial/routing.rst
index 1b79a5889..416a346fa 100644
--- a/docs/quick_tutorial/routing.rst
+++ b/docs/quick_tutorial/routing.rst
@@ -23,14 +23,14 @@ Previously we saw the basics of routing URLs to views in Pyramid.
.. note::
- Why do this twice? Other Python web frameworks let you create a
- route and associate it with a view in one step. As
- illustrated in :ref:`routes_need_ordering`, multiple routes might match the
- same URL pattern. Rather than provide ways to help guess, Pyramid lets you
- be explicit in ordering. Pyramid also gives facilities to avoid the
- problem. It's relatively easy to build a system that uses implicit route
- ordering with Pyramid too. See `The Groundhog series of screencasts
- <http://bfg.repoze.org/videos#groundhog1>`_ if you're interested in
+ Why do this twice? Other Python web frameworks let you create a route and
+ associate it with a view in one step. As illustrated in
+ :ref:`routes_need_ordering`, multiple routes might match the same URL
+ pattern. Rather than provide ways to help guess, Pyramid lets you be
+ explicit in ordering. Pyramid also gives facilities to avoid the problem.
+ It's relatively easy to build a system that uses implicit route ordering
+ with Pyramid too. See `The Groundhog series of screencasts
+ <http://static.repoze.org/casts/videotags.html>`_ if you're interested in
doing so.
Objectives