diff options
author | Georg Brandl <georg@python.org> | 2009-10-11 20:16:16 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-10-11 20:16:16 (GMT) |
commit | a4314c2b218fb0509a24c873a22137ff229a01fd (patch) | |
tree | caec1be7189cec098d74e7677b46da5d48831c8e /Doc/howto | |
parent | 6728c5a762752260324b2015a2d47528f4c7194a (diff) | |
download | cpython-a4314c2b218fb0509a24c873a22137ff229a01fd.zip cpython-a4314c2b218fb0509a24c873a22137ff229a01fd.tar.gz cpython-a4314c2b218fb0509a24c873a22137ff229a01fd.tar.bz2 |
Fix broken links found by "make linkcheck". scipy.org seems to be done right now, so I could not verify links going there.
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/unicode.rst | 2 | ||||
-rw-r--r-- | Doc/howto/webservers.rst | 7 |
2 files changed, 4 insertions, 5 deletions
diff --git a/Doc/howto/unicode.rst b/Doc/howto/unicode.rst index 4b34c82..4e4921c 100644 --- a/Doc/howto/unicode.rst +++ b/Doc/howto/unicode.rst @@ -472,7 +472,7 @@ These are grouped into categories such as "Letter", "Number", "Punctuation", or from the above output, ``'Ll'`` means 'Letter, lowercase', ``'No'`` means "Number, other", ``'Mn'`` is "Mark, nonspacing", and ``'So'`` is "Symbol, other". See -<http://www.unicode.org/Public/UNIDATA/UCD.html#General_Category_Values> for a +<http://unicode.org/Public/5.1.0/ucd/UCD.html#General_Category_Values> for a list of category codes. References diff --git a/Doc/howto/webservers.rst b/Doc/howto/webservers.rst index 4613c76..0829292 100644 --- a/Doc/howto/webservers.rst +++ b/Doc/howto/webservers.rst @@ -270,8 +270,7 @@ Depending on the web server you need to have a special module. * lighttpd ships its own `FastCGI module <http://trac.lighttpd.net/trac/wiki/Docs%3AModFastCGI>`_ as well as an `SCGI module <http://trac.lighttpd.net/trac/wiki/Docs%3AModSCGI>`_. -* nginx also supports `FastCGI - <http://wiki.codemongers.com/NginxSimplePythonFCGI>`_. +* nginx also supports `FastCGI <http://wiki.nginx.org/NginxSimplePythonFCGI>`_. Once you have installed and configured the module, you can test it with the following WSGI-application:: @@ -524,7 +523,7 @@ the text of a wiki page. As always, there are different ways to store informations on a web server. Often relational database engines like `MySQL <http://www.mysql.com/>`_ or -`PostgreSQL <http://http://www.postgresql.org/>`_ are used due to their good +`PostgreSQL <http://www.postgresql.org/>`_ are used due to their good performance handling very large databases consisting of up to millions of entries. These are *queried* using a language called `SQL <http://en.wikipedia.org/wiki/SQL>`_. Python programmers in general do not like @@ -628,7 +627,7 @@ which make it possible to write web sites nearly without any Python code. It has a big, international community which has created many sites using Django. There are also quite a lot of add-on projects which extend Django's normal functionality. This is partly due to Django's well written `online -documentation <http://doc.djangoproject.com/>`_ and the `Django book +documentation <http://docs.djangoproject.com/>`_ and the `Django book <http://www.djangobook.com/>`_. |