Skip to content

Commit 117e1f0

Browse files
committed
fix some broken URLs
1 parent 4b76f8a commit 117e1f0

5 files changed

Lines changed: 14 additions & 12 deletions

File tree

Doc/bugs.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,14 @@ were using (including version information as appropriate).
5757

5858
Each bug report will be assigned to a developer who will determine what needs to
5959
be done to correct the problem. You will receive an update each time action is
60-
taken on the bug. See http://www.python.org/dev/workflow/ for a detailed
61-
description of the issue workflow.
60+
taken on the bug.
6261

6362

6463
.. seealso::
6564

65+
`Python Developer's Guide <http://docs.python.org/devguide/>`_
66+
Detailed description of the issue workflow and developers tools.
67+
6668
`How to Report Bugs Effectively <http://www.chiark.greenend.org.uk/~sgtatham/bugs.html>`_
6769
Article which goes into some detail about how to create a useful bug report.
6870
This describes what kind of information is useful and why it is useful.

Doc/howto/webservers.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ Setting up FastCGI
274274
Each web server requires a specific module.
275275

276276
* Apache has both `mod_fastcgi <http://www.fastcgi.com/drupal/>`_ and `mod_fcgid
277-
<http://fastcgi.coremail.cn/>`_. ``mod_fastcgi`` is the original one, but it
277+
<http://httpd.apache.org/mod_fcgid/>`_. ``mod_fastcgi`` is the original one, but it
278278
has some licensing issues, which is why it is sometimes considered non-free.
279279
``mod_fcgid`` is a smaller, compatible alternative. One of these modules needs
280280
to be loaded by Apache.
@@ -364,7 +364,7 @@ testing.
364364

365365
A really great WSGI feature is middleware. Middleware is a layer around your
366366
program which can add various functionality to it. There is quite a bit of
367-
`middleware <http://wsgi.org/wsgi/Middleware_and_Utilities>`_ already
367+
`middleware <http://www.wsgi.org/en/latest/libraries.html>`_ already
368368
available. For example, instead of writing your own session management (HTTP
369369
is a stateless protocol, so to associate multiple HTTP requests with a single
370370
user your application must create and manage such state via a session), you can
@@ -395,9 +395,9 @@ compared with other web technologies.
395395

396396
.. seealso::
397397

398-
A good overview of WSGI-related code can be found in the `WSGI wiki
399-
<http://wsgi.org/wsgi>`_, which contains an extensive list of `WSGI servers
400-
<http://wsgi.org/wsgi/Servers>`_ which can be used by *any* application
398+
A good overview of WSGI-related code can be found in the `WSGI homepage
399+
<http://www.wsgi.org/en/latest/index.html>`_, which contains an extensive list of `WSGI servers
400+
<http://www.wsgi.org/en/latest/servers.html>`_ which can be used by *any* application
401401
supporting WSGI.
402402

403403
You might be interested in some WSGI-supporting modules already contained in

Doc/library/carbon.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module. Not all operations possible in C will also be possible in Python
1414
in Python (input and output buffers, especially). All methods and functions
1515
have a :attr:`__doc__` string describing their arguments and return values, and
1616
for additional description you are referred to `Inside Macintosh
17-
<http://developer.apple.com/documentation/macos8/mac8.html>`_ or similar works.
17+
<http://developer.apple.com/legacy/mac/library/#documentation/macos8/mac8.html>`_ or similar works.
1818

1919
These modules all live in a package called :mod:`Carbon`. Despite that name they
2020
are not all part of the Carbon framework: CF is really in the CoreFoundation
@@ -515,7 +515,7 @@ Manager. It contains the following functions:
515515

516516
.. seealso::
517517

518-
`Scrap Manager <http://developer.apple.com/documentation/mac/MoreToolbox/MoreToolbox-109.html>`_
518+
`Scrap Manager <http://developer.apple.com/legacy/mac/library/documentation/mac/MoreToolbox/MoreToolbox-109.html>`_
519519
Apple's documentation for the Scrap Manager gives a lot of useful information
520520
about using the Scrap Manager in applications.
521521

Doc/library/easydialogs.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ The :mod:`EasyDialogs` module defines the following functions:
143143

144144
.. seealso::
145145

146-
`Navigation Services Reference <http://developer.apple.com/documentation/Carbon/Reference/Navigation_Services_Ref/>`_
146+
`Navigation Services Reference <http://developer.apple.com/legacy/mac/library/#documentation/Carbon/Conceptual/NavServicesIntro/ns_intro_carb/ns_into_carb.html>`_
147147
Programmer's reference documentation for the Navigation Services, a part of the
148148
Carbon framework.
149149

Doc/using/unix.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ following links:
2626

2727
.. seealso::
2828

29-
http://www.linux.com/articles/60383
29+
http://www.debian.org/doc/manuals/maint-guide/first.en.html
3030
for Debian users
3131
http://linuxmafia.com/pub/linux/suse-linux-internals/chapter35.html
3232
for OpenSuse users
33-
http://docs.fedoraproject.org/drafts/rpm-guide-en/ch-creating-rpms.html
33+
http://docs.fedoraproject.org/en-US/Fedora_Draft_Documentation/0.1/html/RPM_Guide/ch-creating-rpms.html
3434
for Fedora users
3535
http://www.slackbook.org/html/package-management-making-packages.html
3636
for Slackware users

0 commit comments

Comments
 (0)