Subject: | Bug Report Graph Easy - GraphML End Tag Missing Forward Slash |
Date: | Sun, 21 Sep 2008 02:18:27 +1000 |
To: | bug-Graph-Easy [...] rt.cpan.org |
From: | "Abuse 007" <abuse007 [...] gmail.com> |
Hello,
First I would like to thank you for the wonderful tool Graph-Easy. I
hope it continues to improve.
I have tried converting GraphViz graphs to GraphML format, and I find
the that end tag is <GraphML> instead of </GraphML>. It is missing the
forward slash.
Example GraphViz code: -
digraph G {
Hello -> World
}
-------
Output: -
graph-easy test.dot --as graphml
<?xml version="1.0" encoding="UTF-8"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns
http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
<!-- Created by Graph::Easy v0.63 at Sun Sep 21 00:31:38 2008 -->
<key id="d0" for="edge" attr.name="arrowstyle" attr.type="string">
<default>open</default>
</key>
<key id="d1" for="graph" attr.name="colorscheme" attr.type="string">
<default>w3c</default>
</key>
<key id="d2" for="graph" attr.name="flow" attr.type="string">
<default>east</default>
</key>
<key id="d3" for="graph" attr.name="title" attr.type="string">
<default></default>
</key>
<key id="d4" for="edge" attr.name="label" attr.type="string"/>
<key id="d5" for="edge" attr.name="style" attr.type="string">
<default>solid</default>
</key>
<graph id="G" edgedefault="directed">
<data key="d1">x11</data>
<data key="d2">south</data>
<data key="d3">G</data>
<node id="Hello"/>
<node id="World"/>
<edge source="Hello" target="World"/>
<data key="d0">filled</data>
<data key="d4"></data>
</graph>
<graphml>
-------
graph-easy --version
Graph::Easy v0.63 (c) by Tels 2004-2008. Released under the GPL 2.0 or later.
Running under Perl v5.008008 and using Graph::Easy::As_svg v0.23.
-------
Thank you in advance.
Kind Regards.