Changeset 693
- Timestamp:
- 05/29/07 22:24:01 (1 year ago)
- Files:
-
- trunk/examples/docroot/index.php (modified) (1 diff)
- trunk/examples/docroot/json-rpc/index.php (modified) (1 diff)
- trunk/examples/docroot/showsource.php (modified) (1 diff)
- trunk/examples/docroot/websites-memphis/index.php (modified) (2 diffs)
- trunk/examples/docroot/websites-xml/index.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/examples/docroot/index.php
r690 r693 4 4 $examplesSetUp = false; 5 5 } else { 6 $examplesSetUp = true;6 $examplesSetUp = true; 7 7 } 8 8 ?> trunk/examples/docroot/json-rpc/index.php
r681 r693 15 15 $properties = parse_ini_file($propFile); 16 16 } else { 17 $properties = array('yui.local.use' => false);17 $properties = array('yui.local.use' => false); 18 18 } 19 19 ?> trunk/examples/docroot/showsource.php
r681 r693 1 1 <?php 2 2 if (!isset($_GET['example'])) { 3 $example = 'index';3 $example = 'index'; 4 4 } else { 5 $example = $_GET['example'];5 $example = $_GET['example']; 6 6 } 7 7 if (!preg_match('/^[a-z\-0-9]+$/i', $example)) { trunk/examples/docroot/websites-memphis/index.php
r690 r693 15 15 stubClassLoader::load('net.stubbles.websites.stubFrontController', 16 16 'net.stubbles.ipo.interceptors.stubInterceptorXJConfInitializer', 17 'net.stubbles.websites.processors.stubProcessorResolverXJConfFactory',18 'net.stubbles.util.stubRegistryXJConfInitializer'17 'net.stubbles.websites.processors.stubProcessorResolverXJConfFactory', 18 'net.stubbles.util.stubRegistryXJConfInitializer' 19 19 ); 20 20 … … 22 22 { 23 23 public static function main() 24 {25 $controller = new stubFrontController(new stubRegistryXJConfInitializer(),26 new stubInterceptorXJConfInitializer(),27 new stubProcessorResolverXJConfFactory());28 $controller->process();24 { 25 $controller = new stubFrontController(new stubRegistryXJConfInitializer(), 26 new stubInterceptorXJConfInitializer(), 27 new stubProcessorResolverXJConfFactory()); 28 $controller->process(); 29 29 } 30 30 } trunk/examples/docroot/websites-xml/index.php
r681 r693 6 6 stubClassLoader::load('net.stubbles.websites.stubFrontController', 7 7 'net.stubbles.ipo.interceptors.stubInterceptorXJConfInitializer', 8 'net.stubbles.websites.processors.stubProcessorResolverXJConfFactory',9 'net.stubbles.util.stubRegistryXJConfInitializer'8 'net.stubbles.websites.processors.stubProcessorResolverXJConfFactory', 9 'net.stubbles.util.stubRegistryXJConfInitializer' 10 10 ); 11 11 … … 13 13 { 14 14 public static function main() 15 {16 $controller = new stubFrontController(new stubRegistryXJConfInitializer(),17 new stubInterceptorXJConfInitializer(),18 new stubProcessorResolverXJConfFactory());19 $controller->process();15 { 16 $controller = new stubFrontController(new stubRegistryXJConfInitializer(), 17 new stubInterceptorXJConfInitializer(), 18 new stubProcessorResolverXJConfFactory()); 19 $controller->process(); 20 20 } 21 21 }
