summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <wyskas@gmail.com>2009-03-27 07:51:06 +0100
committerAnton Khirnov <wyskas@gmail.com>2009-03-27 07:51:06 +0100
commit5b8f4c97992f09b5fa8f30aeac379b7b1f378657 (patch)
tree210bfdc4c0c65fd3811f2bc0ebcd9a372112c6c5
parentb35c85322b0551eb4536d1d03ec19c388e7f6309 (diff)
add licence headers to all files.
-rw-r--r--nephilim/connect_wg.py18
-rw-r--r--nephilim/misc.py18
-rw-r--r--nephilim/mpclient.py18
-rw-r--r--nephilim/plugin.py18
-rw-r--r--nephilim/plugins/AlbumCover.py18
-rw-r--r--nephilim/plugins/Filebrowser.py17
-rw-r--r--nephilim/plugins/Lyrics.py17
-rw-r--r--nephilim/plugins/Notify.py18
-rw-r--r--nephilim/plugins/PlayControl.py17
-rw-r--r--nephilim/plugins/Playlist.py17
-rw-r--r--nephilim/plugins/Songinfo.py17
-rw-r--r--nephilim/plugins/Systray.py18
-rw-r--r--nephilim/plugins/__init__.py18
-rw-r--r--nephilim/settings_wg.py18
-rw-r--r--nephilim/song.py18
-rw-r--r--nephilim/winMain.py18
16 files changed, 283 insertions, 0 deletions
diff --git a/nephilim/connect_wg.py b/nephilim/connect_wg.py
index 49d5a73..888eef1 100644
--- a/nephilim/connect_wg.py
+++ b/nephilim/connect_wg.py
@@ -1,3 +1,21 @@
+#
+# Copyright (C) 2008 jerous <jerous@gmail.com>
+# Copyright (C) 2009 Anton Khirnov <wyskas@gmail.com>
+#
+# Nephilim 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.
+#
+# Nephilim 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 Nephilim. If not, see <http://www.gnu.org/licenses/>.
+#
+
from PyQt4 import QtGui, QtCore
from PyQt4.QtCore import QVariant
import time
diff --git a/nephilim/misc.py b/nephilim/misc.py
index 223531d..001fcee 100644
--- a/nephilim/misc.py
+++ b/nephilim/misc.py
@@ -1,3 +1,21 @@
+#
+# Copyright (C) 2008 jerous <jerous@gmail.com>
+# Copyright (C) 2009 Anton Khirnov <wyskas@gmail.com>
+#
+# Nephilim 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.
+#
+# Nephilim 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 Nephilim. If not, see <http://www.gnu.org/licenses/>.
+#
+
from PyQt4 import QtCore, QtGui
import socket
import logging
diff --git a/nephilim/mpclient.py b/nephilim/mpclient.py
index fdc43da..620bb6a 100644
--- a/nephilim/mpclient.py
+++ b/nephilim/mpclient.py
@@ -1,3 +1,21 @@
+#
+# Copyright (C) 2008 jerous <jerous@gmail.com>
+# Copyright (C) 2009 Anton Khirnov <wyskas@gmail.com>
+#
+# Nephilim 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.
+#
+# Nephilim 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 Nephilim. If not, see <http://www.gnu.org/licenses/>.
+#
+
from PyQt4 import QtCore
import mpd
import socket
diff --git a/nephilim/plugin.py b/nephilim/plugin.py
index 1a9bb0c..9ca4561 100644
--- a/nephilim/plugin.py
+++ b/nephilim/plugin.py
@@ -1,3 +1,21 @@
+#
+# Copyright (C) 2008 jerous <jerous@gmail.com>
+# Copyright (C) 2009 Anton Khirnov <wyskas@gmail.com>
+#
+# Nephilim 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.
+#
+# Nephilim 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 Nephilim. If not, see <http://www.gnu.org/licenses/>.
+#
+
from PyQt4 import QtGui, QtCore
from PyQt4.QtCore import QVariant
import logging
diff --git a/nephilim/plugins/AlbumCover.py b/nephilim/plugins/AlbumCover.py
index 8a85a78..a33a3bc 100644
--- a/nephilim/plugins/AlbumCover.py
+++ b/nephilim/plugins/AlbumCover.py
@@ -1,3 +1,21 @@
+#
+# Copyright (C) 2008 jerous <jerous@gmail.com>
+# Copyright (C) 2009 Anton Khirnov <wyskas@gmail.com>
+#
+# Nephilim 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.
+#
+# Nephilim 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 Nephilim. If not, see <http://www.gnu.org/licenses/>.
+#
+
from PyQt4 import QtGui, QtCore
from PyQt4.QtCore import QVariant
from traceback import print_exc
diff --git a/nephilim/plugins/Filebrowser.py b/nephilim/plugins/Filebrowser.py
index 27efcf0..f88c0f5 100644
--- a/nephilim/plugins/Filebrowser.py
+++ b/nephilim/plugins/Filebrowser.py
@@ -1,3 +1,20 @@
+#
+# Copyright (C) 2009 Anton Khirnov <wyskas@gmail.com>
+#
+# Nephilim 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.
+#
+# Nephilim 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 Nephilim. If not, see <http://www.gnu.org/licenses/>.
+#
+
from PyQt4 import QtGui, QtCore
from PyQt4.QtCore import QVariant
import os
diff --git a/nephilim/plugins/Lyrics.py b/nephilim/plugins/Lyrics.py
index 0c3e4af..3971ddc 100644
--- a/nephilim/plugins/Lyrics.py
+++ b/nephilim/plugins/Lyrics.py
@@ -1,3 +1,20 @@
+#
+# Copyright (C) 2009 Anton Khirnov <wyskas@gmail.com>
+#
+# Nephilim 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.
+#
+# Nephilim 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 Nephilim. If not, see <http://www.gnu.org/licenses/>.
+#
+
from PyQt4 import QtGui,QtCore
from PyQt4.QtCore import QVariant
diff --git a/nephilim/plugins/Notify.py b/nephilim/plugins/Notify.py
index 2c03898..2f373eb 100644
--- a/nephilim/plugins/Notify.py
+++ b/nephilim/plugins/Notify.py
@@ -1,3 +1,21 @@
+#
+# Copyright (C) 2008 jerous <jerous@gmail.com>
+# Copyright (C) 2009 Anton Khirnov <wyskas@gmail.com>
+#
+# Nephilim 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.
+#
+# Nephilim 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 Nephilim. If not, see <http://www.gnu.org/licenses/>.
+#
+
from PyQt4 import QtGui, QtCore
from PyQt4.QtCore import QVariant
from traceback import print_exc
diff --git a/nephilim/plugins/PlayControl.py b/nephilim/plugins/PlayControl.py
index 114be0d..737e898 100644
--- a/nephilim/plugins/PlayControl.py
+++ b/nephilim/plugins/PlayControl.py
@@ -1,3 +1,20 @@
+#
+# Copyright (C) 2009 Anton Khirnov <wyskas@gmail.com>
+#
+# Nephilim 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.
+#
+# Nephilim 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 Nephilim. If not, see <http://www.gnu.org/licenses/>.
+#
+
from PyQt4 import QtGui, QtCore
from PyQt4.QtCore import QVariant
import logging
diff --git a/nephilim/plugins/Playlist.py b/nephilim/plugins/Playlist.py
index 533fb41..3d2fe81 100644
--- a/nephilim/plugins/Playlist.py
+++ b/nephilim/plugins/Playlist.py
@@ -1,3 +1,20 @@
+#
+# Copyright (C) 2009 Anton Khirnov <wyskas@gmail.com>
+#
+# Nephilim 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.
+#
+# Nephilim 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 Nephilim. If not, see <http://www.gnu.org/licenses/>.
+#
+
from PyQt4 import QtGui, QtCore
from PyQt4.QtCore import QVariant
diff --git a/nephilim/plugins/Songinfo.py b/nephilim/plugins/Songinfo.py
index c450c4d..fb9d3fe 100644
--- a/nephilim/plugins/Songinfo.py
+++ b/nephilim/plugins/Songinfo.py
@@ -1,3 +1,20 @@
+#
+# Copyright (C) 2009 Anton Khirnov <wyskas@gmail.com>
+#
+# Nephilim 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.
+#
+# Nephilim 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 Nephilim. If not, see <http://www.gnu.org/licenses/>.
+#
+
from PyQt4 import QtGui, QtCore
from ..plugin import Plugin
diff --git a/nephilim/plugins/Systray.py b/nephilim/plugins/Systray.py
index f0b139a..169579c 100644
--- a/nephilim/plugins/Systray.py
+++ b/nephilim/plugins/Systray.py
@@ -1,3 +1,21 @@
+#
+# Copyright (C) 2008 jerous <jerous@gmail.com>
+# Copyright (C) 2009 Anton Khirnov <wyskas@gmail.com>
+#
+# Nephilim 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.
+#
+# Nephilim 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 Nephilim. If not, see <http://www.gnu.org/licenses/>.
+#
+
from PyQt4 import QtGui, QtCore
from PyQt4.QtCore import QVariant
diff --git a/nephilim/plugins/__init__.py b/nephilim/plugins/__init__.py
index 0d33fce..577b4da 100644
--- a/nephilim/plugins/__init__.py
+++ b/nephilim/plugins/__init__.py
@@ -1,3 +1,21 @@
+#
+# Copyright (C) 2009 Anton Khirnov <wyskas@gmail.com>
+#
+# Nephilim 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.
+#
+# Nephilim 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 Nephilim. If not, see <http://www.gnu.org/licenses/>.
+#
+
+
import sys
import logging
diff --git a/nephilim/settings_wg.py b/nephilim/settings_wg.py
index d89bd84..d757e83 100644
--- a/nephilim/settings_wg.py
+++ b/nephilim/settings_wg.py
@@ -1,3 +1,21 @@
+#
+# Copyright (C) 2008 jerous <jerous@gmail.com>
+# Copyright (C) 2009 Anton Khirnov <wyskas@gmail.com>
+#
+# Nephilim 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.
+#
+# Nephilim 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 Nephilim. If not, see <http://www.gnu.org/licenses/>.
+#
+
from PyQt4 import QtGui, QtCore
from PyQt4.QtCore import QVariant
import os
diff --git a/nephilim/song.py b/nephilim/song.py
index 3bd319c..9631eeb 100644
--- a/nephilim/song.py
+++ b/nephilim/song.py
@@ -1,3 +1,21 @@
+#
+# Copyright (C) 2008 jerous <jerous@gmail.com>
+# Copyright (C) 2009 Anton Khirnov <wyskas@gmail.com>
+#
+# Nephilim 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.
+#
+# Nephilim 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 Nephilim. If not, see <http://www.gnu.org/licenses/>.
+#
+
from PyQt4 import QtCore
import os
diff --git a/nephilim/winMain.py b/nephilim/winMain.py
index b45dbad..09b3580 100644
--- a/nephilim/winMain.py
+++ b/nephilim/winMain.py
@@ -1,3 +1,21 @@
+#
+# Copyright (C) 2008 jerous <jerous@gmail.com>
+# Copyright (C) 2009 Anton Khirnov <wyskas@gmail.com>
+#
+# Nephilim 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.
+#
+# Nephilim 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 Nephilim. If not, see <http://www.gnu.org/licenses/>.
+#
+
from PyQt4 import QtGui, QtCore
from PyQt4.QtCore import QVariant
import logging