From 09df2a0d197f8a3625416b63d3946b5f5fc99aa7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=20Luis=20Cerc=C3=B3s=20pita?= Date: Fri, 13 Jan 2012 15:40:06 +0100 Subject: [PATCH] Fixed bad formatted author name --- src/Mod/Ship/InitGui.py | 6 +++--- src/Mod/Ship/Instance.py | 2 +- src/Mod/Ship/ShipGui.py | 15 ++++++++++++++- src/Mod/Ship/shipCreateShip/Preview.py | 2 +- src/Mod/Ship/shipCreateShip/TaskPanel.py | 2 +- src/Mod/Ship/shipCreateShip/__init__.py | 2 +- src/Mod/Ship/shipOutlineDraw/Plot.py | 2 +- src/Mod/Ship/shipOutlineDraw/Preview.py | 2 +- src/Mod/Ship/shipOutlineDraw/TaskPanel.py | 2 +- src/Mod/Ship/shipOutlineDraw/__init__.py | 2 +- src/Mod/Ship/shipUtils/Math.py | 2 +- src/Mod/Ship/shipUtils/Paths.py | 2 +- src/Mod/Ship/shipUtils/Translator.py | 2 +- src/Mod/Ship/shipUtils/__init__.py | 2 +- src/Mod/Surfaces/InitGui.py | 2 +- src/Mod/Surfaces/SurfGui.py | 2 +- src/Mod/Surfaces/surfBorder/__init__.py | 2 +- src/Mod/Surfaces/surfConvert/Preview.py | 2 +- src/Mod/Surfaces/surfConvert/TaskPanel.py | 2 +- src/Mod/Surfaces/surfConvert/__init__.py | 2 +- src/Mod/Surfaces/surfISOCurve/PointTracker.py | 2 +- src/Mod/Surfaces/surfISOCurve/Preview.py | 2 +- src/Mod/Surfaces/surfISOCurve/TaskPanel.py | 2 +- src/Mod/Surfaces/surfISOCurve/__init__.py | 2 +- src/Mod/Surfaces/surfSlice/PointTracker.py | 2 +- src/Mod/Surfaces/surfSlice/Preview.py | 2 +- src/Mod/Surfaces/surfSlice/TaskPanel.py | 2 +- src/Mod/Surfaces/surfSlice/__init__.py | 2 +- src/Mod/Surfaces/surfUtils/Geometry.py | 2 +- src/Mod/Surfaces/surfUtils/Math.py | 2 +- src/Mod/Surfaces/surfUtils/Paths.py | 2 +- src/Mod/Surfaces/surfUtils/Translator.py | 2 +- src/Mod/Surfaces/surfUtils/__init__.py | 2 +- 33 files changed, 48 insertions(+), 35 deletions(-) diff --git a/src/Mod/Ship/InitGui.py b/src/Mod/Ship/InitGui.py index 43d6baff8c..01d08f55cd 100644 --- a/src/Mod/Ship/InitGui.py +++ b/src/Mod/Ship/InitGui.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * @@ -32,11 +32,11 @@ class ShipWorkbench ( Workbench ): def Initialize(self): # ToolBar - list = ["Ship_CreateShip", "Ship_OutlineDraw"] + list = ["Ship_CreateShip", "Ship_OutlineDraw", "Ship_AreasCurve"] self.appendToolbar("Ship design",list) # Menu - list = ["Ship_CreateShip", "Ship_OutlineDraw"] + list = ["Ship_CreateShip", "Ship_OutlineDraw", "Ship_AreasCurve"] self.appendMenu("Ship design",list) Gui.addWorkbench(ShipWorkbench()) diff --git a/src/Mod/Ship/Instance.py b/src/Mod/Ship/Instance.py index 4f6e65df4f..00d83a5293 100644 --- a/src/Mod/Ship/Instance.py +++ b/src/Mod/Ship/Instance.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Ship/ShipGui.py b/src/Mod/Ship/ShipGui.py index 2d693f2f34..1ebeb92873 100644 --- a/src/Mod/Ship/ShipGui.py +++ b/src/Mod/Ship/ShipGui.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * @@ -47,6 +47,19 @@ class OutlineDraw: MenuText = str(Translator.translate('Outline draw')) ToolTip = str(Translator.translate('Plot ship outline draw')) return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} + +class OutlineDraw: + def Activated(self): + import shipAreasCurve + shipAreasCurve.load() + + def GetResources(self): + from shipUtils import Paths, Translator + IconPath = Paths.iconsPath() + "/AreaCurveIco.png" + MenuText = str(Translator.translate('Areas curve')) + ToolTip = str(Translator.translate('Plot transversal areas curve')) + return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} FreeCADGui.addCommand('Ship_CreateShip', CreateShip()) FreeCADGui.addCommand('Ship_OutlineDraw', OutlineDraw()) +FreeCADGui.addCommand('Ship_AreasCurve', AreasCurve()) diff --git a/src/Mod/Ship/shipCreateShip/Preview.py b/src/Mod/Ship/shipCreateShip/Preview.py index c7048b0064..b4d9e39b9a 100644 --- a/src/Mod/Ship/shipCreateShip/Preview.py +++ b/src/Mod/Ship/shipCreateShip/Preview.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Ship/shipCreateShip/TaskPanel.py b/src/Mod/Ship/shipCreateShip/TaskPanel.py index 36b7b301b4..bee6c69648 100644 --- a/src/Mod/Ship/shipCreateShip/TaskPanel.py +++ b/src/Mod/Ship/shipCreateShip/TaskPanel.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Ship/shipCreateShip/__init__.py b/src/Mod/Ship/shipCreateShip/__init__.py index 5cfd85d172..cbfb57d75d 100644 --- a/src/Mod/Ship/shipCreateShip/__init__.py +++ b/src/Mod/Ship/shipCreateShip/__init__.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Ship/shipOutlineDraw/Plot.py b/src/Mod/Ship/shipOutlineDraw/Plot.py index a92352fb5e..155b6b0b62 100644 --- a/src/Mod/Ship/shipOutlineDraw/Plot.py +++ b/src/Mod/Ship/shipOutlineDraw/Plot.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Ship/shipOutlineDraw/Preview.py b/src/Mod/Ship/shipOutlineDraw/Preview.py index f8c9aa6e2a..cf615db05e 100644 --- a/src/Mod/Ship/shipOutlineDraw/Preview.py +++ b/src/Mod/Ship/shipOutlineDraw/Preview.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Ship/shipOutlineDraw/TaskPanel.py b/src/Mod/Ship/shipOutlineDraw/TaskPanel.py index 0bdbb52aa4..a745263c63 100644 --- a/src/Mod/Ship/shipOutlineDraw/TaskPanel.py +++ b/src/Mod/Ship/shipOutlineDraw/TaskPanel.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Ship/shipOutlineDraw/__init__.py b/src/Mod/Ship/shipOutlineDraw/__init__.py index 5cfd85d172..cbfb57d75d 100644 --- a/src/Mod/Ship/shipOutlineDraw/__init__.py +++ b/src/Mod/Ship/shipOutlineDraw/__init__.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Ship/shipUtils/Math.py b/src/Mod/Ship/shipUtils/Math.py index c4e4ef518c..f8c583bef6 100644 --- a/src/Mod/Ship/shipUtils/Math.py +++ b/src/Mod/Ship/shipUtils/Math.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Ship/shipUtils/Paths.py b/src/Mod/Ship/shipUtils/Paths.py index 6b375119e3..0ea1168ea0 100644 --- a/src/Mod/Ship/shipUtils/Paths.py +++ b/src/Mod/Ship/shipUtils/Paths.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Ship/shipUtils/Translator.py b/src/Mod/Ship/shipUtils/Translator.py index 24abe19dbb..1fe7f61e8d 100644 --- a/src/Mod/Ship/shipUtils/Translator.py +++ b/src/Mod/Ship/shipUtils/Translator.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Ship/shipUtils/__init__.py b/src/Mod/Ship/shipUtils/__init__.py index ef55bbe2bf..00b200f140 100644 --- a/src/Mod/Ship/shipUtils/__init__.py +++ b/src/Mod/Ship/shipUtils/__init__.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Surfaces/InitGui.py b/src/Mod/Surfaces/InitGui.py index 815d2549da..299866b7cd 100644 --- a/src/Mod/Surfaces/InitGui.py +++ b/src/Mod/Surfaces/InitGui.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Surfaces/SurfGui.py b/src/Mod/Surfaces/SurfGui.py index 3b221ebd56..615d90e222 100644 --- a/src/Mod/Surfaces/SurfGui.py +++ b/src/Mod/Surfaces/SurfGui.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Surfaces/surfBorder/__init__.py b/src/Mod/Surfaces/surfBorder/__init__.py index 196273743b..78c0107839 100644 --- a/src/Mod/Surfaces/surfBorder/__init__.py +++ b/src/Mod/Surfaces/surfBorder/__init__.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Surfaces/surfConvert/Preview.py b/src/Mod/Surfaces/surfConvert/Preview.py index b19ed6cb62..faf8c7f64f 100644 --- a/src/Mod/Surfaces/surfConvert/Preview.py +++ b/src/Mod/Surfaces/surfConvert/Preview.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Surfaces/surfConvert/TaskPanel.py b/src/Mod/Surfaces/surfConvert/TaskPanel.py index e2755d8c4d..86e922a2fb 100644 --- a/src/Mod/Surfaces/surfConvert/TaskPanel.py +++ b/src/Mod/Surfaces/surfConvert/TaskPanel.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Surfaces/surfConvert/__init__.py b/src/Mod/Surfaces/surfConvert/__init__.py index dab351bf14..7990a70ea1 100644 --- a/src/Mod/Surfaces/surfConvert/__init__.py +++ b/src/Mod/Surfaces/surfConvert/__init__.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Surfaces/surfISOCurve/PointTracker.py b/src/Mod/Surfaces/surfISOCurve/PointTracker.py index e12833b2f5..44abf85a44 100644 --- a/src/Mod/Surfaces/surfISOCurve/PointTracker.py +++ b/src/Mod/Surfaces/surfISOCurve/PointTracker.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Surfaces/surfISOCurve/Preview.py b/src/Mod/Surfaces/surfISOCurve/Preview.py index a3af5a78b6..2df6a982a7 100644 --- a/src/Mod/Surfaces/surfISOCurve/Preview.py +++ b/src/Mod/Surfaces/surfISOCurve/Preview.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Surfaces/surfISOCurve/TaskPanel.py b/src/Mod/Surfaces/surfISOCurve/TaskPanel.py index 34b6084b0f..72dba46a02 100644 --- a/src/Mod/Surfaces/surfISOCurve/TaskPanel.py +++ b/src/Mod/Surfaces/surfISOCurve/TaskPanel.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Surfaces/surfISOCurve/__init__.py b/src/Mod/Surfaces/surfISOCurve/__init__.py index dab351bf14..7990a70ea1 100644 --- a/src/Mod/Surfaces/surfISOCurve/__init__.py +++ b/src/Mod/Surfaces/surfISOCurve/__init__.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Surfaces/surfSlice/PointTracker.py b/src/Mod/Surfaces/surfSlice/PointTracker.py index 434b5455a5..6eb9d79251 100644 --- a/src/Mod/Surfaces/surfSlice/PointTracker.py +++ b/src/Mod/Surfaces/surfSlice/PointTracker.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Surfaces/surfSlice/Preview.py b/src/Mod/Surfaces/surfSlice/Preview.py index fbf5b3dff1..4191a6c52d 100644 --- a/src/Mod/Surfaces/surfSlice/Preview.py +++ b/src/Mod/Surfaces/surfSlice/Preview.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Surfaces/surfSlice/TaskPanel.py b/src/Mod/Surfaces/surfSlice/TaskPanel.py index 84bfee0f58..bdaa7c7692 100644 --- a/src/Mod/Surfaces/surfSlice/TaskPanel.py +++ b/src/Mod/Surfaces/surfSlice/TaskPanel.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Surfaces/surfSlice/__init__.py b/src/Mod/Surfaces/surfSlice/__init__.py index dab351bf14..7990a70ea1 100644 --- a/src/Mod/Surfaces/surfSlice/__init__.py +++ b/src/Mod/Surfaces/surfSlice/__init__.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Surfaces/surfUtils/Geometry.py b/src/Mod/Surfaces/surfUtils/Geometry.py index b540b1be13..687fe3cdd2 100644 --- a/src/Mod/Surfaces/surfUtils/Geometry.py +++ b/src/Mod/Surfaces/surfUtils/Geometry.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Surfaces/surfUtils/Math.py b/src/Mod/Surfaces/surfUtils/Math.py index c4e4ef518c..f8c583bef6 100644 --- a/src/Mod/Surfaces/surfUtils/Math.py +++ b/src/Mod/Surfaces/surfUtils/Math.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Surfaces/surfUtils/Paths.py b/src/Mod/Surfaces/surfUtils/Paths.py index 75bf36ce5e..bd236d9e5a 100644 --- a/src/Mod/Surfaces/surfUtils/Paths.py +++ b/src/Mod/Surfaces/surfUtils/Paths.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Surfaces/surfUtils/Translator.py b/src/Mod/Surfaces/surfUtils/Translator.py index 3b785ef6db..917c02377f 100644 --- a/src/Mod/Surfaces/surfUtils/Translator.py +++ b/src/Mod/Surfaces/surfUtils/Translator.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Surfaces/surfUtils/__init__.py b/src/Mod/Surfaces/surfUtils/__init__.py index ef55bbe2bf..00b200f140 100644 --- a/src/Mod/Surfaces/surfUtils/__init__.py +++ b/src/Mod/Surfaces/surfUtils/__init__.py @@ -1,7 +1,7 @@ #*************************************************************************** #* * #* Copyright (c) 2011, 2012 * -#* Jose Luis Cercós Pita * +#* Jose Luis Cercos Pita * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) *