summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-01-18 14:14:23 -0800
committerChris McDonough <chrism@plope.com>2013-01-18 14:14:23 -0800
commit6f17f6945a3592a24bc3177f43084cd037bc1a98 (patch)
tree403aa8cb19b5e931e3222286fcb384711e6c5c1e /docs/narr
parent5512f27564552c6f0acfb98de34aff5795da59ff (diff)
parente241c7e479b411a7f465b0a3d86021301702f8af (diff)
downloadpyramid-6f17f6945a3592a24bc3177f43084cd037bc1a98.tar.gz
pyramid-6f17f6945a3592a24bc3177f43084cd037bc1a98.tar.bz2
pyramid-6f17f6945a3592a24bc3177f43084cd037bc1a98.zip
Merge pull request #805 from tshepang/master
make example links clickable, for convenience
Diffstat (limited to 'docs/narr')
-rw-r--r--docs/narr/firstapp.rst2
-rw-r--r--docs/narr/urldispatch.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/narr/firstapp.rst b/docs/narr/firstapp.rst
index c49dc1142..d61d95685 100644
--- a/docs/narr/firstapp.rst
+++ b/docs/narr/firstapp.rst
@@ -40,7 +40,7 @@ On Windows:
This command will not return and nothing will be printed to the console.
When port 8080 is visited by a browser on the URL ``/hello/world``, the
server will simply serve up the text "Hello world!". If your application is
-running on your local system, using ``http://localhost:8080/hello/world``
+running on your local system, using `<http://localhost:8080/hello/world>`_
in a browser will show this result.
Each time you visit a URL served by the application in a browser, a logging
diff --git a/docs/narr/urldispatch.rst b/docs/narr/urldispatch.rst
index 46f908b7c..ec97bf3b2 100644
--- a/docs/narr/urldispatch.rst
+++ b/docs/narr/urldispatch.rst
@@ -38,7 +38,7 @@ application. A route has a *name*, which acts as an identifier to be used
for URL generation. The name also allows developers to associate a view
configuration with the route. A route also has a *pattern*, meant to match
against the ``PATH_INFO`` portion of a URL (the portion following the scheme
-and port, e.g. ``/foo/bar`` in the URL ``http://localhost:8080/foo/bar``). It
+and port, e.g. ``/foo/bar`` in the URL `<http://localhost:8080/foo/bar>`_). It
also optionally has a ``factory`` and a set of :term:`route predicate`
attributes.