Changeset 409

Show
Ignore:
Timestamp:
10/14/08 12:05:53 (3 months ago)
Author:
johnbywater
Message:

Fixed missing import, broken after-update path.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/setup.py

    r406 r409  
    11from setuptools import setup, find_packages 
    22 
    3 import django        # not served from cheeseshop 
    4 import mx.DateTime   # not served from cheeseshop 
     3#import django        # not served from cheeseshop 
     4#import mx.DateTime   # not served from cheeseshop 
    55 
    66import sys 
  • trunk/src/dm/apache/config.py

    r254 r409  
    44from dm.dictionarywords import APACHE_CONFIG_PATH 
    55from dm.environment import SystemEnvironment 
     6import commands 
    67 
    78class ApacheConfigBuilder(object): 
  • trunk/src/dm/view/registry.py

    r401 r409  
    385385    def defaultPostManipulateLocation(self): 
    386386        locationPath = '/'+ self.registryPath +'/' 
    387         locationPath += str(self.domainObject.getRegisterKeyValue()) +'/' 
    388387        return locationPath 
    389388