Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 41bc074

Browse filesBrowse files
committed
Merge pull request realpython#310 from kuyan/patch-2
Link fixes.
2 parents 0c986db + 78a1284 commit 41bc074
Copy full SHA for 41bc074

File tree

Expand file treeCollapse file tree

6 files changed

+13
-16
lines changed
Filter options
Expand file treeCollapse file tree

6 files changed

+13
-16
lines changed

‎docs/dev/virtualenvs.rst

Copy file name to clipboardExpand all lines: docs/dev/virtualenvs.rst
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ where they were placed.
6060
virtualenvwrapper
6161
-----------------
6262

63-
`virtualenvwrapper <http://www.doughellmann.com/projects/virtualenvwrapper/>`_
63+
`virtualenvwrapper <http://virtualenvwrapper.readthedocs.org/en/latest/index.html>`_
6464
provides a set of commands which makes working with virtual environments much
6565
more pleasant. It also places all your virtual environments in one place.
6666

@@ -72,7 +72,7 @@ To install (make sure **virtualenv** is already installed):
7272
$ export WORKON_HOME=~/Envs
7373
$ source /usr/local/bin/virtualenvwrapper.sh
7474
75-
(`Full virtualenvwrapper install instructions <http://www.doughellmann.com/docs/virtualenvwrapper/#introduction>`_.)
75+
(`Full virtualenvwrapper install instructions <http://virtualenvwrapper.readthedocs.org/en/latest/install.html>`_.)
7676

7777
For Windows, you can use the `virtualenvwrapper-powershell <https://bitbucket.org/guillermooo/virtualenvwrapper-powershell>`_ clone.
7878

@@ -136,7 +136,7 @@ Other useful commands
136136
``lssitepackages``
137137
Shows contents of ``site-packages`` directory.
138138

139-
`Full list of virtualenvwrapper commands <http://www.doughellmann.com/docs/virtualenvwrapper/command_ref.html#managing-environments>`_.
139+
`Full list of virtualenvwrapper commands <http://virtualenvwrapper.readthedocs.org/en/latest/command_ref.html>`_.
140140

141141
autoenv
142142
-------

‎docs/intro/learning.rst

Copy file name to clipboardExpand all lines: docs/intro/learning.rst
+1-2Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ A free introductory book that teaches python at the beginner level, it assumes n
9292
previous programming experience.
9393

9494
`A Byte of Python for Python 2.x <http://www.ibiblio.org/swaroopch/byteofpython/read/>`_
95-
`A Byte of Python for Python 3.x <http://www.swaroopch.org/notes/Python_en:Table_of_Contents>`_
95+
`A Byte of Python for Python 3.x <http://swaroopch.com/notes/Python_en-Preface/>`_
9696

9797

9898
Advanced
@@ -162,7 +162,6 @@ as writing C extensions.
162162

163163
`Python in a Nutshell <http://shop.oreilly.com/product/9780596001889.do>`_
164164

165-
166165
The Python Language Reference
167166
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
168167

‎docs/scenarios/ci.rst

Copy file name to clipboardExpand all lines: docs/scenarios/ci.rst
+5-5Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ engine. Use it.
2626

2727
Buildbot
2828
--------
29-
`Buildbot <http://buildbot.net/buildbot/docs/current>`_ is a Python system to
29+
`Buildbot <http://docs.buildbot.net/current/>`_ is a Python system to
3030
automate the compile/test cycle to validate code changes.
3131

3232

@@ -38,7 +38,7 @@ Mule?
3838
Tox
3939
---
4040

41-
`tox <https://bitbucket.org/hpk42/tox>`_ is an automation tool providing
41+
`tox <http://tox.readthedocs.org/en/latest/>`_ is an automation tool providing
4242
packaging, testing and deployment of Python software right from the console or
4343
CI server. It is a generic virtualenv management and test command line tool
4444
which provides the following features:
@@ -53,7 +53,7 @@ which provides the following features:
5353

5454
Travis-CI
5555
---------
56-
`Travis-CI <http://travis-ci.org/>`_ is a distributed CI server which builds tests
56+
`Travis-CI <https://travis-ci.org/>`_ is a distributed CI server which builds tests
5757
for open source projects for free. It provides multiple workers to run Python tests
5858
on and seamlessly integrates with Github. You can even have it comment on your Pull
5959
Requests whether this particular changeset breaks the build or not. So if you are
@@ -83,6 +83,6 @@ notifications, before and after steps and much more. The
8383
`travis-ci docs <http://about.travis-ci.org/docs/>`_ explain all of those and are very
8484
thorough.
8585

86-
In order to activate testing for your project, go to `the travis-ci site <http://travis-ci.org/>`_
86+
In order to activate testing for your project, go to `the travis-ci site <https://travis-ci.org/>`_
8787
and login with your Github account. Then activate your project in your profile settings and that's
88-
it. From now on, your project's tests will be run on every push to Github.
88+
it. From now on, your project's tests will be run on every push to Github.

‎docs/scenarios/db.rst

Copy file name to clipboardExpand all lines: docs/scenarios/db.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Nearly all Python database modules such as `sqlite3`, `psycopg` and
1111

1212
Tutorials that explain how to work with modules that conform to this interface can be found
1313
`here <http://halfcooked.com/presentations/osdc2006/python_databases.html>`__ and
14-
`here <http://www.amk.ca/python/writing/DB-API.html>`__.
14+
`here <http://web.archive.org/web/20120815130844/http://www.amk.ca/python/writing/DB-API.html>`__.
1515

1616
SQLAlchemy
1717
----------

‎docs/scenarios/gui.rst

Copy file name to clipboardExpand all lines: docs/scenarios/gui.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ GUI Applications
44

55
Qt
66
--
7-
Qt is a cross-platform application framework that is widely used for developing
7+
`Qt <http://qt-project.org/>`_ is a cross-platform application framework that is widely used for developing
88
software with a GUI but can also be used for non-GUI applications.
99

1010
PySide

‎docs/scenarios/web.rst

Copy file name to clipboardExpand all lines: docs/scenarios/web.rst
+2-4Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ lightweight, easy to use, and uses many UNIX idioms. Gunicorn is not designed
152152
to face the internet -- it was designed to run behind Nginx which buffers
153153
slow requests and takes care of other important considerations. A sample
154154
setup for Nginx + Gunicorn can be found in the
155-
`Gunicorn help <http://gunicorn.org/deploy.html>`_.
155+
`Gunicorn help <http://gunicorn.org/index.html#deployment>`_.
156156

157157
.. _uwsgi-ref:
158158

@@ -235,9 +235,7 @@ and Pinax applications. Gondor supports Django versions 1.2 and 1.3 on
235235
Python version 2.7, and can automatically configure your Django site if you
236236
use ``local_settings.py`` for site-specific configuration information.
237237

238-
Gondor publishes guides to deploying `Django projects
239-
<https://gondor.io/support/setting-up-django/>`_ and `Pinax projects
240-
<https://gondor.io/support/setting-up-pinax/>`_ on their platform.
238+
Gondor has a guide on deploying `Django projects <https://gondor.io/support/django/setup/>`_.
241239

242240

243241
Templating

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.