home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / system-config-printer / troubleshoot / ErrorLogParse.py < prev    next >
Encoding:
Python Source  |  2009-05-05  |  1.9 KB  |  57 lines

  1. #!/usr/bin/env python
  2.  
  3. ## Printing troubleshooter
  4.  
  5. ## Copyright (C) 2008 Red Hat, Inc.
  6. ## Copyright (C) 2008 Tim Waugh <twaugh@redhat.com>
  7.  
  8. ## This program is free software; you can redistribute it and/or modify
  9. ## it under the terms of the GNU General Public License as published by
  10. ## the Free Software Foundation; either version 2 of the License, or
  11. ## (at your option) any later version.
  12.  
  13. ## This program is distributed in the hope that it will be useful,
  14. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. ## GNU General Public License for more details.
  17.  
  18. ## You should have received a copy of the GNU General Public License
  19. ## along with this program; if not, write to the Free Software
  20. ## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. from base import *
  23. class ErrorLogParse(Question):
  24.  
  25.     ## This could be a LOT smarter.
  26.  
  27.     def __init__ (self, troubleshooter):
  28.         Question.__init__ (self, troubleshooter, "Error log parse")
  29.         page = self.initial_vbox (_("Error log messages"),
  30.                                   _("There are messages in the error log."))
  31.         sw = gtk.ScrolledWindow ()
  32.         textview = gtk.TextView ()
  33.         textview.set_editable (False)
  34.         sw.add (textview)
  35.         page.pack_start (sw)
  36.         self.buffer = textview.get_buffer ()
  37.         troubleshooter.new_page (page, self)
  38.  
  39.     def display (self):
  40.         answers = self.troubleshooter.answers
  41.         try:
  42.             error_log = answers['error_log']
  43.         except KeyError:
  44.             return False
  45.  
  46.         display = False
  47.         for line in error_log:
  48.             if line[0] == 'E':
  49.                 display = True
  50.                 break
  51.  
  52.         if display:
  53.             self.buffer.set_text (reduce (lambda x, y: x + '\n' + y, 
  54.                                           error_log))
  55.  
  56.         return display
  57.