Show
Ignore:
Timestamp:
05/10/06 14:56:02 (7 years ago)
Author:
benoitg
Message:
  • Working (if slightly basic) theme manager. You can pick the theme in the network configuration. To add your own theme, read wifidog/media/network_theme_packs/README.txt
  • Cleanup and document the wifidog directory structure
  • Minor HTML corrections for content types
  • Completely rip out the old local_content system, and a bunch of obsolete defines and config variables.
  • Get rid of PHP generated stylesheets
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/wifidog/include/common.php

    r1018 r1031  
    3636/** 
    3737 * @package    WiFiDogAuthServer 
    38  * @author     Benoit Gregoire <bock@step.polymtl.ca> 
    39  * @copyright  2004-2006 Benoit Gregoire, Technologies Coeus inc. 
     38 * @author     Benoit Grégoire <bock@step.polymtl.ca> 
     39 * @copyright  2004-2006 Benoit Grégoire, Technologies Coeus inc. 
    4040 * @version    Subversion $Id$ 
    4141 * @link       http://www.wifidog.org/ 
     
    180180} 
    181181 
    182 /** Get the url from the local content_specific folder if the file exists, and from the default content folder otherwise */ 
    183 function find_local_content_url($filename) { 
    184     //echo "find_local_content_url():  Looking for:                  ".NODE_CONTENT_PHP_RELATIVE_PATH.$filename."<br>\n"; 
    185     if (is_file(NODE_CONTENT_PHP_RELATIVE_PATH.$filename)) { 
    186         $retval = NODE_CONTENT_URL.$filename; 
    187     } 
    188     else { 
    189         $retval = DEFAULT_CONTENT_URL.$filename; 
    190     } 
    191     //echo "find_local_content_url():  Returned:                  $retval<br>\n"; 
    192     return $retval; 
    193 } 
    194  
    195182/** Return a 32 byte guid valid for database use */ 
    196183function get_guid() {