From 0ad020578277f8aade6b2df90385b911775ead18 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 8 Feb 2012 01:33:53 +0000 Subject: Put doc links after headers in 'see also' list. --- lv2specgen/lv2specgen.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'lv2specgen') diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py index 5740168..3626427 100755 --- a/lv2specgen/lv2specgen.py +++ b/lv2specgen/lv2specgen.py @@ -1125,7 +1125,12 @@ def specgen(specloc, indir, docdir, style_uri, doc_base, doclinks, instances=Fal else: print("warning: seeAlso file outside bundle: %s" % uri) - other_files += '%s, ' % (uri, uri) + other_files += '%s ' % (uri, uri) + if uri.endswith('.h'): + name = os.path.basename(uri) + other_files += '(docs) ' % ( + docdir + '/html/' + name.replace('.', '_8') + '.html') + other_files += ', ' if other_files.endswith(', '): other_files = other_files[:len(other_files) - 2] -- cgit v1.2.1