[Fusionforge-commits] r8617 - in trunk/gforge/www: include pm/include reporting search/include/renderers

Alain Peyrat aljeux at libremir.placard.fr.eu.org
Tue Dec 22 21:02:23 CET 2009


Author: aljeux
Date: 2009-12-22 21:02:23 +0100 (Tue, 22 Dec 2009)
New Revision: 8617

Modified:
   trunk/gforge/www/include/project_summary.php
   trunk/gforge/www/pm/include/ProjectGroupHTML.class.php
   trunk/gforge/www/reporting/useract.php
   trunk/gforge/www/reporting/useradded.php
   trunk/gforge/www/search/include/renderers/TasksHtmlSearchRenderer.class.php
   trunk/gforge/www/search/include/renderers/TrackersHtmlSearchRenderer.class.php
Log:
xhtml fixes

Modified: trunk/gforge/www/include/project_summary.php
===================================================================
--- trunk/gforge/www/include/project_summary.php	2009-12-22 20:02:14 UTC (rev 8616)
+++ trunk/gforge/www/include/project_summary.php	2009-12-22 20:02:23 UTC (rev 8617)
@@ -150,7 +150,7 @@
 
 			<hr size="1" />';
 		$return .= '<a href="'.util_make_url ('/forum/?group_id='.$group_id).'">';
