Skip to content

Commit

Permalink
Add my name to copyright notices for files that I've contributed to
Browse files Browse the repository at this point in the history
The original copyright notices are of course kept.
They don't seem very updated, though..
  • Loading branch information
tobinus committed Jul 7, 2016
1 parent 397d0af commit 1bdc5c7
Show file tree
Hide file tree
Showing 19 changed files with 125 additions and 17 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Modified work Copyright 2016, Thorben Dahl <[email protected]>
# See license.* for more details

sdist: doc
python setup.py sdist

Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

# General information about the project.
project = u'PodGen'
copyright = u'2014, Lars Kiesow and 2016, Thorben Dahl'
copyright = u'2014, Lars Kiesow. Modified work © 2016, Thorben Dahl'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down
2 changes: 2 additions & 0 deletions license.bsd
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
Copyright 2011 Lars Kiesow. All rights reserved.
http://www.larskiesow.de

Modified work Copyright 2016 Thorben Dahl. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
Expand Down
11 changes: 11 additions & 0 deletions podgen/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# -*- coding: utf-8 -*-
"""
podgen
~~~~~~
Package which makes it easy to generate podcast RSS using Python.
See the official documentation at https://podgen.readthedocs.org
:copyright: 2016, Thorben Dahl <[email protected]>
:license: FreeBSD and LGPL, see license.* for more details.
"""
from .podcast import Podcast
from .episode import Episode
from .media import Media
Expand Down
6 changes: 3 additions & 3 deletions podgen/__main__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# -*- coding: utf-8 -*-
'''
podgen
~~~~~~~
:copyright: 2013, Lars Kiesow <[email protected]>
~~~~~~
:copyright: 2013, Lars Kiesow <[email protected]> and 2016, Thorben Dahl
<[email protected]>
:license: FreeBSD and LGPL, see license.* for more details.
'''

Expand Down
10 changes: 10 additions & 0 deletions podgen/category.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# -*- coding: utf-8 -*-
"""
podgen.category
~~~~~~~~~~~~~~~
This module contains Category, which represents a single iTunes category.
:copyright: 2016, Thorben Dahl <[email protected]>
:license: FreeBSD and LGPL, see license.* for more details.
"""
class Category(object):
"""Immutable class representing an iTunes category.
Expand Down
7 changes: 4 additions & 3 deletions podgen/episode.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# -*- coding: utf-8 -*-
"""
podgen.entry
~~~~~~~~~~~~~
podgen.episode
~~~~~~~~~~~~~~
:copyright: 2013, Lars Kiesow <[email protected]>
:copyright: 2013, Lars Kiesow <[email protected]> and 2016, Thorben Dahl
<[email protected]>
:license: FreeBSD and LGPL, see license.* for more details.
"""
Expand Down
11 changes: 11 additions & 0 deletions podgen/media.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# -*- coding: utf-8 -*-
"""
podgen.media
~~~~~~~~~~~~
This file contains the Media class, which represents a pointer to a media
file.
:copyright: 2016, Thorben Dahl <[email protected]>
:license: FreeBSD and LGPL, see license.* for more details.
"""
import warnings
from future.moves.urllib.parse import urlparse
import datetime
Expand Down
11 changes: 11 additions & 0 deletions podgen/not_supported_by_itunes_warning.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,13 @@
# -*- coding: utf-8 -*-
"""
podgen.not_supported_by_itunes_warning
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This file contains the NotSupportedByItunesWarning, which is used when the
library is used in a way that is not compatible with iTunes.
:copyright: 2016, Thorben Dahl <[email protected]>
:license: FreeBSD and LGPL, see license.* for more details.
"""
class NotSupportedByItunesWarning(UserWarning):
pass
11 changes: 11 additions & 0 deletions podgen/person.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# -*- coding: utf-8 -*-
"""
podgen.person
~~~~~~~~~~~~~
This file contains the Person class, which is used to represent a person or
an entity.
:copyright: 2016, Thorben Dahl <[email protected]>
:license: FreeBSD and LGPL, see license.* for more details.
"""
class Person(object):
"""Data-oriented class representing a single person or entity.
Expand Down
3 changes: 2 additions & 1 deletion podgen/podcast.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
podgen.feed
~~~~~~~~~~~~
:copyright: 2013, Lars Kiesow <[email protected]>
:copyright: 2013, Lars Kiesow <[email protected]> and 2016, Thorben Dahl
<[email protected]>
:license: FreeBSD and LGPL, see license.* for more details.
Expand Down
10 changes: 10 additions & 0 deletions podgen/tests/test_category.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# -*- coding: utf-8 -*-
"""
podgen.tests.test_category
~~~~~~~~~~~~~~~~~~~~~~~~~~
Module for testing the Category class.
:copyright: 2016, Thorben Dahl <[email protected]>
:license: FreeBSD and LGPL, see license.* for more details.
"""
import unittest

