Merge from waqas

This commit is contained in:
Matthew Wild 2008-10-04 19:24:43 +01:00
commit 8682a776e3

View file

@ -17,15 +17,6 @@ function stanza(name, attr)
return setmetatable(stanza, stanza_mt);
end
function stanza_mt:iq(attrs)
return self + stanza("iq", attrs)
end
function stanza_mt:message(attrs)
return self + stanza("message", attrs)
end
function stanza_mt:presence(attrs)
return self + stanza("presence", attrs)
end
function stanza_mt:query(xmlns)
return self:tag("query", { xmlns = xmlns });
end