Skip to content

Commit 6a6dd9a

Browse files
authored
Merge pull request #25 from tobinus/add-name-to-copyright-notices-#22
Add my name to copyright notices for files that I've contributed to, closes #22
2 parents 397d0af + 1bdc5c7 commit 6a6dd9a

19 files changed

+125
-17
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Modified work Copyright 2016, Thorben Dahl <[email protected]>
2+
# See license.* for more details
3+
14
sdist: doc
25
python setup.py sdist
36

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
# General information about the project.
4747
project = u'PodGen'
48-
copyright = u'2014, Lars Kiesow and 2016, Thorben Dahl'
48+
copyright = u'2014, Lars Kiesow. Modified work © 2016, Thorben Dahl'
4949

5050
# The version info for the project you're documenting, acts as replacement for
5151
# |version| and |release|, also used in various other places throughout the

license.bsd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
Copyright 2011 Lars Kiesow. All rights reserved.
33
http://www.larskiesow.de
44

5+
Modified work Copyright 2016 Thorben Dahl. All rights reserved.
6+
57
Redistribution and use in source and binary forms, with or without
68
modification, are permitted provided that the following conditions
79
are met:

podgen/__init__.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
# -*- coding: utf-8 -*-
2+
"""
3+
podgen
4+
~~~~~~
5+
6+
Package which makes it easy to generate podcast RSS using Python.
7+
8+
See the official documentation at https://podgen.readthedocs.org
9+
10+
:copyright: 2016, Thorben Dahl <[email protected]>
11+
:license: FreeBSD and LGPL, see license.* for more details.
12+
"""
213
from .podcast import Podcast
314
from .episode import Episode
415
from .media import Media

podgen/__main__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# -*- coding: utf-8 -*-
22
'''
33
podgen
4-
~~~~~~~
5-
6-
:copyright: 2013, Lars Kiesow <[email protected]>
4+
~~~~~~
75
6+
:copyright: 2013, Lars Kiesow <[email protected]> and 2016, Thorben Dahl
7+
88
:license: FreeBSD and LGPL, see license.* for more details.
99
'''
1010

podgen/category.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
podgen.category
4+
~~~~~~~~~~~~~~~
5+
6+
This module contains Category, which represents a single iTunes category.
7+
8+
:copyright: 2016, Thorben Dahl <[email protected]>
9+
:license: FreeBSD and LGPL, see license.* for more details.
10+
"""
111
class Category(object):
212
"""Immutable class representing an iTunes category.
313

podgen/episode.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# -*- coding: utf-8 -*-
22
"""
3-
podgen.entry
4-
~~~~~~~~~~~~~
3+
podgen.episode
4+
~~~~~~~~~~~~~~
55
6-
:copyright: 2013, Lars Kiesow <[email protected]>
6+
:copyright: 2013, Lars Kiesow <[email protected]> and 2016, Thorben Dahl
7+
78
89
:license: FreeBSD and LGPL, see license.* for more details.
910
"""

podgen/media.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
podgen.media
4+
~~~~~~~~~~~~
5+
6+
This file contains the Media class, which represents a pointer to a media
7+
file.
8+
9+
:copyright: 2016, Thorben Dahl <[email protected]>
10+
:license: FreeBSD and LGPL, see license.* for more details.
11+
"""
112
import warnings
213
from future.moves.urllib.parse import urlparse
314
import datetime
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
podgen.not_supported_by_itunes_warning
4+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5+
6+
This file contains the NotSupportedByItunesWarning, which is used when the
7+
library is used in a way that is not compatible with iTunes.
8+
9+
:copyright: 2016, Thorben Dahl <[email protected]>
10+
:license: FreeBSD and LGPL, see license.* for more details.
11+
"""
112
class NotSupportedByItunesWarning(UserWarning):
213
pass

podgen/person.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
podgen.person
4+
~~~~~~~~~~~~~
5+
6+
This file contains the Person class, which is used to represent a person or
7+
an entity.
8+
9+
:copyright: 2016, Thorben Dahl <[email protected]>
10+
:license: FreeBSD and LGPL, see license.* for more details.
11+
"""
112
class Person(object):
213
"""Data-oriented class representing a single person or entity.
314

0 commit comments

Comments
 (0)