Skip to content

Commit 5cbb137

Browse files
committed
Updated and lightened copyright header in source files
1 parent a552302 commit 5cbb137

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+242
-1133
lines changed

LICENSE

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
PySFML - Python bindings for SFML
2-
Copyright (c) 2012-2014, Jonathan De Wachter <dewachter.jonathan@gmail.com>
2+
Copyright (c) 2012-2016, Jonathan De Wachter <dewachter.jonathan@gmail.com>
33
Edwin Marshall <emarshall85@gmail.com>
4-
5-
This software is provided 'as-is', without any express or implied warranty.
6-
In no event will the authors be held liable for any damages arising from the
4+
5+
This software is provided 'as-is', without any express or implied warranty.
6+
In no event will the authors be held liable for any damages arising from the
77
use of this software.
88

9-
Permission is granted to anyone to use this software for any purpose, including
10-
commercial applications, and to alter it and redistribute it freely, subject to
9+
Permission is granted to anyone to use this software for any purpose, including
10+
commercial applications, and to alter it and redistribute it freely, subject to
1111
the following restrictions:
1212

13-
1. The origin of this software must not be misrepresented; you must not claim
14-
that you wrote the original software. If you use this software in a product, an
15-
acknowledgment in the product documentation would be appreciated but is not
13+
1. The origin of this software must not be misrepresented; you must not claim
14+
that you wrote the original software. If you use this software in a product, an
15+
acknowledgment in the product documentation would be appreciated but is not
1616
required.
1717

18-
2. Altered source versions must be plainly marked as such, and must not be
18+
2. Altered source versions must be plainly marked as such, and must not be
1919
misrepresented as being the original software.
2020

2121
3. This notice may not be removed or altered from any source distribution.

include/Includes/pysfml/audio.pxd

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,9 @@
1-
#-------------------------------------------------------------------------------
21
# PySFML - Python bindings for SFML
3-
# Copyright (c) 2012-2014, Jonathan De Wachter <dewachter.jonathan@gmail.com>
2+
# Copyright (c) 2012-2016, Jonathan De Wachter <dewachter.jonathan@gmail.com>
43
# Edwin Marshall <emarshall85@gmail.com>
54
#
6-
# This software is provided 'as-is', without any express or implied warranty.
7-
# In no event will the authors be held liable for any damages arising from the
8-
# use of this software.
9-
#
10-
# Permission is granted to anyone to use this software for any purpose,
11-
# including commercial applications, and to alter it and redistribute it
12-
# freely, subject to the following restrictions:
13-
#
14-
# 1. The origin of this software must not be misrepresented; you must not
15-
# claim that you wrote the original software. If you use this software in a
16-
# product, an acknowledgment in the product documentation would be
17-
# appreciated but is not required.
18-
#
19-
# 2. Altered source versions must be plainly marked as such, and must not be
20-
# misrepresented as being the original software.
21-
#
22-
# 3. This notice may not be removed or altered from any source distribution.
23-
#-------------------------------------------------------------------------------
5+
# This file is part of PySFML project and is available under the zlib
6+
# license.
247

258
cimport sfml as sf
269
from pysfml.system cimport Int16

include/Includes/pysfml/graphics.pxd

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,9 @@
1-
#-------------------------------------------------------------------------------
21
# PySFML - Python bindings for SFML
3-
# Copyright (c) 2012-2014, Jonathan De Wachter <dewachter.jonathan@gmail.com>
2+
# Copyright (c) 2012-2016, Jonathan De Wachter <dewachter.jonathan@gmail.com>
43
# Edwin Marshall <emarshall85@gmail.com>
54
#
6-
# This software is provided 'as-is', without any express or implied warranty.
7-
# In no event will the authors be held liable for any damages arising from the
8-
# use of this software.
9-
#
10-
# Permission is granted to anyone to use this software for any purpose,
11-
# including commercial applications, and to alter it and redistribute it
12-
# freely, subject to the following restrictions:
13-
#
14-
# 1. The origin of this software must not be misrepresented; you must not
15-
# claim that you wrote the original software. If you use this software in a
16-
# product, an acknowledgment in the product documentation would be
17-
# appreciated but is not required.
18-
#
19-
# 2. Altered source versions must be plainly marked as such, and must not be
20-
# misrepresented as being the original software.
21-
#
22-
# 3. This notice may not be removed or altered from any source distribution.
23-
#-------------------------------------------------------------------------------
5+
# This file is part of PySFML project and is available under the zlib
6+
# license.
247

258
cimport sfml as sf
269
from pysfml.system cimport Vector2

