Mercurial > fife-parpg
changeset 385:fa1373b9fa16
Added the correct header to a few of the editor files.
author | prock@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Thu, 21 Jan 2010 17:29:54 +0000 |
parents | 621b062e752d |
children | fed41c6364d4 |
files | tools/editor/plugins/ObjectEdit.py tools/editor/plugins/ObjectSelector.py tools/editor/scripts/events/events.py tools/editor/scripts/events/saferef.py tools/editor/scripts/events/signal.py |
diffstat | 5 files changed, 88 insertions(+), 20 deletions(-) [+] |
line wrap: on
line diff
--- a/tools/editor/plugins/ObjectEdit.py Wed Jan 20 05:56:18 2010 +0000 +++ b/tools/editor/plugins/ObjectEdit.py Thu Jan 21 17:29:54 2010 +0000 @@ -1,25 +1,25 @@ -# coding: utf-8 -# ################################################### -# Copyright (C) 2008 The Zero-Projekt team -# http://zero-projekt.net -# info@zero-projekt.net -# This file is part of Zero "Was vom Morgen blieb" +# -*- coding: utf-8 -*- + +# #################################################################### +# Copyright (C) 2005-2009 by the FIFE team +# http://www.fifengine.de +# This file is part of FIFE. # -# The Zero-Projekt codebase is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. +# FIFE is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. # -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the -# Free Software Foundation, Inc., -# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -# ################################################### +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the +# Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +# #################################################################### """ a tool for FIFEdit to edit object and instance attributes """
--- a/tools/editor/plugins/ObjectSelector.py Wed Jan 20 05:56:18 2010 +0000 +++ b/tools/editor/plugins/ObjectSelector.py Thu Jan 21 17:29:54 2010 +0000 @@ -1,4 +1,25 @@ -# coding: utf-8 +# -*- coding: utf-8 -*- + +# #################################################################### +# Copyright (C) 2005-2009 by the FIFE team +# http://www.fifengine.de +# This file is part of FIFE. +# +# FIFE is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the +# Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +# #################################################################### from fife.extensions import pychan from fife.extensions.pychan import widgets, tools, attrs, internal
--- a/tools/editor/scripts/events/events.py Wed Jan 20 05:56:18 2010 +0000 +++ b/tools/editor/scripts/events/events.py Thu Jan 21 17:29:54 2010 +0000 @@ -20,6 +20,7 @@ # Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # #################################################################### + from fife import fife import scripts from fife.fife import IKeyListener, ICommandListener, IMouseListener, LayerChangeListener, MapChangeListener, ConsoleExecuter
--- a/tools/editor/scripts/events/saferef.py Wed Jan 20 05:56:18 2010 +0000 +++ b/tools/editor/scripts/events/saferef.py Thu Jan 21 17:29:54 2010 +0000 @@ -1,3 +1,26 @@ +# -*- coding: utf-8 -*- + +# #################################################################### +# Copyright (C) 2005-2009 by the FIFE team +# http://www.fifengine.de +# This file is part of FIFE. +# +# FIFE is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the +# Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +# #################################################################### + """ "Safe weakrefs", originally from pyDispatcher. Copied from django v1.1 beta 1
--- a/tools/editor/scripts/events/signal.py Wed Jan 20 05:56:18 2010 +0000 +++ b/tools/editor/scripts/events/signal.py Thu Jan 21 17:29:54 2010 +0000 @@ -1,3 +1,26 @@ +# -*- coding: utf-8 -*- + +# #################################################################### +# Copyright (C) 2005-2009 by the FIFE team +# http://www.fifengine.de +# This file is part of FIFE. +# +# FIFE is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the +# Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +# #################################################################### + """Multi-consumer multi-producer dispatching mechanism Originally based on pydispatch (BSD) http://pypi.python.org/pypi/PyDispatcher/2.0.1