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
require($cfg->readConfig('base_path') . "inc/database.php");
// Get's our IP address
-$_SERVER['SERVER_ADDR'] = ConsoleTools::aquireSelfIPAddress();
+$_SERVER['SERVER_ADDR'] = ConsoleTools::acquireSelfIPAddress();
// [EOF]
?>
}
/**
- * 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');
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! :-)