Software /
code /
verse
Comparison
plugins/pubsub.lua @ 250:a5ac643a7fd6
added local verse var to all plugins
author | mva <mva@mva.name> |
---|---|
date | Fri, 02 Dec 2011 11:02:02 +0600 |
parent | 248:c4b55b0dc6ba |
child | 263:598e9f93de78 |
comparison
equal
deleted
inserted
replaced
249:00891a675634 | 250:a5ac643a7fd6 |
---|---|
1 local verse = require "verse"; | |
1 local jid_bare = require "util.jid".bare; | 2 local jid_bare = require "util.jid".bare; |
3 | |
2 local t_insert = table.insert; | 4 local t_insert = table.insert; |
3 | 5 |
4 local xmlns_pubsub = "http://jabber.org/protocol/pubsub"; | 6 local xmlns_pubsub = "http://jabber.org/protocol/pubsub"; |
5 local xmlns_pubsub_owner = "http://jabber.org/protocol/pubsub#owner"; | 7 local xmlns_pubsub_owner = "http://jabber.org/protocol/pubsub#owner"; |
6 local xmlns_pubsub_event = "http://jabber.org/protocol/pubsub#event"; | 8 local xmlns_pubsub_event = "http://jabber.org/protocol/pubsub#event"; |
225 end | 227 end |
226 | 228 |
227 function pubsub_node:delete(callback) | 229 function pubsub_node:delete(callback) |
228 error("Not implemented yet."); | 230 error("Not implemented yet."); |
229 end | 231 end |
230 |