Changeset 989
- Timestamp:
- 03/08/06 12:27:06 (7 years ago)
- Location:
- trunk/wifidog-auth
- Files:
-
- 7 modified
-
CHANGELOG (modified) (1 diff)
-
doc/createDoc.sh (modified) (1 diff)
-
wifidog/admin/stats_show_graph.php (modified) (1 diff)
-
wifidog/classes/Server.php (modified) (2 diffs)
-
wifidog/classes/Statistics.php (modified) (2 diffs)
-
wifidog/include/common.php (modified) (1 diff)
-
wifidog/include/path_defines_base.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/CHANGELOG
r988 r989 2 2 * fixed small bug where clicking on the start button at the portal page 3 3 didn't open the wifidog portal, but the requested page 4 * updated source to generate a clean PHPdoc output 5 * updated PHPdoc generating script 4 6 5 7 2006-03-07 Max Horváth <max.horvath@maxspot.de> -
trunk/wifidog-auth/doc/createDoc.sh
r910 r989 10 10 # pear install PhpDocumentor-beta 11 11 # - memory_limit flag in php.ini must be larger than 8 MB (at least 16 MB recommended) 12 # 13 # On systems running newer version of PHP (5.1.x) you'll need to use the CVS version 14 # of PhpDocumentor, currently! 12 15 13 phpdoc - t . -d ../wifidog/,. -i *.html,*.gif,*.jpg,*.png,*.css,*.js,*.sh,*.mo,*.po,*.pl,*.txt,*.xml,README,../wifidog/classes/AbstractDbMySql.php,../wifidog/lib/FCKeditor/,../wifidog/lib/magpie/,../wifidog/lib/Phlickr/,../wifidog/lib/smarty/,../wifidog/local_content/,../wifidog/locale/,../wifidog/tmp/,../local.config.php -pp on -s on -ti "WiFiDog Documentation" -o HTML:frames:default16 phpdoc -dh off -pp on -j off -p off -s on -ti "WiFiDog Documentation" -dn WiFiDogAuthServer -po WiFiDogAuthServer -o HTML:frames:default -t . -d ../wifidog,. -i *.html,*.gif,*.jpg,*.png,*.css,*.js,*.sh,*.mo,*.po,*.pl,*.txt,*.xml,*.tpl,AbstractDbMySql.php,local.config.php,*/FCKeditor/*,*/magpie/*,*/Phlickr/*,*/smarty/*,*/local_content/*,*/locale/*,*/tmp/* -
trunk/wifidog-auth/wifidog/admin/stats_show_graph.php
r942 r989 46 46 * @link http://www.wifidog.org/ 47 47 */ 48 49 /** 50 * Load required files 51 */ 48 52 require_once ('../include/path_defines_base.php'); 49 53 -
trunk/wifidog-auth/wifidog/classes/Server.php
r974 r989 429 429 * @return bool True on success, false on failure 430 430 * 431 * @access pu hlic431 * @access public 432 432 */ 433 433 public function setName($value) … … 467 467 * @return bool True on success, false on failure 468 468 * 469 * @access pu hlic469 * @access public 470 470 */ 471 471 public function setCreationDate($value) -
trunk/wifidog-auth/wifidog/classes/Statistics.php
r974 r989 44 44 45 45 /** 46 * Load required files 47 */ 48 require_once('include/common.php'); 49 50 /** 46 51 * Gives various statistics about the status of the network or of a specific node 47 52 * … … 51 56 * @copyright 2004-2006 Benoit Gregoire, Technologies Coeus inc. 52 57 */ 53 54 require_once('include/common.php');55 58 class Statistics 56 59 { -
trunk/wifidog-auth/wifidog/include/common.php
r986 r989 86 86 if (Server::getCurrentServer(true) != null) { 87 87 if (Server::getCurrentServer(true)->isSSLAvailable()) { 88 /** 89 * @ignore 90 */ 88 91 define("SSL_AVAILABLE", true); 89 92 } else { 93 /** 94 * @ignore 95 */ 90 96 define("SSL_AVAILABLE", false); 91 97 } -
trunk/wifidog-auth/wifidog/include/path_defines_base.php
r938 r989 111 111 112 112 if (!defined('DOCUMENT_ROOT')) { 113 /** 114 * Set detected document root 115 */ 113 116 define('DOCUMENT_ROOT', substr($_SERVER['SCRIPT_FILENAME'], 0, -strlen($_SERVER['PHP_SELF']))); 114 117 }
