From e9185324ae5bf0e4ba72a9b07b0d50814b06ba16 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Mon, 15 Aug 2016 20:44:45 +0200 Subject: [PATCH] Fix up links for new docs URL --- CONTRIBUTING.rst | 2 +- ISSUE_TEMPLATE.md | 2 +- Makefile | 2 +- README.rst | 12 ++++++------ config.example | 4 ++-- docs/index.rst | 2 +- setup.py | 2 +- vdirsyncer/__init__.py | 2 +- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 5df2ac3..94e89da 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 209ff4e..2c2ad40 100644 --- a/ISSUE_TEMPLATE.md +++ b/ISSUE_TEMPLATE.md @@ -1,4 +1,4 @@ -Before you submit bug reports: https://vdirsyncer.readthedocs.io/en/stable/contributing.html +Before you submit bug reports: https://vdirsyncer.pimutils.org/en/stable/contributing.html Things to include in your bugreport: diff --git a/Makefile b/Makefile index 78587b6..1e9343f 100644 --- a/Makefile +++ b/Makefile @@ -62,7 +62,7 @@ linkcheck: sphinx-build -W -b linkcheck ./docs/ ./docs/_build/linkcheck/ all: - $(error Take a look at https://vdirsyncer.readthedocs.io/en/stable/tutorial.html#installation) + $(error Take a look at https://vdirsyncer.pimutils.org/en/stable/tutorial.html#installation) release: python setup.py sdist bdist_wheel upload diff --git a/README.rst b/README.rst index f4b0adf..8d18055 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.io/en/latest/config.html#storages -.. _programs: https://vdirsyncer.readthedocs.io/en/stable/supported.html +.. _storages: https://vdirsyncer.pimutils.org/en/latest/config.html#storages +.. _programs: https://vdirsyncer.pimutils.org/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 38b714c..8a1649a 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.io/ for the rest of them. +# http://vdirsyncer.pimutils.org/ 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.io/en/stable/keyring.html +# custom command. See http://vdirsyncer.pimutils.org/en/stable/keyring.html #password = # CALDAV diff --git a/docs/index.rst b/docs/index.rst index 52ccdef..97a374a 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/setup.py b/setup.py index 386ca7b..bf0dcfb 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ ''' Vdirsyncer synchronizes calendars and contacts. -Please refer to https://vdirsyncer.readthedocs.io/en/stable/packaging.html for +Please refer to https://vdirsyncer.pimutils.org/en/stable/packaging.html for how to package vdirsyncer. ''' diff --git a/vdirsyncer/__init__.py b/vdirsyncer/__init__.py index 4ded16a..f02cc06 100644 --- a/vdirsyncer/__init__.py +++ b/vdirsyncer/__init__.py @@ -7,7 +7,7 @@ from __future__ import print_function PROJECT_HOME = 'https://github.com/pimutils/vdirsyncer' BUGTRACKER_HOME = PROJECT_HOME + '/issues' -DOCS_HOME = 'https://vdirsyncer.readthedocs.io/en/stable' +DOCS_HOME = 'https://vdirsyncer.pimutils.org/en/stable' try: from .version import version as __version__ # noqa