From 632b884e5425ceae31191f82bafe3a4c7e331b4f Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Thu, 28 Apr 2016 01:30:56 +0200 Subject: [PATCH] New domain for readthedocs --- CONTRIBUTING.rst | 2 +- ISSUE_TEMPLATE.md | 2 +- Makefile | 2 +- README.rst | 12 ++++++------ config.example | 4 ++-- docs/contributing.rst | 6 +++--- docs/index.rst | 2 +- docs/problems.rst | 2 +- vdirsyncer/__init__.py | 2 +- 9 files changed, 17 insertions(+), 17 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index a3c1f35..5df2ac3 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -1,3 +1,3 @@ Please see `the documentation -`_ for how to +`_ for how to contribute to this project. diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md index 3a5d2c7..bd29c6e 100644 --- a/ISSUE_TEMPLATE.md +++ b/ISSUE_TEMPLATE.md @@ -1,4 +1,4 @@ -Before you submit bug reports: https://vdirsyncer.readthedocs.org/en/stable/contributing.html +Before you submit bug reports: https://vdirsyncer.readthedocs.io/en/stable/contributing.html Things to include in your bugreport: diff --git a/Makefile b/Makefile index fda21d2..b1571ca 100644 --- a/Makefile +++ b/Makefile @@ -61,7 +61,7 @@ linkcheck: sphinx-build -W -b linkcheck ./docs/ ./docs/_build/linkcheck/ all: - $(error Take a look at https://vdirsyncer.readthedocs.org/en/stable/tutorial.html#installation) + $(error Take a look at https://vdirsyncer.readthedocs.io/en/stable/tutorial.html#installation) release: python setup.py sdist bdist_wheel upload diff --git a/README.rst b/README.rst index 6a5df89..f4b0adf 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ vdirsyncer ========== -- `Documentation `_ +- `Documentation `_ - `Source code `_ Vdirsyncer synchronizes your calendars and addressbooks between two storages_. @@ -10,8 +10,8 @@ The most popular purpose is to synchronize a CalDAV/CardDAV server with a local folder or file. The local data can then be accessed via a variety of programs_, none of which have to know or worry about syncing to a server. -.. _storages: https://vdirsyncer.readthedocs.org/en/latest/config.html#storages -.. _programs: https://vdirsyncer.readthedocs.org/en/stable/supported.html +.. _storages: https://vdirsyncer.readthedocs.io/en/latest/config.html#storages +.. _programs: https://vdirsyncer.readthedocs.io/en/stable/supported.html It aims to be for CalDAV and CardDAV what `OfflineIMAP `_ is for IMAP. @@ -29,14 +29,14 @@ Links of interest ================= * Check out `the tutorial - `_ for basic + `_ for basic usage. * `Contact information - `_ + `_ * `How to contribute to this project - `_ + `_ License ======= diff --git a/config.example b/config.example index 50bec77..38b714c 100644 --- a/config.example +++ b/config.example @@ -5,7 +5,7 @@ # # Optional parameters are commented out. # This file doesn't document all available parameters, see -# http://vdirsyncer.readthedocs.org/ for the rest of them. +# http://vdirsyncer.readthedocs.io/ for the rest of them. [general] # A folder where vdirsyncer can store some metadata about each pair. @@ -46,7 +46,7 @@ type = carddav url = https://owncloud.example.com/remote.php/carddav/ #username = # The password can also be fetched from the system password storage, netrc or a -# custom command. See http://vdirsyncer.readthedocs.org/en/stable/keyring.html +# custom command. See http://vdirsyncer.readthedocs.io/en/stable/keyring.html #password = # CALDAV diff --git a/docs/contributing.rst b/docs/contributing.rst index 5774257..ef90f68 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -33,7 +33,7 @@ Reporting bugs -------------- * Make sure your problem isn't already listed in `Known Problems - `_. + `_. * Make sure you have the latest version by executing ``pip install --user --upgrade vdirsyncer``. @@ -47,7 +47,7 @@ If you're suggesting a feature, keep in mind that vdirsyncer tries not to be a full calendar or contacts client, but rather just the piece of software that synchronizes all the data. `Take a look at the documentation for software working with vdirsyncer -`_. +`_. Submitting patches, pull requests ================================= @@ -81,4 +81,4 @@ Then you can run:: If you have any questions, feel free to open issues about it. -.. _virtualenv: http://virtualenv.readthedocs.org/ +.. _virtualenv: http://virtualenv.readthedocs.io/ diff --git a/docs/index.rst b/docs/index.rst index b2b3ae8..52ccdef 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -2,7 +2,7 @@ vdirsyncer ========== -- `Documentation `_ +- `Documentation `_ - `Source code `_ Vdirsyncer synchronizes your calendars and addressbooks between two diff --git a/docs/problems.rst b/docs/problems.rst index cbe4f5f..ba629d6 100644 --- a/docs/problems.rst +++ b/docs/problems.rst @@ -100,5 +100,5 @@ If you're done with vdirsyncer, you can do:: and vdirsyncer will be uninstalled, including its dependencies. -.. _virtualenv: https://virtualenv.readthedocs.org/ +.. _virtualenv: https://virtualenv.readthedocs.io/ .. _pipsi: https://github.com/mitsuhiko/pipsi diff --git a/vdirsyncer/__init__.py b/vdirsyncer/__init__.py index e87acf5..128ca67 100644 --- a/vdirsyncer/__init__.py +++ b/vdirsyncer/__init__.py @@ -6,7 +6,7 @@ vdirsyncer is a synchronization tool for vdir. See the README for more details. from __future__ import print_function PROJECT_HOME = 'https://github.com/pimutils/vdirsyncer' -DOCS_HOME = 'https://vdirsyncer.readthedocs.org/en/stable' +DOCS_HOME = 'https://vdirsyncer.readthedocs.io/en/stable' try: from .version import version as __version__ # noqa