- Fixing Trac #173. The unused states are now excluded from the graph.

- The path to graphviz installation (dot executable) is now configurable via the 'graphviz_path' config variable (defaults to /usr/bin/dot).
- If graphviz is present, the graph is generated on the fly, and using the current user's localization/translation for the state & transition names.

SVN:trunk[795]
This commit is contained in:
Denis Flaven
2010-09-07 20:04:21 +00:00
parent 306168c761
commit 39e943c20a
2 changed files with 35 additions and 13 deletions

View File

@@ -94,6 +94,14 @@ class Config
'source_of_value' => '',
'show_in_conf_sample' => false,
),
'graphviz_path' => array(
'type' => 'string',
'description' => 'Path to the Graphviz "dot" executable for graphing objects lifecycle',
'default' => '/usr/bin/dot',
'value' => '',
'source_of_value' => '',
'show_in_conf_sample' => false,
),
);
public function IsProperty($sPropCode)