aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2013-09-05 10:04:38 -0400
committerJoey Hess <joey@kitenet.net>2013-09-05 10:04:38 -0400
commit395ca7ae56fe177d1637e2a5491273dfe427585f (patch)
tree8745deceb4e5fd213b44ec55a38181037dd54277
parent00188c087db37fd01e19dbeb07b13924f60b76cb (diff)
downloadikiwiki-395ca7ae56fe177d1637e2a5491273dfe427585f.tar
ikiwiki-395ca7ae56fe177d1637e2a5491273dfe427585f.tar.gz
aggregate: Improve display of post author.
The recent move of the post author to the author field is good, but with it coming after the name of the feed, it is unlikely to be visible when viewed in eg mutt. Move it to before the feed name.
-rw-r--r--debian/changelog6
-rw-r--r--templates/aggregatepost.tmpl2
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index cfcf8a3d9..97ddc4e65 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ikiwiki (3.20130904.2) UNRELEASED; urgency=low
+
+ * aggregate: Improve display of post author.
+
+ -- Joey Hess <joeyh@debian.org> Thu, 05 Sep 2013 10:01:10 -0400
+
ikiwiki (3.20130904.1) unstable; urgency=low
* Fix cookiejar default setting.
diff --git a/templates/aggregatepost.tmpl b/templates/aggregatepost.tmpl
index a89ccfcdf..5a0f6e780 100644
--- a/templates/aggregatepost.tmpl
+++ b/templates/aggregatepost.tmpl
@@ -12,7 +12,7 @@
[[!meta copyright="<TMPL_VAR COPYRIGHT ESCAPE=HTML>"]]
</TMPL_IF>
<TMPL_IF AUTHOR>
-[[!meta author="<TMPL_VAR NAME ESCAPE=HTML>: <TMPL_VAR AUTHOR ESCAPE=HTML>"]]
+[[!meta author="<TMPL_VAR AUTHOR ESCAPE=HTML> (<TMPL_VAR NAME ESCAPE=HTML>)"]]
<TMPL_ELSE>
[[!meta author="<TMPL_VAR NAME ESCAPE=HTML>"]]
</TMPL_IF>