Changeset 342

Show
Ignore:
Timestamp:
09/01/06 12:58:08 (5 years ago)
Author:
mj
Message:

Add remaining fields with defaults to the config implementation

Location:
z3wingdbg/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • z3wingdbg/trunk/TODO.txt

    r339 r342  
    1111---------------- 
    1212 
    13 - Implement connection accepting (no config yet) 
     13- Implement connection accepting 
    1414- Raise exceptions with message ids 
    1515 
  • z3wingdbg/trunk/configuration.py

    r325 r342  
    88 
    99from interfaces import IWingConfiguration, IDebugServerConfiguration 
    10 from interfaces import IWingPathInformation 
     10from interfaces import IWingPathInformation, PWD_PROFILE, PWD_PATH, PWD_MANUAL 
    1111 
    1212class IDebugServerConfigurationContainer(interface.Interface): 
     
    2727    idePort = 50005 
    2828     
    29     attachPort = None 
    30      
    3129    serverType = u'http' 
    3230     
    3331    autoStart = False 
    3432    autoConnect = True 
     33     
     34    attachPort = None 
     35    attachPasswordSource = PWD_PROFILE 
     36    attachPasswordPath = None 
     37    attachPassword = None 
    3538 
    3639def ensureConfiguration(root_folder, serverType, factory,