Software /
code /
verse
Comparison
plugins/pubsub.lua @ 255:be126fe7c4e7
Merge with MattJ & mva
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 03 Dec 2011 19:46:47 +0100 |
parent | 250:a5ac643a7fd6 |
child | 263:598e9f93de78 |
comparison
equal
deleted
inserted
replaced
254:616cc6a5fd30 | 255:be126fe7c4e7 |
---|---|
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 |