]> git.mxchange.org Git - shipsimu.git/commitdiff
ToDo tags now all lower-case
authorRoland Häder <roland@mxchange.org>
Sat, 21 Jun 2008 14:44:52 +0000 (14:44 +0000)
committerRoland Häder <roland@mxchange.org>
Sat, 21 Jun 2008 14:44:52 +0000 (14:44 +0000)
17 files changed:
application/ship-simu/main/actions/class_ShipSimuLoginAction.php
application/ship-simu/main/commands/web/class_WebShipsimuGuestLoginCommand.php
application/ship-simu/main/commands/web/class_WebShipsimuProfileCommand.php
application/ship-simu/main/commands/web/class_WebShipsimuRegisterCommand.php
application/ship-simu/main/commands/web/class_WebShipsimuUserLoginCommand.php
application/ship-simu/main/login/class_ShipSimuUserLogin.php
inc/classes/main/commands/web/class_WebLoginAreaCommand.php
inc/classes/main/controller/default/class_WebLoginController.php
inc/classes/main/controller/login/class_WebLoginAreaController.php
inc/classes/main/database/databases/class_LocalFileDatabase.php
inc/classes/main/filter/news/class_NewsProcessFilter.php
inc/classes/main/filter/update/class_UserUpdateFilter.php
inc/classes/main/helper/web/class_WebFormHelper.php
inc/classes/main/response/class_HttpResponse.php
inc/classes/main/rng/class_RandomNumberGenerator.php
inc/classes/main/template/class_TemplateEngine.php
inc/loader/class_ClassLoader.php

index 1611415df8bcce0df4ccd1cc305165a9472e4a0b..2e06eccd3f8b61efa55f61751230a1d8858e1218 100644 (file)
@@ -59,7 +59,7 @@ class ShipSimuLoginAction extends BaseAction implements PerformableAction {
         * @return      void
         */
        public function execute (Requestable $requestInstance, Responseable $responseInstance) {
-               /* @TODO Maybe we need to do something later here */
+               /* @todo Maybe we need to do something later here */
        }
 }
 
index 0ed651a6957e8cdec1452707f6609001d0f8f4fe..e244d1ea6ec017f34ba016165751e2b68700188c 100644 (file)
@@ -117,7 +117,7 @@ class WebShipsimuGuestLoginCommand extends BaseCommand implements Commandable {
                                break;
                }
 
-               /* @TODO Add more filters */
+               /* @todo Add more filters */
                $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('password_verifier_class'));
        }
 }
index 320c1d5de17ddd4303072306485f40f2ef75f675..72ad467fdae051b4ef555db9f4424e2a0a03ad7d 100644 (file)
@@ -127,7 +127,7 @@ class WebShipsimuProfileCommand extends BaseCommand implements Commandable {
                // Add user auth filter (we don't need an update of the user here because it will be redirected)
                $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('user_auth_class'));
 
-               /* @TODO Add some more pre/post filters to the controller */
+               /* @todo Add some more pre/post filters to the controller */
                $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('user_status_class'));
                $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('rules_accepted_class'));
                $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('account_password_class'));
index b8c7b612f7daf9f69ec01ccc80bf6cf5f5cf86f4..d671f8b145355d73d151a3ac96e3997749aae1d5 100644 (file)
@@ -99,7 +99,7 @@ class WebShipsimuRegisterCommand extends BaseCommand implements Commandable {
         * @return      void
         */
        public function addExtraFilters (Controller $controllerInstance, Requestable $requestInstance) {
-               /* @TODO Add some more pre/post filters to the controller */
+               /* @todo Add some more pre/post filters to the controller */
                $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('email_validator_class'));
                $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('username_validator_class'));
                $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('username_is_guest_class'));
index a9d252ef0491735be335504ce43b45e3383f05c6..855f62cc7da47123e615748b2d8c9e3658dc29a2 100644 (file)
@@ -117,7 +117,7 @@ class WebShipsimuUserLoginCommand extends BaseCommand implements Commandable {
                                break;
                }
 
-               /* @TODO Add more filters */
+               /* @todo Add more filters */
                $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('password_verifier_class'));
        }
 }
index 5037bd8c658c31f33c36ea09463bda17e0dbfd9e..64aeaff816313d00497fb1e7987980b33a1ce245 100644 (file)
@@ -118,9 +118,9 @@ class ShipSimuUserLogin extends BaseFrameworkSystem implements LoginableUser {
                        throw new UserPasswordMismatchException(array($this, $userInstance), User::EXCEPTION_USER_PASS_MISMATCH);
                } // END - if
 
