I'm sorry, here it is...
Bromine 3 RC 2
(edited previously wrong Bromine 3 RC 1) on Win Vista, WampServer 2.0 (Apache 2.0.x, PHP 5.2.8, MySQL 5.1.30), Firefox 3.6.16
I get notices immediately when I install Bromine. I get this when I'm in the sample project and newly created projects with requirements and testcases, too.
But when I create for example this structure:
[MyProject]
- FirstRequirement
--- FirstNestedRequirement
----- TestCase01
----- TestCase02
- SecondRequirement
Then in FirstRequirement view there is nested_path and nested_consolePath correct, but in FirstNestedRequirement view and SecondRequirement view there are yellow notices "Undefined variable...".
Some additional information:
nested_path
- Code: Select all
include - APP\views\requirements\testlabview.ctp, line 165
View::_render() - CORE\cake\libs\view\view.php, line 666
View::render() - CORE\cake\libs\view\view.php, line 376
Controller::render() - CORE\cake\libs\controller\controller.php, line 803
Dispatcher::_invoke() - CORE\cake\dispatcher.php, line 230
Dispatcher::dispatch() - CORE\cake\dispatcher.php, line 194
[main] - APP\webroot\index.php, line 88
link CODE
- Code: Select all
<dd> <a onclick="Effect.toggle('directlink','blind');" style='cursor: pointer;'>Show</a>
<div id='directlink' style='display: none;'><?php echo 'With viewer: '.$path.'<br />'.'Without viewer: '.$consolePath . '<br /> With viewer (nested):' .$nested_path . '<br />' . 'Without viewer(nested): '. $nested_consolePath; ?></div>
nested_consolePath
- Code: Select all
include - APP\views\requirements\testlabview.ctp, line 165
View::_render() - CORE\cake\libs\view\view.php, line 666
View::render() - CORE\cake\libs\view\view.php, line 376
Controller::render() - CORE\cake\libs\controller\controller.php, line 803
Dispatcher::_invoke() - CORE\cake\dispatcher.php, line 230
Dispatcher::dispatch() - CORE\cake\dispatcher.php, line 194
[main] - APP\webroot\index.php, line 88
link CODE
- Code: Select all
<dd>
<a onclick="Effect.toggle('directlink','blind');" style='cursor: pointer;'>Show</a>
<div id='directlink' style='display: none;'><?php echo 'With viewer: '.$path.'<br />'.'Without viewer: '.$consolePath . '<br /> With viewer (nested):' .$nested_path . '<br />' . 'Without viewer(nested): '. $nested_consolePath; ?></div>