Show
Ignore:
Timestamp:
10/02/07 18:06:56 (1 year ago)
Author:
edsuom
Message:

AsynCluster? work, ez_setup.py update

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • projects/Twisted-Goodies/trunk/examples/foss.tellectual.com_index.py

    r85 r88  
    3030from twisted.python.log import msg as log 
    3131 
    32 from twisted_goodies.simpleserver.http import resources 
     32from twisted_goodies.simpleserver.http.resources import \ 
     33     T, StanResource, DownloadResource, APIDocResource, TracResource 
    3334 
    3435 
     
    7980 
    8081 
    81 class DisabledResource(resources.StanResource): 
     82class DisabledResource(StanResource): 
    8283    addSlash = False 
    8384 
     
    9293 
    9394 
    94 class Resource(resources.StanResource): 
     95class Resource(StanResource): 
    9596    """ 
    9697    A home page for all of the trac project names and paths supplied in the 
     
    104105    def __init__(self, vhostPath): 
    105106        self.vhostPath = vhostPath 
    106         self.apiDocResource = resources.APIDocResource( 
     107        self.apiDocResource = APIDocResource( 
    107108            vhostPath, self.projectURLProto, 
    108109            "file:///var/svn" + self.projectRepoProto) 
    109         self.downloadResource = resources.DownloadResource( 
     110        self.downloadResource = DownloadResource( 
    110111            vhostPath, self.projectURLProto, 
    111112            "svn://foss.eepatents.com" + self.projectRepoProto)             
     
    131132            'mod_python.subprocess_env':\ 
    132133            {'PYTHON_EGG_CACHE': os.path.join(TRAC_DIR, 'python-eggs')}} 
    133         self.tr = resources.TracResource(TRAC_DIR, env) 
     134        self.tr = TracResource(TRAC_DIR, env) 
    134135 
    135136    def _possibleStatic(self, *pathParts):