summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Davis <loafier@gmail.com>2006-08-15 05:56:42 +0000
committerChristopher Davis <loafier@gmail.com>2006-08-15 05:56:42 +0000
commit31d5cc05e5d42fe36875efee92cdf3a4f203636f (patch)
treebdfc94ac91b1935ead7882fa0f463b24fc28afa1
parente74c84f65a3292970d45389ca01f3d64810707da (diff)
downloadirssi-python-31d5cc05e5d42fe36875efee92cdf3a4f203636f.tar.gz
irssi-python-31d5cc05e5d42fe36875efee92cdf3a4f203636f.tar.xz
irssi-python-31d5cc05e5d42fe36875efee92cdf3a4f203636f.zip
test1
git-svn-id: http://svn.irssi.org/repos/irssi-python@4317 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r--configure.in5
-rw-r--r--src/objects/ban-object.c20
-rw-r--r--src/objects/base-objects.c20
-rw-r--r--src/objects/channel-object.c20
-rw-r--r--src/objects/chatnet-object.c20
-rw-r--r--src/objects/command-object.c20
-rw-r--r--src/objects/connect-object.c20
-rw-r--r--src/objects/dcc-chat-object.c20
-rw-r--r--src/objects/dcc-get-object.c20
-rw-r--r--src/objects/dcc-object.c20
-rw-r--r--src/objects/dcc-send-object.c20
-rw-r--r--src/objects/factory.c20
-rw-r--r--src/objects/ignore-object.c20
-rw-r--r--src/objects/irc-channel-object.c20
-rw-r--r--src/objects/irc-connect-object.c20
-rw-r--r--src/objects/irc-server-object.c20
-rw-r--r--src/objects/log-object.c20
-rw-r--r--src/objects/logitem-object.c20
-rw-r--r--src/objects/main-window-object.c20
-rw-r--r--src/objects/netsplit-channel-object.c20
-rw-r--r--src/objects/netsplit-object.c20
-rw-r--r--src/objects/netsplit-server-object.c20
-rw-r--r--src/objects/nick-object.c20
-rw-r--r--src/objects/notifylist-object.c20
-rw-r--r--src/objects/process-object.c20
-rw-r--r--src/objects/pyscript-object.c20
-rw-r--r--src/objects/query-object.c20
-rw-r--r--src/objects/rawlog-object.c20
-rw-r--r--src/objects/reconnect-object.c20
-rw-r--r--src/objects/server-object.c20
-rw-r--r--src/objects/statusbar-item-object.c20
-rw-r--r--src/objects/textdest-object.c20
-rw-r--r--src/objects/theme-object.c20
-rw-r--r--src/objects/window-item-object.c20
-rw-r--r--src/objects/window-object.c20
-rw-r--r--src/pycore.c20
-rw-r--r--src/pyloader.c20
-rw-r--r--src/pymodule.c20
-rw-r--r--src/pysignals.c20
-rw-r--r--src/pysource.c20
-rw-r--r--src/pystatusbar.c20
-rw-r--r--src/pythemes.c20
-rw-r--r--src/pyutils.c20
43 files changed, 845 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 07821bd..0a0e885 100644
--- a/configure.in
+++ b/configure.in
@@ -41,6 +41,11 @@ if test -z $irssi_path; then
AC_MSG_ERROR([Path to Irssi distribution not specified. See --with-irssi option.])
fi
+# fix relative paths (from modules/icb)
+old=`pwd`
+irssi_path=`eval cd $irssi_path; pwd`
+cd $old
+
IRSSI_DIST=$irssi_path
AC_SUBST([IRSSI_DIST])
IRSSI_PYTHON_INCLUDES="-I${IRSSI_DIST} -I${IRSSI_DIST}/src -I${IRSSI_DIST}/src/fe-common/core \
diff --git a/src/objects/ban-object.c b/src/objects/ban-object.c
index 5420315..98437c9 100644
--- a/src/objects/ban-object.c
+++ b/src/objects/ban-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi_irc.h"
#include "pymodule.h"
diff --git a/src/objects/base-objects.c b/src/objects/base-objects.c
index 84d15d7..c4f30b7 100644
--- a/src/objects/base-objects.c
+++ b/src/objects/base-objects.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "structmember.h"
#include "pymodule.h"
diff --git a/src/objects/channel-object.c b/src/objects/channel-object.c
index 63f7f35..34e8b2f 100644
--- a/src/objects/channel-object.c
+++ b/src/objects/channel-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi.h"
#include "pymodule.h"
diff --git a/src/objects/chatnet-object.c b/src/objects/chatnet-object.c
index 2cbbb70..5efcfac 100644
--- a/src/objects/chatnet-object.c
+++ b/src/objects/chatnet-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pymodule.h"
#include "base-objects.h"
diff --git a/src/objects/command-object.c b/src/objects/command-object.c
index 0d4c3b1..4fbc713 100644
--- a/src/objects/command-object.c
+++ b/src/objects/command-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi.h"
#include "pymodule.h"
diff --git a/src/objects/connect-object.c b/src/objects/connect-object.c
index dceaa23..1b0665a 100644
--- a/src/objects/connect-object.c
+++ b/src/objects/connect-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pymodule.h"
#include "base-objects.h"
diff --git a/src/objects/dcc-chat-object.c b/src/objects/dcc-chat-object.c
index 0a6e0d0..10ecc6c 100644
--- a/src/objects/dcc-chat-object.c
+++ b/src/objects/dcc-chat-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi_irc.h"
#include "pymodule.h"
diff --git a/src/objects/dcc-get-object.c b/src/objects/dcc-get-object.c
index 959af05..f0e4360 100644
--- a/src/objects/dcc-get-object.c
+++ b/src/objects/dcc-get-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi_irc.h"
#include "pymodule.h"
diff --git a/src/objects/dcc-object.c b/src/objects/dcc-object.c
index 4499d7b..ba31e37 100644
--- a/src/objects/dcc-object.c
+++ b/src/objects/dcc-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi_irc.h"
#include "pymodule.h"
diff --git a/src/objects/dcc-send-object.c b/src/objects/dcc-send-object.c
index 528b0a9..d78fd7a 100644
--- a/src/objects/dcc-send-object.c
+++ b/src/objects/dcc-send-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi_irc.h"
#include "pymodule.h"
diff --git a/src/objects/factory.c b/src/objects/factory.c
index 49336e6..f0b41f2 100644
--- a/src/objects/factory.c
+++ b/src/objects/factory.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi.h"
#include "factory.h"
diff --git a/src/objects/ignore-object.c b/src/objects/ignore-object.c
index 89e5128..c8376c6 100644
--- a/src/objects/ignore-object.c
+++ b/src/objects/ignore-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi_irc.h"
#include "pymodule.h"
diff --git a/src/objects/irc-channel-object.c b/src/objects/irc-channel-object.c
index 63e4956..10620fd 100644
--- a/src/objects/irc-channel-object.c
+++ b/src/objects/irc-channel-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi_irc.h"
#include "pymodule.h"
diff --git a/src/objects/irc-connect-object.c b/src/objects/irc-connect-object.c
index 9edc5ae..94904a9 100644
--- a/src/objects/irc-connect-object.c
+++ b/src/objects/irc-connect-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pymodule.h"
#include "base-objects.h"
diff --git a/src/objects/irc-server-object.c b/src/objects/irc-server-object.c
index 7ad9383..268dcbf 100644
--- a/src/objects/irc-server-object.c
+++ b/src/objects/irc-server-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pymodule.h"
#include "base-objects.h"
diff --git a/src/objects/log-object.c b/src/objects/log-object.c
index 537c8c1..a26586b 100644
--- a/src/objects/log-object.c
+++ b/src/objects/log-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi_irc.h"
#include "pymodule.h"
diff --git a/src/objects/logitem-object.c b/src/objects/logitem-object.c
index 7e1b24b..609653f 100644
--- a/src/objects/logitem-object.c
+++ b/src/objects/logitem-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi_irc.h"
#include "pymodule.h"
diff --git a/src/objects/main-window-object.c b/src/objects/main-window-object.c
index d091fd0..763ad58 100644
--- a/src/objects/main-window-object.c
+++ b/src/objects/main-window-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi.h"
#include "pymodule.h"
diff --git a/src/objects/netsplit-channel-object.c b/src/objects/netsplit-channel-object.c
index 4947127..6cf0db5 100644
--- a/src/objects/netsplit-channel-object.c
+++ b/src/objects/netsplit-channel-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi_irc.h"
#include "pymodule.h"
diff --git a/src/objects/netsplit-object.c b/src/objects/netsplit-object.c
index d9cc64d..f92587b 100644
--- a/src/objects/netsplit-object.c
+++ b/src/objects/netsplit-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi_irc.h"
#include "pymodule.h"
diff --git a/src/objects/netsplit-server-object.c b/src/objects/netsplit-server-object.c
index 8b46197..a820727 100644
--- a/src/objects/netsplit-server-object.c
+++ b/src/objects/netsplit-server-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi_irc.h"
#include "pymodule.h"
diff --git a/src/objects/nick-object.c b/src/objects/nick-object.c
index af5feab..50d07f0 100644
--- a/src/objects/nick-object.c
+++ b/src/objects/nick-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pymodule.h"
#include "base-objects.h"
diff --git a/src/objects/notifylist-object.c b/src/objects/notifylist-object.c
index f6deb2d..3fc464d 100644
--- a/src/objects/notifylist-object.c
+++ b/src/objects/notifylist-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi_irc.h"
#include "pymodule.h"
diff --git a/src/objects/process-object.c b/src/objects/process-object.c
index 08f423d..3f69af8 100644
--- a/src/objects/process-object.c
+++ b/src/objects/process-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi_irc.h"
#include "pymodule.h"
diff --git a/src/objects/pyscript-object.c b/src/objects/pyscript-object.c
index f51b696..86e338d 100644
--- a/src/objects/pyscript-object.c
+++ b/src/objects/pyscript-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include <structmember.h>
#include "pyscript-object.h"
diff --git a/src/objects/query-object.c b/src/objects/query-object.c
index b470e58..fc0c285 100644
--- a/src/objects/query-object.c
+++ b/src/objects/query-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi.h"
#include "pymodule.h"
diff --git a/src/objects/rawlog-object.c b/src/objects/rawlog-object.c
index 39915e6..c872850 100644
--- a/src/objects/rawlog-object.c
+++ b/src/objects/rawlog-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi_irc.h"
#include "pymodule.h"
diff --git a/src/objects/reconnect-object.c b/src/objects/reconnect-object.c
index 29e2e46..8fd1cc5 100644
--- a/src/objects/reconnect-object.c
+++ b/src/objects/reconnect-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi.h"
#include "pymodule.h"
diff --git a/src/objects/server-object.c b/src/objects/server-object.c
index 0276739..ecfb379 100644
--- a/src/objects/server-object.c
+++ b/src/objects/server-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pymodule.h"
#include "factory.h"
diff --git a/src/objects/statusbar-item-object.c b/src/objects/statusbar-item-object.c
index 4d80e26..a93fb7a 100644
--- a/src/objects/statusbar-item-object.c
+++ b/src/objects/statusbar-item-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi.h"
#include "pymodule.h"
diff --git a/src/objects/textdest-object.c b/src/objects/textdest-object.c
index e645abb..1e5025b 100644
--- a/src/objects/textdest-object.c
+++ b/src/objects/textdest-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi_irc.h"
#include "pymodule.h"
diff --git a/src/objects/theme-object.c b/src/objects/theme-object.c
index d3937ee..d011d91 100644
--- a/src/objects/theme-object.c
+++ b/src/objects/theme-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi.h"
#include "pymodule.h"
diff --git a/src/objects/window-item-object.c b/src/objects/window-item-object.c
index 45ed733..d656814 100644
--- a/src/objects/window-item-object.c
+++ b/src/objects/window-item-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pymodule.h"
#include "base-objects.h"
diff --git a/src/objects/window-object.c b/src/objects/window-object.c
index b17a5d7..7684379 100644
--- a/src/objects/window-object.c
+++ b/src/objects/window-object.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi_irc.h"
#include "pymodule.h"
diff --git a/src/pycore.c b/src/pycore.c
index f9e4c3d..f367e5f 100644
--- a/src/pycore.c
+++ b/src/pycore.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include <string.h>
#include <signal.h>
diff --git a/src/pyloader.c b/src/pyloader.c
index 2ce1bef..e7cf88e 100644
--- a/src/pyloader.c
+++ b/src/pyloader.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include <frameobject.h>
#include <string.h>
diff --git a/src/pymodule.c b/src/pymodule.c
index 7795c1a..0962bae 100644
--- a/src/pymodule.c
+++ b/src/pymodule.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pymodule.h"
#include "pyirssi_irc.h"
diff --git a/src/pysignals.c b/src/pysignals.c
index 95718aa..2dd5dc4 100644
--- a/src/pysignals.c
+++ b/src/pysignals.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi.h"
#include "pysignals.h"
diff --git a/src/pysource.c b/src/pysource.c
index 413ab2c..7dca6c0 100644
--- a/src/pysource.c
+++ b/src/pysource.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pyirssi.h"
#include "pysource.h"
diff --git a/src/pystatusbar.c b/src/pystatusbar.c
index 8537718..6804d5f 100644
--- a/src/pystatusbar.c
+++ b/src/pystatusbar.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include "pystatusbar.h"
#include "pyirssi.h"
#include "factory.h"
diff --git a/src/pythemes.c b/src/pythemes.c
index a3e8927..6765304 100644
--- a/src/pythemes.c
+++ b/src/pythemes.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <Python.h>
#include "pythemes.h"
#include "pyirssi.h"
diff --git a/src/pyutils.c b/src/pyutils.c
index 05e1f31..b55ae0b 100644
--- a/src/pyutils.c
+++ b/src/pyutils.c
@@ -1,3 +1,23 @@
+/*
+ irssi-python
+
+ Copyright (C) 2006 Christopher Davis
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <string.h>
#include "pyirssi.h"
#include "pyutils.h"