Changeset 283
- Timestamp:
- 08/11/06 12:37:33 (2 years ago)
- Files:
-
- z3wingdbg/trunk/TODO.txt (modified) (1 diff)
- z3wingdbg/trunk/browser/debuggercontrol.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
z3wingdbg/trunk/TODO.txt
r281 r283 28 28 -- 29 29 30 - Actions need to deal with corner cases still (error handling)31 30 - Documentation in the contextual help system 32 31 - Add a configuration view to the wing debugger management views z3wingdbg/trunk/browser/debuggercontrol.py
r280 r283 5 5 6 6 from z3wingdbg.interfaces import IWingDebuggerVersion, IWingDebugService 7 from z3wingdbg.interfaces import DebugServerStartError, IDEConnectionError 7 8 8 9 _ = MessageFactory('z3wingdbg') … … 65 66 if service.debugServerRunning: 66 67 return _(u'The server is already running') 67 service.startDebugServer() 68 try: 69 service.startDebugServer() 70 except DebugServerStartError, exception: 71 return exception.args[0] 68 72 return _(u'Debugger started') 69 73 … … 77 81 if service.connectedToIDE: 78 82 return _(u'The debugger is already connected to the IDE') 79 service.connectIDE() 83 try: 84 service.connectIDE() 85 except IDEConnectionError, exception: 86 return exception.args[0] 80 87 return _(u'Connected to IDE') 81 88
