Show
Ignore:
Timestamp:
12/26/05 17:55:29 (7 years ago)
Author:
fproulx
Message:

2005-12-26 Fran�ois Proulx <francois.proulx@…>

  • Tiny modifications to config.php
  • Reinserted the deprecated defines, created errors on my system
  • Fully translated FormSelectGenerator? class, Locale
  • Added comments to Utils, Locale etc..
  • Fully tested installation from scratch using blank database with installation script
  • Improved installation script a bit
  • Synched SQL for CVS schema 29 --> 33
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/wifidog/config.php

    r866 r872  
    174174 * ============================= 
    175175 * 
    176  * Define the locales supported by your server. 
    177  * 
    178  * Due to different 
     176 * Define the list of locales you want to support. 
     177 * English, French and German are supported. 
     178 *  
     179 * See below examples 
    179180 */ 
    180181$AVAIL_LOCALE_ARRAY = array('fr' => 'Français', 
     
    183184 
    184185/** 
    185  * A lot of linux distributions use locales like this: 
     186 * A lot of linux distributions (Debian, BSD and Mac OS X) use locales like this: 
    186187 */ 
    187188//$AVAIL_LOCALE_ARRAY = array('fr_CA' => 'Français', 
     
    190191 
    191192/** 
    192  * Other linux distributions use locales like this: 
     193 * Other linux distributions  use locales like this: 
    193194 */ 
    194195//$AVAIL_LOCALE_ARRAY = array('fr_CA.UTF8' => 'Français', 
     
    240241 * Enable Google Maps mapping using "hotspots_map.php". 
    241242 */ 
    242 define('GMAPS_HOTSPOTS_MAP_ENABLED', false); 
     243define('GMAPS_HOTSPOTS_MAP_ENABLED', true); 
    243244 
    244245/** 
     
    248249 * In order to use the Google API you need to register your domain at Google and 
    249250 * enter the given API key. 
     251 *  
     252 * Sign up for an API key here 
     253 * http://www.google.com/apis/maps/ 
    250254 */ 
    251255define('GMAPS_PUBLIC_API_KEY', 'ENTER_YOUR_KEY_HERE'); 
     
    275279 * If you want to enable XSLT support for the Hotspot status page enable this 
    276280 * value. 
    277  */ 
    278 define('XSLT_SUPPORT', false); 
     281 *  
     282 * Enabling it will let you you display hostpot status in any format. 
     283 * http://server_ip/hotspot_status.php?format=XML&xslt=http://xslt_server/xslt/wifidog_status.xsl 
     284 */ 
     285define('XSLT_SUPPORT', true); 
    279286 
    280287/********************************************************************\ 
     
    346353 */ 
    347354define('PAGE_HEADER_NODE', 'header.html'); 
    348  
    349 /** 
    350  * @deprecated since 2005-04-19 
    351  */ 
     355define('PAGE_HEADER_NAME', 'header.html'); 
    352356define('PAGE_FOOTER_NODE', 'footer.html'); 
    353  
    354 /** 
    355  * @deprecated since 2005-04-19 
    356  */ 
     357define('PAGE_FOOTER_NAME', 'footer.html'); 
    357358define('PORTAL_PAGE_NAME', 'portal.html'); 
    358359