Skip to content

Commit

Permalink
Use https:// URLs throughout docs where available
Browse files Browse the repository at this point in the history
  • Loading branch information
jdufresne authored and matthiask committed Apr 14, 2018
1 parent d595bc7 commit 7ffa84e
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ Django Models and working with trees of Model instances.
:alt: Build Status
:target: https://travis-ci.org/django-mptt/django-mptt

Project home: http://github.com/django-mptt/django-mptt/
Project home: https://github.com/django-mptt/django-mptt/

Documentation: https://django-mptt.readthedocs.io/

Discussion group: http://groups.google.com/group/django-mptt-dev
Discussion group: https://groups.google.com/forum/#!forum/django-mptt-dev

What is Modified Preorder Tree Traversal?
=========================================
Expand All @@ -32,8 +32,8 @@ details about how the technique itself works:
* `Storing Hierarchical Data in a Database`_
* `Managing Hierarchical Data in MySQL`_

.. _`Trees in SQL`: http://www.ibase.ru/files/articles/programming/dbmstrees/sqltrees.html
.. _`Storing Hierarchical Data in a Database`: http://www.sitepoint.com/print/hierarchical-data-database
.. _`Trees in SQL`: https://www.ibase.ru/files/articles/programming/dbmstrees/sqltrees.html
.. _`Storing Hierarchical Data in a Database`: https://www.sitepoint.com/hierarchical-data-database/
.. _`Managing Hierarchical Data in MySQL`: http://mikehillyer.com/articles/managing-hierarchical-data-in-mysql/

What is ``django-mptt``?
Expand Down
2 changes: 1 addition & 1 deletion docs/autogenerated.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ They're not necessarily very helpful. You might be just as well off reading the

mptt

.. _`source code`: http://github.com/django-mptt/django-mptt/
.. _`source code`: https://github.com/django-mptt/django-mptt/
4 changes: 2 additions & 2 deletions docs/forms.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ options::
+-- Child 2.1
+--+-- Child 2.1.1

.. _`ModelChoiceField`: http://docs.djangoproject.com/en/dev/ref/forms/fields/#django.forms.ModelChoiceField
.. _`ModelChoiceField`: https://docs.djangoproject.com/en/dev/ref/forms/fields/#django.forms.ModelChoiceField

``TreeNodeMultipleChoiceField``
-------------------------------
Expand All @@ -76,7 +76,7 @@ Just like ``TreeNodeChoiceField``, but accepts more than one value.
A subclass of `ChoiceField`_ whose choices default to the valid arguments
for the `move_to method`_.

.. _`ChoiceField`: http://docs.djangoproject.com/en/dev/ref/forms/fields/#choicefield
.. _`ChoiceField`: https://docs.djangoproject.com/en/dev/ref/forms/fields/#choicefield


Forms
Expand Down
6 changes: 3 additions & 3 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ named ``setup.py``. Enter this command::

...and the package will install automatically.

.. _`PyPI`: http://pypi.python.org/pypi/django-mptt/
.. _`PyPI`: https://pypi.python.org/pypi/django-mptt/
.. _`pip`: https://pip.pypa.io/en/stable/


Expand Down Expand Up @@ -52,6 +52,6 @@ from within the ``django-mptt`` directory.
If you're tracking master, keep an eye on the recent `Commit History`_
before you update your copy of the source code.

.. _`git`: http://git-scm.com/
.. _`git`: https://git-scm.com/
.. _`PYTHONPATH`: http://docs.python.org/tut/node8.html#SECTION008110000000000000000
.. _`Commit History`: http://github.com/django-mptt/django-mptt/commits/master
.. _`Commit History`: https://github.com/django-mptt/django-mptt/commits/master
2 changes: 1 addition & 1 deletion docs/models.rst
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ For more details, see the `move_to documentation`_ above.

Creates a ``QuerySet`` containing root nodes.

.. _`extra method`: http://docs.djangoproject.com/en/dev/ref/models/querysets/#extra-select-none-where-none-params-none-tables-none-order-by-none-select-params-none
.. _`extra method`: https://docs.djangoproject.com/en/dev/ref/models/querysets/#extra-select-none-where-none-params-none-tables-none-order-by-none-select-params-none

Example usage
-------------
Expand Down
4 changes: 2 additions & 2 deletions docs/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ details about how the technique itself works:
* `Storing Hierarchical Data in a Database`_
* `Managing Hierarchical Data in MySQL`_

.. _`Trees in SQL`: http://www.ibase.ru/files/articles/programming/dbmstrees/sqltrees.html
.. _`Storing Hierarchical Data in a Database`: http://www.sitepoint.com/print/hierarchical-data-database
.. _`Trees in SQL`: https://www.ibase.ru/files/articles/programming/dbmstrees/sqltrees.html
.. _`Storing Hierarchical Data in a Database`: https://www.sitepoint.com/hierarchical-data-database/
.. _`Managing Hierarchical Data in MySQL`: http://mikehillyer.com/articles/managing-hierarchical-data-in-mysql/


Expand Down
2 changes: 1 addition & 1 deletion docs/technical_details.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ exclusive.

Note: In the above paragraph 'client code' means any django app that uses mptt base models.

.. _`LOCK/UNLOCK statements are not transaction safe`: http://dev.mysql.com/doc/refman/5.0/en/lock-tables-and-transactions.html
.. _`LOCK/UNLOCK statements are not transaction safe`: https://dev.mysql.com/doc/refman/5.7/en/lock-tables-and-transactions.html



Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ tl;dr: MPTT makes most tree operations much cheaper in terms of queries. In fact
And this one takes zero queries:
* count the descendants of a given node

.. _`Storing Hierarchical Data in a Database`: http://www.sitepoint.com/hierarchical-data-database/
.. _`Storing Hierarchical Data in a Database`: https://www.sitepoint.com/hierarchical-data-database/
.. _`Managing Hierarchical Data in Mysql`: http://mikehillyer.com/articles/managing-hierarchical-data-in-mysql/

Enough intro. Let's get started.
Expand Down
4 changes: 2 additions & 2 deletions docs/upgrade.rst
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@ Isn't multiple inheritance evil? Well, maybe. However, the
Our brief testing says it works, but if you find that the Django internals are somehow
breaking this approach for you, please `create an issue`_ with specifics.

.. _`create an issue`: http://github.com/django-mptt/django-mptt/issues
.. _`Django model docs`: http://docs.djangoproject.com/en/dev/topics/db/models/#multiple-inheritance
.. _`create an issue`: https://github.com/django-mptt/django-mptt/issues
.. _`Django model docs`: https://docs.djangoproject.com/en/dev/topics/db/models/#multiple-inheritance


Compatibility with 0.3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
version=__import__('mptt').__version__,
author='Craig de Stigter',
author_email='craig.ds@gmail.com',
url='http://github.com/django-mptt/django-mptt',
url='https://github.com/django-mptt/django-mptt',
license='MIT License',
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
Expand Down

0 comments on commit 7ffa84e

Please sign in to comment.