clix.publish_atom: Fix --id option

Fri, 17 Aug 2012 18:14:07 +0200

author
Kim Alvefur <zash@zash.se>
date
Fri, 17 Aug 2012 18:14:07 +0200
changeset 95
ea99e6653e18
parent 94
6f038202a502
child 96
a2214d821394

clix.publish_atom: Fix --id option

clix/publish_atom.lua file | annotate | diff | comparison | revisions
--- 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()

mercurial