Enlightenment CVS committal

Author  : cmarcelo
Project : e17
Module  : proto/python-efl

Dir     : e17/proto/python-efl/python-evas/evas


Modified Files:
        __init__.py debug.py decorators.py evas.c_evas.pyx 
        evas.c_evas_canvas.pxi evas.c_evas_object.pxi 
        evas.c_evas_object_callbacks.pxi evas.c_evas_object_events.pxi 
        evas.c_evas_object_gradient.pxi evas.c_evas_object_image.pxi 
        evas.c_evas_object_line.pxi evas.c_evas_object_polygon.pxi 
        evas.c_evas_object_rectangle.pxi evas.c_evas_object_smart.pxi 
        evas.c_evas_object_text.pxi evas.c_evas_rect.pxi 
        evas_object_image_mask.c evas_object_image_rotate.c utils.py 


Log Message:
Changing license of python-efl to LGPL.


===================================================================
RCS file: /cvs/e/e17/proto/python-efl/python-evas/evas/__init__.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -3 -r1.19 -r1.20
--- __init__.py 31 Mar 2008 19:52:56 -0000      1.19
+++ __init__.py 7 Aug 2008 03:13:12 -0000       1.20
@@ -1,3 +1,20 @@
+# Copyright (C) 2007-2008 Gustavo Sverzut Barbieri, Caio Marcelo de Oliveira 
Filho, Ulisses Furquim
+#
+# This file is part of Python-Evas.
+#
+# Python-Evas 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.
+#
+# Python-Evas 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 Python-Evas.  If not, see <http://www.gnu.org/licenses/>.
+
 #!/usr/bin/env python2
 
 import c_evas
===================================================================
RCS file: /cvs/e/e17/proto/python-efl/python-evas/evas/debug.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- debug.py    22 Oct 2007 00:55:08 -0000      1.1
+++ debug.py    7 Aug 2008 03:13:12 -0000       1.2
@@ -1,3 +1,20 @@
+# Copyright (C) 2007-2008 Gustavo Sverzut Barbieri
+#
+# This file is part of Python-Evas.
+#
+# Python-Evas 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.
+#
+# Python-Evas 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 Python-Evas.  If not, see <http://www.gnu.org/licenses/>.
+
 import evas
 import evas.utils
 import logging
===================================================================
RCS file: /cvs/e/e17/proto/python-efl/python-evas/evas/decorators.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- decorators.py       1 Apr 2008 21:05:53 -0000       1.3
+++ decorators.py       7 Aug 2008 03:13:12 -0000       1.4
@@ -1,3 +1,20 @@
+# Copyright (C) 2007-2008 Gustavo Sverzut Barbieri, Caio Marcelo de Oliveira 
Filho
+#
+# This file is part of Python-Evas.
+#
+# Python-Evas 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.
+#
+# Python-Evas 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 Python-Evas.  If not, see <http://www.gnu.org/licenses/>.
+
 import evas
 
 def event_callback(event_type):
