diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-10-20 17:00:03 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-10-20 17:00:03 +0100 |
commit | 593323c951a76d582601e16d7643d564738354fb (patch) | |
tree | 4437a047cb3e7a2bed8e39f5b48bdae938998eba /scripts | |
parent | ae0f7768119984ca21238eee31fcb71931970dcb (diff) | |
download | website-593323c951a76d582601e16d7643d564738354fb.tar.xz |
bupa: expand author, updated, generator
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/bupa | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/bupa b/scripts/bupa index e1d57cf..ff8d5d1 100755 --- a/scripts/bupa +++ b/scripts/bupa @@ -5,7 +5,7 @@ Options: -h --help Show this screen. """ from jinja2 import Environment, FileSystemLoader -import glob, yaml, docopt +import glob, yaml, docopt, datetime from docutils import core from pyatom import AtomFeed @@ -56,7 +56,10 @@ def build_journal(env): subtitle="The lost journal of Kyrias", feed_url="https://theos.kyriasis.com/~kyrias/journal.xml", url="https://theos.kyriasis.com/~kyrias/journal.html", - author="Johannes Löthberg", + author={'name': 'Johannes Löthberg', + 'uri': 'https://theos.kyriasis.com/~kyrias/about.html'}, + updated=datetime.datetime.utcnow(), + generator=('bupa', '', '0.0.1') ) entries = [] |