mirror of
https://github.com/erkin/ponysay.git
synced 2025-02-21 03:44:22 +01:00
proper copyright notices (mainly, the copyright (C) line under WTFPL's version and date should refer to the license it self, not the program)
This commit is contained in:
parent
cc18e2b1d0
commit
0c71b5c512
4 changed files with 34 additions and 13 deletions
10
COPYING
10
COPYING
|
@ -1,7 +1,14 @@
|
||||||
|
Ponysay — Cowsay reimplemention for ponies
|
||||||
|
|
||||||
|
Copyright (C) 2012 Erkin Batu Altunbaş et al.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||||
Version 2, December 2004
|
Version 2, December 2004
|
||||||
|
|
||||||
Copyright (C) 2012 Erkin Batu Altunbaş
|
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
|
||||||
|
|
||||||
Everyone is permitted to copy and distribute verbatim or modified
|
Everyone is permitted to copy and distribute verbatim or modified
|
||||||
copies of this license document, and changing it is allowed as long
|
copies of this license document, and changing it is allowed as long
|
||||||
|
@ -11,3 +18,4 @@
|
||||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
0. You just DO WHAT THE FUCK YOU WANT TO.
|
0. You just DO WHAT THE FUCK YOU WANT TO.
|
||||||
|
|
||||||
|
|
|
@ -1723,6 +1723,11 @@ Patchers and other contributors of ponysay:
|
||||||
@node Ponysay license
|
@node Ponysay license
|
||||||
@appendix Ponysay license
|
@appendix Ponysay license
|
||||||
|
|
||||||
|
Ponysay is release by Erkin Batu Altunbaş et al. @*
|
||||||
|
Copyright @copyright{} 2012 Erkin Batu Altunbaş et al.
|
||||||
|
|
||||||
|
@*
|
||||||
|
|
||||||
Ponysay is Free Software (yet not Open Source) and in licensed under the terms
|
Ponysay is Free Software (yet not Open Source) and in licensed under the terms
|
||||||
of Do What The Fuck You Want To Public License (WTFPL) version 2.
|
of Do What The Fuck You Want To Public License (WTFPL) version 2.
|
||||||
|
|
||||||
|
@ -1744,12 +1749,13 @@ changes. Access to the source code is a precondition for this.
|
||||||
|
|
||||||
@*
|
@*
|
||||||
|
|
||||||
@center DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
@cartouche
|
||||||
@center Version 2, December 2004
|
@verbatim
|
||||||
|
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||||
|
Version 2, December 2004
|
||||||
|
|
||||||
Copyright @copyright{} 2012 Erkin Batu Altunbaş
|
Copyright © 2004 Sam Hocevar <sam@hocevar.net>
|
||||||
|
|
||||||
@quotation
|
|
||||||
Everyone is permitted to copy and distribute verbatim or modified
|
Everyone is permitted to copy and distribute verbatim or modified
|
||||||
copies of this license document, and changing it is allowed as long
|
copies of this license document, and changing it is allowed as long
|
||||||
as the name is changed.
|
as the name is changed.
|
||||||
|
@ -1758,9 +1764,8 @@ as the name is changed.
|
||||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
0. You just DO WHAT THE FUCK YOU WANT TO.
|
0. You just DO WHAT THE FUCK YOU WANT TO.
|
||||||
@end quotation
|
@end verbatim
|
||||||
|
@end cartouche
|
||||||
|
|
||||||
|
|
||||||
@node GNU Free Documentation License
|
@node GNU Free Documentation License
|
||||||
@appendix GNU Free Documentation License
|
@appendix GNU Free Documentation License
|
||||||
|
|
16
ponysay
16
ponysay
|
@ -2,17 +2,25 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
'''
|
'''
|
||||||
ponysay.py - Ponysay, a cowsay reimplementation for ponies
|
ponysay.py - Ponysay, cowsay reimplementation for ponies
|
||||||
Copyright (C) 2012 Erkin Batu Altunbaş
|
Copyright (C) 2012 Erkin Batu Altunbaş et al.
|
||||||
|
|
||||||
Authors: Erkin Batu Altunbaş: Project leader, helped write the first implementation
|
This program is free software. It comes without any warranty, to
|
||||||
|
the extent permitted by applicable law. You can redistribute it
|
||||||
|
and/or modify it under the terms of the Do What The Fuck You Want
|
||||||
|
To Public License, Version 2, as published by Sam Hocevar. See
|
||||||
|
http://sam.zoy.org/wtfpl/COPYING for more details.
|
||||||
|
|
||||||
|
|
||||||
|
Authors of ponysay.py:
|
||||||
|
|
||||||
|
Erkin Batu Altunbaş: Project leader, helped write the first implementation
|
||||||
Mattias "maandree" Andrée: Major contributor of both implementions
|
Mattias "maandree" Andrée: Major contributor of both implementions
|
||||||
Elis "etu" Axelsson: Major contributor of current implemention and patcher of the first implementation
|
Elis "etu" Axelsson: Major contributor of current implemention and patcher of the first implementation
|
||||||
Sven-Hendrik "svenstaro" Haase: Major contributor of the first implementation
|
Sven-Hendrik "svenstaro" Haase: Major contributor of the first implementation
|
||||||
Jan Alexander "heftig" Steffens: Major contributor of the first implementation
|
Jan Alexander "heftig" Steffens: Major contributor of the first implementation
|
||||||
Kyah "L-four" Rindlisbacher: Patched the first implementation
|
Kyah "L-four" Rindlisbacher: Patched the first implementation
|
||||||
|
|
||||||
License: WTFPL
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|
BIN
ponysay.pdf
BIN
ponysay.pdf
Binary file not shown.
Loading…
Reference in a new issue