diff options
author | ceros7 <ceros7@svn> | 2010-05-15 22:50:38 +0000 |
---|---|---|
committer | ceros7 <ceros7@svn> | 2010-05-15 22:50:38 +0000 |
commit | 3902b5bea0954f936d66469d0db79c0b259a6c7a (patch) | |
tree | 634ddfbdb9f541b10b3a019b729fe09d83dafe86 /tools/EventClients/lib/python | |
parent | 3f2d219acca88681c7233edd035585c0a6f7e283 (diff) |
Add missing copyright headers for sources in tools/EventClients/lib.
These files were implemented and modified by the XBMC team.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@30194 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'tools/EventClients/lib/python')
-rw-r--r-- | tools/EventClients/lib/python/bt/bt.py | 16 | ||||
-rw-r--r-- | tools/EventClients/lib/python/bt/hid.py | 16 | ||||
-rw-r--r-- | tools/EventClients/lib/python/ps3/keymaps.py | 16 | ||||
-rw-r--r-- | tools/EventClients/lib/python/ps3/sixaxis.py | 16 | ||||
-rw-r--r-- | tools/EventClients/lib/python/xbmcclient.py | 16 | ||||
-rw-r--r-- | tools/EventClients/lib/python/zeroconf.py | 17 |
6 files changed, 97 insertions, 0 deletions
diff --git a/tools/EventClients/lib/python/bt/bt.py b/tools/EventClients/lib/python/bt/bt.py index de4fd1bb65..2dd897ed1b 100644 --- a/tools/EventClients/lib/python/bt/bt.py +++ b/tools/EventClients/lib/python/bt/bt.py @@ -1,3 +1,19 @@ +# Copyright (C) 2008-2009 Team XBMC http://www.xbmc.org +# +# 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 Street, Fifth Floor, Boston, MA 02110-1301 USA. + BLUEZ=0 try: diff --git a/tools/EventClients/lib/python/bt/hid.py b/tools/EventClients/lib/python/bt/hid.py index 7017185dc4..a01fe34a9a 100644 --- a/tools/EventClients/lib/python/bt/hid.py +++ b/tools/EventClients/lib/python/bt/hid.py @@ -1,3 +1,19 @@ +# Copyright (C) 2008-2009 Team XBMC http://www.xbmc.org +# +# 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 Street, Fifth Floor, Boston, MA 02110-1301 USA. + from bluetooth import * class HID: diff --git a/tools/EventClients/lib/python/ps3/keymaps.py b/tools/EventClients/lib/python/ps3/keymaps.py index abe7dd6427..f0b383ad0b 100644 --- a/tools/EventClients/lib/python/ps3/keymaps.py +++ b/tools/EventClients/lib/python/ps3/keymaps.py @@ -1,3 +1,19 @@ +# Copyright (C) 2008-2009 Team XBMC http://www.xbmc.org +# +# 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 Street, Fifth Floor, Boston, MA 02110-1301 USA. + # PS3 Remote and Controller Keymaps keymap_remote = { diff --git a/tools/EventClients/lib/python/ps3/sixaxis.py b/tools/EventClients/lib/python/ps3/sixaxis.py index 15014b8ea0..b205d040e1 100644 --- a/tools/EventClients/lib/python/ps3/sixaxis.py +++ b/tools/EventClients/lib/python/ps3/sixaxis.py @@ -1,5 +1,21 @@ #!/usr/bin/python +# Copyright (C) 2008-2009 Team XBMC http://www.xbmc.org +# +# 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 Street, Fifth Floor, Boston, MA 02110-1301 USA. + import time import sys import struct diff --git a/tools/EventClients/lib/python/xbmcclient.py b/tools/EventClients/lib/python/xbmcclient.py index d62f2b9ee3..f32d83ef54 100644 --- a/tools/EventClients/lib/python/xbmcclient.py +++ b/tools/EventClients/lib/python/xbmcclient.py @@ -1,5 +1,21 @@ #!/usr/bin/python +# Copyright (C) 2008-2009 Team XBMC http://www.xbmc.org +# +# 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 Street, Fifth Floor, Boston, MA 02110-1301 USA. + """ Implementation of XBMC's UDP based input system. diff --git a/tools/EventClients/lib/python/zeroconf.py b/tools/EventClients/lib/python/zeroconf.py index 9fc82f5909..8e8fec8586 100644 --- a/tools/EventClients/lib/python/zeroconf.py +++ b/tools/EventClients/lib/python/zeroconf.py @@ -1,4 +1,21 @@ #!/usr/bin/env python + +# Copyright (C) 2008-2009 Team XBMC http://www.xbmc.org +# +# 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 Street, Fifth Floor, Boston, MA 02110-1301 USA. + """ Simple wrapper around Avahi """ |