From 4c41f450f346f7f7de79ca1b8fbad19479abc17c Mon Sep 17 00:00:00 2001 From: fuzion Date: Thu, 23 Sep 2010 17:25:39 -0500 Subject: [PATCH] coding: utf-8 --- src/AnimationPlayer.py | 9 +++++---- src/Camera.py | 7 ++++--- src/Credits.py | 9 ++++----- src/Font.py | 8 ++++---- src/Log.py | 10 +++++----- src/MainMenu.py | 10 ++++------ src/Mesh.py | 7 ++++--- src/Microphone.py | 6 +++--- src/Mod.py | 7 ++++--- src/Resource.py | 9 ++++----- src/Scene.py | 7 +++---- src/SceneFactory.py | 7 +++---- src/Scorekeeper.py | 16 ++++------------ src/Shader.py | 7 ++++--- src/Svg.py | 9 ++++----- src/Task.py | 7 ++++--- src/Texture.py | 7 ++++--- src/Version.py | 7 ++++--- src/VideoPlayer.py | 8 +++++--- src/World.py | 6 +++--- src/setup.py | 8 ++++---- 21 files changed, 83 insertions(+), 88 deletions(-) diff --git a/src/AnimationPlayer.py b/src/AnimationPlayer.py index 2d76a9346..3042ea3b8 100644 --- a/src/AnimationPlayer.py +++ b/src/AnimationPlayer.py @@ -1,8 +1,9 @@ -#!/usr/bin/env python -# -*- coding: iso-8859-1 -*- +# -*- coding: utf-8 -*- ##################################################################### -# Animation Layer for FoFiX # -# Copyright (C) 2009 Pascal Giard # +# # +# Frets on Fire X (FoFiX) # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # diff --git a/src/Camera.py b/src/Camera.py index c810ed8d8..f7406bc74 100644 --- a/src/Camera.py +++ b/src/Camera.py @@ -1,8 +1,9 @@ +# -*- coding: utf-8 -*- ##################################################################### -# -*- coding: iso-8859-1 -*- # # # -# Frets on Fire # -# Copyright (C) 2006 Sami Kyöstilä # +# Frets on Fire X (FoFiX) # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # diff --git a/src/Credits.py b/src/Credits.py index 24a577a33..2e288c081 100644 --- a/src/Credits.py +++ b/src/Credits.py @@ -1,10 +1,9 @@ +# -*- coding: utf-8 -*- ##################################################################### -# -*- coding: iso-8859-1 -*- # # # -# Frets on Fire # -# Copyright (C) 2006 Sami Kyöstilä # -# 2008 myfingershurt # -# 2008 evilynux # +# Frets on Fire X (FoFiX) # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # diff --git a/src/Font.py b/src/Font.py index 0e4a865a0..2ee7f782d 100644 --- a/src/Font.py +++ b/src/Font.py @@ -1,9 +1,9 @@ +# -*- coding: utf-8 -*- ##################################################################### -# -*- coding: iso-8859-1 -*- # # # -# Frets on Fire # -# Copyright (C) 2006 Sami Kyöstilä # -# 2008 evilynux # +# Frets on Fire X (FoFiX) # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # diff --git a/src/Log.py b/src/Log.py index 418b9302d..4f2781388 100644 --- a/src/Log.py +++ b/src/Log.py @@ -1,9 +1,9 @@ +# -*- coding: utf-8 -*- ##################################################################### -# -*- coding: iso-8859-1 -*- # # # -# Frets on Fire # -# Copyright (C) 2006 Sami Kyöstilä # -# 2009 John Stumpo # +# Frets on Fire X (FoFiX) # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # @@ -49,7 +49,7 @@ logFile = open(Version.PROGRAM_UNIXSTYLE_NAME + ".log", "w") #MFH - local logfile! # Character encoding to use for logging. -encoding = "iso-8859-1" +encoding = "utf-8" if "-v" in sys.argv or "--verbose" in sys.argv: quiet = False diff --git a/src/MainMenu.py b/src/MainMenu.py index 296ef3fe4..a10156f5c 100644 --- a/src/MainMenu.py +++ b/src/MainMenu.py @@ -1,11 +1,9 @@ +# -*- coding: utf-8 -*- ##################################################################### -# -*- coding: iso-8859-1 -*- # # # -# Frets on Fire # -# Copyright (C) 2006 Sami Kyöstilä # -# 2008 myfingershurt # -# 2008 Blazingamer # -# 2008 evilynux # +# Frets on Fire X (FoFiX) # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # diff --git a/src/Mesh.py b/src/Mesh.py index dcee8e3f8..1054b5180 100644 --- a/src/Mesh.py +++ b/src/Mesh.py @@ -1,8 +1,9 @@ +# -*- coding: utf-8 -*- ##################################################################### -# -*- coding: iso-8859-1 -*- # # # -# Frets on Fire # -# Copyright (C) 2006 Sami Kyöstilä # +# Frets on Fire X (FoFiX) # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # diff --git a/src/Microphone.py b/src/Microphone.py index cc936d482..77c1f039b 100644 --- a/src/Microphone.py +++ b/src/Microphone.py @@ -1,9 +1,9 @@ +# -*- coding: utf-8 -*- ##################################################################### -# -*- coding: iso-8859-1 -*- # # # # Frets on Fire X (FoFiX) # -# Copyright (C) 2009 Team FoFiX # -# 2009 John Stumpo # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # diff --git a/src/Mod.py b/src/Mod.py index 4eddef373..a1215e18b 100644 --- a/src/Mod.py +++ b/src/Mod.py @@ -1,8 +1,9 @@ +# -*- coding: utf-8 -*- ##################################################################### -# -*- coding: iso-8859-1 -*- # # # -# Frets on Fire # -# Copyright (C) 2006 Sami Kyöstilä # +# Frets on Fire X (FoFiX) # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # diff --git a/src/Resource.py b/src/Resource.py index fd88aa153..a9e2e60f0 100644 --- a/src/Resource.py +++ b/src/Resource.py @@ -1,10 +1,9 @@ +# -*- coding: utf-8 -*- ##################################################################### -# -*- coding: iso-8859-1 -*- # # # -# Frets on Fire # -# Copyright (C) 2006 Sami Kyöstilä # -# 2008 myfingershurt # -# 2008 evilynux # +# Frets on Fire X (FoFiX) # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # diff --git a/src/Scene.py b/src/Scene.py index e17f7a6db..ef20f0035 100644 --- a/src/Scene.py +++ b/src/Scene.py @@ -1,10 +1,9 @@ +# -*- coding: utf-8 -*- ##################################################################### -# -*- coding: iso-8859-1 -*- # # # # Frets on Fire X (FoFiX) # -# Copyright (C) 2006 Sami Kyöstilä # -# 2009 FoFiX Team # -# 2009 akedrou # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # diff --git a/src/SceneFactory.py b/src/SceneFactory.py index 8f813c63a..b2ebb9436 100644 --- a/src/SceneFactory.py +++ b/src/SceneFactory.py @@ -1,10 +1,9 @@ +# -*- coding: utf-8 -*- ##################################################################### -# -*- coding: iso-8859-1 -*- # # # # Frets on Fire X (FoFiX) # -# Copyright (C) 2006 Sami Kyöstilä # -# 2009 FoFiX Team # -# 2009 akedrou # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # diff --git a/src/Scorekeeper.py b/src/Scorekeeper.py index ebde08146..f6433683b 100644 --- a/src/Scorekeeper.py +++ b/src/Scorekeeper.py @@ -1,17 +1,9 @@ +# -*- coding: utf-8 -*- ##################################################################### -# -*- coding: iso-8859-1 -*- # # # -# Frets on Fire # -# Copyright (C) 2006 Sami Kyöstilä # -# 2008 Alarian # -# 2008 myfingershurt # -# 2008 Glorandwarf # -# 2008 Spikehead777 # -# 2008 QQStarS # -# 2008 Blazingamer # -# 2008 evilynux # -# 2008 fablaculp # -# 2009 akedrou # +# Frets on Fire X (FoFiX) # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # diff --git a/src/Shader.py b/src/Shader.py index 4ac83ada4..df9a1e2c8 100644 --- a/src/Shader.py +++ b/src/Shader.py @@ -1,8 +1,9 @@ +# -*- coding: utf-8 -*- ##################################################################### -# -*- coding: iso-8859-1 -*- # # # -# Frets on Fire # -# Copyright (C) 2009 Vlad Emelyanov # +# Frets on Fire X (FoFiX) # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # diff --git a/src/Svg.py b/src/Svg.py index b1a6bc5d3..60a4a665d 100644 --- a/src/Svg.py +++ b/src/Svg.py @@ -1,10 +1,9 @@ +# -*- coding: utf-8 -*- ##################################################################### -# -*- coding: iso-8859-1 -*- # # # -# Frets on Fire X # -# Copyright (C) 2006 Sami Kyöstilä # -# 2008 myfingershurt # -# 2008 evilynux # +# Frets on Fire X (FoFiX) # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # diff --git a/src/Task.py b/src/Task.py index e8d98ca2e..661765cf3 100644 --- a/src/Task.py +++ b/src/Task.py @@ -1,8 +1,9 @@ +# -*- coding: utf-8 -*- ##################################################################### -# -*- coding: iso-8859-1 -*- # # # -# Frets on Fire # -# Copyright (C) 2006 Sami Kyöstilä # +# Frets on Fire X (FoFiX) # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # diff --git a/src/Texture.py b/src/Texture.py index de82ddc9b..8a62599a0 100644 --- a/src/Texture.py +++ b/src/Texture.py @@ -1,8 +1,9 @@ +# -*- coding: utf-8 -*- ##################################################################### -# -*- coding: iso-8859-1 -*- # # # -# Frets on Fire # -# Copyright (C) 2006 Sami Kyöstilä # +# Frets on Fire X (FoFiX) # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # diff --git a/src/Version.py b/src/Version.py index 5c29d5e04..67d8f375d 100644 --- a/src/Version.py +++ b/src/Version.py @@ -1,8 +1,9 @@ +# -*- coding: utf-8 -*- ##################################################################### -# -*- coding: iso-8859-1 -*- # # # -# Frets on Fire # -# Copyright (C) 2006 Sami Kyöstilä # +# Frets on Fire X (FoFiX) # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # diff --git a/src/VideoPlayer.py b/src/VideoPlayer.py index b97e995ef..170cfb87d 100644 --- a/src/VideoPlayer.py +++ b/src/VideoPlayer.py @@ -1,8 +1,10 @@ #!/usr/bin/env python -# -*- coding: iso-8859-1 -*- +# -*- coding: utf-8 -*- ##################################################################### -# Video Playback Layer for FoFiX # -# Copyright (C) 2009 Pascal Giard # +# # +# Frets on Fire X (FoFiX) # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # diff --git a/src/World.py b/src/World.py index 09213eddc..75d25a59d 100644 --- a/src/World.py +++ b/src/World.py @@ -1,9 +1,9 @@ +# -*- coding: utf-8 -*- ##################################################################### -# -*- coding: iso-8859-1 -*- # # # # Frets on Fire X (FoFiX) # -# Copyright (C) 2009 FoFiX Team # -# 2009 akedrou # +# Copyright (C) 2009-2010 FoFiX Team # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # diff --git a/src/setup.py b/src/setup.py index d7754dc3a..4926fbe6f 100755 --- a/src/setup.py +++ b/src/setup.py @@ -1,10 +1,10 @@ #!/usr/bin/env python -# -*- coding: iso-8859-1 -*- # +# -*- coding: utf-8 -*- ##################################################################### # # -# Frets on Fire X # +# Frets on Fire X (FoFiX) # # Copyright (C) 2009-2010 FoFiX Team # -# 2006 Sami Kyöstilä # +# See CREDITS for a full list of contributors # # # # This program is free software; you can redistribute it and/or # # modify it under the terms of the GNU General Public License # @@ -55,7 +55,7 @@ def isSystemDLL(pathname): #stump: the parameter below must consist only of up to four numerical fields separated by dots Version.versionNum(), file_description="Frets on Fire X", - legal_copyright=r"© 2008-2010 FoFiX Team. GNU GPL v2 or later.", + legal_copyright=r"© 2008-2010 FoFiX Team. GNU GPL v2 or later.", company_name="FoFiX Team", internal_name="FoFiX.exe", original_filename="FoFiX.exe",