Check-in [eb43120ac1]
Not logged in
Overview

SHA1 Hash:eb43120ac13c419dd84aa5cc8813ddb6fc77b70e
Date: 2007-11-25 07:31:43
User: aku
Comment:Dot export extended, allow graph to define label color for highlighting.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified tools/cvs2fossil/lib/dot.tcl from [5248549660] to [87fcd08074].

@@ -37,11 +37,11 @@
 	    set nodes $subgraph
 	    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}]
 	    lappend lines "\"[$g arc source $a]\" -> \"[$g arc target $a]\" ${style};"