Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert readthedocs links for their .org -> .io migration for hosted projects #34

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ All bugs/feature details can be found at:
Where XXXXX is the 'Issue #' referenced below. Additionally, this change log
is available online at:

http://drest.readthedocs.org/en/latest/changelog.html
https://drest.readthedocs.io/en/latest/changelog.html

.. raw:: html

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Features include:
More Information
----------------

* RTFD: http://drest.rtfd.org/
* RTFD: https://drest.readthedocs.io/
* CODE: http://github.com/datafolklabs/drest/
* PYPI: http://pypi.python.org/pypi/drest/
* T-CI: http://travis-ci.org/datafolklabs/drest/
Expand Down
2 changes: 1 addition & 1 deletion doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Key Features:

Additional Links:

* RTFD: `http://drest.rtfd.org/ <http://drest.rtfd.org/>`_
* RTFD: `https://drest.readthedocs.io/ <https://drest.readthedocs.io/>`_
* CODE: `http://github.com/datafolklabs/drest/ <http://github.com/datafolklabs/drest/>`_
* PYPI: `http://pypi.python.org/pypi/drest/ <http://pypi.python.org/pypi/drest/>`_
* T-CI: `http://travis-ci.org/#!/datafolklabs/drest <http://travis-ci.org/#!/datafolklabs/drest>`_
Expand Down
2 changes: 1 addition & 1 deletion doc/source/tastypie.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Working With Django TastyPie
============================

dRest includes an API specifically built for the
`Django TastyPie <http://django-tastypie.readthedocs.org/>`_ API framework.
`Django TastyPie <https://django-tastypie.readthedocs.io/>`_ API framework.
It handles auto-detection of resources, and their schema, as well as
other features to support the interface including getting resource data
by 'resource_uri'.
Expand Down
6 changes: 3 additions & 3 deletions drest/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def add_resource(self, name, resource_handler=None, path=None):
class TastyPieAPI(API):
"""
This class implements an API client, specifically tailored for
interfacing with `TastyPie <http://django-tastypie.readthedocs.org/en/latest>`_.
interfacing with `TastyPie <https://django-tastypie.readthedocs.io/en/latest>`_.

Optional / Meta Arguments:

Expand Down Expand Up @@ -364,7 +364,7 @@ class TastyPieAPI(API):
api.users.post(data_dict)
api.users.delete(<pk>)

What about filtering? (these depend on how the `API is configured <http://django-tastypie.readthedocs.org/en/latest/resources.html#basic-filtering>`_):
What about filtering? (these depend on how the `API is configured <https://django-tastypie.readthedocs.io/en/latest/resources.html#basic-filtering>`_):

.. code-block:: python

Expand Down Expand Up @@ -411,7 +411,7 @@ def _auth_via_api_key(self, user, api_key, **kw):
"""
This authentication mechanism adds an Authorization header for
user/api_key per the
`TastyPie Documentation <http://django-tastypie.readthedocs.org/en/latest/authentication_authorization.html>`_.
`TastyPie Documentation <https://django-tastypie.readthedocs.io/en/latest/authentication.html>`_.

Required Arguments:

Expand Down
2 changes: 1 addition & 1 deletion drest/request.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ def handle_response(self, response_object):
class TastyPieRequestHandler(RequestHandler):
"""
This class implements the IRequest interface, specifically tailored for
interfacing with `TastyPie <http://django-tastypie.readthedocs.org/en/latest>`_.
interfacing with `TastyPie <https://django-tastypie.readthedocs.io/en/latest>`_.

See :mod:`drest.request.RequestHandler` for Meta options and usage.

Expand Down
2 changes: 1 addition & 1 deletion drest/resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def delete(self, resource_id, params=None):
class TastyPieResourceHandler(RESTResourceHandler):
"""
This class implements the IResource interface, specifically tailored for
interfacing with `TastyPie <http://django-tastypie.readthedocs.org/en/latest>`_.
interfacing with `TastyPie <https://django-tastypie.readthedocs.io/en/latest>`_.

"""
class Meta:
Expand Down