summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPatricio Paez <pp@pp.com.mx>2012-04-13 06:34:18 -0500
committerPatricio Paez <pp@pp.com.mx>2012-04-13 06:34:18 -0500
commit6751531f0eb874cb70f5f7decc129f592359311c (patch)
tree2079075b3280d8e9016b6e75288caee9f7570eb9 /docs
parentbce621a99ee495d8d82f744eaa209ae0f1ac504e (diff)
downloadpyramid-6751531f0eb874cb70f5f7decc129f592359311c.tar.gz
pyramid-6751531f0eb874cb70f5f7decc129f592359311c.tar.bz2
pyramid-6751531f0eb874cb70f5f7decc129f592359311c.zip
Fixed wsgi.org URL
Diffstat (limited to 'docs')
-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.