summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpje <pje@571e12c6-e1fa-0310-aee7-ff1267fa46bd>2006-06-09 16:02:50 +0000
committerpje <pje@571e12c6-e1fa-0310-aee7-ff1267fa46bd>2006-06-09 16:02:50 +0000
commit041b46b5f3cf45d020e9c8493c3ccfb0c3c6d214 (patch)
tree2fccec4b28c2199dfa69b93ff8a3b0c47e3d15f1
parentcf3ab1b665f962901c71e911514bd9f92ffec4d6 (diff)
downloadwsgiref-041b46b5f3cf45d020e9c8493c3ccfb0c3c6d214.tar.gz
Incorporate some of Joe Gregorio's proposed doc changes
git-svn-id: svn://svn.eby-sarna.com/svnroot/wsgiref@2179 571e12c6-e1fa-0310-aee7-ff1267fa46bd
-rwxr-xr-xdocs/libwsgiref.tex4
-rwxr-xr-xdocs/ref.tex5
2 files changed, 7 insertions, 2 deletions
diff --git a/docs/libwsgiref.tex b/docs/libwsgiref.tex
index ba58e86..d797393 100755
--- a/docs/libwsgiref.tex
+++ b/docs/libwsgiref.tex
@@ -7,8 +7,8 @@ Implementation}
The Web Server Gateway Interface (WSGI) is a standard interface
between web server software and web applications written in Python.
-Having a standard interface makes it easy to use a WSGI-supporting
-application with a number of different web servers.
+Having a standard interface makes it easy to use an application
+that supports WSGI with a number of different web servers.
Only authors of web servers and programming frameworks need to know
every detail and corner case of the WSGI design. You don't need to
diff --git a/docs/ref.tex b/docs/ref.tex
index e2b6a8c..d5ac69a 100755
--- a/docs/ref.tex
+++ b/docs/ref.tex
@@ -41,6 +41,11 @@
\begin{abstract}
\noindent
+The Web Server Gateway Interface (WSGI) is a standard interface
+between web server software and web applications written in Python.
+Having a standard interface makes it easy to use an application
+that supports WSGI with a number of different web servers.
+
\module{wsgiref} is a reference implementation of the WSGI specification
that can be used to add WSGI support to a web server or framework. It also
contains some useful utilities for writing applications or middleware that