diff options
author | David Robillard <d@drobilla.net> | 2011-11-04 22:06:02 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-11-04 22:06:02 +0000 |
commit | dd969d2b3a7aa271a0e5a3bce9e55f691d97fa0e (patch) | |
tree | 57705a2564dd71a650dc95729dec9092b8f684c4 /lv2specgen/lv2specgen.py | |
parent | fce23180919831fb463fc3f6877940d7fd4437cd (diff) | |
download | lv2-dd969d2b3a7aa271a0e5a3bce9e55f691d97fa0e.tar.xz |
Add subtitle using doap:shortdesc.
Diffstat (limited to 'lv2specgen/lv2specgen.py')
-rwxr-xr-x | lv2specgen/lv2specgen.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py index 8138654..13422d2 100755 --- a/lv2specgen/lv2specgen.py +++ b/lv2specgen/lv2specgen.py @@ -934,6 +934,7 @@ def specgen(specloc, indir, docdir, style_uri, doc_base, doclinks, instances=Fal termlist += docTerms('Instance', instalist, m) template = template.replace('@NAME@', specProperty(m, spec_url, doap.name)) + template = template.replace('@SUBTITLE@', specProperty(m, spec_url, doap.shortdesc)) template = template.replace('@URI@', spec_url) template = template.replace('@PREFIX@', spec_pre) if spec_pre == 'lv2': |