Changeset 989

Show
Ignore:
Timestamp:
03/08/06 12:27:06 (7 years ago)
Author:
max-horvath
Message:

"2006-03-08 Max Horvath <max.horvath@…>

  • updated source to generate a clean PHPdoc output
  • updated PHPdoc generating script"
Location:
trunk/wifidog-auth
Files:
7 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/CHANGELOG

    r988 r989  
    22        * fixed small bug where clicking on the start button at the portal page 
    33          didn't open the wifidog portal, but the requested page 
     4        * updated source to generate a clean PHPdoc output 
     5        * updated PHPdoc generating script 
    46 
    572006-03-07 Max Horváth <max.horvath@maxspot.de> 
  • trunk/wifidog-auth/doc/createDoc.sh

    r910 r989  
    1010#   pear install PhpDocumentor-beta 
    1111# - 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! 
    1215 
    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:default 
     16phpdoc -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  
    4646 * @link       http://www.wifidog.org/ 
    4747 */ 
     48 
     49/** 
     50 * Load required files 
     51 */ 
    4852require_once ('../include/path_defines_base.php'); 
    4953 
  • trunk/wifidog-auth/wifidog/classes/Server.php

    r974 r989  
    429429     * @return bool True on success, false on failure 
    430430     * 
    431      * @access puhlic 
     431     * @access public 
    432432     */ 
    433433        public function setName($value) 
     
    467467     * @return bool True on success, false on failure 
    468468     * 
    469      * @access puhlic 
     469     * @access public 
    470470     */ 
    471471        public function setCreationDate($value) 
  • trunk/wifidog-auth/wifidog/classes/Statistics.php

    r974 r989  
    4444 
    4545/** 
     46 * Load required files 
     47 */ 
     48require_once('include/common.php'); 
     49 
     50/** 
    4651 * Gives various statistics about the status of the network or of a specific node 
    4752 * 
     
    5156 * @copyright  2004-2006 Benoit Gregoire, Technologies Coeus inc. 
    5257 */ 
    53  
    54  require_once('include/common.php'); 
    5558class Statistics 
    5659{ 
  • trunk/wifidog-auth/wifidog/include/common.php

    r986 r989  
    8686if (Server::getCurrentServer(true) != null) { 
    8787    if (Server::getCurrentServer(true)->isSSLAvailable()) { 
     88        /** 
     89         * @ignore 
     90         */ 
    8891        define("SSL_AVAILABLE", true); 
    8992    } else { 
     93        /** 
     94         * @ignore 
     95         */ 
    9096        define("SSL_AVAILABLE", false); 
    9197    } 
  • trunk/wifidog-auth/wifidog/include/path_defines_base.php

    r938 r989  
    111111 
    112112if (!defined('DOCUMENT_ROOT')) { 
     113    /** 
     114     * Set detected document root 
     115     */ 
    113116    define('DOCUMENT_ROOT', substr($_SERVER['SCRIPT_FILENAME'], 0, -strlen($_SERVER['PHP_SELF']))); 
    114117}