Modify

Opened 15 years ago

Closed 15 years ago

#3913 closed defect (wontfix)

dot's bug: Error: Layout was not done. Missing layout plugins?

Reported by: liuwld@… Owned by: Peter Kropf
Priority: normal Component: GraphvizPlugin
Severity: normal Keywords:
Cc: Trac Release: 0.11

Description

For dot's bug here, the plugin will also display same error.

So you should change proc_cmd from dot to dot_static

Attachments (0)

Change History (2)

comment:1 Changed 15 years ago by Christian Boos

Well, if you have a locally broken dot installation (and don't want to or can't fix for some reason), you could as well make a local workaround in the GraphvizPlugin.

For example:

Index: graphviz/graphviz.py
===================================================================
--- graphviz/graphviz.py        (revision 4542)
+++ graphviz/graphviz.py        (working copy)
@@ -292,7 +292,7 @@
             processor = self.processor

         if processor in Graphviz.Processors:
-            proc_cmd = self.cmds[processor]
+            proc_cmd = self.cmds[processor] + "_static" # ref. TH3913

         else:
             self.log.error('render_macro: requested processor (%s) not found.' %

But of course, the standard distribution of the plugin shouldn't contain such hacks. Suggesting a wontfix resolution here.

comment:2 in reply to:  1 Changed 15 years ago by Christian Boos

Resolution: wontfix
Status: newclosed

Replying to cboos:

Suggesting a wontfix resolution here.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Peter Kropf.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.