gforge-commits
[Top][All Lists]
Advanced

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

[Gforge-commits] gforge/www/include Layout.class, 1.89, 1.90 html.php, 1


From: tperdue
Subject: [Gforge-commits] gforge/www/include Layout.class, 1.89, 1.90 html.php, 1.34, 1.35
Date: Tue, 05 Oct 2004 13:30:21 -0500

Update of /cvsroot/gforge/gforge/www/include
In directory db.perdue.net:/home/tperdue/share/dev.gforge.org/www/include

Modified Files:
        Layout.class html.php 
Log Message:
task counter fix and priority reduction to 5 items

Index: Layout.class
===================================================================
RCS file: /cvsroot/gforge/gforge/www/include/Layout.class,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -d -r1.89 -r1.90
--- Layout.class        15 Sep 2004 03:18:12 -0000      1.89
+++ Layout.class        5 Oct 2004 18:30:18 -0000       1.90
@@ -57,14 +57,10 @@
                Set up the priority color array one time only
                */
                $bgpri[1] = '#dadada';
-               $bgpri[2] = '#dad0d0';
-               $bgpri[3] = '#dacaca';
-               $bgpri[4] = '#dac0c0';
-               $bgpri[5] = '#dababa';
-               $bgpri[6] = '#dab0b0';
-               $bgpri[7] = '#daaaaa';
-               $bgpri[8] = '#da9090';
-               $bgpri[9] = '#da8a8a';
+               $bgpri[2] = '#dacaca';
+               $bgpri[3] = '#dababa';
+               $bgpri[4] = '#daaaaa';
+               $bgpri[5] = '#da8a8a';
 
                //determine font for this platform
                if (browser_is_windows() && browser_is_ie()) {

Index: html.php
===================================================================
RCS file: /cvsroot/gforge/gforge/www/include/html.php,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- html.php    22 Sep 2004 13:12:42 -0000      1.34
+++ html.php    5 Oct 2004 18:30:18 -0000       1.35
@@ -399,8 +399,8 @@
        $index = (int)$index;
        if ($index<1) {
                $index=1;
-       } else if ($index>9) {
-               $index=9;
+       } else if ($index>5) {
+               $index=5;
        }
        //return "prior$index";
        return $bgpri[$index];
@@ -434,11 +434,7 @@
        <option value="2"<?php if ($checked_val=="2") {echo " 
selected=\"selected\"";} ?>>2</option>
        <option value="3"<?php if ($checked_val=="3") {echo " 
selected=\"selected\"";} ?>>3</option>
        <option value="4"<?php if ($checked_val=="4") {echo " 
selected=\"selected\"";} ?>>4</option>
-       <option value="5"<?php if ($checked_val=="5") {echo " 
selected=\"selected\"";} ?>>5 - <?php echo 
$Language->getText('include_html','priority_medium') ?></option>
-       <option value="6"<?php if ($checked_val=="6") {echo " 
selected=\"selected\"";} ?>>6</option>
-       <option value="7"<?php if ($checked_val=="7") {echo " 
selected=\"selected\"";} ?>>7</option>
-       <option value="8"<?php if ($checked_val=="8") {echo " 
selected=\"selected\"";} ?>>8</option>
-       <option value="9"<?php if ($checked_val=="9") {echo " 
selected=\"selected\"";} ?>>9 - <?php echo 
$Language->getText('include_html','priority_highest') ?></option>
+       <option value="5"<?php if ($checked_val=="5") {echo " 
selected=\"selected\"";} ?>>5 - <?php echo 
$Language->getText('include_html','priority_highest') ?></option>
        </select>
 <?php
 





reply via email to

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