[orca/orca-gnome3: 27/87] Headers changed



commit ebdc619905206beaed4cdb42f1ba188458e38218
Author: José Ignacio �lvarez Ruiz <jialvarez emergya es>
Date:   Tue Mar 15 09:48:55 2011 +0100

    Headers changed

 src/orca/baseplugins/Makefile.am    |    3 +-
 src/orca/baseplugins/dateandtime.py |   44 ++++++++++++++++++++--------------
 src/orca/baseplugins/speech.py      |   43 ++++++++++++++++++++-------------
 src/orca/plug_event_manager.py      |   43 ++++++++++++++++++++-------------
 src/orca/pluglib/interfaces.py      |   44 ++++++++++++++++++++--------------
 src/orca/pluglib/plugin_manager.py  |   44 ++++++++++++++++++++--------------
 src/orca/store_config.py            |   40 +++++++++++++++++++------------
 7 files changed, 156 insertions(+), 105 deletions(-)
---
diff --git a/src/orca/baseplugins/Makefile.am b/src/orca/baseplugins/Makefile.am
index 8cc5187..5286ace 100644
--- a/src/orca/baseplugins/Makefile.am
+++ b/src/orca/baseplugins/Makefile.am
@@ -1,7 +1,8 @@
 orca_pathdir=$(pyexecdir)
 
 orca_python_PYTHON = \
-        dateandtime.py
+        dateandtime.py \
+	speech.py
 
 orca_pythondir=$(pyexecdir)/orca/baseplugins
 
diff --git a/src/orca/baseplugins/dateandtime.py b/src/orca/baseplugins/dateandtime.py
index 9455733..8a37dc3 100644
--- a/src/orca/baseplugins/dateandtime.py
+++ b/src/orca/baseplugins/dateandtime.py
@@ -1,22 +1,30 @@
-# - coding: utf-8 -
-
-# Copyright (C) 2010, J. Félix Ontañón <felixonta gmail com>
-# Copyright (C) 2011, J. Ignacio Ã?lvarez <neonigma gmail com>
-
-# This file is part of Pluglib.
-
-# Pluglib 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 3 of the License, or
-# (at your option) any later version.
-
-# Pluglib is distributed in the hope that it will be useful,
+# Orca
+#
+# Copyright 2011 Consorcio Fernando de los Rios.
+# Author: J. Ignacio Alvarez <jialvarez emergya es>
+#
+# This library 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 General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with Pluglib.  If not, see <http://www.gnu.org/licenses/>.
+# 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., Franklin Street, Fifth Floor,
+# Boston MA  02110-1301 USA.
+
+"""Plugin to present date and time to the user"""
+
+__id__        = "$Id$"
+__version__   = "$Revision$"
+__date__      = "$Date$"
+__copyright__ = "Copyright (c) 2011 Consorcio Fernando de los Rios."
+__license__   = "LGPL"
 
 from orca.pluglib.interfaces import *
 
@@ -35,7 +43,7 @@ class dtPlugin(IPlugin, IPresenter, ICommand):
     name = 'Date and Time'
     description = 'Present the date and time to the user' 
     version = '0.9'
-    authors = ['J. Ignacio Alvarez <neonigma gmail com>']
+    authors = ['J. Ignacio Alvarez <jialvarez emergya es>']
     website = 'http://www.emergya.es'
     icon = 'gtk-missing-image'
 
diff --git a/src/orca/baseplugins/speech.py b/src/orca/baseplugins/speech.py
index d0e8200..179b966 100644
--- a/src/orca/baseplugins/speech.py
+++ b/src/orca/baseplugins/speech.py
@@ -1,21 +1,30 @@
-# - coding: utf-8 -
-
-# Copyright (C) 2011, J. Ignacio Ã?lvarez <neonigma gmail com>
-
-# This file is part of Pluglib.
-
-# Pluglib 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 3 of the License, or
-# (at your option) any later version.
-
-# Pluglib is distributed in the hope that it will be useful,
+# Orca
+#
+# Copyright 2011 Consorcio Fernando de los Rios.
+# Author: J. Ignacio Alvarez <jialvarez emergya es>
+#
+# This library 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 General Public License for more details.
+# 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., Franklin Street, Fifth Floor,
+# Boston MA  02110-1301 USA.
+
+"""Plugin that represents speeching"""
 
-# You should have received a copy of the GNU General Public License
-# along with Pluglib.  If not, see <http://www.gnu.org/licenses/>.
+__id__        = "$Id$"
+__version__   = "$Revision$"
+__date__      = "$Date$"
+__copyright__ = "Copyright (c) 2011 Consorcio Fernando de los Rios."
+__license__   = "LGPL"
 
 from orca.pluglib.interfaces import *
 
@@ -34,7 +43,7 @@ class speechPlugin(IPlugin, IPresenter):
     name = 'Speech Plugin'
     description = 'Activate or not the speech for the user' 
     version = '0.9'
-    authors = ['J. Ignacio Alvarez <neonigma gmail com>']
+    authors = ['J. Ignacio Alvarez <jialvarez emergya es>']
     website = 'http://www.emergya.es'
     icon = 'gtk-missing-image'
 
