Changeset

95:ea99e6653e18

clix.publish_atom: Fix --id option
author Kim Alvefur <zash@zash.se>
date Fri, 17 Aug 2012 18:14:07 +0200
parents 94:6f038202a502
children 96:a2214d821394
files clix/publish_atom.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/clix/publish_atom.lua	Fri Aug 17 18:13:44 2012 +0200
+++ b/clix/publish_atom.lua	Fri Aug 17 18:14:07 2012 +0200
@@ -21,7 +21,7 @@
 	end
 	local function on_connect(conn)
 		-- Required: id, title, updated, author (which must have a name)
-		local entry_id = opts.entry_id or ("clix-"..new_uuid());
+		local entry_id = opts.id or new_uuid();
 		local atom_entry = verse.stanza("entry", { xmlns = xmlns_atom})
 			:tag("id"):text(entry_id):up(id)
 			:tag("title"):text(opts.title or ""):up()