Thanks for this great tool! It fits perfectly into my make environment. One thing I had to tweak was the escaping in normalize_update_rdf.rb in order to be able to use an extended updateInfoURL, like http://mysite/whatsnew.php?id=%ITEM_ID%&curversion=%ITEM_VERSION%&locale...
The patch is trivial, so I just post a short version of it here:
def escape_entities(s) - s # XXX todo + s.gsub(/&/, '&') # XXX todo end
-Thomas
More information about formatting options
Thanks for this great tool! It fits perfectly into my make environment.
One thing I had to tweak was the escaping in normalize_update_rdf.rb in order to be able to use an extended updateInfoURL, like
http://mysite/whatsnew.php?id=%ITEM_ID%&curversion=%ITEM_VERSION%&locale...
The patch is trivial, so I just post a short version of it here:
def escape_entities(s)
- s # XXX todo
+ s.gsub(/&/, '&') # XXX todo
end
-Thomas