aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-07-10 03:08:38 +0100
committerMatthew Wild <mwild1@gmail.com>2009-07-10 03:08:38 +0100
commite45610ce6e879a91dde4f4a0dcd47293223fa69f (patch)
tree4f1b0533c14fb192e6f729fc8921071011585a43 /core
parentdef653fa2612573f537fdf7da5ac0214bb882b59 (diff)
downloadprosody-e45610ce6e879a91dde4f4a0dcd47293223fa69f.tar.gz
prosody-e45610ce6e879a91dde4f4a0dcd47293223fa69f.zip
Add copyright header to those files missing one
Diffstat (limited to 'core')
-rw-r--r--core/actions.lua8
-rw-r--r--core/eventmanager.lua8
-rw-r--r--core/hostmanager.lua8
-rw-r--r--core/loggingmanager.lua8
-rw-r--r--core/objectmanager.lua8
5 files changed, 40 insertions, 0 deletions
diff --git a/core/actions.lua b/core/actions.lua
index d0be5aeb..5c2525e0 100644
--- a/core/actions.lua
+++ b/core/actions.lua
@@ -1,3 +1,11 @@
+-- Prosody IM
+-- Copyright (C) 2008-2009 Matthew Wild
+-- Copyright (C) 2008-2009 Waqas Hussain
+--
+-- This project is MIT/X11 licensed. Please see the
+-- COPYING file in the source package for more information.
+--
+
local actions = {};
diff --git a/core/eventmanager.lua b/core/eventmanager.lua
index 04f2256f..e1cc9d2e 100644
--- a/core/eventmanager.lua
+++ b/core/eventmanager.lua
@@ -1,3 +1,11 @@
+-- Prosody IM
+-- Copyright (C) 2008-2009 Matthew Wild
+-- Copyright (C) 2008-2009 Waqas Hussain
+--
+-- This project is MIT/X11 licensed. Please see the
+-- COPYING file in the source package for more information.
+--
+
local t_insert = table.insert;
local ipairs = ipairs;
diff --git a/core/hostmanager.lua b/core/hostmanager.lua
index 0dd2c9d8..c7b975d1 100644
--- a/core/hostmanager.lua
+++ b/core/hostmanager.lua
@@ -1,3 +1,11 @@
+-- Prosody IM
+-- Copyright (C) 2008-2009 Matthew Wild
+-- Copyright (C) 2008-2009 Waqas Hussain
+--
+-- This project is MIT/X11 licensed. Please see the
+-- COPYING file in the source package for more information.
+--
+
local hosts = hosts;
local configmanager = require "core.configmanager";
diff --git a/core/loggingmanager.lua b/core/loggingmanager.lua
index 2be21a17..1d2f8d7d 100644
--- a/core/loggingmanager.lua
+++ b/core/loggingmanager.lua
@@ -1,3 +1,11 @@
+-- Prosody IM
+-- Copyright (C) 2008-2009 Matthew Wild
+-- Copyright (C) 2008-2009 Waqas Hussain
+--
+-- This project is MIT/X11 licensed. Please see the
+-- COPYING file in the source package for more information.
+--
+
local format, rep = string.format, string.rep;
local pcall = pcall;
diff --git a/core/objectmanager.lua b/core/objectmanager.lua
index b8e5eb3f..e96cbd90 100644
--- a/core/objectmanager.lua
+++ b/core/objectmanager.lua
@@ -1,3 +1,11 @@
+-- Prosody IM
+-- Copyright (C) 2008-2009 Matthew Wild
+-- Copyright (C) 2008-2009 Waqas Hussain
+--
+-- This project is MIT/X11 licensed. Please see the
+-- COPYING file in the source package for more information.
+--
+
local new_multitable = require "util.multitable".new;
local t_insert = table.insert;