# HG changeset patch # User Matthew Wild # Date 1679045036 0 # Node ID 1eaec52ff71a520ef5065a9311596015ae86cf14 # Parent 6707e3a47f717ccff0f459fd7dc8d7c4a7e4c2e0 browsing: whitespace fixes diff -r 6707e3a47f71 -r 1eaec52ff71a plugins/browsing.lua --- a/plugins/browsing.lua Fri Mar 17 09:23:15 2023 +0000 +++ b/plugins/browsing.lua Fri Mar 17 09:23:56 2023 +0000 @@ -6,10 +6,10 @@ stream:add_plugin("pep"); function stream:browsing(infos, callback) if type(infos) == "string" then - infos = { uri = infos; }; + infos = {uri = infos}; end - local link = verse.stanza("page", {xmlns=xmlns_browsing}) + local link = verse.stanza("page", {xmlns = xmlns_browsing}) for info, value in pairs(infos) do link:tag(info):text(value):up(); end @@ -20,10 +20,10 @@ local item = event.item; return stream:event("browsing", { from = event.from; - description = item:get_child_text"description"; - keywords = item:get_child_text"keywords"; - title = item:get_child_text"title"; - uri = item:get_child_text"uri"; + description = item:get_child_text "description"; + keywords = item:get_child_text "keywords"; + title = item:get_child_text "title"; + uri = item:get_child_text "uri"; }); end); end