New issue 663 by glenview...@gmail.com: Grapher is producing corrupt graphs
http://code.google.com/p/google-guice/issues/detail?id=663
My graphs look terrible (there are lines without parent connections.) I
assume it's related to these multiple "unknown tag" errors with even simple
projects when running dot -Tpng test.dot >test.png:
Error - pango_parse_markup: Unknown tag 'java.lang.Object' on line 1 char
196
It looks as if dot is parsing the < > as literal less than/greater than
symbols. For instance in the .dot file, the java.lang.Object looks like
this:
...<java.lang.Object>...
Attachments:
test.dot 5.3 KB
test.png 49.0 KB
Sorry, to add more info, this is with Guice 3.0, grapher 3.0-rc3
The grapher causes problems. I don't think it is very usable with all that
concept of dot files, which is not a common format anyway.
The following Stack Overflow answer describes what I believe to be a
workaround for this bug. I'll report back if it works.
http://stackoverflow.com/a/9229158/403455
Updating: Using the workaround from the Stack Overflow site replacing all
the incorrectly annotated "style=invis" with "style=solid" worked.