gforge-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gforge-commits] gforge/www/include project_home.php, 1.29, 1.30 project


From: gsmet
Subject: [Gforge-commits] gforge/www/include project_home.php, 1.29, 1.30 project_summary.php, 1.15, 1.16
Date: Sun, 14 Mar 2004 11:08:20 -0600

Update of /cvsroot/gforge/gforge/www/include
In directory db.perdue.net:/tmp/cvs-serv7651/www/include

Modified Files:
        project_home.php project_summary.php 
Log Message:
some html cleanup


Index: project_home.php
===================================================================
RCS file: /cvsroot/gforge/gforge/www/include/project_home.php,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- project_home.php    12 Mar 2004 15:55:54 -0000      1.29
+++ project_home.php    14 Mar 2004 17:08:18 -0000      1.30
@@ -109,7 +109,7 @@
                        print 
$GLOBALS['HTML']->createLinkToUserHome($row_admin[user_name], 
$row_admin[realname])."<br />";
                }
        ?>
-       <hr width="100%" size="1" noshade="noshade" />
+       <hr width="100%" size="1" />
        <?php
 
 }
@@ -234,7 +234,7 @@
 
 // CB hide tracker if desired
 if ($project->usesTracker()) {
-       print '<hr size="1" noshade="noshade" /><a 
href="/tracker/?group_id='.$group_id.'">';
+       print '<hr size="1" /><a href="/tracker/?group_id='.$group_id.'">';
        print 
html_image('ic/tracker20g.png','20','20',array('alt'=>$Language->getText('group','short_tracker')));
        print $Language->getText('group', 'long_tracker').'</a>';
 
@@ -263,7 +263,7 @@
 // ################## forums
 
 if ($project->usesForum()) {
-       print '<hr size="1" noshade="noshade" /><a 
href="/forum/?group_id='.$group_id.'">';
+       print '<hr size="1" /><a href="/forum/?group_id='.$group_id.'">';
        print 
html_image('ic/forum20g.png','20','20',array('alt'=>$Language->getText('group','short_forum')));
        print '&nbsp;'.$Language->getText('group','long_forum').'</a>';
        print " ( 
".$Language->getText('project_home','forum_messages',array(project_get_public_forum_message_count($group_id),
 project_get_public_forum_count($group_id) ))." ";
