summaryrefslogtreecommitdiff
path: root/docs/glossary.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2012-04-16 11:48:31 -0400
committerChris McDonough <chrism@plope.com>2012-04-16 11:48:31 -0400
commit04e71690aaa32cb75af1095654d3f7e89946dab3 (patch)
tree923480b4ab6ab3ec848db769c7f1f777636e9ce6 /docs/glossary.rst
parent2861f1df38b79f4a1e31b5ac1bd86acd8c25928e (diff)
parent4aafed62140a7e3937b7e2fd6c349a771b07e25c (diff)
downloadpyramid-04e71690aaa32cb75af1095654d3f7e89946dab3.tar.gz
pyramid-04e71690aaa32cb75af1095654d3f7e89946dab3.tar.bz2
pyramid-04e71690aaa32cb75af1095654d3f7e89946dab3.zip
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'docs/glossary.rst')
-rw-r--r--docs/glossary.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
index 60920a73a..88598354a 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -290,7 +290,7 @@ Glossary
:term:`principal` (or principals) associated with a request.
WSGI
- `Web Server Gateway Interface <http://wsgi.org/>`_. This is a
+ `Web Server Gateway Interface <http://www.wsgi.org/>`_. This is a
Python standard for connecting web applications to web servers,
similar to the concept of Java Servlets. :app:`Pyramid` requires
that your application be served as a WSGI application.
@@ -299,7 +299,7 @@ Glossary
*Middleware* is a :term:`WSGI` concept. It is a WSGI component
that acts both as a server and an application. Interesting uses
for middleware exist, such as caching, content-transport
- encoding, and other functions. See `WSGI.org <http://wsgi.org>`_
+ encoding, and other functions. See `WSGI.org <http://www.wsgi.org>`_
or `PyPI <http://python.org/pypi>`_ to find middleware for your
application.