Show
Ignore:
Timestamp:
05/16/09 17:52:30 (4 years ago)
Author:
nopper
Message:

2009-06-17 Francesco Piccinno <stack.box@…>

  • PM/Gui/Dialogs/Preferences.py PM/Gui/Core/App.py PM/Gui/Manager/PreferenceManager.py:
    • Added a check for python version (that should be >= 2.6)
    • Making checks for root/correct python version optional by adding it in pm-prefs.xml file, and in SectionPage? of Preference dialog.
  • PM/Gui/Core/MainWindow.py PM/Gui/Core/GdlPaned.py:
    • Added a gdl paned implementation. You need gnome-python-extra package to use that implementation.

Fixed various bug and regression.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branch/PacketManipulator/PM/Manager/PreferenceManager.py

    r4795 r4796  
    175175class Prefs(Singleton): 
    176176    options = { 
    177         'gui.docking' : True, 
     177        'gui.docking' : 'moo', 
    178178        'gui.expander.standard' : False, 
    179179        'gui.maintab.sniffview.font' : 'Monospace 10', 
     
    206206 
    207207        'plugins.paths' : os.pathsep.join((PM_PLUGINS_DIR, PLUGINS_DIR)), 
    208         'plugins.enabled' : '' 
     208        'plugins.enabled' : '', 
     209 
     210        'system.check_pyver' : True, 
     211        'system.check_root' : True, 
    209212    } 
    210213