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
calendar data you've synced, `khal <https://github.com/geier/khal>`_ is what
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
this software and associated documentation files (the "Software"), to deal in

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -3,7 +3,7 @@
tests.utils.vobject
~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer
:copyright: (c) 2014 Markus Unterwaditzer & contributors
: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
details.
:copyright: (c) 2014 Markus Unterwaditzer
:copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details.
'''
__version__ = '0.1.5'

View file

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

View file

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

View file

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

View file

@ -8,7 +8,7 @@
interface is described in `vdirsyncer.storage.base`, the `Storage` class
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.
'''

View file

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

View file

@ -3,7 +3,7 @@
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.
'''
import datetime

View file

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

View file

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

View file

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

View file

@ -3,7 +3,7 @@
vdirsyncer.storage.singlefile
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer
:copyright: (c) 2014 Markus Unterwaditzer & contributors
: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.
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.
'''
import itertools

View file

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

View file

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