Added redirect_err() for easier debugging.
[drlaunch] / src / drlaunch_widget.py
1 #!/usr/bin/env python
2 # coding=UTF-8
3
4 # Copyright (C) 2010 Stefanos Harhalakis
5 #
6 # This file is part of wifieye.
7 #
8 # wifieye 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 3 of the License, or
11 # (at your option) any later version.
12 #
13 # wifieye 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 wifieye.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 # $Id: 0.py 2265 2010-02-21 19:16:26Z v13 $
22
23 __version__ = "$Id: 0.py 2265 2010-02-21 19:16:26Z v13 $"
24
25 from drlaunch import widget
26
27 class DrlaunchPlugin(widget.DrlaunchPlugin):
28     pass
29
30 def redirect_err():
31     import sys
32     import time
33
34     print "Opening /tmp/drlaunch.log"
35     f=open('/tmp/drlaunch.log', 'at', buffering=1)
36     sys.stdout=f
37     sys.stderr=f
38     print "Log open:", time.ctime()
39
40 hd_plugin_type = DrlaunchPlugin
41
42 if __name__=="__main__":
43     import gobject
44     import gtk
45
46     gobject.type_register(hd_plugin_type)
47     obj=gobject.new(hd_plugin_type, plugin_id="plugin_id")
48     obj.show_all()
49     gtk.main()
50
51
52
53 # vim: set ts=8 sts=4 sw=4 noet formatoptions=r ai nocindent:
54