* src/plugins/GraphViz.py: use new style links for narrative web page

generator


svn: r5939
This commit is contained in:
Don Allingham
2006-02-15 04:16:22 +00:00
parent 810a80da51
commit d445b84dac
2 changed files with 4 additions and 1 deletions

View File

@@ -306,7 +306,8 @@ class GraphViz:
label = label + '\\n(%s - %s)' % (birth, death)
self.f.write('p%s [shape=box, ' % the_id)
if self.includeurl:
self.f.write('URL="%s.html", ' % the_id)
h = person.get_handle()
self.f.write('URL="ppl/%s/%s/%s.html", ' % (h[0],h[1],h))
if self.colorize != 'outline':
if self.colorize == 'filled':
style = 'style=filled, fillcolor'