mirror of https://github.com/dspinellis/UMLGraph
Make the maps of diagrams appearing in HTML content clickable.
Contributed by: Bernd Onasch
This commit is contained in:
parent
d7384d7c0f
commit
2a4c1a936e
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue