Diff
Not logged in

Differences From:

File tools/cvs2fossil/lib/dot.tcl part of check-in [86f3319041] - Extended the dot graph exporter to allow the export of a subgraph specified through a set of nodes. Default is the export of the whole graph, as before. by aku on 2007-11-23 05:41:21. [view]

To:

File tools/cvs2fossil/lib/dot.tcl part of check-in [eb43120ac1] - Dot export extended, allow graph to define label color for highlighting. by aku on 2007-11-25 07:31:43. [view]

@@ -38,9 +38,9 @@
 	    set arcs [eval [linsert $subgraph 0 $g arcs -inner]]
 	}
 
 	foreach n $nodes {
-	    set style [Style $g node $n {label label shape shape}]
+	    set style [Style $g node $n {label label shape shape fontcolor fontcolor}]
 	    lappend lines "\"$n\" ${style};"
 	}
 	foreach a $arcs {
 	    set style [Style $g arc $a {color color}]