include/Includes/pysfml/network.pxd

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,9 @@
1-
#-------------------------------------------------------------------------------
21
# PySFML - Python bindings for SFML
3-
# Copyright (c) 2012-2014, Jonathan De Wachter <dewachter.jonathan@gmail.com>
2+
# Copyright (c) 2012-2016, Jonathan De Wachter <dewachter.jonathan@gmail.com>
43
# Edwin Marshall <emarshall85@gmail.com>
54
#
6-
# This software is provided 'as-is', without any express or implied warranty.
7-
# In no event will the authors be held liable for any damages arising from the
8-
# use of this software.
9-
#
10-
# Permission is granted to anyone to use this software for any purpose,
11-
# including commercial applications, and to alter it and redistribute it
12-
# freely, subject to the following restrictions:
13-
#
14-
# 1. The origin of this software must not be misrepresented; you must not
15-
# claim that you wrote the original software. If you use this software in a
16-
# product, an acknowledgment in the product documentation would be
17-
# appreciated but is not required.
18-
#
19-
# 2. Altered source versions must be plainly marked as such, and must not be
20-
# misrepresented as being the original software.
21-
#
22-
# 3. This notice may not be removed or altered from any source distribution.
23-
#-------------------------------------------------------------------------------
5+
# This file is part of PySFML project and is available under the zlib
6+
# license.
247

258
cimport sfml as sf
269

include/Includes/pysfml/system.pxd

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,9 @@
1-
#-------------------------------------------------------------------------------
21
# PySFML - Python bindings for SFML
3-
# Copyright (c) 2012-2014, Jonathan De Wachter <dewachter.jonathan@gmail.com>
2+
# Copyright (c) 2012-2016, Jonathan De Wachter <dewachter.jonathan@gmail.com>
43
# Edwin Marshall <emarshall85@gmail.com>
54
#
6-
# This software is provided 'as-is', without any express or implied warranty.
7-
# In no event will the authors be held liable for any damages arising from the
8-
# use of this software.
9-
#
10-
# Permission is granted to anyone to use this software for any purpose,
11-
# including commercial applications, and to alter it and redistribute it
12-
# freely, subject to the following restrictions:
13-
#
14-
# 1. The origin of this software must not be misrepresented; you must not
15-
# claim that you wrote the original software. If you use this software in a
16-
# product, an acknowledgment in the product documentation would be
17-
# appreciated but is not required.
18-
#
19-
# 2. Altered source versions must be plainly marked as such, and must not be
20-
# misrepresented as being the original software.
21-
#
22-
# 3. This notice may not be removed or altered from any source distribution.
23-
#-------------------------------------------------------------------------------
5+
# This file is part of PySFML project and is available under the zlib
6+
# license.
247

258
cimport sfml as sf
269

include/Includes/pysfml/window.pxd

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,9 @@
1-
#-------------------------------------------------------------------------------
21
# PySFML - Python bindings for SFML
3-
# Copyright (c) 2012-2014, Jonathan De Wachter <dewachter.jonathan@gmail.com>
2+
# Copyright (c) 2012-2016, Jonathan De Wachter <dewachter.jonathan@gmail.com>
43
# Edwin Marshall <emarshall85@gmail.com>
54
#
6-
# This software is provided 'as-is', without any express or implied warranty.
7-
# In no event will the authors be held liable for any damages arising from the
8-
# use of this software.
9-
#
10-
# Permission is granted to anyone to use this software for any purpose,
11-
# including commercial applications, and to alter it and redistribute it
12-
# freely, subject to the following restrictions:
13-
#
14-
# 1. The origin of this software must not be misrepresented; you must not
15-
# claim that you wrote the original software. If you use this software in a
16-
# product, an acknowledgment in the product documentation would be
17-
# appreciated but is not required.
18-
#
19-
# 2. Altered source versions must be plainly marked as such, and must not be
20-
# misrepresented as being the original software.
21-
#
22-
# 3. This notice may not be removed or altered from any source distribution.
23-
#-------------------------------------------------------------------------------
5+
# This file is part of PySFML project and is available under the zlib
6+
# license.
247

258
cimport sfml as sf
269
from sfml cimport Uint8

include/Includes/sfml/blendmode.pxd

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,9 @@
1-
#-------------------------------------------------------------------------------
21
# PySFML - Python bindings for SFML
3-
# Copyright (c) 2012-2014, Jonathan De Wachter <dewachter.jonathan@gmail.com>
2+
# Copyright (c) 2012-2016, Jonathan De Wachter <dewachter.jonathan@gmail.com>
43
# Edwin Marshall <emarshall85@gmail.com>
54
#
6-
# This software is provided 'as-is', without any express or implied warranty.
7-
# In no event will the authors be held liable for any damages arising from the
8-
# use of this software.
9-
#
10-
# Permission is granted to anyone to use this software for any purpose,
11-
# including commercial applications, and to alter it and redistribute it
12-
# freely, subject to the following restrictions:
13-
#
14-
# 1. The origin of this software must not be misrepresented; you must not
15-
# claim that you wrote the original software. If you use this software in a
16-
# product, an acknowledgment in the product documentation would be
17-
# appreciated but is not required.
18-
#
19-
# 2. Altered source versions must be plainly marked as such, and must not be
20-
# misrepresented as being the original software.
21-
#
22-
# 3. This notice may not be removed or altered from any source distribution.
23-
#-------------------------------------------------------------------------------
5+
# This file is part of PySFML project and is available under the zlib
6+
# license.
247

