← Back to team overview

gephi.team team mailing list archive

[Bug 661257] Re: DOT importer ignores edge weight and .gv file extension

 

** Changed in: gephi
       Status: New => Confirmed

** Changed in: gephi
   Importance: Undecided => Low

** Changed in: gephi
     Assignee: (unassigned) => Mathieu Bastian (mathieu.bastian)

** Also affects: gephi/0.7
   Importance: Undecided
       Status: New

** Changed in: gephi/0.7
       Status: New => Confirmed

** Changed in: gephi/0.7
   Importance: Undecided => Low

** Changed in: gephi
    Milestone: None => 0.7beta

-- 
DOT importer ignores edge weight and .gv file extension
https://bugs.launchpad.net/bugs/661257
You received this bug notification because you are a member of Gephi
Team, which is subscribed to 0.7.

Status in Gephi - Network exploration and manipulation: Confirmed
Status in Gephi 0.7 series: Confirmed

Bug description:
DOT importer has two problems:
1. the standard extension for graphviz dot files is .gv and not .dot. but  the importer doesn't understand .gv
2. edge weight attribute is ignored on import
Example markup:

digraph Test {
	label="Test Graph";
	comment="This is a test graph.";
	id1-> id2 [weight=2];
}

Furthermore, the importer could use graph name as project name, label as project title and comment as project description.