aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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
-rw-r--r--fallbacks/bit.lua8
-rw-r--r--net/adns.lua8
-rw-r--r--net/http.lua8
-rw-r--r--net/httpclient_listener.lua8
-rw-r--r--net/httpserver.lua8
-rw-r--r--net/httpserver_listener.lua8
-rw-r--r--net/server.lua8
-rw-r--r--plugins/mod_actions_http.lua8
-rw-r--r--plugins/mod_announce.lua8
-rw-r--r--plugins/mod_bosh.lua8
-rw-r--r--plugins/mod_groups.lua8
-rw-r--r--plugins/mod_httpserver.lua8
-rw-r--r--plugins/mod_iq.lua8
-rw-r--r--plugins/mod_message.lua8
-rw-r--r--plugins/mod_muc.lua8
-rw-r--r--plugins/mod_offline.lua8
-rw-r--r--plugins/mod_pep.lua8
-rw-r--r--plugins/mod_posix.lua8
-rw-r--r--plugins/mod_privacy.lua8
-rw-r--r--plugins/mod_watchregistrations.lua8
-rw-r--r--tests/test_util_stanza.lua8
-rw-r--r--tests/util/logger.lua8
-rw-r--r--util/array.lua8
-rw-r--r--util/dataforms.lua8
-rw-r--r--util/events.lua8
-rw-r--r--util/hmac.lua8
-rw-r--r--util/iterators.lua8
-rw-r--r--util/pluginloader.lua8
-rw-r--r--util/prosodyctl.lua8
-rw-r--r--util/pubsub.lua8
-rw-r--r--util/set.lua8
36 files changed, 288 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;
diff --git a/fallbacks/bit.lua b/fallbacks/bit.lua
index 86e3b4a4..75109d40 100644
--- a/fallbacks/bit.lua
+++ b/fallbacks/bit.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 type = type;
local tonumber = tonumber;
diff --git a/net/adns.lua b/net/adns.lua
index e219ffa7..34ef5d77 100644
--- a/net/adns.lua
+++ b/net/adns.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 server = require "net.server";
local dns = require "net.dns";
diff --git a/net/http.lua b/net/http.lua
index 10d96631..9d2f9b96 100644
--- a/net/http.lua
+++ b/net/http.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 socket = require "socket"
local mime = require "mime"
diff --git a/net/httpclient_listener.lua b/net/httpclient_listener.lua
index a648743f..69b7946b 100644
--- a/net/httpclient_listener.lua
+++ b/net/httpclient_listener.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 log = require "util.logger".init("httpclient_listener");
local connlisteners_register = require "net.connlisteners".register;
diff --git a/net/httpserver.lua b/net/httpserver.lua
index 8ce25f35..d159202e 100644
--- a/net/httpserver.lua
+++ b/net/httpserver.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 socket = require "socket"
local server = require "net.server"
diff --git a/net/httpserver_listener.lua b/net/httpserver_listener.lua
index f7fb7f4e..48ade157 100644
--- a/net/httpserver_listener.lua
+++ b/net/httpserver_listener.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 connlisteners_register = require "net.connlisteners".register;
diff --git a/net/server.lua b/net/server.lua
index 3491b190..ca6e6380 100644
--- a/net/server.lua
+++ b/net/server.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.
+--
+
--[[
server.lua by blastbeat
diff --git a/plugins/mod_actions_http.lua b/plugins/mod_actions_http.lua
index 43370a41..c6069793 100644
--- a/plugins/mod_actions_http.lua
+++ b/plugins/mod_actions_http.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 httpserver = require "net.httpserver";
local t_concat, t_insert = table.concat, table.insert;
diff --git a/plugins/mod_announce.lua b/plugins/mod_announce.lua
index 010b45d9..118ba13d 100644
--- a/plugins/mod_announce.lua
+++ b/plugins/mod_announce.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 st, jid, set = require "util.stanza", require "util.jid", require "util.set";
local is_admin = require "core.usermanager".is_admin;
diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua
index 46e9a95f..b07238bd 100644
--- a/plugins/mod_bosh.lua
+++ b/plugins/mod_bosh.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.
+--
+
module.host = "*" -- Global module
diff --git a/plugins/mod_groups.lua b/plugins/mod_groups.lua
index 7a581717..f31bb1a8 100644
--- a/plugins/mod_groups.lua
+++ b/plugins/mod_groups.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 groups = { default = {} };
local members = { [false] = {} };
diff --git a/plugins/mod_httpserver.lua b/plugins/mod_httpserver.lua
index ec22a4bf..98a3a36e 100644
--- a/plugins/mod_httpserver.lua
+++ b/plugins/mod_httpserver.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 httpserver = require "net.httpserver";
diff --git a/plugins/mod_iq.lua b/plugins/mod_iq.lua
index 30afb38c..5be04533 100644
--- a/plugins/mod_iq.lua
+++ b/plugins/mod_iq.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 st = require "util.stanza";
local jid_split = require "util.jid".split;
diff --git a/plugins/mod_message.lua b/plugins/mod_message.lua
index b56aef0a..395307ba 100644
--- a/plugins/mod_message.lua
+++ b/plugins/mod_message.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 full_sessions = full_sessions;
local bare_sessions = bare_sessions;
diff --git a/plugins/mod_muc.lua b/plugins/mod_muc.lua
index 4f695b17..e99ef83c 100644
--- a/plugins/mod_muc.lua
+++ b/plugins/mod_muc.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.
+--
+
if module:get_host_type() ~= "component" then
error("MUC should be loaded as a component, please see http://prosody.im/doc/components", 0);
diff --git a/plugins/mod_offline.lua b/plugins/mod_offline.lua
index 4fb82cc0..c9acf9e6 100644
--- a/plugins/mod_offline.lua
+++ b/plugins/mod_offline.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 datamanager = require "util.datamanager";
local st = require "util.stanza";
diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua
index 0be681fb..8cc4aedf 100644
--- a/plugins/mod_pep.lua
+++ b/plugins/mod_pep.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 jid_bare = require "util.jid".bare;
local jid_split = require "util.jid".split;
diff --git a/plugins/mod_posix.lua b/plugins/mod_posix.lua
index a97b7f1b..c00482c5 100644
--- a/plugins/mod_posix.lua
+++ b/plugins/mod_posix.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 want_pposix_version = "0.3.0";
diff --git a/plugins/mod_privacy.lua b/plugins/mod_privacy.lua
index 9f8a149b..8c319bde 100644
--- a/plugins/mod_privacy.lua
+++ b/plugins/mod_privacy.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 st = require "util.stanza";
local datamanager = require "util.datamanager";
diff --git a/plugins/mod_watchregistrations.lua b/plugins/mod_watchregistrations.lua
index 93e69208..9457313f 100644
--- a/plugins/mod_watchregistrations.lua
+++ b/plugins/mod_watchregistrations.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 host = module:get_host();
diff --git a/tests/test_util_stanza.lua b/tests/test_util_stanza.lua
index f4c4810a..0819f2c7 100644
--- a/tests/test_util_stanza.lua
+++ b/tests/test_util_stanza.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.
+--
+
function preserialize(preserialize, st)
local stanza = st.stanza("message", { a = "a" });
diff --git a/tests/util/logger.lua b/tests/util/logger.lua
index ce0a2302..003c5946 100644
--- a/tests/util/logger.lua
+++ b/tests/util/logger.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 = string.format;
local print = print;
local debug = debug;
diff --git a/util/array.lua b/util/array.lua
index 05e035df..ce5ce077 100644
--- a/util/array.lua
+++ b/util/array.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 array = {};
local array_mt = { __index = array, __tostring = function (array) return array:concat(", "); end };
diff --git a/util/dataforms.lua b/util/dataforms.lua
index 1a6807d8..ed62f9b1 100644
--- a/util/dataforms.lua
+++ b/util/dataforms.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 setmetatable = setmetatable;
local pairs, ipairs = pairs, ipairs;
local tostring, type = tostring, type;
diff --git a/util/events.lua b/util/events.lua
index 1d07fe09..a1edd496 100644
--- a/util/events.lua
+++ b/util/events.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 ipairs = ipairs;
local pairs = pairs;
diff --git a/util/hmac.lua b/util/hmac.lua
index d3163bb3..ffd69d91 100644
--- a/util/hmac.lua
+++ b/util/hmac.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 hashes = require "util.hashes"
local xor = require "bit".bxor
diff --git a/util/iterators.lua b/util/iterators.lua
index 7c9b5269..08bb729c 100644
--- a/util/iterators.lua
+++ b/util/iterators.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.
+--
+
--[[ Iterators ]]--
-- Reverse an iterator
diff --git a/util/pluginloader.lua b/util/pluginloader.lua
index 861fe6a9..696af34f 100644
--- a/util/pluginloader.lua
+++ b/util/pluginloader.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 plugin_dir = CFG_PLUGINDIR or "./plugins/";
diff --git a/util/prosodyctl.lua b/util/prosodyctl.lua
index 2213e2d7..b24e194d 100644
--- a/util/prosodyctl.lua
+++ b/util/prosodyctl.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 config = require "core.configmanager";
local encodings = require "util.encodings";
diff --git a/util/pubsub.lua b/util/pubsub.lua
index 9cb5c7ec..8f6af2fd 100644
--- a/util/pubsub.lua
+++ b/util/pubsub.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 ipairs, pairs, setmetatable, type =
ipairs, pairs, setmetatable, type;
diff --git a/util/set.lua b/util/set.lua
index 84bfe8c4..5f7a9ae2 100644
--- a/util/set.lua
+++ b/util/set.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 ipairs, pairs, setmetatable, next, tostring =
ipairs, pairs, setmetatable, next, tostring;
local t_concat = table.concat;