Copyright and contributor stuff

Fix #60
This commit is contained in:
Markus Unterwaditzer 2014-05-22 12:50:14 +02:00
parent 3e4f5ba995
commit c1eb55c241
33 changed files with 54 additions and 33 deletions

View file

@ -13,3 +13,15 @@
that syncronizes all the data. If you're looking for a viewer for the that syncronizes all the data. If you're looking for a viewer for the
calendar data you've synced, `khal <https://github.com/geier/khal>`_ is what calendar data you've synced, `khal <https://github.com/geier/khal>`_ is what
you're looking for. you're looking for.
* If you're submitting pull requests:
* Make sure your tests pass on Travis.
* But not because you wrote too few tests.
* Write descriptive commit messages, mostly because i need to write a
changelog at some point. Use ``git rebase -i`` and ``git commit --ammend``
if needed.
* Add yourself to ``CONTRIBUTORS.rst``.

9
CONTRIBUTORS.rst Normal file
View file

@ -0,0 +1,9 @@
Contributors
============
In alphabetical order:
- Christian Geier
- Clément Mondon
- Julian Mehne
- Markus Unterwaditzer

View file

@ -1,4 +1,4 @@
Copyright (c) 2013 Markus Unterwaditzer Copyright (c) 2014 Markus Unterwaditzer & contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in this software and associated documentation files (the "Software"), to deal in

View file

@ -9,7 +9,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
project = u'vdirsyncer' project = u'vdirsyncer'
copyright = u'2014, Markus Unterwaditzer' copyright = u'2014, Markus Unterwaditzer & contributors'
import pkg_resources import pkg_resources
try: try:
@ -46,6 +46,6 @@ man_pages = [
texinfo_documents = [ texinfo_documents = [
('index', 'vdirsyncer', u'vdirsyncer Documentation', ('index', 'vdirsyncer', u'vdirsyncer Documentation',
u'Markus Unterwaditzer', 'vdirsyncer', 'One line description of project.', u'Markus Unterwaditzer', 'vdirsyncer',
'Miscellaneous'), 'One line description of project.', 'Miscellaneous'),
] ]

View file

@ -6,7 +6,7 @@
vdirsyncer is a syncronization tool for vdir. See the README for more vdirsyncer is a syncronization tool for vdir. See the README for more
details. details.
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -5,7 +5,7 @@
Test suite for vdirsyncer. Test suite for vdirsyncer.
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -3,7 +3,7 @@
tests.storage tests.storage
~~~~~~~~~~~~~ ~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''
import random import random

View file

@ -3,6 +3,6 @@
tests.storage.dav tests.storage.dav
~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -3,6 +3,6 @@
tests.storage.dav.servers tests.storage.dav.servers
~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -3,7 +3,7 @@
tests.storage.dav.test_main tests.storage.dav.test_main
~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -4,7 +4,7 @@
tests.storage.filesystem tests.storage.filesystem
~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -3,7 +3,7 @@
tests.storage.test_http tests.storage.test_http
~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -4,7 +4,7 @@
tests.storage.test_memory tests.storage.test_memory
~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -3,7 +3,7 @@
tests.storage.test_singlefile tests.storage.test_singlefile
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -3,7 +3,7 @@
tests.test_cli tests.test_cli
~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''
from textwrap import dedent from textwrap import dedent

View file

@ -3,7 +3,7 @@
tests.test_sync tests.test_sync
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -3,6 +3,6 @@
tests.utils tests.utils
~~~~~~~~~~~ ~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -3,7 +3,7 @@
tests.utils.test_main tests.utils.test_main
~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -3,7 +3,7 @@
tests.utils.vobject tests.utils.vobject
~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -6,7 +6,7 @@
vdirsyncer is a syncronization tool for vdir. See the README for more vdirsyncer is a syncronization tool for vdir. See the README for more
details. details.
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''
__version__ = '0.1.5' __version__ = '0.1.5'

View file

@ -3,7 +3,7 @@
vdirsyncer.cli vdirsyncer.cli
~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -6,7 +6,7 @@
Contains exception classes used by vdirsyncer. Not all exceptions are here, Contains exception classes used by vdirsyncer. Not all exceptions are here,
only the most commonly used ones. only the most commonly used ones.
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -3,7 +3,7 @@
vdirsyncer.log vdirsyncer.log
~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''
import logging import logging

View file

@ -8,7 +8,7 @@
interface is described in `vdirsyncer.storage.base`, the `Storage` class interface is described in `vdirsyncer.storage.base`, the `Storage` class
should be a superclass of all storage classes. should be a superclass of all storage classes.
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -3,7 +3,7 @@
vdirsyncer.storage.base vdirsyncer.storage.base
~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -3,7 +3,7 @@
vdirsyncer.storage.dav vdirsyncer.storage.dav
~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer, Christian Geier and contributors :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''
import datetime import datetime

View file

@ -3,7 +3,7 @@
vdirsyncer.storage.filesystem vdirsyncer.storage.filesystem
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -3,7 +3,7 @@
vdirsyncer.storage.http vdirsyncer.storage.http
~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -3,7 +3,7 @@
vdirsyncer.storage.memory vdirsyncer.storage.memory
~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -3,7 +3,7 @@
vdirsyncer.storage.singlefile vdirsyncer.storage.singlefile
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -12,7 +12,7 @@
The algorithm is based on the blogpost "How OfflineIMAP works" by Edward Z. The algorithm is based on the blogpost "How OfflineIMAP works" by Edward Z.
Yang. http://blog.ezyang.com/2012/08/how-offlineimap-works/ Yang. http://blog.ezyang.com/2012/08/how-offlineimap-works/
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''
import itertools import itertools

View file

@ -3,7 +3,7 @@
vdirsyncer.utils vdirsyncer.utils
~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''

View file

@ -3,7 +3,7 @@
vdirsyncer.utils.vobject vdirsyncer.utils.vobject
~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''
import hashlib import hashlib