ISSUE: for a taxonomy term, say "first second" the " " space character in the title is not recognised, and I get one more node in the graph, "second" that should not be there.

Comments

naught101’s picture

deltab, can you please post the offending dot file here? if you look in the global settings page, you'll notice there are some new options to allow you to display any combination of the dot file or the graph.

cheers
ned

deltab’s picture

/*
* @command = neato
* @formats = png
* @imagemap = true
*/
digraph NodeRefMap {
graph [ labelloc="t", splines=true, fontname="monospace", size="9,12", overlap=scale, rankdir=LR, compound=true ];
node [ fontsize=7.0, style=filled, fillcolor="#EEEEEE", color="#005884", border=1 ];
edge [ title="", color="#005884", penwidth=1, fontsize=7.0 ];
subgraph cluster_First Second Third {
label = "First Second Third"
}
};

Only two ovals show, "second' and "third". "First" is entirely missing from the image.

naught101’s picture

right, I think the problem is that the line
subgraph cluster_First Second Third {
should read
subgraph "cluster_First Second Third" {

I'll fix it when I get home this arvo..

naught101’s picture

Status: Active » Fixed

This should be fixed now.

deltab’s picture

Looks fixed.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.