Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r256 r264 6 6 * Don't clean out status labels when restarting server 7 7 * Don't check for system compatibility of Libnotify 8 * C leaning of the code to try to be at least more compatible with PEP-88 * Code cleanup towards PEP-8 compliance 9 9 * Simplified and improved Makefile 10 10 -
trunk/config.py
r260 r264 286 286 287 287 self.config_file = path 288 -
trunk/error.py
r236 r264 21 21 # $Id$ 22 22 23 """ Itaka e rror handling exception definitions """23 """ Itaka exceptions """ 24 24 25 25 class ItakaError(Exception): 26 26 """ 27 Base class for all Itaka Errors27 Base class for all Itaka errors 28 28 """ 29 29 … … 48 48 return repr(self.message) 49 49 50 50 51 class ItakaServerError(ItakaError): 51 52 """ … … 53 54 """ 54 55 pass 56 55 57 56 58 class ItakaServerErrorCannotListen(ItakaServerError): … … 60 62 pass 61 63 64 62 65 class ItakaScreenshotError(ItakaError): 63 66 """ … … 65 68 """ 66 69 pass 70 67 71 68 72 class ItakaScreenshotErrorWmHints(ItakaScreenshotError): … … 72 76 pass 73 77 78 74 79 class ItakaScreenshotErrorActiveDesktop(ItakaScreenshotError): 75 80 """ … … 78 83 pass 79 84 85 80 86 class ItakaSaveScreenshotError(ItakaScreenshotError): 81 87 """ … … 83 89 """ 84 90 pass 91 -
trunk/itaka.py
r256 r264 110 110 traceback.print_exc() 111 111 sys.exit(1) 112 -
trunk/screenshot.py
r241 r264 173 173 174 174 return self.shot_file 175 -
trunk/server.py
r261 r264 514 514 self.request.setHeader('Connection', 'close') 515 515 return self.data 516 -
trunk/uigtk.py
r263 r264 1345 1345 1346 1346 self.iagotimer = gobject.timeout_add(60000, self._literal_time_difference, time) 1347
Note: See TracChangeset
for help on using the changeset viewer.

