summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMaxime Lorant <maxime.lorant@gmail.com>2015-09-03 23:23:08 +0200
committerTim Graham <timograham@gmail.com>2015-09-04 08:14:21 -0400
commitc92cd22d02349b73d169a3a2ff3b6fe7a54bfb0c (patch)
treeaf2ce876b52b6663656abae97c7f1e7b90e3532b /docs
parent526a413870b9844c2279f5855ad0774edb24f971 (diff)
Refs #25345 -- Updated links to code.google.com.
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/deployment/wsgi/modwsgi.txt6
-rw-r--r--docs/ref/databases.txt4
-rw-r--r--docs/topics/install.txt2
3 files changed, 5 insertions, 7 deletions
diff --git a/docs/howto/deployment/wsgi/modwsgi.txt b/docs/howto/deployment/wsgi/modwsgi.txt
index 4e7d627b31..689effba17 100644
--- a/docs/howto/deployment/wsgi/modwsgi.txt
+++ b/docs/howto/deployment/wsgi/modwsgi.txt
@@ -6,7 +6,7 @@ Deploying Django with Apache_ and `mod_wsgi`_ is a tried and tested way to get
Django into production.
.. _Apache: http://httpd.apache.org/
-.. _mod_wsgi: http://code.google.com/p/modwsgi/
+.. _mod_wsgi: http://www.modwsgi.org/
mod_wsgi is an Apache module which can host any Python WSGI_ application,
including Django. Django will work with any version of Apache which supports
@@ -18,8 +18,8 @@ The `official mod_wsgi documentation`_ is fantastic; it's your source for all
the details about how to use mod_wsgi. You'll probably want to start with the
`installation and configuration documentation`_.
-.. _official mod_wsgi documentation: http://code.google.com/p/modwsgi/
-.. _installation and configuration documentation: http://code.google.com/p/modwsgi/wiki/InstallationInstructions
+.. _official mod_wsgi documentation: http://modwsgi.readthedocs.org/
+.. _installation and configuration documentation: http://modwsgi.readthedocs.org/en/develop/installation.html
Basic configuration
===================
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
index 4eb3ffda09..3a846ef6ea 100644
--- a/docs/ref/databases.txt
+++ b/docs/ref/databases.txt
@@ -923,7 +923,6 @@ by 3rd parties that allow you to use other databases with Django:
* `Microsoft SQL Server`_
* Firebird_
* ODBC_
-* ADSDB_
The Django versions and ORM features supported by these unofficial backends
vary considerably. Queries regarding the specific capabilities of these
@@ -931,8 +930,7 @@ unofficial backends, along with any support queries, should be directed to
the support channels provided by each 3rd party project.
.. _SAP SQL Anywhere: https://github.com/sqlanywhere/sqlany-django
-.. _IBM DB2: http://code.google.com/p/ibm-db/
+.. _IBM DB2: https://pypi.python.org/pypi/ibm_db/
.. _Microsoft SQL Server: http://django-mssql.readthedocs.org/en/latest/
.. _Firebird: https://github.com/maxirobaina/django-firebird
.. _ODBC: https://github.com/lionheart/django-pyodbc/
-.. _ADSDB: http://code.google.com/p/adsdb-django/
diff --git a/docs/topics/install.txt b/docs/topics/install.txt
index 48c78c9e7c..027dd5db31 100644
--- a/docs/topics/install.txt
+++ b/docs/topics/install.txt
@@ -60,7 +60,7 @@ very well with `nginx`_. Additionally, Django follows the WSGI spec
.. _Apache: http://httpd.apache.org/
.. _nginx: http://nginx.org/
-.. _mod_wsgi: http://code.google.com/p/modwsgi/
+.. _mod_wsgi: http://www.modwsgi.org/
.. _database-installation: