]> git.mxchange.org Git - hub.git/commitdiff
News updated, typo fixed in method name
authorRoland Häder <roland@mxchange.org>
Mon, 30 Mar 2009 07:11:02 +0000 (07:11 +0000)
committerRoland Häder <roland@mxchange.org>
Mon, 30 Mar 2009 07:11:02 +0000 (07:11 +0000)
application/hub/class_ApplicationHelper.php
application/hub/init.php
application/hub/main/nodes/class_BaseHubNode.php
docs/NEWS

index 9d6f7bb4350409f870bc6392d0c5e6e13e1fcbef..2cd1081dcb2533d988fc95636590d37e98b0ab2b 100644 (file)
@@ -185,12 +185,12 @@ class ApplicationHelper extends BaseFrameworkSystem implements ManageableApplica
                        die('Node mode ' . $nodeMode . ' is invalid.' . "\n");
                }
 
-               // --------------------- Hub-id aquirement phase ---------------------
+               // --------------------- Hub-id acquirement phase ---------------------
                // Aquire a hub-id. This step generates on first launch anew one and
                // on any later launches it will restore the hub-id from the database.
                // A passed 'nickname=xxx' argument will be used to add some
                // 'personality' to the hub.
-               $nodeInstance->aquireHubId($requestInstance);
+               $nodeInstance->acquireHubId($requestInstance);
 
                // --------------------- Bootstrapping phase ---------------------
                // Try to bootstrap the node and pass the request instance to it for
index d9db3d8632a4174604ef9786f79aa3f937cb283e..7b899fd96845c8ec65d49230a933511bcc878750 100644 (file)
@@ -49,7 +49,7 @@ require($cfg->readConfig('base_path') . "inc/language.php");
 require($cfg->readConfig('base_path') . "inc/database.php");
 
 // Get's our IP address
-$_SERVER['SERVER_ADDR'] = ConsoleTools::aquireSelfIPAddress();
+$_SERVER['SERVER_ADDR'] = ConsoleTools::acquireSelfIPAddress();
 
 // [EOF]
 ?>
index 7229deab6458afd7233a945a3dcb31675332b6e5..69426d924128e2c382371b6810a1c21bc8a0eb3b 100644 (file)
@@ -166,14 +166,14 @@ class BaseHubNode extends BaseFrameworkSystem implements Updateable {
        }
 
        /**
-        * Generic method to aquire a hub-id. On first run this generates a new one
+        * Generic method to acquire a hub-id. On first run this generates a new one
         * based on many pseudo-random data. On any later run, unless the id
         * got not removed from database, it will be restored from the database.
         *
         * @param       $requestInstance        An instance of a Requestable class
         * @return      void
         */
-       public function aquireHubId (Requestable $requestInstance) {
+       public function acquireHubId (Requestable $requestInstance) {
                // Get a wrapper instance
                $wrapperInstance = ObjectFactory::createObjectByConfiguredName('node_info_db_wrapper_class');
 
index e3f49f0583c543ac90d2bf98f8b772a2624d0fea..b41180a2f79c71b8532596562b9a9a3b5495a585 100644 (file)
--- a/docs/NEWS
+++ b/docs/NEWS
@@ -1,6 +1,11 @@
 NEWS
 ====
 
+[2009-03-30]
+------------
+- Classes for all node-modes added. This is still work-in-progress
+  so expect a lot strange output of stubs or partial stubs.
+
 [2008-05-10]
 ------------
 - Initial ArgoUML document added. Don't expect anything big here! :-)