Show
Ignore:
Timestamp:
06/19/08 11:00:48 (3 months ago)
Author:
mikey
Message:

make multi-project structure default

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/websites/processors/stubAbstractProcessorResolver.php

    r1447 r1632  
    4646         
    4747        $this->configure($processor); 
    48         $this->handlePageBasedProcessor($processor); 
    4948        return $processor; 
    5049    } 
     
    6867 
    6968    /** 
    70      * helper method to handle page based processors 
     69     * method to handle page based processors 
    7170     * 
    7271     * @param   stubProcessor  $processor 
     
    7473     * @throws  stubRuntimeException 
    7574     */ 
    76     protected function handlePageBasedProcessor(stubProcessor $processor) 
     75    public function selectPage(stubProcessor $processor) 
    7776    { 
    7877        if (($processor instanceof stubPageBasedProcessor) === false) { 
  • trunk/src/main/php/net/stubbles/websites/processors/stubProcessorResolver.php

    r1445 r1632  
    2929     */ 
    3030    public function resolve(stubRequest $request, stubSession $session, stubResponse $response); 
     31 
     32    /** 
     33     * method to handle page based processors 
     34     * 
     35     * @param   stubProcessor  $processor 
     36     * @throws  stubConfigurationException 
     37     * @throws  stubRuntimeException 
     38     */ 
     39    public function selectPage(stubProcessor $processor); 
    3140} 
    3241?>