Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/model/devices
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-06-24 13:01:30 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-06-24 13:01:30 (GMT)
commite3e69f42a2015ae37087564c4a7840bd443883ff (patch)
treeb1f9835509651a04de3e125455d275a6e7edec21 /shell/model/devices
parentcae4e52b7ce7d267232fd9d4a0f5fb4fd14cd7c2 (diff)
Add a bunch of GPL headers
Diffstat (limited to 'shell/model/devices')
-rw-r--r--shell/model/devices/__init__.py16
-rw-r--r--shell/model/devices/battery.py16
-rw-r--r--shell/model/devices/network/__init__.py16
-rw-r--r--shell/model/devices/network/wired.py16
4 files changed, 64 insertions, 0 deletions
diff --git a/shell/model/devices/__init__.py b/shell/model/devices/__init__.py
index e69de29..a9dd95a 100644
--- a/shell/model/devices/__init__.py
+++ b/shell/model/devices/__init__.py
@@ -0,0 +1,16 @@
+# Copyright (C) 2006-2007, 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
+
diff --git a/shell/model/devices/battery.py b/shell/model/devices/battery.py
index 0244b24..4628996 100644
--- a/shell/model/devices/battery.py
+++ b/shell/model/devices/battery.py
@@ -1,3 +1,19 @@
+# Copyright (C) 2006-2007, 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 model.devices import device
diff --git a/shell/model/devices/network/__init__.py b/shell/model/devices/network/__init__.py
index e69de29..a9dd95a 100644
--- a/shell/model/devices/network/__init__.py
+++ b/shell/model/devices/network/__init__.py
@@ -0,0 +1,16 @@
+# Copyright (C) 2006-2007, 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
+
diff --git a/shell/model/devices/network/wired.py b/shell/model/devices/network/wired.py
index 1712a64..66c5206 100644
--- a/shell/model/devices/network/wired.py
+++ b/shell/model/devices/network/wired.py
@@ -1,3 +1,19 @@
+# Copyright (C) 2006-2007, 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 model.devices import device
class Device(device.Device):