summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorSandro Tosi <sandro.tosi@gmail.com>2011-12-31 17:46:50 (GMT)
committerSandro Tosi <sandro.tosi@gmail.com>2011-12-31 17:46:50 (GMT)
commit1abde3628b1385127366446026b655b551656322 (patch)
tree80bac4c144acb676248ab927e4adb25a11290b48 /Doc/howto
parentd08effe287bbfe1342a6977f2a7c69be3301f9f3 (diff)
downloadcpython-1abde3628b1385127366446026b655b551656322.zip
cpython-1abde3628b1385127366446026b655b551656322.tar.gz
cpython-1abde3628b1385127366446026b655b551656322.tar.bz2
fix some broken URLs
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/functional.rst6
-rw-r--r--Doc/howto/webservers.rst10
2 files changed, 8 insertions, 8 deletions
diff --git a/Doc/howto/functional.rst b/Doc/howto/functional.rst
index 175eeae..8934d5e 100644
--- a/Doc/howto/functional.rst
+++ b/Doc/howto/functional.rst
@@ -1151,9 +1151,9 @@ Text Processing".
Mertz also wrote a 3-part series of articles on functional programming
for IBM's DeveloperWorks site; see
-`part 1 <http://www-128.ibm.com/developerworks/library/l-prog.html>`__,
-`part 2 <http://www-128.ibm.com/developerworks/library/l-prog2.html>`__, and
-`part 3 <http://www-128.ibm.com/developerworks/linux/library/l-prog3.html>`__,
+`part 1 <http://www.ibm.com/developerworks/linux/library/l-prog/index.html>`__,
+`part 2 <http://www.ibm.com/developerworks/linux/library/l-prog2/index.html>`__, and
+`part 3 <http://www.ibm.com/developerworks/linux/library/l-prog3/index.html>`__,
Python documentation
diff --git a/Doc/howto/webservers.rst b/Doc/howto/webservers.rst
index 74cdf4b..72ccd1f 100644
--- a/Doc/howto/webservers.rst
+++ b/Doc/howto/webservers.rst
@@ -274,7 +274,7 @@ Setting up FastCGI
Each web server requires a specific module.
* Apache has both `mod_fastcgi <http://www.fastcgi.com/drupal/>`_ and `mod_fcgid
- <http://fastcgi.coremail.cn/>`_. ``mod_fastcgi`` is the original one, but it
+ <http://httpd.apache.org/mod_fcgid/>`_. ``mod_fastcgi`` is the original one, but it
has some licensing issues, which is why it is sometimes considered non-free.
``mod_fcgid`` is a smaller, compatible alternative. One of these modules needs
to be loaded by Apache.
@@ -365,7 +365,7 @@ testing.
A really great WSGI feature is middleware. Middleware is a layer around your
program which can add various functionality to it. There is quite a bit of
-`middleware <http://wsgi.org/wsgi/Middleware_and_Utilities>`_ already
+`middleware <http://www.wsgi.org/en/latest/libraries.html>`_ already
available. For example, instead of writing your own session management (HTTP
is a stateless protocol, so to associate multiple HTTP requests with a single
user your application must create and manage such state via a session), you can
@@ -396,9 +396,9 @@ compared with other web technologies.
.. seealso::
- A good overview of WSGI-related code can be found in the `WSGI wiki
- <http://wsgi.org/wsgi>`_, which contains an extensive list of `WSGI servers
- <http://wsgi.org/wsgi/Servers>`_ which can be used by *any* application
+ A good overview of WSGI-related code can be found in the `WSGI homepage
+ <http://www.wsgi.org/en/latest/index.html>`_, which contains an extensive list of `WSGI servers
+ <http://www.wsgi.org/en/latest/servers.html>`_ which can be used by *any* application
supporting WSGI.
You might be interested in some WSGI-supporting modules already contained in