-		$return .= html_image("ic/forum20g.png","20","20",array("border"=>"0","ALT"=>"Forums"));
+		$return .= html_image("ic/forum20g.png","20","20",array("border"=>"0","alt"=>"Forums"));
 		$return .= '&nbsp;Forums</a>';
 
 		if ($mode != 'compact') {
@@ -233,7 +233,7 @@
 
 			<hr size="1" />';
 		$return .= '<a href="'.util_make_url ('/scm/?group_id='.$group_id).'">';
-		$return .= html_image("ic/cvs16b.png","20","20",array("border"=>"0","ALT"=>"SCM"));
+		$return .= html_image("ic/cvs16b.png","20","20",array("border"=>"0","alt"=>"SCM"));
 		$return .= "&nbsp;SCM&nbsp;Tree</a>";
 
 		if ($mode != 'compact') {

Modified: trunk/gforge/www/pm/include/ProjectGroupHTML.class.php
===================================================================
--- trunk/gforge/www/pm/include/ProjectGroupHTML.class.php	2009-12-22 20:02:14 UTC (rev 8616)
+++ trunk/gforge/www/pm/include/ProjectGroupHTML.class.php	2009-12-22 20:02:23 UTC (rev 8617)
@@ -54,7 +54,7 @@
 		if ($group_project_id) {
 			$gantt_width = 820;
 			$gantt_height = 680;
-			$gantt_url = "/pm/task.php?group_id=$group_id&group_project_id=$group_project_id&func=ganttpage";
+			$gantt_url = "/pm/task.php?group_id=$group_id&amp;group_project_id=$group_project_id&amp;func=ganttpage";
 			$gantt_title = _('Gantt Chart');
 			$gantt_winopt = 'scrollbars=yes,resizable=yes,toolbar=no,height=' . $gantt_height . ',width=' . $gantt_width;
 			$labels[] = $gantt_title;

Modified: trunk/gforge/www/reporting/useract.php
===================================================================
--- trunk/gforge/www/reporting/useract.php	2009-12-22 20:02:14 UTC (rev 8616)
+++ trunk/gforge/www/reporting/useract.php	2009-12-22 20:02:23 UTC (rev 8617)
@@ -62,20 +62,19 @@
 
 if ($sw) {
 	?>
-	<h3><?php echo _('User Activity'); ?></h3>
-	<p>
+	<h2><?php echo _('User Activity'); ?></h2>
+
 	<form action="<?php echo getStringFromServer('PHP_SELF'); ?>" method="get">
-	<input type="hidden" name="sw" value="<?php echo $sw; ?>">
+	<input type="hidden" name="sw" value="<?php echo $sw; ?>" />
 	<table><tr>
 	<td><strong><?php echo _('User'); ?>:</strong><br /><?php echo report_useract_box('dev_id',$dev_id,$sw); ?></td>
 	<td><strong><?php echo _('Areas'); ?>:</strong><br /><?php echo report_area_box('area',$area); ?></td>
 	<td><strong><?php echo _('Type'); ?>:</strong><br /><?php echo report_span_box('SPAN',$SPAN); ?></td>
 	<td><strong><?php echo _('Start'); ?>:</strong><br /><?php echo report_months_box($report, 'start', $start); ?></td>
 	<td><strong><?php echo _('End'); ?>:</strong><br /><?php echo report_months_box($report, 'end', $end); ?></td>
-	<td><input type="submit" name="submit" value="<?php echo _('Refresh'); ?>"></td>
+	<td><input type="submit" name="submit" value="<?php echo _('Refresh'); ?>" /></td>
 	</tr></table>
 	</form>
-	<p>
 	<?php if ($dev_id) { ?>
 		<img src="useract_graph.php?<?php echo "SPAN=$SPAN&amp;start=$start&amp;end=$end&dev_id=$dev_id&amp;area=$area"; ?>" width="640" height="480">
 		<p>

Modified: trunk/gforge/www/reporting/useradded.php
===================================================================
--- trunk/gforge/www/reporting/useradded.php	2009-12-22 20:02:14 UTC (rev 8616)
+++ trunk/gforge/www/reporting/useradded.php	2009-12-22 20:02:23 UTC (rev 8617)
@@ -48,13 +48,13 @@
 echo report_header(_('Users Added'));
 
 ?>
-<h3><?php echo _('Users Added'); ?></h3>
+<h2><?php echo _('Users Added'); ?></h2>
 <form action="<?php echo getStringFromServer('PHP_SELF'); ?>" method="get">
 <table><tr>
 <td><strong><?php echo _('Type'); ?>:</strong><br /><?php echo report_span_box('SPAN',$SPAN); ?></td>
 <td><strong><?php echo _('Start'); ?>:</strong><br /><?php echo report_months_box($report, 'start', $start); ?></td>
 <td><strong><?php echo _('End'); ?>:</strong><br /><?php echo report_months_box($report, 'end', $end); ?></td>
-<td><input type="submit" name="submit" value="<?php echo _('Refresh'); ?>"></td>
+<td><input type="submit" name="submit" value="<?php echo _('Refresh'); ?>" /></td>
 </tr></table>
 </form>
 <p>

Modified: trunk/gforge/www/search/include/renderers/TasksHtmlSearchRenderer.class.php
===================================================================
--- trunk/gforge/www/search/include/renderers/TasksHtmlSearchRenderer.class.php	2009-12-22 20:02:14 UTC (rev 8616)
+++ trunk/gforge/www/search/include/renderers/TasksHtmlSearchRenderer.class.php	2009-12-22 20:02:23 UTC (rev 8617)
@@ -67,7 +67,7 @@
 						. ' <td width="5%">&nbsp;</td>'
 						. ' <td>'.db_result($result, $i, 'project_task_id').'</td>'
 						. ' <td>'
-							. '<a href="'.util_make_url ('/pm/task.php?func=detailtask&project_task_id=' . db_result($result, $i, 'project_task_id').'&group_id='.$this->groupId . '&group_project_id='.db_result($result, $i, 'group_project_id')).'">'
+							. '<a href="'.util_make_url ('/pm/task.php?func=detailtask&amp;project_task_id=' . db_result($result, $i, 'project_task_id').'&amp;group_id='.$this->groupId . '&amp;group_project_id='.db_result($result, $i, 'group_project_id')).'">'
 							. html_image('ic/msg.png', '10', '12', array('border'=>'0')).' '
 							. db_result($result, $i, 'summary').'</a></td>'
 						. ' <td width="15%">'.date($dateFormat, db_result($result, $i, 'start_date')).'</td>'

Modified: trunk/gforge/www/search/include/renderers/TrackersHtmlSearchRenderer.class.php
===================================================================
--- trunk/gforge/www/search/include/renderers/TrackersHtmlSearchRenderer.class.php	2009-12-22 20:02:14 UTC (rev 8616)
+++ trunk/gforge/www/search/include/renderers/TrackersHtmlSearchRenderer.class.php	2009-12-22 20:02:23 UTC (rev 8617)
@@ -65,7 +65,7 @@
 						. '<td width="5%">&nbsp;</td>'
 						. '<td>'.db_result($result, $i, 'artifact_id').'</td>'
 						. '<td>'
-							. '<a href="'.util_make_url ('/tracker/?func=detail&group_id='.$this->groupId.'&aid='.db_result($result, $i, 'artifact_id') . '&atid='.db_result($result, $i, 'group_artifact_id')).'">'
+							. '<a href="'.util_make_url ('/tracker/?func=detail&amp;group_id='.$this->groupId.'&amp;aid='.db_result($result, $i, 'artifact_id') . '&amp;atid='.db_result($result, $i, 'group_artifact_id')).'">'
 							. html_image('ic/msg.png', '10', '12', array('border'=>'0')).' '.db_result($result, $i, 'summary')
 							. '</a></td>'		
 						. '<td width="15%">'.db_result($result, $i, 'realname').'</td>'




More information about the Fusionforge-commits mailing list