From 1c80ffdd50c201e15a913759e3acb58ff08be5b8 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 4 Nov 2011 00:49:48 +0000 Subject: Fix seeAlso link to ttl file. --- lv2specgen/lv2specgen.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'lv2specgen') diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py index 404545f..0b4f77e 100755 --- a/lv2specgen/lv2specgen.py +++ b/lv2specgen/lv2specgen.py @@ -976,11 +976,16 @@ def specgen(specloc, docdir, template, doclinks, instances=False, mode="spec"): #other_files += '
  • Ontology %s
  • \n' % (filename, filename) + abs_bundle_path = os.path.abspath(bundle_path) see_also_files = specProperties(m, spec_url, rdfs.seeAlso) for f in see_also_files: uri = str(f) - if uri[0:5] == 'file:': - uri = uri[5:] + if uri[:7] == 'file://': + uri = uri[7:] + if uri[:len(abs_bundle_path)] == abs_bundle_path: + uri = uri[len(abs_bundle_path) + 1:] + else: + print("warning: seeAlso file outside bundle: %s" % uri) other_files += ', %s' % (uri, uri) -- cgit v1.2.1