From 3ec294f44bb3daac4814b2e63ad3234fe5cefcf6 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 26 Nov 2014 16:21:49 -0500 Subject: Add link to spec index on spec pages. --- wscript | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'wscript') diff --git a/wscript b/wscript index e3fa60a..3951e64 100644 --- a/wscript +++ b/wscript @@ -165,6 +165,13 @@ def specgen(task): if name.startswith('LV2 '): name = name[4:] + # Root link + ctx = task.generator.bld + root_path = path[0:path.find('ns/') + 3] + root_link = os.path.relpath(root_path, path) + if not task.generator.bld.env.ONLINE_DOCS: + root_link = os.path.join(root_link, 'index.html') + SPECGENDIR = 'lv2specgen' STYLEPATH = 'build/aux/style.css' TAGFILE = 'build/doc/tags' @@ -177,7 +184,8 @@ def specgen(task): TAGFILE, { 'list_email': 'devel@lists.lv2plug.in', 'list_page': 'http://lists.lv2plug.in/listinfo.cgi/devel-lv2plug.in' }, - instances=True) + instances=True, + root_link=root_link) lv2specgen.save(task.outputs[0].abspath(), specdoc) -- cgit v1.2.1