# HG changeset patch # User Matthew Wild # Date 1323495907 0 # Node ID 15547fba1f099476c955d708569db12d59fde4ae # Parent ca74d8ed1a15d2a34a435e5aa0e3bdc0eb016cbd mod_adhoc: Use module:handle_items() diff -r ca74d8ed1a15 -r 15547fba1f09 plugins/adhoc/mod_adhoc.lua --- a/plugins/adhoc/mod_adhoc.lua Fri Dec 09 12:02:21 2011 +0500 +++ b/plugins/adhoc/mod_adhoc.lua Sat Dec 10 05:45:07 2011 +0000 @@ -90,19 +90,13 @@ end end, 500); -local function handle_item_added(item) +local function adhoc_added(event) + local item = event.item; commands[item.node] = item; end -module:hook("item-added/adhoc", function (event) - return handle_item_added(event.item); -end, 500); - -module:hook("item-removed/adhoc", function (event) +local function adhoc_removed(event) commands[event.item.node] = nil; -end, 500); +end --- Pick up any items that are already added -for _, item in ipairs(module:get_host_items("adhoc")) do - handle_item_added(item); -end +module:handle_items("adhoc", adhoc_added, adhoc_removed);