mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
fix some broken URLs
This commit is contained in:
parent
4b76f8a76c
commit
117e1f00a8
5 changed files with 14 additions and 12 deletions
|
@ -57,12 +57,14 @@ were using (including version information as appropriate).
|
||||||
|
|
||||||
Each bug report will be assigned to a developer who will determine what needs to
|
Each bug report will be assigned to a developer who will determine what needs to
|
||||||
be done to correct the problem. You will receive an update each time action is
|
be done to correct the problem. You will receive an update each time action is
|
||||||
taken on the bug. See http://www.python.org/dev/workflow/ for a detailed
|
taken on the bug.
|
||||||
description of the issue workflow.
|
|
||||||
|
|
||||||
|
|
||||||
.. seealso::
|
.. seealso::
|
||||||
|
|
||||||
|
`Python Developer's Guide <http://docs.python.org/devguide/>`_
|
||||||
|
Detailed description of the issue workflow and developers tools.
|
||||||
|
|
||||||
`How to Report Bugs Effectively <http://www.chiark.greenend.org.uk/~sgtatham/bugs.html>`_
|
`How to Report Bugs Effectively <http://www.chiark.greenend.org.uk/~sgtatham/bugs.html>`_
|
||||||
Article which goes into some detail about how to create a useful bug report.
|
Article which goes into some detail about how to create a useful bug report.
|
||||||
This describes what kind of information is useful and why it is useful.
|
This describes what kind of information is useful and why it is useful.
|
||||||
|
|
|
@ -274,7 +274,7 @@ Setting up FastCGI
|
||||||
Each web server requires a specific module.
|
Each web server requires a specific module.
|
||||||
|
|
||||||
* Apache has both `mod_fastcgi <http://www.fastcgi.com/drupal/>`_ and `mod_fcgid
|
* 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.
|
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
|
``mod_fcgid`` is a smaller, compatible alternative. One of these modules needs
|
||||||
to be loaded by Apache.
|
to be loaded by Apache.
|
||||||
|
@ -364,7 +364,7 @@ testing.
|
||||||
|
|
||||||
A really great WSGI feature is middleware. Middleware is a layer around your
|
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
|
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
|
available. For example, instead of writing your own session management (HTTP
|
||||||
is a stateless protocol, so to associate multiple HTTP requests with a single
|
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
|
user your application must create and manage such state via a session), you can
|
||||||
|
@ -395,9 +395,9 @@ compared with other web technologies.
|
||||||
|
|
||||||
.. seealso::
|
.. seealso::
|
||||||
|
|
||||||
A good overview of WSGI-related code can be found in the `WSGI wiki
|
A good overview of WSGI-related code can be found in the `WSGI homepage
|
||||||
<http://wsgi.org/wsgi>`_, which contains an extensive list of `WSGI servers
|
<http://www.wsgi.org/en/latest/index.html>`_, which contains an extensive list of `WSGI servers
|
||||||
<http://wsgi.org/wsgi/Servers>`_ which can be used by *any* application
|
<http://www.wsgi.org/en/latest/servers.html>`_ which can be used by *any* application
|
||||||
supporting WSGI.
|
supporting WSGI.
|
||||||
|
|
||||||
You might be interested in some WSGI-supporting modules already contained in
|
You might be interested in some WSGI-supporting modules already contained in
|
||||||
|
|
|
@ -14,7 +14,7 @@ module. Not all operations possible in C will also be possible in Python
|
||||||
in Python (input and output buffers, especially). All methods and functions
|
in Python (input and output buffers, especially). All methods and functions
|
||||||
have a :attr:`__doc__` string describing their arguments and return values, and
|
have a :attr:`__doc__` string describing their arguments and return values, and
|
||||||
for additional description you are referred to `Inside Macintosh
|
for additional description you are referred to `Inside Macintosh
|
||||||
<http://developer.apple.com/documentation/macos8/mac8.html>`_ or similar works.
|
<http://developer.apple.com/legacy/mac/library/#documentation/macos8/mac8.html>`_ or similar works.
|
||||||
|
|
||||||
These modules all live in a package called :mod:`Carbon`. Despite that name they
|
These modules all live in a package called :mod:`Carbon`. Despite that name they
|
||||||
are not all part of the Carbon framework: CF is really in the CoreFoundation
|
are not all part of the Carbon framework: CF is really in the CoreFoundation
|
||||||
|
@ -515,7 +515,7 @@ Manager. It contains the following functions:
|
||||||
|
|
||||||
.. seealso::
|
.. seealso::
|
||||||
|
|
||||||
`Scrap Manager <http://developer.apple.com/documentation/mac/MoreToolbox/MoreToolbox-109.html>`_
|
`Scrap Manager <http://developer.apple.com/legacy/mac/library/documentation/mac/MoreToolbox/MoreToolbox-109.html>`_
|
||||||
Apple's documentation for the Scrap Manager gives a lot of useful information
|
Apple's documentation for the Scrap Manager gives a lot of useful information
|
||||||
about using the Scrap Manager in applications.
|
about using the Scrap Manager in applications.
|
||||||
|
|
||||||
|
|
|
@ -143,7 +143,7 @@ The :mod:`EasyDialogs` module defines the following functions:
|
||||||
|
|
||||||
.. seealso::
|
.. seealso::
|
||||||
|
|
||||||
`Navigation Services Reference <http://developer.apple.com/documentation/Carbon/Reference/Navigation_Services_Ref/>`_
|
`Navigation Services Reference <http://developer.apple.com/legacy/mac/library/#documentation/Carbon/Conceptual/NavServicesIntro/ns_intro_carb/ns_into_carb.html>`_
|
||||||
Programmer's reference documentation for the Navigation Services, a part of the
|
Programmer's reference documentation for the Navigation Services, a part of the
|
||||||
Carbon framework.
|
Carbon framework.
|
||||||
|
|
||||||
|
|
|
@ -26,11 +26,11 @@ following links:
|
||||||
|
|
||||||
.. seealso::
|
.. seealso::
|
||||||
|
|
||||||
http://www.linux.com/articles/60383
|
http://www.debian.org/doc/manuals/maint-guide/first.en.html
|
||||||
for Debian users
|
for Debian users
|
||||||
http://linuxmafia.com/pub/linux/suse-linux-internals/chapter35.html
|
http://linuxmafia.com/pub/linux/suse-linux-internals/chapter35.html
|
||||||
for OpenSuse users
|
for OpenSuse users
|
||||||
http://docs.fedoraproject.org/drafts/rpm-guide-en/ch-creating-rpms.html
|
http://docs.fedoraproject.org/en-US/Fedora_Draft_Documentation/0.1/html/RPM_Guide/ch-creating-rpms.html
|
||||||
for Fedora users
|
for Fedora users
|
||||||
http://www.slackbook.org/html/package-management-making-packages.html
|
http://www.slackbook.org/html/package-management-making-packages.html
|
||||||
for Slackware users
|
for Slackware users
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue