Mercurial > fife-parpg
comparison tools/editor/scripts/events/signal.py @ 393:d819a70949d2
Replaced FIFE license header with Django license in files copied directly from django
author | cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Sun, 24 Jan 2010 16:52:40 +0000 |
parents | fa1373b9fa16 |
children |
comparison
equal
deleted
inserted
replaced
392:fa77b6927d3d | 393:d819a70949d2 |
---|---|
1 # -*- coding: utf-8 -*- | 1 # -*- coding: utf-8 -*- |
2 | 2 |
3 # #################################################################### | 3 # Copyright (c) Django Software Foundation and individual contributors. |
4 # Copyright (C) 2005-2009 by the FIFE team | 4 # All rights reserved. |
5 # http://www.fifengine.de | 5 # |
6 # This file is part of FIFE. | 6 # Redistribution and use in source and binary forms, with or without modification, |
7 # are permitted provided that the following conditions are met: | |
7 # | 8 # |
8 # FIFE is free software; you can redistribute it and/or | 9 # 1. Redistributions of source code must retain the above copyright notice, |
9 # modify it under the terms of the GNU Lesser General Public | 10 # this list of conditions and the following disclaimer. |
10 # License as published by the Free Software Foundation; either | 11 # |
11 # version 2.1 of the License, or (at your option) any later version. | 12 # 2. Redistributions in binary form must reproduce the above copyright |
13 # notice, this list of conditions and the following disclaimer in the | |
14 # documentation and/or other materials provided with the distribution. | |
15 # | |
16 # 3. Neither the name of Django nor the names of its contributors may be used | |
17 # to endorse or promote products derived from this software without | |
18 # specific prior written permission. | |
12 # | 19 # |
13 # This library is distributed in the hope that it will be useful, | 20 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 21 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 22 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
16 # Lesser General Public License for more details. | 23 # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
17 # | 24 # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
18 # You should have received a copy of the GNU Lesser General Public | 25 # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
19 # License along with this library; if not, write to the | 26 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
20 # Free Software Foundation, Inc., | 27 # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
21 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 28 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
22 # #################################################################### | 29 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
23 | 30 |
24 """Multi-consumer multi-producer dispatching mechanism | 31 """Multi-consumer multi-producer dispatching mechanism |
25 | 32 |
26 Originally based on pydispatch (BSD) http://pypi.python.org/pypi/PyDispatcher/2.0.1 | 33 Originally based on pydispatch (BSD) http://pypi.python.org/pypi/PyDispatcher/2.0.1 |
27 See license.txt for original license. | 34 See license.txt for original license. |