diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-01-13 15:29:00 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-01-13 15:29:00 +0000 |
commit | 4dc4d175d135e293f48ed6a15f61b19c4dafe8d7 (patch) | |
tree | c4a1aeb92f7ccaccc8fd919d065d3add4c71c12d /core/actions.lua | |
parent | bb7d8604f252ce84bdea1cb791114dfc40c5a958 (diff) | |
parent | 8b979ccaf40ae38dbeaa5e7a4edb2e6d760fdffa (diff) | |
download | prosody-4dc4d175d135e293f48ed6a15f61b19c4dafe8d7.tar.gz prosody-4dc4d175d135e293f48ed6a15f61b19c4dafe8d7.zip |
Automated merge with http://waqas.ath.cx:8000/
Diffstat (limited to 'core/actions.lua')
-rw-r--r-- | core/actions.lua | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/core/actions.lua b/core/actions.lua new file mode 100644 index 00000000..d0be5aeb --- /dev/null +++ b/core/actions.lua @@ -0,0 +1,19 @@ +
+local actions = {};
+
+function register(path, t)
+ local curr = actions;
+ for comp in path:gmatch("([^/]+)/") do
+ if curr[comp] == nil then
+ curr[comp] = {};
+ end
+ curr = curr[comp];
+ if type(curr) ~= "table" then
+ return nil, "path-taken";
+ end
+ end
+ curr[path:match("/([^/]+)$")] = t;
+ return true;
+end
+
+return { actions = actions, register= register };
\ No newline at end of file |