Make the maps of diagrams appearing in HTML content clickable.

Contributed by:	Bernd Onasch
This commit is contained in:
Diomidis Spinellis 2011-01-07 09:52:45 +00:00
parent d7384d7c0f
commit 2a4c1a936e
2 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,6 @@
<?xml version="1.0" ?>
<!-- $Id$ -->
<!-- vim: spell -->
<notes>
<dl>
@ -7,6 +8,8 @@
<ul>
<li>Make the generation of diamond shapes compatible with GraphViz 2.27.
(Contributed by Soraya Santana de la Fe.)</li>
<li>Make the maps appearing sdfs
(Contributed by Soraya Santana de la Fe.)</li>
</ul>
</dd>

View File

@ -575,6 +575,7 @@ class ClassGraph {
}
}
externalTableEnd();
w.print(", URL=\"" + classToUrl(c, rootClass) + "\"");
nodeProperties(opt);
// If needed, add a note for this node
@ -788,6 +789,8 @@ class ClassGraph {
}
innerTableEnd();
externalTableEnd();
if (className == null || className.length() == 0)
w.print(", URL=\"" + classToUrl(className) + "\"");
nodeProperties(opt);
}
}