Fix up links for new docs URL

This commit is contained in:
Markus Unterwaditzer 2016-08-15 20:44:45 +02:00
parent 4ca4f13423
commit e9185324ae
8 changed files with 14 additions and 14 deletions

View file

@ -1,3 +1,3 @@
Please see `the documentation Please see `the documentation
<https://vdirsyncer.readthedocs.io/en/stable/contributing.html>`_ for how to <https://vdirsyncer.pimutils.org/en/stable/contributing.html>`_ for how to
contribute to this project. contribute to this project.

View file

@ -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: Things to include in your bugreport:

View file

@ -62,7 +62,7 @@ linkcheck:
sphinx-build -W -b linkcheck ./docs/ ./docs/_build/linkcheck/ sphinx-build -W -b linkcheck ./docs/ ./docs/_build/linkcheck/
all: 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: release:
python setup.py sdist bdist_wheel upload python setup.py sdist bdist_wheel upload

View file

@ -2,7 +2,7 @@
vdirsyncer vdirsyncer
========== ==========
- `Documentation <https://vdirsyncer.readthedocs.io/en/stable/>`_ - `Documentation <https://vdirsyncer.pimutils.org/en/stable/>`_
- `Source code <https://github.com/pimutils/vdirsyncer>`_ - `Source code <https://github.com/pimutils/vdirsyncer>`_
Vdirsyncer synchronizes your calendars and addressbooks between two storages_. 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_, 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. none of which have to know or worry about syncing to a server.
.. _storages: https://vdirsyncer.readthedocs.io/en/latest/config.html#storages .. _storages: https://vdirsyncer.pimutils.org/en/latest/config.html#storages
.. _programs: https://vdirsyncer.readthedocs.io/en/stable/supported.html .. _programs: https://vdirsyncer.pimutils.org/en/stable/supported.html
It aims to be for CalDAV and CardDAV what `OfflineIMAP It aims to be for CalDAV and CardDAV what `OfflineIMAP
<http://offlineimap.org/>`_ is for IMAP. <http://offlineimap.org/>`_ is for IMAP.
@ -29,14 +29,14 @@ Links of interest
================= =================
* Check out `the tutorial * Check out `the tutorial
<https://vdirsyncer.readthedocs.io/en/stable/tutorial.html>`_ for basic <https://vdirsyncer.pimutils.org/en/stable/tutorial.html>`_ for basic
usage. usage.
* `Contact information * `Contact information
<https://vdirsyncer.readthedocs.io/en/stable/contact.html>`_ <https://vdirsyncer.pimutils.org/en/stable/contact.html>`_
* `How to contribute to this project * `How to contribute to this project
<https://vdirsyncer.readthedocs.io/en/stable/contributing.html>`_ <https://vdirsyncer.pimutils.org/en/stable/contributing.html>`_
License License
======= =======

View file

@ -5,7 +5,7 @@
# #
# Optional parameters are commented out. # Optional parameters are commented out.
# This file doesn't document all available parameters, see # 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] [general]
# A folder where vdirsyncer can store some metadata about each pair. # 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/ url = https://owncloud.example.com/remote.php/carddav/
#username = #username =
# The password can also be fetched from the system password storage, netrc or a # 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 = #password =
# CALDAV # CALDAV

View file

@ -2,7 +2,7 @@
vdirsyncer vdirsyncer
========== ==========
- `Documentation <https://vdirsyncer.readthedocs.io/en/stable/>`_ - `Documentation <https://vdirsyncer.pimutils.org/en/stable/>`_
- `Source code <https://github.com/pimutils/vdirsyncer>`_ - `Source code <https://github.com/pimutils/vdirsyncer>`_
Vdirsyncer synchronizes your calendars and addressbooks between two Vdirsyncer synchronizes your calendars and addressbooks between two

View file

@ -2,7 +2,7 @@
''' '''
Vdirsyncer synchronizes calendars and contacts. 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. how to package vdirsyncer.
''' '''

View file

@ -7,7 +7,7 @@ from __future__ import print_function
PROJECT_HOME = 'https://github.com/pimutils/vdirsyncer' PROJECT_HOME = 'https://github.com/pimutils/vdirsyncer'
BUGTRACKER_HOME = PROJECT_HOME + '/issues' BUGTRACKER_HOME = PROJECT_HOME + '/issues'
DOCS_HOME = 'https://vdirsyncer.readthedocs.io/en/stable' DOCS_HOME = 'https://vdirsyncer.pimutils.org/en/stable'
try: try:
from .version import version as __version__ # noqa from .version import version as __version__ # noqa