diff --git a/src/orca/plug_event_manager.py b/src/orca/plug_event_manager.py
index 6e97f04..7271484 100644
--- a/src/orca/plug_event_manager.py
+++ b/src/orca/plug_event_manager.py
@@ -1,21 +1,30 @@
-# -*- coding: utf-8 -*-
-
-# Copyright (C) 2011, J. Ignacio Ã?lvarez <neonigma gmail com>
-
-# This file is part of Pluglib ABC.
-
-# Pluglib 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 3 of the License, or
-# (at your option) any later version.
-
-# Pluglib is distributed in the hope that it will be useful,
+# Orca
+#
+# Copyright 2011 Consorcio Fernando de los Rios.
+# Author: J. Ignacio Alvarez <jialvarez emergya es>
+#
+# This library 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 General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with Pluglib.  If not, see <http://www.gnu.org/licenses/>.
+# 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., Franklin Street, Fifth Floor,
+# Boston MA  02110-1301 USA.
+
+"""Classes that manages all events"""
+
+__id__        = "$Id$"
+__version__   = "$Revision$"
+__date__      = "$Date$"
+__copyright__ = "Copyright (c) 2011 Consorcio Fernando de los Rios."
+__license__   = "LGPL"
 
 import sys
 
diff --git a/src/orca/pluglib/interfaces.py b/src/orca/pluglib/interfaces.py
index 2494d07..b7abd80 100644
--- a/src/orca/pluglib/interfaces.py
+++ b/src/orca/pluglib/interfaces.py
@@ -1,22 +1,30 @@
-# -*- coding: utf-8 -*-
-
-# Copyright (C) 2010, J. Félix Ontañón <felixonta gmail com>
-# Copyright (C) 2011, J. Ignacio Ã?lvarez <neonigma gmail com>
-
-# This file is part of Pluglib.
-
-# Pluglib 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 3 of the License, or
-# (at your option) any later version.
-
-# Pluglib is distributed in the hope that it will be useful,
+# Orca
+#
+# Copyright 2011 Consorcio Fernando de los Rios.
+# Author: J. Ignacio Alvarez <jialvarez emergya es>
+#
+# This library 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 General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with Pluglib.  If not, see <http://www.gnu.org/licenses/>.
+# 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., Franklin Street, Fifth Floor,
+# Boston MA  02110-1301 USA.
+
+"""Interfaces for plugins"""
+
+__id__        = "$Id$"
+__version__   = "$Revision$"
+__date__      = "$Date$"
+__copyright__ = "Copyright (c) 2011 Consorcio Fernando de los Rios."
+__license__   = "LGPL"
 
 import exceptions
 import abc
diff --git a/src/orca/pluglib/plugin_manager.py b/src/orca/pluglib/plugin_manager.py
index 61cb327..f5aa0b0 100644
--- a/src/orca/pluglib/plugin_manager.py
+++ b/src/orca/pluglib/plugin_manager.py
@@ -1,22 +1,30 @@
-# -*- coding: utf-8 -*-
-
-# Copyright (C) 2010, J. Félix Ontañón <felixonta gmail com>
-# Copyright (C) 2011, J. Ignacio Ã?lvarez <neonigma gmail com>
-
-# This file is part of Pluglib.
-
-# Pluglib 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 3 of the License, or
-# (at your option) any later version.
-
-# Pluglib is distributed in the hope that it will be useful,
+# Orca
+#
+# Copyright 2011 Consorcio Fernando de los Rios.
+# Author: J. Ignacio Alvarez <jialvarez emergya es>
+#
+# This library 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 General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with Pluglib.  If not, see <http://www.gnu.org/licenses/>.
+# 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., Franklin Street, Fifth Floor,
+# Boston MA  02110-1301 USA.
+
+"""Class to manage plugins and derivated"""
+
+__id__        = "$Id$"
+__version__   = "$Revision$"
+__date__      = "$Date$"
+__copyright__ = "Copyright (c) 2011 Consorcio Fernando de los Rios."
+__license__   = "LGPL"
 
 import os
 import sys
diff --git a/src/orca/store_config.py b/src/orca/store_config.py
index 3102b59..2bd06be 100644
--- a/src/orca/store_config.py
+++ b/src/orca/store_config.py
@@ -1,22 +1,30 @@
-# -*- coding: utf-8 -*-
-
-# Copyright (C) 2011, J. Ignacio Ã?lvarez <neonigma gmail com>
-
-# This file is part of Pluglib ABC.
-
-# Pluglib 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 3 of the License, or
-# (at your option) any later version.
-
-# Pluglib is distributed in the hope that it will be useful,
+# Orca
+#
+# Copyright 2011 Consorcio Fernando de los Rios.
+# Author: J. Ignacio Alvarez <jialvarez emergya es>
+#
+# This library 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 General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with Pluglib.  If not, see <http://www.gnu.org/licenses/>.
-
+# 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., Franklin Street, Fifth Floor,
+# Boston MA  02110-1301 USA.
+
+"""Class that maintains the plugins list"""
+
+__id__        = "$Id$"
+__version__   = "$Revision$"
+__date__      = "$Date$"
+__copyright__ = "Copyright (c) 2011 Consorcio Fernando de los Rios."
+__license__   = "LGPL"
 
 class StoreConfig:
     def __init__(self):



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]