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 43d6baff8..01d08f55c 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 4f6e65df4..00d83a529 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 2d693f2f3..1ebeb9287 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 c7048b006..b4d9e39b9 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 36b7b301b..bee6c6964 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 5cfd85d17..cbfb57d75 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 a92352fb5..155b6b0b6 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 f8c9aa6e2..cf615db05 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 0bdbb52aa..a745263c6 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 5cfd85d17..cbfb57d75 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 c4e4ef518..f8c583bef 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 6b375119e..0ea1168ea 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 24abe19db..1fe7f61e8 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 ef55bbe2b..00b200f14 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 815d2549d..299866b7c 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 3b221ebd5..615d90e22 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 196273743..78c010783 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 b19ed6cb6..faf8c7f64 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 e2755d8c4..86e922a2f 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 dab351bf1..7990a70ea 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 e12833b2f..44abf85a4 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 a3af5a78b..2df6a982a 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 34b6084b0..72dba46a0 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 dab351bf1..7990a70ea 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 434b5455a..6eb9d7925 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 fbf5b3dff..4191a6c52 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 84bfee0f5..bdaa7c769 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 dab351bf1..7990a70ea 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 b540b1be1..687fe3cdd 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 c4e4ef518..f8c583bef 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 75bf36ce5..bd236d9e5 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 3b785ef6d..917c02377 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 ef55bbe2b..00b200f14 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) *