Changeset 285
- Timestamp:
- 08/11/06 13:41:13 (2 years ago)
- Files:
-
- z3wingdbg/trunk/TODO.txt (modified) (1 diff)
- z3wingdbg/trunk/configuration.py (modified) (1 diff)
- z3wingdbg/trunk/interfaces.py (modified) (1 diff)
- z3wingdbg/trunk/wingdebugservice.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
z3wingdbg/trunk/TODO.txt
r283 r285 10 10 11 11 - Use custom permissions 12 - Implement auto-connect13 12 - Implement auto-reconnect 14 13 - Implement auto-start z3wingdbg/trunk/configuration.py
r239 r285 25 25 26 26 serverType = u'http' 27 28 autoConnect = True 27 29 28 30 def ensureConfiguration(root_folder, serverType, factory, z3wingdbg/trunk/interfaces.py
r279 r285 128 128 vocabulary=u'z3wingdbg.servertypes') 129 129 130 autoConnect = schema.Bool( 131 title=_(u'Auto-connect IDE'), 132 description=_(u'Automatically try to connect to the IDE when the ' 133 u'debug server is started'), 134 default=True) 135 130 136 class IDebugServerConfiguration(interface.Interface): 131 137 """Debug server configuration""" z3wingdbg/trunk/wingdebugservice.py
r282 r285 55 55 56 56 self.server = serverFactory(serverconfig, self.debugger) 57 58 if config.autoConnect: 59 self.connectIDE() 57 60 58 61 def stopDebugServer(self):
