view mod_ircd/squishy @ 579:513aa6fed9e9

mod_muc_log_http: Don't return a page on missing rooms.
author Waqas Hussain <waqas20@gmail.com>
date Wed, 25 Jan 2012 04:21:17 +0500
parents 355b4ecbe2dd
children
line wrap: on
line source

Output "mod_ircd.lua"

-- In theory, you should be able to leave all but verses groupchat and presence plugins
local verse_path = GetOption("verse");
if not verse_path then
	if GetOption("use-http") then
		AutoFetchURL "http://code.matthewwild.co.uk/verse/raw-file/tip?"
		verse_path = "";
	else
		Module "verse"
	end
end

if verse_path then
	if verse_path:match("verse%.lua$") then
		Module "verse" (verse_path)
	else
		Module "verse" (verse_path.."/init.lua")
		Module "verse.component" (verse_path.."/component.lua")
		Module "verse.plugins.groupchat" (verse_path.."/plugins/groupchat.lua")
		Module "verse.plugins.presence" (verse_path.."/plugins/presence.lua")
	end
end

Main "mod_ircd.in.lua"