258
cdef extern from "SFML/Graphics.hpp" namespace "sf::BlendMode":
269
cdef enum Factor:

include/Includes/sfml/event.pxd

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,9 @@
1-
#-------------------------------------------------------------------------------
21
# PySFML - Python bindings for SFML
3-
# Copyright (c) 2012-2014, Jonathan De Wachter <dewachter.jonathan@gmail.com>
2+
# Copyright (c) 2012-2016, Jonathan De Wachter <dewachter.jonathan@gmail.com>
43
# Edwin Marshall <emarshall85@gmail.com>
54
#
6-
# This software is provided 'as-is', without any express or implied warranty.
7-
# In no event will the authors be held liable for any damages arising from the
8-
# use of this software.
9-
#
10-
# Permission is granted to anyone to use this software for any purpose,
11-
# including commercial applications, and to alter it and redistribute it
12-
# freely, subject to the following restrictions:
13-
#
14-
# 1. The origin of this software must not be misrepresented; you must not
15-
# claim that you wrote the original software. If you use this software in a
16-
# product, an acknowledgment in the product documentation would be
17-
# appreciated but is not required.
18-
#
19-
# 2. Altered source versions must be plainly marked as such, and must not be
20-
# misrepresented as being the original software.
21-
#
22-
# 3. This notice may not be removed or altered from any source distribution.
23-
#-------------------------------------------------------------------------------
5+
# This file is part of PySFML project and is available under the zlib
6+
# license.
247

258
cdef extern from "SFML/Window.hpp" namespace "sf::Event":
269
cdef enum EventType:

include/Includes/sfml/font.pxd

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,9 @@
1-
#-------------------------------------------------------------------------------
21
# PySFML - Python bindings for SFML
3-
# Copyright (c) 2012-2014, Jonathan De Wachter <dewachter.jonathan@gmail.com>
2+
# Copyright (c) 2012-2016, Jonathan De Wachter <dewachter.jonathan@gmail.com>
43
# Edwin Marshall <emarshall85@gmail.com>
54
#
6-
# This software is provided 'as-is', without any express or implied warranty.
7-
# In no event will the authors be held liable for any damages arising from the
8-
# use of this software.
9-
#
10-
# Permission is granted to anyone to use this software for any purpose,
11-
# including commercial applications, and to alter it and redistribute it
12-
# freely, subject to the following restrictions:
13-
#
14-
# 1. The origin of this software must not be misrepresented; you must not
15-
# claim that you wrote the original software. If you use this software in a
16-
# product, an acknowledgment in the product documentation would be
17-
# appreciated but is not required.
18-
#
19-
# 2. Altered source versions must be plainly marked as such, and must not be
20-
# misrepresented as being the original software.
21-
#
22-
# 3. This notice may not be removed or altered from any source distribution.
23-
#-------------------------------------------------------------------------------
5+
# This file is part of PySFML project and is available under the zlib
6+
# license.
247

258
from libcpp.string cimport string
269

include/Includes/sfml/ftp.pxd

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,9 @@
1-
#-------------------------------------------------------------------------------
21
# PySFML - Python bindings for SFML
3-
# Copyright (c) 2012-2014, Jonathan De Wachter <dewachter.jonathan@gmail.com>
2+
# Copyright (c) 2012-2016, Jonathan De Wachter <dewachter.jonathan@gmail.com>
43
# Edwin Marshall <emarshall85@gmail.com>
54
#
6-
# This software is provided 'as-is', without any express or implied warranty.
7-
# In no event will the authors be held liable for any damages arising from the
8-
# use of this software.
9-
#
10-
# Permission is granted to anyone to use this software for any purpose,
11-
# including commercial applications, and to alter it and redistribute it
12-
# freely, subject to the following restrictions:
13-
#
14-
# 1. The origin of this software must not be misrepresented; you must not
15-
# claim that you wrote the original software. If you use this software in a
16-
# product, an acknowledgment in the product documentation would be
17-
# appreciated but is not required.
18-
#
19-
# 2. Altered source versions must be plainly marked as such, and must not be
20-
# misrepresented as being the original software.
21-
#
22-
# 3. This notice may not be removed or altered from any source distribution.
23-
#-------------------------------------------------------------------------------
5+
# This file is part of PySFML project and is available under the zlib
6+
# license.
247

258
from libcpp.string cimport string
269
from libcpp.vector cimport vector

0 commit comments

Comments
 (0)