diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 0d88a18a6..842a4ea4f 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,4 +1,6 @@ 2006-02-14 Don Allingham + * src/plugins/GraphViz.py: use new style links for narrative web page + generator * src/DbPrompter.py: Try to give a more intelligent error message on an exception thrown in DbPrompter - don't give a traceback. * src/MediaView.py: clear out details and image if unselected diff --git a/gramps2/src/plugins/GraphViz.py b/gramps2/src/plugins/GraphViz.py index 445a6adfa..061143cc7 100644 --- a/gramps2/src/plugins/GraphViz.py +++ b/gramps2/src/plugins/GraphViz.py @@ -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'