Author: ahart
Date: Sun Feb 26 16:55:19 2012
New Revision: 1293867
URL: http://svn.apache.org/viewvc?rev=1293867&view=rev
Log:
resolve OODT-388
Modified:
oodt/trunk/CHANGES.txt
oodt/trunk/balance/etc/skel/index.php
Modified: oodt/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/oodt/trunk/CHANGES.txt?rev=1293867&r1=1293866&r2=1293867&view=diff
==============================================================================
--- oodt/trunk/CHANGES.txt (original)
+++ oodt/trunk/CHANGES.txt Sun Feb 26 16:55:19 2012
@@ -4,6 +4,8 @@ Apache OODT Change Log
Release 0.4: Current Development
--------------------------------------------
+* OODT-388 Clearly indicate location for loading globally-required Balance
modules (ahart)
+
* OODT-379 Fix CAS-CLI help option sorting and added handler initialization
(bfoster)
* OODT-362 Change CmdLineAction names to match their CmdLineOption long option
(bfoster)
Modified: oodt/trunk/balance/etc/skel/index.php
URL:
http://svn.apache.org/viewvc/oodt/trunk/balance/etc/skel/index.php?rev=1293867&r1=1293866&r2=1293867&view=diff
==============================================================================
--- oodt/trunk/balance/etc/skel/index.php (original)
+++ oodt/trunk/balance/etc/skel/index.php Sun Feb 26 16:55:19 2012
@@ -36,6 +36,11 @@ require_once("Org/Apache/Oodt/Balance/Bo
/* Initialize the application with the settings from config.ini *********/
$app = $GLOBALS['app'] = App::Create(parse_ini_file(HOME . '/config.ini'));
+/* Initialize any globally required modules here ************************/
+// Example:
+// To load a module 'foo', located at ./modules/foo, on every request:
+// App::Get()->loadModule('foo');
+
/* Generate and send a response to the browser **************************/
$response = $app->getResponse()->send();