@@ -274,7 +274,7 @@
 
 if ($project->usesDocman()) {
        print '
-       <hr size="1" noshade="noshade" />
+       <hr size="1" />
        <a href="/docman/?group_id='.$group_id.'">';
        print 
html_image('ic/docman16b.png','20','20',array('alt'=>$Language->getText('group','short_docman')));
        print '&nbsp;'.$Language->getText('group','long_docman').'</a>';
@@ -283,7 +283,7 @@
 // ##################### Mailing lists
 
 if ($project->usesMail()) {
-       print '<hr size="1" noshade="noshade" /><a 
href="/mail/?group_id='.$group_id.'">';
+       print '<hr size="1" /><a href="/mail/?group_id='.$group_id.'">';
        print 
html_image('ic/mail16b.png','20','20',array('alt'=>$Language->getText('group','short_mail')));
        print '&nbsp;'.$Language->getText('group','long_mail').'</a>';
        print " ( <strong>". project_get_mail_list_count($group_id) ."</strong> 
".$Language->getText('project_home','public_mailing_lists').")";
@@ -292,7 +292,7 @@
 // ##################### Task Manager
 
 if ($project->usesPm()) {
-       print '<hr size="1" noshade="noshade" /><a 
href="/pm/?group_id='.$group_id.'">';
+       print '<hr size="1" /><a href="/pm/?group_id='.$group_id.'">';
        print 
html_image('ic/taskman20g.png','20','20',array('alt'=>$Language->getText('group','short_pm')));
        print '&nbsp;'.$Language->getText('group','long_pm').'</a>';
        $sql="SELECT * FROM project_group_list WHERE group_id='$group_id' AND 
is_public=1";
@@ -313,7 +313,7 @@
 // ######################### Surveys
 
 if ($project->usesSurvey()) {
-       print '<hr size="1" noshade="noshade" /><a 
href="/survey/?group_id='.$group_id.'">';
+       print '<hr size="1" /><a href="/survey/?group_id='.$group_id.'">';
        print 
html_image('ic/survey16b.png','20','20',array('alt'=>$Language->getText('group','short_survey')));
        print " ".$Language->getText('group','long_survey')."</a>";
        echo ' ( <strong>'. project_get_survey_count($group_id) .'</strong> 
'.$Language->getText('project_home','surveys').'  )';
@@ -322,7 +322,7 @@
 // ######################### CVS
 
 if ($project->usesCVS()) {
-       print '<hr size="1" noshade="noshade" /><a 
href="/scm/?group_id='.$group_id.'">';
+       print '<hr size="1" /><a href="/scm/?group_id='.$group_id.'">';
        print 
html_image('ic/cvs16b.png','20','20',array('alt'=>$Language->getText('group','short_cvs')));
        print " ".$Language->getText('group','long_cvs')."</a>";
 
@@ -353,7 +353,7 @@
 // CB hide FTP if desired
 if ($project->usesFTP()) {
        if ($project->isActive()) {
-               print '<hr size="1" noshade="noshade" />';
+               print '<hr size="1" />';
                print "<a href=\"ftp://"; . $project->getUnixName() . "." . 
$GLOBALS['sys_default_domain'] . "/pub/". $project->getUnixName() ."/\">";
                print 
html_image('ic/ftp16b.png','20','20',array('alt'=>$Language->getText('group','long_ftp')));
                print $Language->getText('group','long_ftp')."</a>";

Index: project_summary.php
===================================================================
RCS file: /cvsroot/gforge/gforge/www/include/project_summary.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- project_summary.php 11 Mar 2004 22:06:22 -0000      1.15
+++ project_summary.php 14 Mar 2004 17:08:18 -0000      1.16
@@ -149,7 +149,7 @@
        if ($project->usesForum()) {
                $return .= '
 
-                       <HR SIZE="1" NoShade>';
+                       <hr size="1" />';
                $return .= '<a href="/forum/?group_id='.$group_id.'">';
                $return .= 
html_image("ic/forum20g.png","20","20",array("border"=>"0","ALT"=>"Forums"));
                $return .= '&nbsp;Forums</a>';
@@ -165,7 +165,7 @@
        if ($project->usesDocman()) {
                $return .= '
 
-                       <hr size="1" noshade="noshade" />';
+                       <hr size="1" />';
                $return .= '<a href="/docman/?group_id='.$group_id.'">';
                $return .= 
html_image("ic/docman16b.png","20","20",array("border"=>"0","alt"=>"Docs"));
                $return .= '&nbsp;Doc&nbsp;Manager</a>';
@@ -176,7 +176,7 @@
        if ($project->usesMail()) {
                $return .= '
 
-                       <hr size="1" noshade="noshade" />';
+                       <hr size="1" />';
                $return .= '<a href="/mail/?group_id='.$group_id.'">';
                $return .= 
html_image("ic/mail16b.png","20","20",array("border"=>"0","alt"=>"Mail Lists"));
                $return .= '&nbsp;Mailing&nbsp;Lists</a>';
@@ -191,7 +191,7 @@
        if ($project->usesPm()) {
                $return .= '
 
-                       <HR SIZE="1" NoShade>';
+                       <hr size="1" />';
                $return .= '<a href="/pm/?group_id='.$group_id.'">';
                $return .= 
html_image("ic/taskman20g.png","20","20",array("border"=>"0","ALT"=>"Tasks"));
                $return .= '&nbsp;Task&nbsp;Manager</a>';
@@ -219,7 +219,7 @@
        if ($project->usesSurvey()) {
                $return .= '
 
-                       <hr size="1" noshade="noshade" />';
+                       <hr size="1" />';
                $return .= '<a href="/survey/?group_id='.$group_id.'">';
                $return .= 
html_image("ic/survey16b.png","20","20",array("border"=>"0","alt"=>"Surveys"));
                $return .= "&nbsp;Surveys</a>";
@@ -233,7 +233,7 @@
        if ($project->usesCVS()) {
                $return .= '
 
-                       <HR SIZE="1" NoShade>';
+                       <hr size="1" />';
                $return .= '<a href="/scm/?group_id='.$group_id.'">';
                $return .= 
html_image("ic/cvs16b.png","20","20",array("border"=>"0","ALT"=>"CVS"));
                $return .= "&nbsp;CVS&nbsp;Tree</a>";
@@ -250,7 +250,7 @@
        if ($project->isActive()) {
                $return .= '
 
-                       <hr size="1" noshade="noshade" />';
+                       <hr size="1" />';
                $return .= '<a 
href="/project/showfiles.php?group_id='.$group_id.'">';
                $return .= 
html_image("ic/ftp16b.png","20","20",array("border"=>"0","alt"=>"FTP"));
                $return .= "&nbsp;Released&nbsp;Files</a>";





reply via email to

[Prev in Thread] Current Thread [Next in Thread]