Changeset 1221
- Timestamp:
- 01/11/08 16:33:07 (7 months ago)
- Files:
-
- trunk/src/main/php/org/stubbles/examples/events/Auth.php (modified) (1 diff)
- trunk/src/main/php/org/stubbles/examples/events/BlackList.php (modified) (1 diff)
- trunk/src/main/php/org/stubbles/examples/events/UserLoginLogging.php (modified) (1 diff)
- trunk/src/main/php/org/stubbles/examples/pageelements/CurrentTimeXMLPageElement.php (modified) (1 diff)
- trunk/src/main/php/org/stubbles/examples/pageelements/Shop.php (modified) (1 diff)
- trunk/src/main/php/org/stubbles/examples/pageelements/TestElementWithInjectedResource.php (modified) (1 diff)
- trunk/src/main/php/org/stubbles/examples/pageelements/TestShopPageElement.php (modified) (1 diff)
- trunk/src/main/php/org/stubbles/examples/pageelements/TestXMLPageElement.php (modified) (1 diff)
- trunk/src/main/php/org/stubbles/examples/resources/MyResource.php (modified) (1 diff)
- trunk/src/main/php/org/stubbles/examples/resources/MyResourceImpl.php (modified) (1 diff)
- trunk/src/main/php/org/stubbles/phing/tasks/stubGenerateJsonRpcProxiesTask.php (modified) (1 diff)
- trunk/src/main/php/org/stubbles/test/BarProcessor.php (modified) (1 diff)
- trunk/src/main/php/org/stubbles/test/FooProcessor.php (modified) (1 diff)
- trunk/src/main/php/org/stubbles/test/README (modified) (1 diff)
- trunk/src/main/php/org/stubbles/test/TestClassLoading.php (modified) (2 diffs)
- trunk/src/main/php/org/stubbles/test/TestLogData.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/org/stubbles/examples/events/Auth.php
r751 r1221 7 7 * @subpackage events 8 8 */ 9 stubClassLoader::load('net .stubbles.events.stubEventDispatcher');9 stubClassLoader::load('net::stubbles::events::stubEventDispatcher'); 10 10 /** 11 11 * Very simple authentication class used in the events example. trunk/src/main/php/org/stubbles/examples/events/BlackList.php
r778 r1221 7 7 * @subpackage events 8 8 */ 9 stubClassLoader::load('net .stubbles.events.stubEventListener');9 stubClassLoader::load('net::stubbles::events::stubEventListener'); 10 10 /** 11 11 * Logging class for the onLogin event used in the events example. trunk/src/main/php/org/stubbles/examples/events/UserLoginLogging.php
r778 r1221 7 7 * @subpackage events 8 8 */ 9 stubClassLoader::load('net .stubbles.events.stubEventListener');9 stubClassLoader::load('net::stubbles::events::stubEventListener'); 10 10 /** 11 11 * Logging class for the onLogin event used in the events example. trunk/src/main/php/org/stubbles/examples/pageelements/CurrentTimeXMLPageElement.php
r1110 r1221 7 7 * @subpackage pageelements 8 8 */ 9 stubClassLoader::load('net .stubbles.websites.stubAbstractPageElement',10 'net .stubbles.websites.xml.stubXMLPageElement'9 stubClassLoader::load('net::stubbles::websites::stubAbstractPageElement', 10 'net::stubbles::websites::xml::stubXMLPageElement' 11 11 ); 12 12 /** trunk/src/main/php/org/stubbles/examples/pageelements/Shop.php
r1075 r1221 7 7 * @subpackage pageelements 8 8 */ 9 stubClassLoader::load('net .stubbles.util.net.http.stubHTTPURL',10 'net .stubbles.lang.exceptions.stubIllegalArgumentException'9 stubClassLoader::load('net::stubbles::util::net::http::stubHTTPURL', 10 'net::stubbles::lang::exceptions::stubIllegalArgumentException' 11 11 ); 12 12 /** trunk/src/main/php/org/stubbles/examples/pageelements/TestElementWithInjectedResource.php
r1156 r1221 7 7 * @subpackage pageelements 8 8 */ 9 stubClassLoader::load('net .stubbles.websites.stubAbstractPageElement',10 'net .stubbles.websites.xml.stubXMLPageElement',11 'org .stubbles.examples.resources.MyResource'9 stubClassLoader::load('net::stubbles::websites::stubAbstractPageElement', 10 'net::stubbles::websites::xml::stubXMLPageElement', 11 'org::stubbles::examples::resources::MyResource' 12 12 ); 13 13 /** trunk/src/main/php/org/stubbles/examples/pageelements/TestShopPageElement.php
r1110 r1221 9 9 require_once('Shop.php'); 10 10 11 stubClassLoader::load('net .stubbles.websites.stubAbstractPageElement',12 'net .stubbles.websites.xml.stubXMLPageElement',13 'net .stubbles.util.validators.stubPassThruValidator'11 stubClassLoader::load('net::stubbles::websites::stubAbstractPageElement', 12 'net::stubbles::websites::xml::stubXMLPageElement', 13 'net::stubbles::util::validators::stubPassThruValidator' 14 14 ); 15 15 /** trunk/src/main/php/org/stubbles/examples/pageelements/TestXMLPageElement.php
r1110 r1221 7 7 * @subpackage pageelements 8 8 */ 9 stubClassLoader::load('net .stubbles.websites.stubAbstractPageElement',10 'net .stubbles.websites.xml.stubXMLPageElement'9 stubClassLoader::load('net::stubbles::websites::stubAbstractPageElement', 10 'net::stubbles::websites::xml::stubXMLPageElement' 11 11 ); 12 12 /** trunk/src/main/php/org/stubbles/examples/resources/MyResource.php
r1161 r1221 7 7 * @subpackage resources 8 8 */ 9 stubClassLoader::load('net .stubbles.ipo.session.resourcemanager.stubSessionResource');9 stubClassLoader::load('net::stubbles::ipo::session::resourcemanager::stubSessionResource'); 10 10 /** 11 11 * Example resource interface. trunk/src/main/php/org/stubbles/examples/resources/MyResourceImpl.php
r1161 r1221 7 7 * @subpackage resources 8 8 */ 9 stubClassLoader::load('net .stubbles.ipo.session.resourcemanager.stubSessionResource');9 stubClassLoader::load('net::stubbles::ipo::session::resourcemanager::stubSessionResource'); 10 10 /** 11 11 * Example resource implementation. trunk/src/main/php/org/stubbles/phing/tasks/stubGenerateJsonRpcProxiesTask.php
r1165 r1221 84 84 public function main() 85 85 { 86 stubClassLoader::load('net .stubbles.util.xjconf.xjconf',87 'net .stubbles.util.xjconf.xjconfReal',88 'net .stubbles.service.jsonrpc.util.stubJsonRpcProxyGenerator');86 stubClassLoader::load('net::stubbles::util::xjconf::xjconf', 87 'net::stubbles::util::xjconf::xjconfReal', 88 'net::stubbles::service::jsonrpc::util::stubJsonRpcProxyGenerator'); 89 89 90 90 $xjconf = new stubXJConfFacade(new XJConfFacade(array('__default' => stubXJConfLoader::getInstance()))); trunk/src/main/php/org/stubbles/test/BarProcessor.php
r1157 r1221 7 7 * @subpackage test 8 8 */ 9 stubClassLoader::load('net .stubbles.websites.processors.stubAbstractProcessor');9 stubClassLoader::load('net::stubbles::websites::processors::stubAbstractProcessor'); 10 10 /** 11 11 * A processor used in tests. trunk/src/main/php/org/stubbles/test/FooProcessor.php
r1157 r1221 7 7 * @subpackage test 8 8 */ 9 stubClassLoader::load('net .stubbles.websites.processors.stubAbstractProcessor');9 stubClassLoader::load('net::stubbles::websites::processors::stubAbstractProcessor'); 10 10 /** 11 11 * A processor used in tests. trunk/src/main/php/org/stubbles/test/README
r1157 r1221 1 1 This folder contains classes to be used in tests only, mainly for the test of 2 the net .stubbles.stubClassLoader class.2 the net::stubbles::stubClassLoader class. trunk/src/main/php/org/stubbles/test/TestClassLoading.php
r1157 r1221 1 1 <?php 2 2 /** 3 * Class to net .stubbles.reflection.stubReflectionClass.3 * Class to net::stubbles::reflection::stubReflectionClass. 4 4 * 5 5 * @author Frank Kleine <mikey@stubbles.net> … … 8 8 */ 9 9 /** 10 * Class to test net .stubbles.reflection.stubReflectionClass.10 * Class to test net::stubbles::reflection::stubReflectionClass. 11 11 * 12 12 * @package stubbles trunk/src/main/php/org/stubbles/test/TestLogData.php
r1157 r1221 1 1 <?php 2 2 /** 3 * Class to test net .stubbles.util.log.stubLogDataFactory.3 * Class to test net::stubbles::util::log::stubLogDataFactory. 4 4 * 5 5 * @author Frank Kleine <mikey@stubbles.net> … … 9 9 stubClassLoader::load('net.stubbles.util.log.stubBaseLogData'); 10 10 /** 11 * Class to test net .stubbles.util.log.stubLogDataFactory.11 * Class to test net::stubbles::util::log::stubLogDataFactory. 12 12 * 13 13 * @package stubbles
