[Fusionforge-commits] r11158 - trunk/src/www/tracker/admin

Christian Bayle cbayle at libremir.placard.fr.eu.org
Fri Oct 22 23:59:44 CEST 2010


Author: cbayle
Date: 2010-10-22 23:59:44 +0200 (Fri, 22 Oct 2010)
New Revision: 11158

Modified:
   trunk/src/www/tracker/admin/form-workflow.php
Log:
Giving id to workflow tables, usefull for selenium


Modified: trunk/src/www/tracker/admin/form-workflow.php
===================================================================
--- trunk/src/www/tracker/admin/form-workflow.php	2010-10-22 20:49:57 UTC (rev 11157)
+++ trunk/src/www/tracker/admin/form-workflow.php	2010-10-22 21:59:44 UTC (rev 11158)
@@ -73,7 +73,7 @@
 	echo "\n";
 
 	// Special treatement for the initial value (in the Submit form).
-	echo '<tr><th style="text-align:left">'.$init.'</th>'."\n";
+	echo '<tr id="initval"><th style="text-align:left">'.$init.'</th>'."\n";
 	$next = $atw->getNextNodes('100');
 	foreach ($states as $s) {
 		$name = 'wk[100]['. $s['element_id'].']';
@@ -95,7 +95,7 @@
 	echo $GLOBALS['HTML']->listTableTop($totitle_arr, false, ' ');
 	
 	foreach ($elearray as $status) {
-		echo '<tr><th style="text-align:left">'.$from.$status['element_name'].'</th>'."\n";
+		echo '<tr id="configuring"><th style="text-align:left">'.$from.$status['element_name'].'</th>'."\n";
 		$next = $atw->getNextNodes($status['element_id']);
 		foreach ($states as $s) {
 			if ($status['element_id'] !== $s['element_id']) {




More information about the Fusionforge-commits mailing list