Skip to content

Commit

Permalink
Updated some links to https and new locations.
Browse files Browse the repository at this point in the history
  • Loading branch information
atombrella authored and timgraham committed Nov 10, 2018
1 parent d293d68 commit 961f8e9
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions docs/faq/general.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Django is pronounced **JANG**-oh. Rhymes with FANG-oh. The "D" is silent.
We've also recorded an `audio clip of the pronunciation`_.

.. _Django Reinhardt: https://en.wikipedia.org/wiki/Django_Reinhardt
.. _audio clip of the pronunciation: http://red-bean.com/~adrian/django_pronunciation.mp3
.. _audio clip of the pronunciation: https://www.red-bean.com/~adrian/django_pronunciation.mp3

Is Django stable?
=================
Expand Down Expand Up @@ -218,4 +218,4 @@ If you need a name, just use "Django", without any tagline.
If you need a publication date, use the year of release of the version you're
referencing (e.g., 2013 for v1.5)

.. _APA style: http://www.apastyle.org
.. _APA style: https://www.apastyle.org
2 changes: 1 addition & 1 deletion docs/howto/deployment/wsgi/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ How to deploy with WSGI
Django's primary deployment platform is WSGI_, the Python standard for web
servers and applications.

.. _WSGI: http://www.wsgi.org
.. _WSGI: https://wsgi.readthedocs.io/en/latest/

Django's :djadmin:`startproject` management command sets up a simple default
WSGI configuration for you, which you can tweak as needed for your project,
Expand Down
4 changes: 2 additions & 2 deletions docs/howto/deployment/wsgi/modwsgi.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ Deploying Django with Apache_ and `mod_wsgi`_ is a tried and tested way to get
Django into production.

.. _Apache: https://httpd.apache.org/
.. _mod_wsgi: http://www.modwsgi.org/
.. _mod_wsgi: https://modwsgi.readthedocs.io/en/develop/

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
mod_wsgi.

.. _WSGI: http://www.wsgi.org
.. _WSGI: https://wsgi.readthedocs.io/en/latest/

The `official mod_wsgi documentation`_ is your source for all the details about
how to use mod_wsgi. You'll probably want to start with the `installation and
Expand Down
2 changes: 1 addition & 1 deletion docs/internals/contributing/writing-code/javascript.txt
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,6 @@ Then run the tests with:
.. _Closure Compiler: https://developers.google.com/closure/compiler/
.. _EditorConfig: https://editorconfig.org/
.. _Java: https://www.java.com
.. _jshint: http://jshint.com/
.. _jshint: https://jshint.com/
.. _node.js: https://nodejs.org/
.. _qunit: https://qunitjs.com/
8 changes: 4 additions & 4 deletions docs/ref/contrib/gis/install/geolibs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ directly from Python using ctypes.

First, download GEOS from the GEOS website and untar the source archive::

$ wget http://download.osgeo.org/geos/geos-X.Y.Z.tar.bz2
$ wget https://download.osgeo.org/geos/geos-X.Y.Z.tar.bz2
$ tar xjf geos-X.Y.Z.tar.bz2

Next, change into the directory where GEOS was unpacked, run the configure
Expand Down Expand Up @@ -159,8 +159,8 @@ reference systems.

First, download the PROJ.4 source code and datum shifting files [#]_::

$ wget http://download.osgeo.org/proj/proj-X.Y.Z.tar.gz
$ wget http://download.osgeo.org/proj/proj-datumgrid-X.Y.tar.gz
$ wget https://download.osgeo.org/proj/proj-X.Y.Z.tar.gz
$ wget https://download.osgeo.org/proj/proj-datumgrid-X.Y.tar.gz

Next, untar the source code archive, and extract the datum shifting files in the
``nad`` subdirectory. This must be done *prior* to configuration::
Expand Down Expand Up @@ -189,7 +189,7 @@ supports :doc:`GDAL's vector data <../gdal>` capabilities [#]_.

First download the latest GDAL release version and untar the archive::

$ wget http://download.osgeo.org/gdal/X.Y.Z/gdal-X.Y.Z.tar.gz
$ wget https://download.osgeo.org/gdal/X.Y.Z/gdal-X.Y.Z.tar.gz
$ tar xzf gdal-X.Y.Z.tar.gz
$ cd gdal-X.Y.Z

Expand Down
2 changes: 1 addition & 1 deletion docs/topics/install.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ very well with `nginx`_. Additionally, Django follows the WSGI spec

.. _Apache: https://httpd.apache.org/
.. _nginx: https://nginx.org/
.. _mod_wsgi: http://www.modwsgi.org/
.. _mod_wsgi: https://modwsgi.readthedocs.io/en/develop/

.. _database-installation:

Expand Down

0 comments on commit 961f8e9

Please sign in to comment.