From 267648948e5a442519a478423e1c7bfbf10b25b3 Mon Sep 17 00:00:00 2001 From: Bahtiar `kalkin-` Gadimov Date: Mon, 11 Jan 2016 23:10:11 +0100 Subject: [PATCH] Fix kalkin links to omemo --- .cookiecutterrc | 2 +- CONTRIBUTING.rst | 8 ++++---- README.rst | 16 ++++++++-------- ci/appveyor-download.py | 2 +- docs/conf.py | 6 +++--- 5 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.cookiecutterrc b/.cookiecutterrc index 794bdf2..4aabdf9 100644 --- a/.cookiecutterrc +++ b/.cookiecutterrc @@ -43,5 +43,5 @@ default_context: test_runner: 'pytest' travis: 'yes' version: '0.1.0' - website: 'https://github.com/kalkin' + website: 'https://github.com/omemo' year: 'now' diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index a848b75..a284b22 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -8,7 +8,7 @@ little bit helps, and credit will always be given. Bug reports =========== -When `reporting a bug `_ please include: +When `reporting a bug `_ please include: * Your operating system name and version. * Any details about your local setup that might be helpful in troubleshooting. @@ -24,7 +24,7 @@ articles, and such. Feature requests and feedback ============================= -The best way to send feedback is to file an issue at https://github.com/kalkin/python-omemo/issues. +The best way to send feedback is to file an issue at https://github.com/omemo/python-omemo/issues. If you are proposing a feature: @@ -37,7 +37,7 @@ Development To set up `python-omemo` for local development: -1. `Fork python-omemo on GitHub `_. +1. `Fork python-omemo on GitHub `_. 2. Clone your fork locally:: git clone git@github.com:your_name_here/python-omemo.git @@ -73,7 +73,7 @@ For merging, you should: 4. Add yourself to ``AUTHORS.rst``. .. [1] If you don't have all the necessary python versions available locally you can rely on Travis - it will - `run the tests `_ for each change you add in the pull request. + `run the tests `_ for each change you add in the pull request. It will be slower though ... diff --git a/README.rst b/README.rst index e426e66..b7f4b61 100644 --- a/README.rst +++ b/README.rst @@ -20,21 +20,21 @@ Overview :target: https://readthedocs.org/projects/python-omemo :alt: Documentation Status -.. |travis| image:: https://travis-ci.org/kalkin/python-omemo.svg?branch=master +.. |travis| image:: https://travis-ci.org/omemo/python-omemo.svg?branch=master :alt: Travis-CI Build Status - :target: https://travis-ci.org/kalkin/python-omemo + :target: https://travis-ci.org/omemo/python-omemo -.. |appveyor| image:: https://ci.appveyor.com/api/projects/status/github/kalkin/python-omemo?branch=master&svg=true +.. |appveyor| image:: https://ci.appveyor.com/api/projects/status/github/omemo/python-omemo?branch=master&svg=true :alt: AppVeyor Build Status - :target: https://ci.appveyor.com/project/kalkin/python-omemo + :target: https://ci.appveyor.com/project/omemo/python-omemo -.. |requires| image:: https://requires.io/github/kalkin/python-omemo/requirements.svg?branch=master +.. |requires| image:: https://requires.io/github/omemo/python-omemo/requirements.svg?branch=master :alt: Requirements Status - :target: https://requires.io/github/kalkin/python-omemo/requirements/?branch=master + :target: https://requires.io/github/omemo/python-omemo/requirements/?branch=master -.. |codecov| image:: https://codecov.io/github/kalkin/python-omemo/coverage.svg?branch=master +.. |codecov| image:: https://codecov.io/github/omemo/python-omemo/coverage.svg?branch=master :alt: Coverage Status - :target: https://codecov.io/github/kalkin/python-omemo + :target: https://codecov.io/github/omemo/python-omemo .. |version| image:: https://img.shields.io/pypi/v/python-omemo.svg?style=flat :alt: PyPI Package latest release diff --git a/ci/appveyor-download.py b/ci/appveyor-download.py index ac057b5..2ea63e0 100755 --- a/ci/appveyor-download.py +++ b/ci/appveyor-download.py @@ -93,7 +93,7 @@ def unpack_zipfile(filename): parser = argparse.ArgumentParser(description='Download artifacts from AppVeyor.') parser.add_argument('--id', metavar='PROJECT_ID', - default='kalkin/python-omemo', + default='omemo/python-omemo', help='Project ID in AppVeyor.') parser.add_argument('build', nargs='?', diff --git a/docs/conf.py b/docs/conf.py index 95f5a77..270a7a5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,8 +30,8 @@ pygments_style = 'trac' templates_path = ['.'] extlinks = { - 'issue': ('https://github.com/kalkin/python-omemo/issues/%s', '#'), - 'pr': ('https://github.com/kalkin/python-omemo/pull/%s', 'PR #'), + 'issue': ('https://github.com/omemo/python-omemo/issues/%s', '#'), + 'pr': ('https://github.com/omemo/python-omemo/pull/%s', 'PR #'), } # on_rtd is whether we are on readthedocs.org on_rtd = os.environ.get('READTHEDOCS', None) == 'True' @@ -45,7 +45,7 @@ html_last_updated_fmt = '%b %d, %Y' html_split_index = True html_sidebars = { - '**': ['searchbox.html', 'globaltoc.html', 'sourcelink.html'], + '**': ['searchbox.html', 'globaltoc.html', 'sourcelink.html'], } html_short_title = '%s-%s' % (project, version)