Changeset 872 for trunk/wifidog-auth/wifidog/config.php
- Timestamp:
- 12/26/05 17:55:29 (7 years ago)
- Files:
-
- 1 modified
-
trunk/wifidog-auth/wifidog/config.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/wifidog/config.php
r866 r872 174 174 * ============================= 175 175 * 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 179 180 */ 180 181 $AVAIL_LOCALE_ARRAY = array('fr' => 'Français', … … 183 184 184 185 /** 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: 186 187 */ 187 188 //$AVAIL_LOCALE_ARRAY = array('fr_CA' => 'Français', … … 190 191 191 192 /** 192 * Other linux distributions use locales like this:193 * Other linux distributions use locales like this: 193 194 */ 194 195 //$AVAIL_LOCALE_ARRAY = array('fr_CA.UTF8' => 'Français', … … 240 241 * Enable Google Maps mapping using "hotspots_map.php". 241 242 */ 242 define('GMAPS_HOTSPOTS_MAP_ENABLED', false);243 define('GMAPS_HOTSPOTS_MAP_ENABLED', true); 243 244 244 245 /** … … 248 249 * In order to use the Google API you need to register your domain at Google and 249 250 * enter the given API key. 251 * 252 * Sign up for an API key here 253 * http://www.google.com/apis/maps/ 250 254 */ 251 255 define('GMAPS_PUBLIC_API_KEY', 'ENTER_YOUR_KEY_HERE'); … … 275 279 * If you want to enable XSLT support for the Hotspot status page enable this 276 280 * 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 */ 285 define('XSLT_SUPPORT', true); 279 286 280 287 /********************************************************************\ … … 346 353 */ 347 354 define('PAGE_HEADER_NODE', 'header.html'); 348 349 /** 350 * @deprecated since 2005-04-19 351 */ 355 define('PAGE_HEADER_NAME', 'header.html'); 352 356 define('PAGE_FOOTER_NODE', 'footer.html'); 353 354 /** 355 * @deprecated since 2005-04-19 356 */ 357 define('PAGE_FOOTER_NAME', 'footer.html'); 357 358 define('PORTAL_PAGE_NAME', 'portal.html'); 358 359