from podgen import Category
Expand Down
9 changes: 6 additions & 3 deletions podgen/tests/test_episode.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# -*- coding: utf-8 -*-

"""
Tests for a basic entry
podgen.tests.test_episode
~~~~~~~~~~~~~~~~~~~~~~~~~
Test the Episode class.
These are test cases for a basic entry.
:copyright: 2016, Thorben Dahl <[email protected]>
:license: FreeBSD and LGPL, see license.* for more details.
"""

import unittest
Expand Down
10 changes: 10 additions & 0 deletions podgen/tests/test_media.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# -*- coding: utf-8 -*-
"""
podgen.tests.test_media
~~~~~~~~~~~~~~~~~~~~~~~
Test the Media class, which represents a pointer to a media file.
:copyright: 2016, Thorben Dahl <[email protected]>
:license: FreeBSD and LGPL, see license.* for more details.
"""
from future.utils import iteritems
import unittest
import warnings
Expand Down
10 changes: 10 additions & 0 deletions podgen/tests/test_person.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# -*- coding: utf-8 -*-
"""
podgen.tests.test_person
~~~~~~~~~~~~~~~~~~~~~~~~
Test the Person class, which represents a person or an entity.
:copyright: 2016, Thorben Dahl <[email protected]>
:license: FreeBSD and LGPL, see license.* for more details.
"""
import unittest
from podgen import Person

Expand Down
10 changes: 6 additions & 4 deletions podgen/tests/test_podcast.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# -*- coding: utf-8 -*-

"""
Tests for a basic feed
podgen.tests.test_podcast
~~~~~~~~~~~~~~~~~~~~~~~~~
Test the Podcast alone, without any Episode objects.
These are test cases for a basic feed.
A basic feed does not contain entries so far.
:copyright: 2016, Thorben Dahl <[email protected]>
:license: FreeBSD and LGPL, see license.* for more details.
"""

import unittest
Expand Down
10 changes: 10 additions & 0 deletions podgen/tests/test_util.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# -*- coding: utf-8 -*-
"""
podgen.tests.test_util
~~~~~~~~~~~~~~~~~~~~~~
Test some of the functions found in the util module.
:copyright: 2016, Thorben Dahl <[email protected]>
:license: FreeBSD and LGPL, see license.* for more details.
"""
import unittest
from podgen import util

Expand Down
3 changes: 2 additions & 1 deletion podgen/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
This file contains helper functions for the feed generator module.
:copyright: 2013, Lars Kiesow <[email protected]>
:copyright: 2013, Lars Kiesow <[email protected]> and 2016, Thorben Dahl
<[email protected]>
:license: FreeBSD and LGPL, see license.* for more details.
"""
import sys, locale
Expand Down
3 changes: 2 additions & 1 deletion podgen/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
podgen.version
~~~~~~~~~~~~~~~
:copyright: 2013-2015, Lars Kiesow <[email protected]>
:copyright: 2013-2015, Lars Kiesow <[email protected]> and 2016, Thorben Dahl
<[email protected]>
:license: FreeBSD and LGPL, see license.* for more details.
Expand Down

0 comments on commit 1bdc5c7

Please sign in to comment.