Merge 0.8->trunk

This commit is contained in:
Matthew Wild 2011-01-31 23:17:11 +00:00
commit 373838b53a

View file

@ -108,6 +108,14 @@ function stanza_mt:get_child(name, xmlns)
end
end
function stanza_mt:get_child_text(name, xmlns)
local tag = self:get_child(name, xmlns);
if tag then
return tag:get_text();
end
return nil;
end
function stanza_mt:child_with_name(name)
for _, child in ipairs(self.tags) do
if child.name == name then return child; end