c49855117e
- fix all the known issues related to threading => the applet now works without having to move the pointer over it Entropy/Spritz: - fine tune the UGC update function thread timer git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@2650 cd1c1023-2f26-0410-ae45-c471fc1f0318
34 lines
854 B
Python
Executable File
34 lines
854 B
Python
Executable File
#!/usr/bin/python
|
|
#
|
|
# This file is a portion of the Red Hat Network Panel Applet
|
|
#
|
|
# Copyright (C) 1999-2002 Red Hat, Inc. All Rights Reserved.
|
|
# Distributed under GPL version 2.
|
|
#
|
|
# $Id: applet.py,v 1.10 2003/09/15 15:07:19 veillard Exp $
|
|
|
|
import sys, os, time, gtk, gobject
|
|
import signal
|
|
sys.path.insert(0,'/usr/lib/entropy/client')
|
|
sys.path.insert(0,'/usr/lib/entropy/libraries')
|
|
sys.path.insert(0,'/usr/lib/entropy/spritz')
|
|
sys.path.insert(0,'../../client')
|
|
sys.path.insert(0,'../../libraries')
|
|
sys.path.insert(0,'../../spritz/src')
|
|
sys.path.insert(0,'../')
|
|
sys.argv.append('--no-pid-handling')
|
|
|
|
import etp_applet
|
|
|
|
def main():
|
|
signal.signal(signal.SIGINT, signal.SIG_DFL)
|
|
applet = etp_applet.rhnApplet()
|
|
gobject.threads_init()
|
|
gtk.gdk.threads_enter()
|
|
gtk.main()
|
|
gtk.gdk.threads_leave()
|
|
|
|
if __name__ == "__main__":
|
|
main()
|
|
|