Changeset 5776
- Timestamp:
- 08/06/10 11:55:37 (3 years ago)
- Location:
- network-scanner/branches/GSoC2010
- Files:
-
- 1 removed
- 2 modified
- 6 copied
-
share/pixmaps/umit/firewall.png (copied) (copied from network-scanner/branches/GSoC2010/share/pixmaps/zion/firewall.png)
-
share/pixmaps/umit/firewall.svg (copied) (copied from network-scanner/branches/GSoC2010/share/pixmaps/zion/firewall.svg)
-
share/pixmaps/umit/honey.png (copied) (copied from network-scanner/branches/GSoC2010/share/pixmaps/zion/honey.png)
-
share/pixmaps/umit/honey.svg (copied) (copied from network-scanner/branches/GSoC2010/share/pixmaps/zion/honey.svg)
-
share/pixmaps/umit/shield.png (copied) (copied from network-scanner/branches/GSoC2010/share/pixmaps/zion/shield.png)
-
share/pixmaps/umit/shield.svg (copied) (copied from network-scanner/branches/GSoC2010/share/pixmaps/zion/shield.svg)
-
share/pixmaps/zion (deleted)
-
umit/gui/qs/App.py (modified) (1 diff)
-
umit/scan/zion/gui/ZionScanNotebookPage.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
network-scanner/branches/GSoC2010/umit/gui/qs/App.py
r4953 r5776 34 34 Path.set_umit_conf(os.path.dirname(sys.argv[0])) 35 35 Path.set_running_path(os.path.abspath(os.path.dirname(sys.argv[0]))) 36 37 def run(self): 36 38 Main.__init__(self) 39 # Run main loop 40 gtk.main() 37 41 38 42 -
network-scanner/branches/GSoC2010/umit/scan/zion/gui/ZionScanNotebookPage.py
r5742 r5776 45 45 from umit.zion.core.host import PORT_STATE_OPEN 46 46 47 ICON_DIR = 'share/pixmaps/zion/' 48 ICON_DIR_UMIT = 'share/pixmaps/umit/' 47 ICON_DIR = 'share/pixmaps/umit/' 49 48 50 49 PIXBUF_FIREWALL = gtk.gdk.pixbuf_new_from_file(ICON_DIR + 'firewall.png') 51 50 PIXBUF_SYNPROXY = gtk.gdk.pixbuf_new_from_file(ICON_DIR + 'shield.png') 52 51 PIXBUF_HONEYD = gtk.gdk.pixbuf_new_from_file(ICON_DIR + 'honey.png') 53 PIXBUF_UNKNOWN = gtk.gdk.pixbuf_new_from_file(ICON_DIR _UMIT+ 'unknown_32.png')52 PIXBUF_UNKNOWN = gtk.gdk.pixbuf_new_from_file(ICON_DIR + 'unknown_32.png') 54 53 55 54 SCANNING = _("Scanning")
