diff options
author | Paul Wise <pabs3@bonedaddy.net> | 2012-02-28 23:14:20 +0800 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-03-03 11:01:55 -0400 |
commit | 5b9005a8dd33feba93d0c85a7fdeaa2194af5d1a (patch) | |
tree | d03eb011e7842a8c0de72913dc35bfb6b776bfa8 /templates | |
parent | 7f755aa51ea0d9faeba3c49d241e4fed12bcba47 (diff) | |
download | ikiwiki-5b9005a8dd33feba93d0c85a7fdeaa2194af5d1a.tar ikiwiki-5b9005a8dd33feba93d0c85a7fdeaa2194af5d1a.tar.gz |
Drop the version attribute on the generator tag in Atom feeds.
Removing the version means that rebuilds are reproducible over time.
Both the generator tag and its version attribute are optional:
http://tools.ietf.org/html/rfc4287#section-4.2.4
Diffstat (limited to 'templates')
-rw-r--r-- | templates/atompage.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/atompage.tmpl b/templates/atompage.tmpl index e82b59827..3cdd71d1a 100644 --- a/templates/atompage.tmpl +++ b/templates/atompage.tmpl @@ -33,7 +33,7 @@ <id><TMPL_VAR PAGEURL></id> </TMPL_IF> <subtitle type="html"><TMPL_VAR FEEDDESC ESCAPE=HTML></subtitle> -<generator uri="http://ikiwiki.info/" version="<TMPL_VAR VERSION>">ikiwiki</generator> +<generator uri="http://ikiwiki.info/">ikiwiki</generator> <updated><TMPL_VAR FEEDDATE></updated> <TMPL_VAR CONTENT> </feed> |