Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activities
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-10-14 23:12:48 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-10-14 23:12:48 (GMT)
commit30eedd9e2e4ef537a67680b5903b3b4b5edc1b9b (patch)
treec3c20e784a8248ba22df6d6bdcef1fff0633f52c /activities
parent615242f4f8c7dc1b7ed02751242b31352777e7b1 (diff)
Add GPL header
Diffstat (limited to 'activities')
-rw-r--r--activities/chat/ChatActivity.py16
-rw-r--r--activities/groupchat/GroupChatActivity.py16
-rw-r--r--activities/terminal/TerminalActivity.py16
-rw-r--r--activities/web/linkscontroller.py16
-rw-r--r--activities/web/linksmodel.py16
-rw-r--r--activities/web/linksview.py16
-rw-r--r--activities/web/stylesheet.py16
-rw-r--r--activities/web/toolbar.py16
-rw-r--r--activities/web/webactivity.py16
-rw-r--r--activities/web/webbrowser.py16
10 files changed, 160 insertions, 0 deletions
diff --git a/activities/chat/ChatActivity.py b/activities/chat/ChatActivity.py
index 4205bdd..fd2577a 100644
--- a/activities/chat/ChatActivity.py
+++ b/activities/chat/ChatActivity.py
@@ -1,3 +1,19 @@
+# Copyright (C) 2006, Red Hat, Inc.
+#
+# This program 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 2 of the License, or
+# (at your option) any later version.
+#
+# This program 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 this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
from gettext import gettext as _
from sugar.activity.Activity import Activity
diff --git a/activities/groupchat/GroupChatActivity.py b/activities/groupchat/GroupChatActivity.py
index 32cfac5..264311b 100644
--- a/activities/groupchat/GroupChatActivity.py
+++ b/activities/groupchat/GroupChatActivity.py
@@ -1,3 +1,19 @@
+# Copyright (C) 2006, Red Hat, Inc.
+#
+# This program 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 2 of the License, or
+# (at your option) any later version.
+#
+# This program 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 this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
from gettext import gettext as _
from sugar.activity.Activity import Activity
diff --git a/activities/terminal/TerminalActivity.py b/activities/terminal/TerminalActivity.py
index e2e02ed..818f132 100644
--- a/activities/terminal/TerminalActivity.py
+++ b/activities/terminal/TerminalActivity.py
@@ -1,3 +1,19 @@
+# Copyright (C) 2006, Red Hat, Inc.
+#
+# This program 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 2 of the License, or
+# (at your option) any later version.
+#
+# This program 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 this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
import gtk
import vte
import pango
diff --git a/activities/web/linkscontroller.py b/activities/web/linkscontroller.py
index 417b37a..bdc1296 100644
--- a/activities/web/linkscontroller.py
+++ b/activities/web/linkscontroller.py
@@ -1,3 +1,19 @@
+# Copyright (C) 2006, Red Hat, Inc.
+#
+# This program 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 2 of the License, or
+# (at your option) any later version.
+#
+# This program 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 this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
from sugar.p2p.Stream import Stream
from sugar.presence import PresenceService
diff --git a/activities/web/linksmodel.py b/activities/web/linksmodel.py
index 308bb93..4318bfc 100644
--- a/activities/web/linksmodel.py
+++ b/activities/web/linksmodel.py
@@ -1,3 +1,19 @@
+# Copyright (C) 2006, Red Hat, Inc.
+#
+# This program 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 2 of the License, or
+# (at your option) any later version.
+#
+# This program 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 this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
import gobject
class Link(object):
diff --git a/activities/web/linksview.py b/activities/web/linksview.py
index 8b27413..92d7026 100644
--- a/activities/web/linksview.py
+++ b/activities/web/linksview.py
@@ -1,3 +1,19 @@
+# Copyright (C) 2006, Red Hat, Inc.
+#
+# This program 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 2 of the License, or
+# (at your option) any later version.
+#
+# This program 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 this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
import gtk
import hippo
diff --git a/activities/web/stylesheet.py b/activities/web/stylesheet.py
index 0834ddd..b513c14 100644
--- a/activities/web/stylesheet.py
+++ b/activities/web/stylesheet.py
@@ -1,3 +1,19 @@
+# Copyright (C) 2006, Red Hat, Inc.
+#
+# This program 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 2 of the License, or
+# (at your option) any later version.
+#
+# This program 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 this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
import gtk
_screen_factor = gtk.gdk.screen_width() / 1200.0
diff --git a/activities/web/toolbar.py b/activities/web/toolbar.py
index 670fd1f..d4b7abf 100644
--- a/activities/web/toolbar.py
+++ b/activities/web/toolbar.py
@@ -1,3 +1,19 @@
+# Copyright (C) 2006, Red Hat, Inc.
+#
+# This program 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 2 of the License, or
+# (at your option) any later version.
+#
+# This program 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 this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
import gtk
from _sugar import AddressEntry
diff --git a/activities/web/webactivity.py b/activities/web/webactivity.py
index fa8282f..c16834d 100644
--- a/activities/web/webactivity.py
+++ b/activities/web/webactivity.py
@@ -1,3 +1,19 @@
+# Copyright (C) 2006, Red Hat, Inc.
+#
+# This program 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 2 of the License, or
+# (at your option) any later version.
+#
+# This program 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 this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
from gettext import gettext as _
import gtk
import gtkmozembed
diff --git a/activities/web/webbrowser.py b/activities/web/webbrowser.py
index 3673c0b..12126b6 100644
--- a/activities/web/webbrowser.py
+++ b/activities/web/webbrowser.py
@@ -1,3 +1,19 @@
+# Copyright (C) 2006, Red Hat, Inc.
+#
+# This program 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 2 of the License, or
+# (at your option) any later version.
+#
+# This program 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 this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
import gobject
from _sugar import Browser