From b593eae291b944496caf21c0d0b61870f5563a93 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Mon, 30 Mar 2009 07:11:02 +0000 Subject: [PATCH] News updated, typo fixed in method name --- application/hub/class_ApplicationHelper.php | 4 ++-- application/hub/init.php | 2 +- application/hub/main/nodes/class_BaseHubNode.php | 4 ++-- docs/NEWS | 5 +++++ 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/application/hub/class_ApplicationHelper.php b/application/hub/class_ApplicationHelper.php index 9d6f7bb43..2cd1081dc 100644 --- a/application/hub/class_ApplicationHelper.php +++ b/application/hub/class_ApplicationHelper.php @@ -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 diff --git a/application/hub/init.php b/application/hub/init.php index d9db3d863..7b899fd96 100644 --- a/application/hub/init.php +++ b/application/hub/init.php @@ -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] ?> diff --git a/application/hub/main/nodes/class_BaseHubNode.php b/application/hub/main/nodes/class_BaseHubNode.php index 7229deab6..69426d924 100644 --- a/application/hub/main/nodes/class_BaseHubNode.php +++ b/application/hub/main/nodes/class_BaseHubNode.php @@ -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'); diff --git a/docs/NEWS b/docs/NEWS index e3f49f058..b41180a2f 100644 --- 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! :-) -- 2.39.5