summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpixel <pixel>2007-05-30 11:57:07 +0000
committerpixel <pixel>2007-05-30 11:57:07 +0000
commitf308a95a3980b325947d17e84da0f29e3e73ce55 (patch)
tree4a716df2aaf183e987d0a64e9fec42e7294b3d2e
parentfa3cdddf8dbd82b48d4b2740964edafb56e4a135 (diff)
Updating / inserting copyright header.
-rw-r--r--include/Action.h21
-rw-r--r--include/BLua.h4
-rw-r--r--include/BRegex.h4
-rw-r--r--include/BString.h4
-rw-r--r--include/Base64.h21
-rw-r--r--include/Buffer.h4
-rw-r--r--include/ChainTasks.h21
-rw-r--r--include/Color.h21
-rw-r--r--include/ConfigFile.h4
-rw-r--r--include/Confirm.h21
-rw-r--r--include/CopyJob.h21
-rw-r--r--include/Domain.h21
-rw-r--r--include/Exceptions.h4
-rw-r--r--include/Form.h21
-rw-r--r--include/GMPString.h21
-rw-r--r--include/Handle.h4
-rw-r--r--include/HtmlSkinner.h21
-rw-r--r--include/HttpClient.h21
-rw-r--r--include/HttpServ.h21
-rw-r--r--include/IRC.h21
-rw-r--r--include/Image.h21
-rw-r--r--include/InPipe.h21
-rw-r--r--include/Input.h4
-rw-r--r--include/LuaConfigFile.h4
-rw-r--r--include/LuaHandle.h4
-rw-r--r--include/LuaHttp.h21
-rw-r--r--include/LuaRegex.h4
-rw-r--r--include/LuaSQL.h21
-rw-r--r--include/LuaTask.h21
-rw-r--r--include/LuaXML.h21
-rw-r--r--include/Main.h4
-rw-r--r--include/Menu.h21
-rw-r--r--include/Message.h21
-rw-r--r--include/OutPipe.h21
-rw-r--r--include/Output.h4
-rw-r--r--include/ReadJob.h21
-rw-r--r--include/SQL.h21
-rw-r--r--include/Socket.h21
-rw-r--r--include/Table.h21
-rw-r--r--include/Task.h21
-rw-r--r--include/TaskMan.h21
-rw-r--r--include/Variables.h21
-rw-r--r--include/generic.h4
-rw-r--r--include/loadlualibs.h21
-rw-r--r--lib/Action.cc21
-rw-r--r--lib/BLua.cc4
-rw-r--r--lib/Base64.cc21
-rw-r--r--lib/Buffer.cc4
-rw-r--r--lib/ChainTasks.cc22
-rw-r--r--lib/ConfigFile.cc4
-rw-r--r--lib/Confirm.cc21
-rw-r--r--lib/CopyJob.cc22
-rw-r--r--lib/Domain.cc21
-rw-r--r--lib/Exceptions.cc4
-rw-r--r--lib/Form.cc21
-rw-r--r--lib/GMPString.cc21
-rw-r--r--lib/Handle.cc4
-rw-r--r--lib/HtmlSkinner.cc21
-rw-r--r--lib/HttpClient.cc21
-rw-r--r--lib/HttpServ.cc21
-rw-r--r--lib/IRC.cc21
-rw-r--r--lib/Image.cc21
-rw-r--r--lib/InPipe.cc21
-rw-r--r--lib/Input.cc4
-rw-r--r--lib/LuaConfigFile.cc4
-rw-r--r--lib/LuaHandle.cc4
-rw-r--r--lib/LuaHttp.cc21
-rw-r--r--lib/LuaRegex.cc4
-rw-r--r--lib/LuaSQL.cc21
-rw-r--r--lib/LuaTask.cc21
-rw-r--r--lib/LuaXML.cc21
-rw-r--r--lib/Main.cc4
-rw-r--r--lib/Menu.cc21
-rw-r--r--lib/Message.cc21
-rw-r--r--lib/OutPipe.cc21
-rw-r--r--lib/Output.cc4
-rw-r--r--lib/ReadJob.cc21
-rw-r--r--lib/Regex.cc4
-rw-r--r--lib/SQL.cc21
-rw-r--r--lib/Socket.cc21
-rw-r--r--lib/String.cc4
-rw-r--r--lib/Table.cc21
-rw-r--r--lib/Task.cc21
-rw-r--r--lib/TaskMan.cc21
-rw-r--r--lib/Variables.cc21
-rw-r--r--lib/fileutils.cc36
-rw-r--r--lib/generic.cc4
-rw-r--r--lib/loadlualibs.cc21
-rw-r--r--lib/supportlib.lua25
-rw-r--r--lib/tasklib.lua25
-rw-r--r--lib/xmllib.lua25
-rw-r--r--src/luac.cc21
92 files changed, 1410 insertions, 75 deletions
diff --git a/include/Action.h b/include/Action.h
index 329592c..2718451 100644
--- a/include/Action.h
+++ b/include/Action.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Action.h,v 1.13 2007-05-30 11:57:07 pixel Exp $ */
+
#ifndef __ACTION_H__
#define __ACTION_H__
diff --git a/include/BLua.h b/include/BLua.h
index 32f4bef..0894d24 100644
--- a/include/BLua.h
+++ b/include/BLua.h
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: BLua.h,v 1.35 2007-05-30 06:36:02 pixel Exp $ */
+/* $Id: BLua.h,v 1.36 2007-05-30 11:57:08 pixel Exp $ */
#ifndef __BLUA_H__
#define __BLUA_H__
diff --git a/include/BRegex.h b/include/BRegex.h
index cd815b9..b57813d 100644
--- a/include/BRegex.h
+++ b/include/BRegex.h
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: BRegex.h,v 1.3 2007-05-21 16:41:31 pixel Exp $ */
+/* $Id: BRegex.h,v 1.4 2007-05-30 11:57:08 pixel Exp $ */
#ifndef __REGEX_H__
#define __REGEX_H__
diff --git a/include/BString.h b/include/BString.h
index 0d084ad..31f07d7 100644
--- a/include/BString.h
+++ b/include/BString.h
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: BString.h,v 1.15 2007-04-01 11:39:06 pixel Exp $ */
+/* $Id: BString.h,v 1.16 2007-05-30 11:57:08 pixel Exp $ */
#ifndef __STRING_H__
#define __STRING_H__
diff --git a/include/Base64.h b/include/Base64.h
index 122f726..f080ed8 100644
--- a/include/Base64.h
+++ b/include/Base64.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Base64.h,v 1.2 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __BASE64_H__
#define __BASE64_H__
diff --git a/include/Buffer.h b/include/Buffer.h
index e088f35..f62ad72 100644
--- a/include/Buffer.h
+++ b/include/Buffer.h
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Buffer.h,v 1.20 2004-12-21 22:40:24 pixel Exp $ */
+/* $Id: Buffer.h,v 1.21 2007-05-30 11:57:08 pixel Exp $ */
#ifndef __BUFFER_H__
#define __BUFFER_H__
diff --git a/include/ChainTasks.h b/include/ChainTasks.h
index 428c964..92ce0c4 100644
--- a/include/ChainTasks.h
+++ b/include/ChainTasks.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: ChainTasks.h,v 1.2 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __CHAINTASKS_H__
#define __CHAINTASKS_H__
diff --git a/include/Color.h b/include/Color.h
index 5b2ec06..b6107c8 100644
--- a/include/Color.h
+++ b/include/Color.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Color.h,v 1.12 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __COLOR_H__
#define __COLOR_H__
diff --git a/include/ConfigFile.h b/include/ConfigFile.h
index 51eda66..87d111f 100644
--- a/include/ConfigFile.h
+++ b/include/ConfigFile.h
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: ConfigFile.h,v 1.5 2004-12-18 13:15:25 pixel Exp $ */
+/* $Id: ConfigFile.h,v 1.6 2007-05-30 11:57:08 pixel Exp $ */
#ifndef __CONFIGFILE_H__
#define __CONFIGFILE_H__
diff --git a/include/Confirm.h b/include/Confirm.h
index ef1dabc..b876cfa 100644
--- a/include/Confirm.h
+++ b/include/Confirm.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Confirm.h,v 1.12 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __CONFIRM_H__
#define __CONFIRM_H__
diff --git a/include/CopyJob.h b/include/CopyJob.h
index 390d87e..184fd36 100644
--- a/include/CopyJob.h
+++ b/include/CopyJob.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: CopyJob.h,v 1.19 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __COPYJOB_H__
#define __COPYJOB_H__
diff --git a/include/Domain.h b/include/Domain.h
index 3a51d9f..964b33c 100644
--- a/include/Domain.h
+++ b/include/Domain.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Domain.h,v 1.3 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __DOMAIN_H__
#define __DOMAIN_H__
diff --git a/include/Exceptions.h b/include/Exceptions.h
index 042059c..9aac968 100644
--- a/include/Exceptions.h
+++ b/include/Exceptions.h
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Exceptions.h,v 1.43 2006-10-28 16:42:19 pixel Exp $ */
+/* $Id: Exceptions.h,v 1.44 2007-05-30 11:57:08 pixel Exp $ */
#ifndef __EXCEPTIONS_H__
#define __EXCEPTIONS_H__
diff --git a/include/Form.h b/include/Form.h
index f0fa93f..cc99c38 100644
--- a/include/Form.h
+++ b/include/Form.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Form.h,v 1.12 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __FORM_H__
#define __FORM_H__
diff --git a/include/GMPString.h b/include/GMPString.h
index 77364bf..272423f 100644
--- a/include/GMPString.h
+++ b/include/GMPString.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: GMPString.h,v 1.4 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __GMPSTRING_H__
#define __GMPSTRING_H__
#include <gmpxx.h>
diff --git a/include/Handle.h b/include/Handle.h
index 6628013..3dbecae 100644
--- a/include/Handle.h
+++ b/include/Handle.h
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Handle.h,v 1.36 2006-11-14 10:10:10 pixel Exp $ */
+/* $Id: Handle.h,v 1.37 2007-05-30 11:57:08 pixel Exp $ */
#ifndef __HANDLE_H__
#define __HANDLE_H__
diff --git a/include/HtmlSkinner.h b/include/HtmlSkinner.h
index 6603cde..d9ed954 100644
--- a/include/HtmlSkinner.h
+++ b/include/HtmlSkinner.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: HtmlSkinner.h,v 1.2 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __HTMLSKINNER_H__
#define __HTMLSKINNER_H__
diff --git a/include/HttpClient.h b/include/HttpClient.h
index 92fcb14..17c66b1 100644
--- a/include/HttpClient.h
+++ b/include/HttpClient.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: HttpClient.h,v 1.3 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __HTTPCLIENT_H__
#define __HTTPCLIENT_H__
diff --git a/include/HttpServ.h b/include/HttpServ.h
index 96d8016..69dab37 100644
--- a/include/HttpServ.h
+++ b/include/HttpServ.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: HttpServ.h,v 1.22 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __HTTPSERV_H__
#define __HTTPSERV_H__
diff --git a/include/IRC.h b/include/IRC.h
index 6823b21..99e75e8 100644
--- a/include/IRC.h
+++ b/include/IRC.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: IRC.h,v 1.9 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __IRC_H__
#define __IRC_H__
diff --git a/include/Image.h b/include/Image.h
index 4508b68..a1c14ad 100644
--- a/include/Image.h
+++ b/include/Image.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Image.h,v 1.9 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __IMAGE_H__
#define __IMAGE_H__
diff --git a/include/InPipe.h b/include/InPipe.h
index 7b77c4e..d8a6e9c 100644
--- a/include/InPipe.h
+++ b/include/InPipe.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: InPipe.h,v 1.7 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __INPIPE_H__
#define __INPIPE_H__
diff --git a/include/Input.h b/include/Input.h
index 5a76e71..2219273 100644
--- a/include/Input.h
+++ b/include/Input.h
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Input.h,v 1.21 2004-11-27 21:46:02 pixel Exp $ */
+/* $Id: Input.h,v 1.22 2007-05-30 11:57:08 pixel Exp $ */
#ifndef __INPUT_H__
#define __INPUT_H__
diff --git a/include/LuaConfigFile.h b/include/LuaConfigFile.h
index e75c22b..fa70c09 100644
--- a/include/LuaConfigFile.h
+++ b/include/LuaConfigFile.h
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: LuaConfigFile.h,v 1.1 2005-03-30 10:32:25 pixel Exp $ */
+/* $Id: LuaConfigFile.h,v 1.2 2007-05-30 11:57:08 pixel Exp $ */
#ifndef __LUACONFIGFILE_H__
#define __LUACONFIGFILE_H__
diff --git a/include/LuaHandle.h b/include/LuaHandle.h
index e7f94ef..a6151b1 100644
--- a/include/LuaHandle.h
+++ b/include/LuaHandle.h
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: LuaHandle.h,v 1.9 2006-01-31 17:02:38 pixel Exp $ */
+/* $Id: LuaHandle.h,v 1.10 2007-05-30 11:57:08 pixel Exp $ */
#ifndef __LUAHANDLE_H__
#define __LUAHANDLE_H__
diff --git a/include/LuaHttp.h b/include/LuaHttp.h
index 6d7af10..ad947b9 100644
--- a/include/LuaHttp.h
+++ b/include/LuaHttp.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: LuaHttp.h,v 1.2 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __LUAHTTP_H__
#define __LUAHTTP_H__
diff --git a/include/LuaRegex.h b/include/LuaRegex.h
index ca6a59f..8bd1040 100644
--- a/include/LuaRegex.h
+++ b/include/LuaRegex.h
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: LuaRegex.h,v 1.1 2005-03-31 16:23:05 pixel Exp $ */
+/* $Id: LuaRegex.h,v 1.2 2007-05-30 11:57:08 pixel Exp $ */
#ifndef __LUAREGEX_H__
#define __LUAREGEX_H__
diff --git a/include/LuaSQL.h b/include/LuaSQL.h
index bec0260..af935d1 100644
--- a/include/LuaSQL.h
+++ b/include/LuaSQL.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: LuaSQL.h,v 1.2 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __LUASQL_H__
#define __LUASQL_H__
diff --git a/include/LuaTask.h b/include/LuaTask.h
index eded9ac..fa799c0 100644
--- a/include/LuaTask.h
+++ b/include/LuaTask.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: LuaTask.h,v 1.5 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __LUATASK_H__
#define __LUATASK_H__
diff --git a/include/LuaXML.h b/include/LuaXML.h
index 28e3bb2..07aa79d 100644
--- a/include/LuaXML.h
+++ b/include/LuaXML.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: LuaXML.h,v 1.3 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __LUAXML_H__
#define __LUAXML_H__
diff --git a/include/Main.h b/include/Main.h
index 8b03a3e..8ead164 100644
--- a/include/Main.h
+++ b/include/Main.h
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Main.h,v 1.20 2006-11-13 22:00:11 pixel Exp $ */
+/* $Id: Main.h,v 1.21 2007-05-30 11:57:08 pixel Exp $ */
#ifndef __MAIN_H__
#define __MAIN_H__
diff --git a/include/Menu.h b/include/Menu.h
index 91e1459..4a7b6db 100644
--- a/include/Menu.h
+++ b/include/Menu.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Menu.h,v 1.12 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __MENU_H__
#define __MENU_H__
diff --git a/include/Message.h b/include/Message.h
index 01c59da..690ec06 100644
--- a/include/Message.h
+++ b/include/Message.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Message.h,v 1.12 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __MESSAGE_H__
#define __MESSAGE_H__
diff --git a/include/OutPipe.h b/include/OutPipe.h
index 467a89b..d032da5 100644
--- a/include/OutPipe.h
+++ b/include/OutPipe.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: OutPipe.h,v 1.6 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __OUTPIPE_H__
#define __OUTPIPE_H__
diff --git a/include/Output.h b/include/Output.h
index 3144b32..b520277 100644
--- a/include/Output.h
+++ b/include/Output.h
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Output.h,v 1.14 2004-11-27 21:46:03 pixel Exp $ */
+/* $Id: Output.h,v 1.15 2007-05-30 11:57:08 pixel Exp $ */
#ifndef __OUTPUT_H__
#define __OUTPUT_H__
diff --git a/include/ReadJob.h b/include/ReadJob.h
index dec1648..51ff2e7 100644
--- a/include/ReadJob.h
+++ b/include/ReadJob.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: ReadJob.h,v 1.13 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __READJOB_H__
#define __READJOB_H__
diff --git a/include/SQL.h b/include/SQL.h
index 8b9cc7c..ff1cd7d 100644
--- a/include/SQL.h
+++ b/include/SQL.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: SQL.h,v 1.11 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __SQL_H__
#define __SQL_H__
diff --git a/include/Socket.h b/include/Socket.h
index f65c214..1b77bde 100644
--- a/include/Socket.h
+++ b/include/Socket.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Socket.h,v 1.19 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __SOCKET_H__
#define __SOCKET_H__
diff --git a/include/Table.h b/include/Table.h
index c972fa3..ceddc12 100644
--- a/include/Table.h
+++ b/include/Table.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Table.h,v 1.12 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __TABLE_H__
#define __TABLE_H__
diff --git a/include/Task.h b/include/Task.h
index 12c0587..725b2e4 100644
--- a/include/Task.h
+++ b/include/Task.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Task.h,v 1.31 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __TASK_H__
#define __TASK_H__
diff --git a/include/TaskMan.h b/include/TaskMan.h
index f79f98e..48887c4 100644
--- a/include/TaskMan.h
+++ b/include/TaskMan.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: TaskMan.h,v 1.25 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __TASKMAN_H__
#define __TASKMAN_H__
diff --git a/include/Variables.h b/include/Variables.h
index ac4ef58..6017c52 100644
--- a/include/Variables.h
+++ b/include/Variables.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Variables.h,v 1.15 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __VARIABLES_H__
#define __VARIABLES_H__
diff --git a/include/generic.h b/include/generic.h
index 3c7e7e9..91d438c 100644
--- a/include/generic.h
+++ b/include/generic.h
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: generic.h,v 1.40 2006-11-13 22:00:11 pixel Exp $ */
+/* $Id: generic.h,v 1.41 2007-05-30 11:57:08 pixel Exp $ */
#ifndef __GENERIC_H__
#define __GENERIC_H__
diff --git a/include/loadlualibs.h b/include/loadlualibs.h
index d769a98..af2278d 100644
--- a/include/loadlualibs.h
+++ b/include/loadlualibs.h
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: loadlualibs.h,v 1.2 2007-05-30 11:57:08 pixel Exp $ */
+
#ifndef __LOADLUALIBS_H__
#define __LOADLUALIBS_H__
diff --git a/lib/Action.cc b/lib/Action.cc
index 2fb0e2a..8dc3f01 100644
--- a/lib/Action.cc
+++ b/lib/Action.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Action.cc,v 1.11 2007-05-30 11:57:09 pixel Exp $ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/lib/BLua.cc b/lib/BLua.cc
index 45430ee..d65b553 100644
--- a/lib/BLua.cc
+++ b/lib/BLua.cc
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2006 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: BLua.cc,v 1.46 2007-05-30 06:40:09 pixel Exp $ */
+/* $Id: BLua.cc,v 1.47 2007-05-30 11:57:09 pixel Exp $ */
#include <stdlib.h>
#include "BLua.h"
diff --git a/lib/Base64.cc b/lib/Base64.cc
index 062dae4..c9b7daf 100644
--- a/lib/Base64.cc
+++ b/lib/Base64.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Base64.cc,v 1.2 2007-05-30 11:57:09 pixel Exp $ */
+
#include <Base64.h>
static char cb64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
diff --git a/lib/Buffer.cc b/lib/Buffer.cc
index a9768ba..58a8cd0 100644
--- a/lib/Buffer.cc
+++ b/lib/Buffer.cc
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Buffer.cc,v 1.26 2004-12-21 22:40:24 pixel Exp $ */
+/* $Id: Buffer.cc,v 1.27 2007-05-30 11:57:09 pixel Exp $ */
#include <string.h>
#ifdef HAVE_CONFIG_H
diff --git a/lib/ChainTasks.cc b/lib/ChainTasks.cc
index 6a816e7..88ffaa9 100644
--- a/lib/ChainTasks.cc
+++ b/lib/ChainTasks.cc
@@ -1,5 +1,25 @@
-#include "ChainTasks.h"
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: ChainTasks.cc,v 1.3 2007-05-30 11:57:09 pixel Exp $ */
+#include "ChainTasks.h"
ChainTasks::ChainTasks(tasklist_t _tasklist) : tasklist(_tasklist) {
tasklist_iter_t i;
diff --git a/lib/ConfigFile.cc b/lib/ConfigFile.cc
index 42846c9..bfb6a60 100644
--- a/lib/ConfigFile.cc
+++ b/lib/ConfigFile.cc
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: ConfigFile.cc,v 1.4 2004-12-18 13:15:26 pixel Exp $ */
+/* $Id: ConfigFile.cc,v 1.5 2007-05-30 11:57:09 pixel Exp $ */
#include "ConfigFile.h"
#include "BRegex.h"
diff --git a/lib/Confirm.cc b/lib/Confirm.cc
index 18e56e6..f9e1ad1 100644
--- a/lib/Confirm.cc
+++ b/lib/Confirm.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Confirm.cc,v 1.10 2007-05-30 11:57:09 pixel Exp $ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/lib/CopyJob.cc b/lib/CopyJob.cc
index 7e7c4de..1044c92 100644
--- a/lib/CopyJob.cc
+++ b/lib/CopyJob.cc
@@ -1,4 +1,24 @@
-#ifdef HAVE_CONFIG_H
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: CopyJob.cc,v 1.33 2007-05-30 11:57:09 pixel Exp $ */
+
#include "config.h"
#endif
#include "CopyJob.h"
diff --git a/lib/Domain.cc b/lib/Domain.cc
index f740d71..eb087f9 100644
--- a/lib/Domain.cc
+++ b/lib/Domain.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Domain.cc,v 1.3 2007-05-30 11:57:09 pixel Exp $ */
+
#include "Domain.h"
Domain * Domain::head = 0;
diff --git a/lib/Exceptions.cc b/lib/Exceptions.cc
index f37832d..2be1ee9 100644
--- a/lib/Exceptions.cc
+++ b/lib/Exceptions.cc
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Exceptions.cc,v 1.41 2006-11-14 10:10:10 pixel Exp $ */
+/* $Id: Exceptions.cc,v 1.42 2007-05-30 11:57:09 pixel Exp $ */
#include <string.h>
#include <errno.h>
diff --git a/lib/Form.cc b/lib/Form.cc
index fedfc3e..e1c013b 100644
--- a/lib/Form.cc
+++ b/lib/Form.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Form.cc,v 1.9 2007-05-30 11:57:09 pixel Exp $ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/lib/GMPString.cc b/lib/GMPString.cc
index be39e38..83c6d85 100644
--- a/lib/GMPString.cc
+++ b/lib/GMPString.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: GMPString.cc,v 1.7 2007-05-30 11:57:09 pixel Exp $ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/lib/Handle.cc b/lib/Handle.cc
index 265bd55..685c4a4 100644
--- a/lib/Handle.cc
+++ b/lib/Handle.cc
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Handle.cc,v 1.79 2007-03-05 21:36:42 pixel Exp $ */
+/* $Id: Handle.cc,v 1.80 2007-05-30 11:57:09 pixel Exp $ */
#include <stdio.h>
#include <string.h>
diff --git a/lib/HtmlSkinner.cc b/lib/HtmlSkinner.cc
index 31ed083..098cfb9 100644
--- a/lib/HtmlSkinner.cc
+++ b/lib/HtmlSkinner.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: HtmlSkinner.cc,v 1.2 2007-05-30 11:57:09 pixel Exp $ */
+
#include "HtmlSkinner.h"
HtmlSkinner::HtmlSkinner() {
diff --git a/lib/HttpClient.cc b/lib/HttpClient.cc
index 6f8a262..6182da4 100644
--- a/lib/HttpClient.cc
+++ b/lib/HttpClient.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: HttpClient.cc,v 1.10 2007-05-30 11:57:09 pixel Exp $ */
+
#include <TaskMan.h>
#include <HttpClient.h>
#include <BRegex.h>
diff --git a/lib/HttpServ.cc b/lib/HttpServ.cc
index 57809fd..a80f9aa 100644
--- a/lib/HttpServ.cc
+++ b/lib/HttpServ.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: HttpServ.cc,v 1.47 2007-05-30 11:57:09 pixel Exp $ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/lib/IRC.cc b/lib/IRC.cc
index f29b2c1..dfad3c8 100644
--- a/lib/IRC.cc
+++ b/lib/IRC.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: IRC.cc,v 1.13 2007-05-30 11:57:09 pixel Exp $ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/lib/Image.cc b/lib/Image.cc
index 4dc496e..14116f5 100644
--- a/lib/Image.cc
+++ b/lib/Image.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Image.cc,v 1.17 2007-05-30 11:57:10 pixel Exp $ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/lib/InPipe.cc b/lib/InPipe.cc
index 4a69b5e..524cea5 100644
--- a/lib/InPipe.cc
+++ b/lib/InPipe.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: InPipe.cc,v 1.11 2007-05-30 11:57:10 pixel Exp $ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/lib/Input.cc b/lib/Input.cc
index 731cedc..eab56e1 100644
--- a/lib/Input.cc
+++ b/lib/Input.cc
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Input.cc,v 1.52 2005-11-02 21:34:01 pixel Exp $ */
+/* $Id: Input.cc,v 1.53 2007-05-30 11:57:10 pixel Exp $ */
#include <stdio.h>
#include <string.h>
diff --git a/lib/LuaConfigFile.cc b/lib/LuaConfigFile.cc
index 065ed63..f08ed8b 100644
--- a/lib/LuaConfigFile.cc
+++ b/lib/LuaConfigFile.cc
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: LuaConfigFile.cc,v 1.6 2007-05-30 06:36:07 pixel Exp $ */
+/* $Id: LuaConfigFile.cc,v 1.7 2007-05-30 11:57:10 pixel Exp $ */
#include "LuaConfigFile.h"
diff --git a/lib/LuaHandle.cc b/lib/LuaHandle.cc
index 0f81252..587dabd 100644
--- a/lib/LuaHandle.cc
+++ b/lib/LuaHandle.cc
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: LuaHandle.cc,v 1.21 2007-05-30 06:50:06 pixel Exp $ */
+/* $Id: LuaHandle.cc,v 1.22 2007-05-30 11:57:10 pixel Exp $ */
#include "LuaHandle.h"
diff --git a/lib/LuaHttp.cc b/lib/LuaHttp.cc
index 75e56a8..8f2b2e3 100644
--- a/lib/LuaHttp.cc
+++ b/lib/LuaHttp.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: LuaHttp.cc,v 1.11 2007-05-30 11:57:10 pixel Exp $ */
+
#include "Domain.h"
#include "LuaHttp.h"
#include "LuaHandle.h"
diff --git a/lib/LuaRegex.cc b/lib/LuaRegex.cc
index bbc5a9a..e533928 100644
--- a/lib/LuaRegex.cc
+++ b/lib/LuaRegex.cc
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2005 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: LuaRegex.cc,v 1.3 2007-05-30 06:36:07 pixel Exp $ */
+/* $Id: LuaRegex.cc,v 1.4 2007-05-30 11:57:10 pixel Exp $ */
#include "LuaRegex.h"
diff --git a/lib/LuaSQL.cc b/lib/LuaSQL.cc
index eb9c5c2..5d93a52 100644
--- a/lib/LuaSQL.cc
+++ b/lib/LuaSQL.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: LuaSQL.cc,v 1.9 2007-05-30 11:57:10 pixel Exp $ */
+
#ifdef _WIN32
#include <winsock.h>
#endif
diff --git a/lib/LuaTask.cc b/lib/LuaTask.cc
index 4bc0208..275f4d8 100644
--- a/lib/LuaTask.cc
+++ b/lib/LuaTask.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: LuaTask.cc,v 1.9 2007-05-30 11:57:10 pixel Exp $ */
+
#include <LuaTask.h>
#include <LuaHandle.h>
#include <TaskMan.h>
diff --git a/lib/LuaXML.cc b/lib/LuaXML.cc
index 34ab269..d0f8abc 100644
--- a/lib/LuaXML.cc
+++ b/lib/LuaXML.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: LuaXML.cc,v 1.6 2007-05-30 11:57:10 pixel Exp $ */
+
#include "tinyxml.h"
#include <Handle.h>
diff --git a/lib/Main.cc b/lib/Main.cc
index 5555e90..2ab7263 100644
--- a/lib/Main.cc
+++ b/lib/Main.cc
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Main.cc,v 1.14 2006-11-13 22:00:12 pixel Exp $ */
+/* $Id: Main.cc,v 1.15 2007-05-30 11:57:10 pixel Exp $ */
#ifdef _WIN32
#include <windows.h>
diff --git a/lib/Menu.cc b/lib/Menu.cc
index 361189f..1d3c8a1 100644
--- a/lib/Menu.cc
+++ b/lib/Menu.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Menu.cc,v 1.8 2007-05-30 11:57:10 pixel Exp $ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/lib/Message.cc b/lib/Message.cc
index 5cb8859..893f48f 100644
--- a/lib/Message.cc
+++ b/lib/Message.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Message.cc,v 1.7 2007-05-30 11:57:10 pixel Exp $ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/lib/OutPipe.cc b/lib/OutPipe.cc
index c8d979c..9c0a984 100644
--- a/lib/OutPipe.cc
+++ b/lib/OutPipe.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: OutPipe.cc,v 1.13 2007-05-30 11:57:10 pixel Exp $ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/lib/Output.cc b/lib/Output.cc
index f3394ef..d1a00c5 100644
--- a/lib/Output.cc
+++ b/lib/Output.cc
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Output.cc,v 1.25 2006-07-17 16:07:57 pixel Exp $ */
+/* $Id: Output.cc,v 1.26 2007-05-30 11:57:10 pixel Exp $ */
#include <stdio.h>
#include <string.h>
diff --git a/lib/ReadJob.cc b/lib/ReadJob.cc
index 7c96876..a40bfda 100644
--- a/lib/ReadJob.cc
+++ b/lib/ReadJob.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: ReadJob.cc,v 1.24 2007-05-30 11:57:10 pixel Exp $ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/lib/Regex.cc b/lib/Regex.cc
index e7109e5..a9b1983 100644
--- a/lib/Regex.cc
+++ b/lib/Regex.cc
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Regex.cc,v 1.14 2007-05-22 08:36:48 pixel Exp $ */
+/* $Id: Regex.cc,v 1.15 2007-05-30 11:57:10 pixel Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
diff --git a/lib/SQL.cc b/lib/SQL.cc
index 6ce606c..e8dcde0 100644
--- a/lib/SQL.cc
+++ b/lib/SQL.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: SQL.cc,v 1.12 2007-05-30 11:57:10 pixel Exp $ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/lib/Socket.cc b/lib/Socket.cc
index 97371a5..890457f 100644
--- a/lib/Socket.cc
+++ b/lib/Socket.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Socket.cc,v 1.24 2007-05-30 11:57:10 pixel Exp $ */
+
#ifdef _WIN32
#include <winsock2.h>
#endif
diff --git a/lib/String.cc b/lib/String.cc
index b7ce2ab..de8fa24 100644
--- a/lib/String.cc
+++ b/lib/String.cc
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: String.cc,v 1.46 2007-04-01 11:39:06 pixel Exp $ */
+/* $Id: String.cc,v 1.47 2007-05-30 11:57:10 pixel Exp $ */
#include <stdio.h>
#include <string.h>
diff --git a/lib/Table.cc b/lib/Table.cc
index 2509e4e..c520c52 100644
--- a/lib/Table.cc
+++ b/lib/Table.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Table.cc,v 1.7 2007-05-30 11:57:10 pixel Exp $ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/lib/Task.cc b/lib/Task.cc
index 5d48404..0b19ab3 100644
--- a/lib/Task.cc
+++ b/lib/Task.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Task.cc,v 1.33 2007-05-30 11:57:10 pixel Exp $ */
+
#ifndef _WIN32
#include <sys/time.h>
#endif
diff --git a/lib/TaskMan.cc b/lib/TaskMan.cc
index b31d2cd..4f18a85 100644
--- a/lib/TaskMan.cc
+++ b/lib/TaskMan.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: TaskMan.cc,v 1.46 2007-05-30 11:57:10 pixel Exp $ */
+
#ifndef _WIN32
#include <signal.h>
#include <sys/wait.h>
diff --git a/lib/Variables.cc b/lib/Variables.cc
index 69a7f58..bd803e8 100644
--- a/lib/Variables.cc
+++ b/lib/Variables.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: Variables.cc,v 1.13 2007-05-30 11:57:10 pixel Exp $ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/lib/fileutils.cc b/lib/fileutils.cc
index b637546..5f7b1bc 100644
--- a/lib/fileutils.cc
+++ b/lib/fileutils.cc
@@ -1,22 +1,24 @@
-/*
- * PSX-Tools Bundle Pack
- * Copyright (C) 2002 Nicolas "Pixel" Noble
- *
- * 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
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
*/
+/* $Id: fileutils.cc,v 1.6 2007-05-30 11:57:10 pixel Exp $ */
+
#include <string.h>
#include <stdio.h>
#include <string.h>
diff --git a/lib/generic.cc b/lib/generic.cc
index 1a09e70..95fe74d 100644
--- a/lib/generic.cc
+++ b/lib/generic.cc
@@ -1,6 +1,6 @@
/*
* Baltisot
- * Copyright (C) 1999-2003 Nicolas "Pixel" Noble
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: generic.cc,v 1.13 2005-11-13 13:43:21 pixel Exp $ */
+/* $Id: generic.cc,v 1.14 2007-05-30 11:57:10 pixel Exp $ */
#include <stdio.h>
#include <stdarg.h>
diff --git a/lib/loadlualibs.cc b/lib/loadlualibs.cc
index e8be95e..264b83b 100644
--- a/lib/loadlualibs.cc
+++ b/lib/loadlualibs.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: loadlualibs.cc,v 1.3 2007-05-30 11:57:10 pixel Exp $ */
+
#include <loadlualibs.h>
#include <Buffer.h>
diff --git a/lib/supportlib.lua b/lib/supportlib.lua
index d734a1e..2dc26f2 100644
--- a/lib/supportlib.lua
+++ b/lib/supportlib.lua
@@ -1,3 +1,28 @@
+--[[
+
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: supportlib.lua,v 1.4 2007-05-30 11:57:10 pixel Exp $ */
+
+]]--
+
--
-- Dumps a file to the screen.
--
diff --git a/lib/tasklib.lua b/lib/tasklib.lua
index e2e8746..f506e34 100644
--- a/lib/tasklib.lua
+++ b/lib/tasklib.lua
@@ -1,3 +1,28 @@
+--[[
+
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: tasklib.lua,v 1.3 2007-05-30 11:57:10 pixel Exp $ */
+
+]]--
+
--
-- Create some simple bindings for the LuaTask system to hide the various ugly yields.
--
diff --git a/lib/xmllib.lua b/lib/xmllib.lua
index d7ac9b5..b6687fb 100644
--- a/lib/xmllib.lua
+++ b/lib/xmllib.lua
@@ -1,3 +1,28 @@
+--[[
+
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: xmllib.lua,v 1.7 2007-05-30 11:57:10 pixel Exp $ */
+
+]]--
+
local xml_replacements = {
{ "&", "&amp;" },
{ "<", "&lt;" },
diff --git a/src/luac.cc b/src/luac.cc
index 0a95422..421da3a 100644
--- a/src/luac.cc
+++ b/src/luac.cc
@@ -1,3 +1,24 @@
+/*
+ * Baltisot
+ * Copyright (C) 1999-2007 Nicolas "Pixel" Noble
+ *
+ * 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
+ */
+
+/* $Id: luac.cc,v 1.3 2007-05-30 11:57:11 pixel Exp $ */
+
#include <getopt.h>
#include <BLua.h>