===================================================================
RCS file: /cvs/e/e17/proto/python-efl/python-evas/evas/evas.c_evas.pyx,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- evas.c_evas.pyx     10 Nov 2007 22:51:23 -0000      1.15
+++ evas.c_evas.pyx     7 Aug 2008 03:13:12 -0000       1.16
@@ -1,3 +1,20 @@
+# Copyright (C) 2007-2008 Gustavo Sverzut Barbieri, Ulisses Furquim
+#
+# This file is part of Python-Evas.
+#
+# Python-Evas 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.
+#
+# Python-Evas 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 Python-Evas.  If not, see <http://www.gnu.org/licenses/>.
+
 cimport evas.python as python
 
 __extra_epydoc_fields__ = (
===================================================================
RCS file: /cvs/e/e17/proto/python-efl/python-evas/evas/evas.c_evas_canvas.pxi,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- evas.c_evas_canvas.pxi      1 Apr 2008 21:07:04 -0000       1.17
+++ evas.c_evas_canvas.pxi      7 Aug 2008 03:13:12 -0000       1.18
@@ -1,3 +1,20 @@
+# Copyright (C) 2007-2008 Gustavo Sverzut Barbieri, Caio Marcelo de Oliveira 
Filho
+#
+# This file is part of Python-Evas.
+#
+# Python-Evas 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.
+#
+# Python-Evas 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 Python-Evas.  If not, see <http://www.gnu.org/licenses/>.
+
 # This file is included verbatim by c_evas.pyx
 
 cdef public class Canvas [object PyEvasCanvas, type PyEvasCanvas_Type]:
===================================================================
RCS file: /cvs/e/e17/proto/python-efl/python-evas/evas/evas.c_evas_object.pxi,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -3 -r1.25 -r1.26
--- evas.c_evas_object.pxi      1 Apr 2008 21:05:53 -0000       1.25
+++ evas.c_evas_object.pxi      7 Aug 2008 03:13:12 -0000       1.26
@@ -1,3 +1,20 @@
+# Copyright (C) 2007-2008 Gustavo Sverzut Barbieri, Caio Marcelo de Oliveira 
Filho, Ulisses Furquim
+#
+# This file is part of Python-Evas.
+#
+# Python-Evas 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.
+#
+# Python-Evas 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 Python-Evas.  If not, see <http://www.gnu.org/licenses/>.
+
 # This file is included verbatim by c_evas.pyx
 
 import traceback
===================================================================
RCS file: 
/cvs/e/e17/proto/python-efl/python-evas/evas/evas.c_evas_object_callbacks.pxi,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- evas.c_evas_object_callbacks.pxi    1 Apr 2008 21:05:53 -0000       1.8
+++ evas.c_evas_object_callbacks.pxi    7 Aug 2008 03:13:12 -0000       1.9
@@ -1,3 +1,20 @@
+# Copyright (C) 2007-2008 Gustavo Sverzut Barbieri, Caio Marcelo de Oliveira 
Filho, Ulisses Furquim
+#
+# This file is part of Python-Evas.
+#
+# Python-Evas 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.
+#
+# Python-Evas 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 Python-Evas.  If not, see <http://www.gnu.org/licenses/>.
+
 # This file is included verbatim by c_evas.pyx
 
 import traceback
===================================================================
RCS file: 
/cvs/e/e17/proto/python-efl/python-evas/evas/evas.c_evas_object_events.pxi,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- evas.c_evas_object_events.pxi       1 Apr 2008 21:05:53 -0000       1.7
+++ evas.c_evas_object_events.pxi       7 Aug 2008 03:13:12 -0000       1.8
@@ -1,3 +1,20 @@
+# Copyright (C) 2007-2008 Gustavo Sverzut Barbieri, Caio Marcelo de Oliveira 
Filho
+#
+# This file is part of Python-Evas.
+#
+# Python-Evas 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.
+#
+# Python-Evas 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 Python-Evas.  If not, see <http://www.gnu.org/licenses/>.
+
 # This file is included verbatim by c_evas.pyx
 
 cdef class EventPoint:
===================================================================
RCS file: 
/cvs/e/e17/proto/python-efl/python-evas/evas/evas.c_evas_object_gradient.pxi,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- evas.c_evas_object_gradient.pxi     8 Oct 2007 15:09:01 -0000       1.6
+++ evas.c_evas_object_gradient.pxi     7 Aug 2008 03:13:12 -0000       1.7
@@ -1,3 +1,20 @@
+# Copyright (C) 2007-2008 Gustavo Sverzut Barbieri, Ulisses Furquim
+#
+# This file is part of Python-Evas.
+#
+# Python-Evas 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.
+#
+# Python-Evas 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 Python-Evas.  If not, see <http://www.gnu.org/licenses/>.
+
 # This file is included verbatim by c_evas.pyx
 
 cdef public class Gradient(Object) [object PyEvasGradient,
===================================================================
RCS file: 
/cvs/e/e17/proto/python-efl/python-evas/evas/evas.c_evas_object_image.pxi,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- evas.c_evas_object_image.pxi        12 Mar 2008 18:53:55 -0000      1.16
+++ evas.c_evas_object_image.pxi        7 Aug 2008 03:13:12 -0000       1.17
@@ -1,3 +1,20 @@
+# Copyright (C) 2007-2008 Gustavo Sverzut Barbieri, Caio Marcelo de Oliveira 
Filho, Ulisses Furquim
+#
+# This file is part of Python-Evas.
+#
+# Python-Evas 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.
+#
+# Python-Evas 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 Python-Evas.  If not, see <http://www.gnu.org/licenses/>.
+
 # This file is included verbatim by c_evas.pyx
 
 
===================================================================
RCS file: 
/cvs/e/e17/proto/python-efl/python-evas/evas/evas.c_evas_object_line.pxi,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- evas.c_evas_object_line.pxi 8 Oct 2007 15:09:01 -0000       1.6
+++ evas.c_evas_object_line.pxi 7 Aug 2008 03:13:12 -0000       1.7
@@ -1,3 +1,20 @@
+# Copyright (C) 2007-2008 Gustavo Sverzut Barbieri, Ulisses Furquim
+#
+# This file is part of Python-Evas.
+#
+# Python-Evas 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.
+#
+# Python-Evas 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 Python-Evas.  If not, see <http://www.gnu.org/licenses/>.
+
 # This file is included verbatim by c_evas.pyx
 
 cdef public class Line(Object) [object PyEvasLine, type PyEvasLine_Type]:
===================================================================
RCS file: 
/cvs/e/e17/proto/python-efl/python-evas/evas/evas.c_evas_object_polygon.pxi,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- evas.c_evas_object_polygon.pxi      8 Oct 2007 15:09:01 -0000       1.5
+++ evas.c_evas_object_polygon.pxi      7 Aug 2008 03:13:12 -0000       1.6
@@ -1,3 +1,20 @@
+# Copyright (C) 2007-2008 Gustavo Sverzut Barbieri, Ulisses Furquim
+#
+# This file is part of Python-Evas.
+#
+# Python-Evas 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.
+#
+# Python-Evas 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 Python-Evas.  If not, see <http://www.gnu.org/licenses/>.
+
 # This file is included verbatim by c_evas.pyx
 
 cdef public class Polygon(Object) [object PyEvasPolygon,
===================================================================
RCS file: 
/cvs/e/e17/proto/python-efl/python-evas/evas/evas.c_evas_object_rectangle.pxi,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- evas.c_evas_object_rectangle.pxi    8 Oct 2007 15:09:01 -0000       1.5
+++ evas.c_evas_object_rectangle.pxi    7 Aug 2008 03:13:12 -0000       1.6
@@ -1,3 +1,20 @@
+# Copyright (C) 2007-2008 Gustavo Sverzut Barbieri, Ulisses Furquim
+#
+# This file is part of Python-Evas.
+#
+# Python-Evas 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.
+#
+# Python-Evas 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 Python-Evas.  If not, see <http://www.gnu.org/licenses/>.
+
 # This file is included verbatim by c_evas.pyx
 
 cdef public class Rectangle(Object) [object PyEvasRectangle,
===================================================================
RCS file: 
/cvs/e/e17/proto/python-efl/python-evas/evas/evas.c_evas_object_smart.pxi,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -3 -r1.23 -r1.24
--- evas.c_evas_object_smart.pxi        5 Nov 2007 21:47:48 -0000       1.23
+++ evas.c_evas_object_smart.pxi        7 Aug 2008 03:13:12 -0000       1.24
@@ -1,3 +1,20 @@
+# Copyright (C) 2007-2008 Gustavo Sverzut Barbieri, Ulisses Furquim
+#
+# This file is part of Python-Evas.
+#
+# Python-Evas 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.
+#
+# Python-Evas 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 Python-Evas.  If not, see <http://www.gnu.org/licenses/>.
+
 # This file is included verbatim by c_evas.pyx
 
 cdef object _smart_classes
===================================================================
RCS file: 
/cvs/e/e17/proto/python-efl/python-evas/evas/evas.c_evas_object_text.pxi,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- evas.c_evas_object_text.pxi 8 Oct 2007 15:09:01 -0000       1.6
+++ evas.c_evas_object_text.pxi 7 Aug 2008 03:13:12 -0000       1.7
@@ -1,3 +1,20 @@
+# Copyright (C) 2007-2008 Gustavo Sverzut Barbieri, Ulisses Furquim
+#
+# This file is part of Python-Evas.
+#
+# Python-Evas 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.
+#
+# Python-Evas 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 Python-Evas.  If not, see <http://www.gnu.org/licenses/>.
+
 # This file is included verbatim by c_evas.pyx
 
 cdef public class Text(Object) [object PyEvasText, type PyEvasText_Type]:
===================================================================
RCS file: /cvs/e/e17/proto/python-efl/python-evas/evas/evas.c_evas_rect.pxi,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- evas.c_evas_rect.pxi        19 Oct 2007 14:49:42 -0000      1.5
+++ evas.c_evas_rect.pxi        7 Aug 2008 03:13:12 -0000       1.6
@@ -1,3 +1,20 @@
+# Copyright (C) 2007-2008 Gustavo Sverzut Barbieri
+#
+# This file is part of Python-Evas.
+#
+# Python-Evas 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.
+#
+# Python-Evas 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 Python-Evas.  If not, see <http://www.gnu.org/licenses/>.
+
 # This file is included verbatim by c_evas.pyx
 
 cdef public class Rect [object PyEvasRect, type PyEvasRect_Type]:
===================================================================
RCS file: 
/cvs/e/e17/proto/python-efl/python-evas/evas/evas_object_image_mask.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- evas_object_image_mask.c    12 Mar 2008 19:57:49 -0000      1.4
+++ evas_object_image_mask.c    7 Aug 2008 03:13:12 -0000       1.5
@@ -1,3 +1,22 @@
+/*
+ * Copyright (C) 2007-2008 Gustavo Sverzut Barbieri, Adriano Rezende
+ *
+ * This file is part of Python-Evas.
+ *
+ * Python-Evas 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.
+ *
+ * Python-Evas 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 Python-Evas.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <Evas.h>
===================================================================
RCS file: 
/cvs/e/e17/proto/python-efl/python-evas/evas/evas_object_image_rotate.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- evas_object_image_rotate.c  12 Mar 2008 19:57:49 -0000      1.6
+++ evas_object_image_rotate.c  7 Aug 2008 03:13:12 -0000       1.7
@@ -1,3 +1,22 @@
+/*
+ * Copyright (C) 2007-2008 Gustavo Sverzut Barbieri, Leonardo Sobral, Ulisses 
Furquim
+ *
+ * This file is part of Python-Evas.
+ *
+ * Python-Evas 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.
+ *
+ * Python-Evas 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 Python-Evas.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <Evas.h>
===================================================================
RCS file: /cvs/e/e17/proto/python-efl/python-evas/evas/utils.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- utils.py    22 Oct 2007 00:55:08 -0000      1.3
+++ utils.py    7 Aug 2008 03:13:12 -0000       1.4
@@ -1,3 +1,20 @@
+# Copyright (C) 2007-2008 Gustavo Sverzut Barbieri
+#
+# This file is part of Python-Evas.
+#
+# Python-Evas 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.
+#
+# Python-Evas 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 Python-Evas.  If not, see <http://www.gnu.org/licenses/>.
+
 __callbacks = (
     "mouse_in",
     "mouse_out",



-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to