The path to Graphviz' dot program is now prompted interactively during the setup, since Graphviz is now mandatory for displaying the impact analysis.

SVN:trunk[3643]
This commit is contained in:
Denis Flaven
2015-07-15 15:14:38 +00:00
parent d424addb4c
commit 606e462b53
5 changed files with 190 additions and 5 deletions

View File

@@ -162,7 +162,7 @@ class Config
'default' => '/usr/bin/dot',
'value' => '',
'source_of_value' => '',
'show_in_conf_sample' => false,
'show_in_conf_sample' => true,
),
'php_path' => array(
'type' => 'string',
@@ -1750,6 +1750,10 @@ class Config
{
$this->Set('app_root_url', $aParamValues['application_path']);
}
if (isset($aParamValues['graphviz_path']))
{
$this->Set('graphviz_path', $aParamValues['graphviz_path']);
}
if (isset($aParamValues['mode']) && isset($aParamValues['language']))
{
if (($aParamValues['mode'] == 'install') || $this->GetDefaultLanguage() == '')