-               /* @TODO We need to add something here which will make more than one */
-               /* @TODO guest logins, users who are online but based on the same */
-               /* @TODO user account. */
+               /* @todo We need to add something here which will make more than one */
+               /* @todo guest logins, users who are online but based on the same */
+               /* @todo user account. */
 
                // Now do the real login. This can be cookie- or session-based login
                // which depends on the admins setting then on the user's taste.
index ea647db9697282a6026d7e3318f6e158beb1871c..c6bb77250afd7e5c77430ebe8767a5e8614e8bd7 100644 (file)
@@ -72,7 +72,7 @@ class WebLoginAreaCommand extends BaseCommand implements Commandable {
         * @return      void
         */
        protected function prepareCommand () {
-               /* @TODO Add some stuff here: Some personal data, app/game related data */
+               /* @todo Add some stuff here: Some personal data, app/game related data */
        }
 
        /**
index 0ec8c3bd4ec84404b48a12f62bd63b95a6ce54fe..09a0115469d390c4e64a449d7354dcd7f99c407f 100644 (file)
@@ -52,7 +52,7 @@ class WebLoginController extends BaseController implements Controller {
                // Set the command resolver
                $controllerInstance->setResolverInstance($resolverInstance);
 
-               /* @TODO Add some filters to this controller */
+               /* @todo Add some filters to this controller */
 
                // Return the prepared instance
                return $controllerInstance;
index e14a0eee061cc5a2ce25ab9d36f4f961d1a56239..e5736412a355fa56022652c62bcb3d7ed9db4b8c 100644 (file)
@@ -63,7 +63,7 @@ class WebLoginAreaController extends BaseController implements Controller {
                // News proccess/display-preparation
                $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('news_process_class'));
 
-               /* @TODO: Add some filters to this controller */
+               /* @todo: Add some filters to this controller */
 
                // Return the prepared instance
                return $controllerInstance;
index f9e67a9f5106adddf2efb8269a393532d10eef9f..d7a579a9106255a958f16070a6d33cb5b2c5893c 100644 (file)
@@ -355,7 +355,7 @@ class LocalFileDatabase extends BaseDatabaseFrontend implements DatabaseFrontend
         * @return      void
         */
        public function connectToDatabase () {
-               /* @TODO Do some checks on the database directory and files here */
+               /* @todo Do some checks on the database directory and files here */
        }
 
        /**
index b6be041a851e2de5b0c59580afb1e656e84955a4..1f468fe8c277e371ae4fbe67ac8a3b552bcb2eea 100644 (file)
@@ -60,7 +60,7 @@ class NewsProcessFilter extends BaseFilter implements Filterable {
         * @return      void
         */
        public function execute (Requestable $requestInstance, Responseable $responseInstance) {
-               /* @TODO Unfinished stub, add functionality here */
+               /* @todo Unfinished stub, add functionality here */
        }
 }
 
index 0da323cac086bd2dd486879d4e7a7f42f63846c8..47eee38a4b87d1bc1fd38b94572bc588bb0551ba 100644 (file)
@@ -74,7 +74,7 @@ class UserUpdateFilter extends BaseFrameworkSystem implements Filterable {
                $authInstance = Registry::getRegistry()->getInstance('auth');
                $authInstance->updateAuthData();
 
-               /* @TODO Add more user updates here */
+               /* @todo Add more user updates here */
 
                // Write all updates to the database
                $userInstance->flushUpdates();
index 645740938148c1c736e49b81adf3c82210961829..79de8131d6a120ef53d4b2eeeb86ce1b22daa3d8 100644 (file)
@@ -174,7 +174,7 @@ class WebFormHelper extends BaseHelper {
                                $this->addFormGroup("", "");
                        } // END - if
 
-                       /* @TODO Add some unique PIN here to bypass problems with some browser and/or extensions */
+                       /* @todo Add some unique PIN here to bypass problems with some browser and/or extensions */
                        // Simply close it
                        $this->formOpened = false;
                }
