Changeset 1341

Show
Ignore:
Timestamp:
03/31/08 19:26:59 (6 months ago)
Author:
networkfusion
Message:

* Minor install script improvements, including making changelog accessible

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wifidog-auth/CHANGELOG

    r1339 r1341  
    11# $Id$ 
     22008-3-31 Robin Jones 
     3        * Minor install script improvements, including making changelog accessible and colour in the permissions tables 
     4 
    252008-03-21 Benoit GrĂ©goire  <bock@step.polymtl.ca> 
    36        * generic_object_admin.php (and others):  Fix bug reported by  Jerry DeFoe (ProfileTemplates couldn't be created) + some UI tweaks. 
  • trunk/wifidog-auth/wifidog/install.php

    r1333 r1341  
    176176        </div> 
    177177        <div id="left_area_bottom"> 
    178             <p><a href="../CHANGELOG">Change Log</a><BR> 
     178               <p><A HREF="#" ONCLICK="javascript: document.myform.page.value='changelog'; document.myform.submit();">Change Log</A><BR> 
    179179            <a href="http://dev.wifidog.org/report/10">Known issues</a></p> 
    180180        </div> 
     
    381381switch ($page) { 
    382382    case 'Permissions' : 
    383         print "<h1>Permissions</h1>"; 
     383        print "<h1>Folder Permissions</h1>"; 
    384384 
    385385        if (function_exists(posix_getpwuid)) { 
     
    416416            print "<tr><td>$dir</td>"; 
    417417            if (!file_exists(WIFIDOG_ABS_FILE_PATH . "$dir")) { 
    418                 print "<TD COLSPAN=\"2\" STYLE=\"text-align:center;\">Missing</td></tr>\n"; 
     418                print "<TD COLSPAN=\"2\" STYLE=\"text-align:center; background:red;\">Missing</td></tr>\n"; 
    419419                $cmd_mkdir .= WIFIDOG_ABS_FILE_PATH . "$dir "; 
    420420                $cmd_chown .= WIFIDOG_ABS_FILE_PATH . "$dir "; 
     
    437437 
    438438            if (is_writable(WIFIDOG_ABS_FILE_PATH . "$dir")) { 
    439                 print "<td>YES</td>"; 
     439                print "<td STYLE='background:lime;'>YES</td>"; 
    440440            } else { 
    441                 print "<td>NO</td>"; 
     441                print "<td STYLE='background:red;'>NO</td>"; 
    442442                $cmd_chown .= WIFIDOG_ABS_FILE_PATH . "$dir "; 
    443443                $error = 1; 
     
    10191019 
    10201020                ########################################### 
     1021 
     1022 
     1023    case 'changelog' : 
     1024        echo "<h1>Change log</h1>"; 
     1025 
     1026print"<pre>"; 
     1027        include WIFIDOG_ABS_FILE_PATH . '../CHANGELOG'; 
     1028print"</pre>"; 
     1029 
     1030        navigation(array ( 
     1031        array ( 
     1032                "title" => "Back", 
     1033                "page" => "Welcome" 
     1034                ), 
     1035               )); 
     1036               break; 
     1037                ########################################### 
     1038                 
    10211039    default : 
    10221040        $WIFIDOG_VERSION = $configArray['WIFIDOG_VERSION'];