Changeset 693

Show
Ignore:
Timestamp:
05/29/07 22:24:01 (1 year ago)
Author:
schst
Message:

Removed tabs

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/examples/docroot/index.php

    r690 r693  
    44    $examplesSetUp = false; 
    55} else { 
    6    $examplesSetUp = true; 
     6    $examplesSetUp = true; 
    77} 
    88?> 
  • trunk/examples/docroot/json-rpc/index.php

    r681 r693  
    1515    $properties = parse_ini_file($propFile); 
    1616} else { 
    17    $properties = array('yui.local.use' => false); 
     17    $properties = array('yui.local.use' => false); 
    1818} 
    1919?> 
  • trunk/examples/docroot/showsource.php

    r681 r693  
    11<?php 
    22if (!isset($_GET['example'])) { 
    3    $example = 'index'; 
     3    $example = 'index'; 
    44} else { 
    5    $example = $_GET['example']; 
     5    $example = $_GET['example']; 
    66} 
    77if (!preg_match('/^[a-z\-0-9]+$/i', $example)) { 
  • trunk/examples/docroot/websites-memphis/index.php

    r690 r693  
    1515stubClassLoader::load('net.stubbles.websites.stubFrontController', 
    1616                      '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' 
    1919); 
    2020 
     
    2222{ 
    2323    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(); 
    2929    } 
    3030} 
  • trunk/examples/docroot/websites-xml/index.php

    r681 r693  
    66stubClassLoader::load('net.stubbles.websites.stubFrontController', 
    77                      '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' 
    1010); 
    1111 
     
    1313{ 
    1414    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(); 
    2020    } 
    2121}