@@ -661,7 +661,7 @@ class WebFormHelper extends BaseHelper {
         * @return      $rulesUpdated   Wether rules has been updated
         */
        public function ifRulesHaveChanged () {
-               /* @TODO Implement check if rules have been changed */
+               /* @todo Implement check if rules have been changed */
                return false;
        }
 
index 7e78b4378e05d22e1aa1185020845248ff0a0e5e..deff1a80269d682542218947759ef73b35c23cdb 100644 (file)
@@ -256,7 +256,7 @@ class HttpResponse extends BaseFrameworkSystem implements Responseable {
 
                // Shall we encrypt the cookie?
                if ($encrypted === true) {
-                       /* @TODO Encryption of cookie data not yet supported */
+                       /* @todo Encryption of cookie data not yet supported */
                } // END - if
 
                // For slow browsers set the cookie array element first
@@ -271,15 +271,15 @@ class HttpResponse extends BaseFrameworkSystem implements Responseable {
                $domain = $this->getConfigInstance()->readConfig('cookie_domain');
 
                setcookie($cookieName, $cookieValue, $expires);
-               /* @TODO Why are these parameters conflicting? */
+               /* @todo Why are these parameters conflicting? */
                //, $path, $domain, (isset($_SERVER['HTTPS']))
                return;
-               /* @TODO This will send only one cookie out, the first one. */
+               /* @todo This will send only one cookie out, the first one. */
 
                // Now construct the full header
                $cookieString = $cookieName . "=" . $cookieValue . "; ";
                $cookieString .= "expires=" . date("D, d-F-Y H:i:s", $expires) . " GMT";
-               /* @TODO Why are these parameters conflicting? */
+               /* @todo Why are these parameters conflicting? */
                // $cookieString .= "; path=".$path."; domain=".$domain;
 
                // Set the cookie as a header
index 2439ffb2c1d614c856ff12745a0aec9aa25a54fb..5decb85f5e804547acf2a1d7f18a628939e5e966 100644 (file)
@@ -113,7 +113,7 @@ class RandomNumberGenerator extends BaseFrameworkSystem {
                $this->fixedSalt = sha1($serverIp . ":" . serialize($this->getDatabaseInstance()->getConnectionData()));
 
                // One-way data we need for "extra-salting" the random number
-               /* @TODO Add site key for stronger salt! */
+               /* @todo Add site key for stronger salt! */
                $this->extraSalt = sha1($this->fixedSalt . ":" . getenv('SERVER_SOFTWARE') . ":" . $this->getConfigInstance()->readConfig('date_key'));
 
                // Get config entry for max salt length
@@ -151,7 +151,7 @@ class RandomNumberGenerator extends BaseFrameworkSystem {
         * @return      $num    Pseudo-random number
         */
        public function randomNumnber ($min, $max) {
-               /* @TODO I had a better random number generator here but now it is somewhere lost :( */
+               /* @todo I had a better random number generator here but now it is somewhere lost :( */
                return mt_rand($min, $max);
        }
 
index a9b45743e2a25578dcc671d7ea1a79a4e2bbe7ff..f2e78dbde38f25e190fbf90fb7ed13e0eec9c2bd 100644 (file)
@@ -788,7 +788,7 @@ class TemplateEngine extends BaseFrameworkSystem implements CompileableTemplate
                                $this->assignVariable($var, $varMatches[3][$key]);
                        } elseif (!empty($varMatches[2][$key])) {
                                // Non-string found so we need some deeper analysis...
-                               /* @TODO Unfinished work or don't die here. */
+                               /* @todo Unfinished work or don't die here. */
                                die("Deeper analysis not yet implemented!");
                        }
 
@@ -992,7 +992,7 @@ class TemplateEngine extends BaseFrameworkSystem implements CompileableTemplate
                        );
 
                        // This loop does remove the backslashes (\) in PHP parameters
-                       /* @TODO Make this some nicer... */
+                       /* @todo Make this some nicer... */
                        while (strpos($eval, "<?") !== false) {
                                // Get left part before "<?"
                                $evalLeft = substr($eval, 0, strpos($eval, "<?"));
index 5f0f2b97f41cedc1448e08036291ce60536a482b..2d36b78a337014782b06d50b8988f34fb24da2a7 100644 (file)
@@ -240,7 +240,7 @@ class ClassLoader {
 
                // If the basePath is false it is invalid
                if ($basePath2 === false) {
-                       /* @TODO: Do not die here. */
+                       /* @todo: Do not die here. */
                        die("Cannot read {$basePath} !");
                } else {
                        // Set base path