From f1632afc3fc6ee040575fe642cdffb1a7a036338 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Thu, 21 May 2009 02:27:19 +0200 Subject: [PATCH] Add Sulfur "simple mode" and "advanced mode" options --- sulfur/src/sulfur/__init__.py | 57 +- sulfur/src/sulfur/events.py | 26 +- sulfur/src/sulfur/packages.py | 12 +- sulfur/src/sulfur/setup.py | 12 +- sulfur/src/sulfur/sulfur.glade | 3809 +++++++++++++++++--------------- 5 files changed, 2131 insertions(+), 1785 deletions(-) diff --git a/sulfur/src/sulfur/__init__.py b/sulfur/src/sulfur/__init__.py index d638f79d2..4a8bbc661 100644 --- a/sulfur/src/sulfur/__init__.py +++ b/sulfur/src/sulfur/__init__.py @@ -260,10 +260,58 @@ class SulfurApplication(Controller, SulfurApplicationEventsMixin): self.console.set_pty(self.pty[0]) self.reset_progress_text() self.pkgProperties_selected = None - self.setup_preferences() self.setup_pkg_sorter() self.setup_user_generated_content() + simple_mode = 1 + if "--advanced" in sys.argv: + simple_mode = 0 + elif not SulfurConf.simple_mode: + simple_mode = 0 + self.in_mode_loading = True + self.switch_application_mode(simple_mode) + self.in_mode_loading = False + + self.setup_preferences() + + def switch_application_mode(self, do_simple): + if do_simple: + self.switch_simple_mode() + self.ui.advancedMode.set_active(0) + else: + self.switch_advanced_mode() + self.ui.advancedMode.set_active(1) + SulfurConf.simple_mode = do_simple + SulfurConf.save() + + def switch_simple_mode(self): + self.ui.repoRefreshButton.show() + self.ui.vseparator1.hide() + self.ui.rbAllLabel.set_text(_("Packages")) + self.ui.pkgSorter.hide() + self.ui.updateButtonView.hide() + self.ui.rbAvailable.hide() + self.ui.rbInstalled.hide() + self.ui.rbMasked.hide() + self.ui.rbPkgSets.hide() + self.pageButtons['glsa'].hide() + self.pageButtons['preferences'].hide() + self.pageButtons['repos'].hide() + + def switch_advanced_mode(self): + self.ui.repoRefreshButton.hide() + self.ui.vseparator1.show() + self.ui.rbAllLabel.set_text(_("All")) + self.ui.pkgSorter.show() + self.ui.updateButtonView.show() + self.ui.rbAvailable.show() + self.ui.rbInstalled.show() + self.ui.rbMasked.show() + self.ui.rbPkgSets.show() + self.pageButtons['glsa'].show() + self.pageButtons['preferences'].show() + self.pageButtons['repos'].show() + def setup_pkg_sorter(self): self.avail_pkg_sorters = { @@ -412,6 +460,7 @@ class SulfurApplication(Controller, SulfurApplicationEventsMixin): self.advisoryRB[tag] = w def setup_packages_filter(self): + self.setup_package_radio_buttons(self.ui.rbUpdates, "updates", _('Show Package Updates')) self.setup_package_radio_buttons(self.ui.rbAvailable, "available", @@ -428,7 +477,7 @@ class SulfurApplication(Controller, SulfurApplicationEventsMixin): _('Show Queued Packages')) def setup_package_radio_buttons(self, widget, tag, tip): - widget.connect('toggled',self.on_pkgFilter_toggled,tag) + widget.connect('toggled',self.on_pkgFilter_toggled, tag) #widget.set_relief( gtk.RELIEF_NONE ) widget.set_mode( False ) @@ -873,7 +922,8 @@ class SulfurApplication(Controller, SulfurApplicationEventsMixin): fillfunc(name, mytype, wgwrite, setting) rc, e = SulfurConf.save() - if not rc: okDialog( self.ui.main, "%s: %s" % (_("Error saving preferences"),e) ) + if not rc: + okDialog( self.ui.main, "%s: %s" % (_("Error saving preferences"),e) ) self.on_Preferences_toggled(None,False) def setup_masked_pkgs_warning_box(self): @@ -1099,6 +1149,7 @@ class SulfurApplication(Controller, SulfurApplicationEventsMixin): self.progress.set_extraLabel( _('sys-apps/entropy needs to be updated as soon as possible.')) + self.set_package_radio('updates') initconfig_entropy_constants(etpSys['rootdir']) self.disable_ugc = False diff --git a/sulfur/src/sulfur/events.py b/sulfur/src/sulfur/events.py index 2f0008183..f309e0e85 100644 --- a/sulfur/src/sulfur/events.py +++ b/sulfur/src/sulfur/events.py @@ -472,9 +472,17 @@ class SulfurApplicationEventsMixin: def on_queueReviewAndInstall_clicked(self, widget): self.switch_notebook_page("queue") + def on_advancedMode_toggled(self, widget): + if not self.in_mode_loading: + new_mode = 1 + if SulfurConf.simple_mode: + new_mode = 0 + self.switch_application_mode(new_mode) + def on_pkgFilter_toggled(self,rb,action): - if not rb.get_active(): return + if not rb.get_active(): + return rb.grab_add() self.lastPkgPB = action @@ -489,15 +497,23 @@ class SulfurApplicationEventsMixin: else: self.ui.maskedWarningBox.hide() - if action == "pkgsets": self.ui.pkgsetsButtonBox.show() - else: self.ui.pkgsetsButtonBox.hide() + if action == "pkgsets": + self.ui.pkgsetsButtonBox.show() + else: + self.ui.pkgsetsButtonBox.hide() - if action == "queued": self.ui.queueReviewAndInstallBox.show() - else: self.ui.queueReviewAndInstallBox.hide() + if action == "queued": + self.ui.queueReviewAndInstallBox.show() + else: + self.ui.queueReviewAndInstallBox.hide() self.show_packages() rb.grab_remove() + def on_repoRefreshButton_clicked(self, widget): + self.on_repoRefresh_clicked(widget) + self.set_page('packages') + def on_repoRefresh_clicked(self, widget): repos = self.repoView.get_selected() if not repos: diff --git a/sulfur/src/sulfur/packages.py b/sulfur/src/sulfur/packages.py index 103ec1058..72dd87191 100644 --- a/sulfur/src/sulfur/packages.py +++ b/sulfur/src/sulfur/packages.py @@ -31,7 +31,6 @@ class Queue: self.before = [] self.keyslotFilter = set() self._keyslotFilter = set() - self.clear() self.Entropy = None self.etpbase = None self.pkgView = None @@ -39,7 +38,7 @@ class Queue: self.Sulfur = SulfurApplication import dialogs self.dialogs = dialogs - + self.clear() def connect_objects(self, equo_conn, etpbase, pkgView, ui): self.Entropy = equo_conn @@ -48,6 +47,7 @@ class Queue: self.ui = ui def clear( self ): + self.Sulfur.ui.rbPkgQueued.hide() self.packages.clear() self.packages['i'] = [] self.packages['u'] = [] @@ -289,6 +289,10 @@ class Queue: del self.before[:] return 0,1 finally: + if self.packages.values(): + self.Sulfur.ui.rbPkgQueued.show() + else: + self.Sulfur.ui.rbPkgQueued.hide() self.Sulfur.wait_window.hide() def add(self, pkgs, accept = False, always_ask = False): @@ -335,6 +339,10 @@ class Queue: return status,1 finally: + if self.packages.values(): + self.Sulfur.ui.rbPkgQueued.show() + else: + self.Sulfur.ui.rbPkgQueued.hide() self.Sulfur.wait_window.hide() def elaborate_masked_packages(self, matches): diff --git a/sulfur/src/sulfur/setup.py b/sulfur/src/sulfur/setup.py index 4a89a88b6..6cd7121df 100644 --- a/sulfur/src/sulfur/setup.py +++ b/sulfur/src/sulfur/setup.py @@ -142,7 +142,7 @@ class const: class SulfurConf: - """ Yum Extender Config Setting""" + autorefresh = True recentdays = 14 debug = False @@ -172,6 +172,7 @@ class SulfurConf: color_good_on_color_background = '#FFFFFF' color_error_on_color_background = '#FFFFFF' color_package_category = '#9C7234' # brown + simple_mode = 1 filelist = True changelog = False @@ -191,6 +192,9 @@ class SulfurConf: except ValueError: return False + def foo_validator(s): + return True + config_data = { "color_console_font": validate_color_conf, "color_normal": validate_color_conf, @@ -210,6 +214,7 @@ class SulfurConf: "color_good_on_color_background": validate_color_conf, "color_error_on_color_background": validate_color_conf, "color_package_category": validate_color_conf, + "simple_mode": foo_validator, } return config_data @@ -235,6 +240,7 @@ class SulfurConf: "color_good_on_color_background": SulfurConf.color_good_on_color_background, "color_error_on_color_background": SulfurConf.color_error_on_color_background, "color_package_category": SulfurConf.color_package_category, + "simple_mode": SulfurConf.simple_mode, } return config_data @@ -243,7 +249,7 @@ class SulfurConf: def do_save(): if not os.path.isdir(os.path.dirname(const.SETTINGS_FILE)): - os.makedirs(os.path.dirname(const.SETTINGS_FILE)) + os.makedirs(os.path.dirname(const.SETTINGS_FILE), 0755) myxml = entropyTools.xml_from_dict_extended(SulfurConf.getconf()) try: f = open(const.SETTINGS_FILE,"w") @@ -257,6 +263,7 @@ class SulfurConf: try: return do_save() except Exception, e: + entropyTools.print_traceback() return False,e return True,None @@ -273,6 +280,7 @@ class SulfurConf: try: return do_read() except: + entropyTools.print_traceback() return None @staticmethod diff --git a/sulfur/src/sulfur/sulfur.glade b/sulfur/src/sulfur/sulfur.glade index 6d92dd0c3..7190ec69f 100644 --- a/sulfur/src/sulfur/sulfur.glade +++ b/sulfur/src/sulfur/sulfur.glade @@ -3,6 +3,7 @@ + 800 420 True Sulfur @@ -39,6 +40,15 @@ + + + True + Switch Sulfur to Advanced Mode + Advanced Mode + True + + + True @@ -333,6 +343,10 @@ 0 + + False + False + @@ -345,6 +359,8 @@ + False + False 1 @@ -359,6 +375,8 @@ + False + False 2 @@ -421,6 +439,10 @@ + + False + False + @@ -468,6 +490,8 @@ + False + False 1 @@ -504,6 +528,39 @@ True 4 + + + True + True + True + Sync repositories to fetch latest updates + GTK_POS_TOP + 0 + + + + True + GTK_ORIENTATION_VERTICAL + GTK_ORIENTATION_VERTICAL + + + True + gtk-refresh + + + + + True + Reload + + + 1 + + + + + + True @@ -537,6 +594,7 @@ False False + 1 @@ -573,7 +631,7 @@ False False - 1 + 2 @@ -610,7 +668,7 @@ False False - 2 + 3 @@ -647,7 +705,7 @@ False False - 3 + 4 @@ -684,7 +742,7 @@ False False - 4 + 5 @@ -720,7 +778,7 @@ - 5 + 6 @@ -732,12 +790,11 @@ False False - 6 + 7 - True True 0 rbUpdates @@ -769,7 +826,7 @@ False False - 7 + 8 @@ -974,6 +1031,10 @@ + + False + False + @@ -1019,6 +1080,8 @@ + False + False 1 @@ -1077,6 +1140,10 @@ + + False + False + @@ -1177,6 +1244,10 @@ + + False + False + @@ -1222,6 +1293,8 @@ + False + False 1 @@ -1602,6 +1675,10 @@ 0 + + False + False + @@ -1614,6 +1691,8 @@ + False + False 1 @@ -1649,6 +1728,8 @@ + False + False 2 @@ -1737,6 +1818,10 @@ + + False + False + @@ -1823,6 +1908,10 @@ + + False + False + @@ -1835,6 +1924,8 @@ + False + False 1 @@ -1882,6 +1973,8 @@ + False + False 2 @@ -1896,6 +1989,8 @@ + False + False 3 @@ -1974,6 +2069,10 @@ + + False + False + @@ -2019,6 +2118,8 @@ + False + False 1 @@ -2033,6 +2134,8 @@ + False + False 2 @@ -2398,6 +2501,10 @@ + + False + False + @@ -2443,6 +2550,8 @@ + False + False 1 @@ -2558,33 +2667,126 @@ 9 True - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 3 + 2 - + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + Prevents files belonging to a package being overwritten by another + Disabled +Removal only +Install+Removal + + + + 1 + 2 + 1 + 2 + GTK_FILL + + + + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 - Protected files and directories + Collision protection + + + 1 + 2 + + + + + + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + This is what they call "nice level" + 3 + 3 + 1 -19 19 1 10 0 + 1 + True + + + + 1 + 2 + + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + Process priority (nice) + + + + + + + + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + Entropy can keep a backup of your updated configuration files + Backup configuration files + 0 + True + + + + 2 + 2 + 3 + + + + + + 1 + 2 + 1 + 2 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + Ignored protected files False - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - + True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK GTK_POLICY_AUTOMATIC GTK_POLICY_AUTOMATIC - + True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK @@ -2593,21 +2795,21 @@ - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK GTK_BUTTONBOX_SPREAD - + True True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 - + - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK gtk-new @@ -2620,16 +2822,15 @@ - + True True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 - - + - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK gtk-edit @@ -2643,16 +2844,16 @@ - + True True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 - + - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK gtk-delete @@ -2678,6 +2879,10 @@ + + 1 + 2 + @@ -2807,33 +3012,33 @@ - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 - Ignored protected files + Protected files and directories False - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - + True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK GTK_POLICY_AUTOMATIC GTK_POLICY_AUTOMATIC - + True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK @@ -2842,21 +3047,21 @@ - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK GTK_BUTTONBOX_SPREAD - + True True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 - + - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK gtk-new @@ -2869,15 +3074,16 @@ - + True True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 - + + - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK gtk-edit @@ -2891,16 +3097,16 @@ - + True True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 - + - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK gtk-delete @@ -2926,103 +3132,6 @@ - - 1 - 2 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 3 - 2 - - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - Entropy can keep a backup of your updated configuration files - Backup configuration files - 0 - True - - - - 2 - 2 - 3 - - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - Process priority (nice) - - - - - - - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - This is what they call "nice level" - 3 - 3 - 1 -19 19 1 10 0 - 1 - True - - - - 1 - 2 - - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - Collision protection - - - 1 - 2 - - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - Prevents files belonging to a package being overwritten by another - Disabled -Removal only -Install+Removal - - - - 1 - 2 - 1 - 2 - GTK_FILL - - - - - 1 - 2 - 1 - 2 - @@ -3076,67 +3185,74 @@ Install+Removal 5 3 - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - FTP Proxy - - - GTK_FILL - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - HTTP Proxy - - - 1 - 2 - GTK_FILL - - - - + True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - Example: http://proxy:1234 + type your password here + False 1 3 + 3 + 4 GTK_FILL - + True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - Example: http://proxy:1234 + type your username here 1 3 - 1 - 2 + 2 + 3 GTK_FILL - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 - Download speed limit + Proxy Password + 3 + 4 + GTK_FILL + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + Proxy Username + + + 2 + 3 + GTK_FILL + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + kB/sec + + + 2 + 3 4 5 GTK_FILL @@ -3161,76 +3277,69 @@ Install+Removal - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 - kB/sec + Download speed limit - 2 - 3 4 5 GTK_FILL - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - Proxy Username - - - 2 - 3 - GTK_FILL - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - Proxy Password - - - 3 - 4 - GTK_FILL - - - - + True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - type your username here + Example: http://proxy:1234 1 3 - 2 - 3 + 1 + 2 GTK_FILL - + True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - type your password here - False + Example: http://proxy:1234 1 3 - 3 - 4 + GTK_FILL + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + HTTP Proxy + + + 1 + 2 + GTK_FILL + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + FTP Proxy + + GTK_FILL @@ -3326,6 +3435,10 @@ Install+Removal + + False + False + @@ -3358,6 +3471,8 @@ Install+Removal + False + False 1 @@ -3398,6 +3513,10 @@ Install+Removal + + False + False + @@ -3430,6 +3549,8 @@ Install+Removal + False + False 1 @@ -3479,24 +3600,24 @@ Install+Removal - + True - + True 0.98000001907348633 - Text on error message + Terminal font - + True True True 0 - + True gtk-revert-to-saved @@ -3509,7 +3630,7 @@ Install+Removal - + True True True @@ -3524,30 +3645,26 @@ Install+Removal - - 4 - 5 - - + True - + True 0.98000001907348633 - Text on succ. message + Generic title 1 - + True True True 0 - + True gtk-revert-to-saved @@ -3560,7 +3677,7 @@ Install+Removal - + True True True @@ -3578,29 +3695,27 @@ Install+Removal 1 2 - 3 - 4 - + True - + True 0.98000001907348633 - Background succ. message + Generic title 2 - + True True True 0 - + True gtk-revert-to-saved @@ -3613,7 +3728,7 @@ Install+Removal - + True True True @@ -3629,112 +3744,8 @@ Install+Removal - 3 - 4 - - - - - True - - - True - 0.98000001907348633 - Successful mesage - - - - - True - True - True - 0 - - - - True - gtk-revert-to-saved - - - - - False - False - 1 - - - - - True - True - True - 0 - #000000000000 - - - - False - False - 2 - - - - - 1 - 2 - 2 - 3 - - - - - True - - - True - 0.98000001907348633 - Error message - - - - - True - True - True - 0 - - - - True - gtk-revert-to-saved - - - - - False - False - 1 - - - - - True - True - True - 0 - #000000000000 - - - - False - False - 2 - - - - - 2 - 3 + 1 + 2 @@ -3791,24 +3802,24 @@ Install+Removal - + True - + True 0.98000001907348633 - Generic title 2 + Error message - + True True True 0 - + True gtk-revert-to-saved @@ -3821,7 +3832,7 @@ Install+Removal - + True True True @@ -3837,29 +3848,29 @@ Install+Removal - 1 - 2 + 2 + 3 - + True - + True 0.98000001907348633 - Generic title 1 + Successful mesage - + True True True 0 - + True gtk-revert-to-saved @@ -3872,7 +3883,7 @@ Install+Removal - + True True True @@ -3890,27 +3901,29 @@ Install+Removal 1 2 + 2 + 3 - + True - + True 0.98000001907348633 - Terminal font + Background succ. message - + True True True 0 - + True gtk-revert-to-saved @@ -3923,7 +3936,7 @@ Install+Removal - + True True True @@ -3938,6 +3951,114 @@ Install+Removal + + 3 + 4 + + + + + True + + + True + 0.98000001907348633 + Text on succ. message + + + + + True + True + True + 0 + + + + True + gtk-revert-to-saved + + + + + False + False + 1 + + + + + True + True + True + 0 + #000000000000 + + + + False + False + 2 + + + + + 1 + 2 + 3 + 4 + + + + + True + + + True + 0.98000001907348633 + Text on error message + + + + + True + True + True + 0 + + + + True + gtk-revert-to-saved + + + + + False + False + 1 + + + + + True + True + True + 0 + #000000000000 + + + + False + False + 2 + + + + + 4 + 5 + @@ -3961,24 +4082,24 @@ Install+Removal - + True - + True 0.98000001907348633 - Package category + Package (default) - + True True True 0 - + True gtk-revert-to-saved @@ -3991,7 +4112,7 @@ Install+Removal - + True True True @@ -4006,30 +4127,26 @@ Install+Removal - - 4 - 5 - - + True - + True 0.98000001907348633 - Package sub-description + Package not installed - + True True True 0 - + True gtk-revert-to-saved @@ -4042,7 +4159,7 @@ Install+Removal - + True True True @@ -4060,29 +4177,27 @@ Install+Removal 1 2 - 3 - 4 - + True - + True 0.98000001907348633 - Package subtitle + Package removed - + True True True 0 - + True gtk-revert-to-saved @@ -4095,7 +4210,7 @@ Install+Removal - + True True True @@ -4111,112 +4226,8 @@ Install+Removal - 3 - 4 - - - - - True - - - True - 0.98000001907348633 - Package description - - - - - True - True - True - 0 - - - - True - gtk-revert-to-saved - - - - - False - False - 1 - - - - - True - True - True - 0 - #000000000000 - - - - False - False - 2 - - - - - 1 - 2 - 2 - 3 - - - - - True - - - True - 0.98000001907348633 - Package reinstalled - - - - - True - True - True - 0 - - - - True - gtk-revert-to-saved - - - - - False - False - 1 - - - - - True - True - True - 0 - #000000000000 - - - - False - False - 2 - - - - - 2 - 3 + 1 + 2 @@ -4273,24 +4284,24 @@ Install+Removal - + True - + True 0.98000001907348633 - Package removed + Package reinstalled - + True True True 0 - + True gtk-revert-to-saved @@ -4303,7 +4314,7 @@ Install+Removal - + True True True @@ -4319,29 +4330,29 @@ Install+Removal - 1 - 2 + 2 + 3 - + True - + True 0.98000001907348633 - Package not installed + Package description - + True True True 0 - + True gtk-revert-to-saved @@ -4354,7 +4365,7 @@ Install+Removal - + True True True @@ -4372,27 +4383,29 @@ Install+Removal 1 2 + 2 + 3 - + True - + True 0.98000001907348633 - Package (default) + Package subtitle - + True True True 0 - + True gtk-revert-to-saved @@ -4405,7 +4418,7 @@ Install+Removal - + True True True @@ -4420,6 +4433,114 @@ Install+Removal + + 3 + 4 + + + + + True + + + True + 0.98000001907348633 + Package sub-description + + + + + True + True + True + 0 + + + + True + gtk-revert-to-saved + + + + + False + False + 1 + + + + + True + True + True + 0 + #000000000000 + + + + False + False + 2 + + + + + 1 + 2 + 3 + 4 + + + + + True + + + True + 0.98000001907348633 + Package category + + + + + True + True + True + 0 + + + + True + gtk-revert-to-saved + + + + + False + False + 1 + + + + + True + True + True + 0 + #000000000000 + + + + False + False + 2 + + + + + 4 + 5 + @@ -4552,6 +4673,10 @@ Install+Removal + + False + False + @@ -4582,6 +4707,8 @@ Install+Removal + False + False 1 @@ -4614,6 +4741,8 @@ Install+Removal + False + False 2 @@ -4791,6 +4920,10 @@ Install+Removal + + False + False + @@ -4826,6 +4959,8 @@ Install+Removal + False + False 1 @@ -4975,14 +5110,56 @@ Install+Removal 3 2 - + + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 150 + + + 1 + 2 + 2 + 3 + + + + + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 150 + + + 1 + 2 + 1 + 2 + + + + + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 150 + + + 1 + 2 + + + + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 10 - Your Full Name + What you were doing + 2 + 3 GTK_FILL @@ -5001,59 +5178,17 @@ Install+Removal - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 10 - What you were doing + Your Full Name - 2 - 3 GTK_FILL - - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 150 - - - 1 - 2 - - - - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 150 - - - 1 - 2 - 1 - 2 - - - - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 150 - - - 1 - 2 - 2 - 3 - - 3 @@ -5100,6 +5235,10 @@ Install+Removal + + False + False + @@ -5111,6 +5250,8 @@ Install+Removal -7 + False + False 1 @@ -5240,6 +5381,10 @@ Install+Removal True -6 + + False + False + @@ -5251,6 +5396,8 @@ Install+Removal -5 + False + False 1 @@ -5306,6 +5453,10 @@ Install+Removal True -7 + + False + False + @@ -5317,6 +5468,8 @@ Install+Removal -5 + False + False 1 @@ -5402,6 +5555,10 @@ Install+Removal True -6 + + False + False + @@ -5415,6 +5572,8 @@ Install+Removal -5 + False + False 1 @@ -5514,6 +5673,177 @@ Install+Removal 4 10 3 + + + True + True + + + 3 + 4 + 4 + 5 + + + + + + True + 0 + Secure Services Port + + + 2 + 3 + 4 + 5 + GTK_FILL + + + + + + True + 0 + Services Port + + + 4 + 5 + GTK_FILL + + + + + + True + True + + + 1 + 2 + 4 + 5 + + + + + + True + bz2 +gz + + + 3 + 4 + 3 + 4 + GTK_FILL + GTK_FILL + + + + + True + 0 + Compression + + + 2 + 3 + 3 + 4 + GTK_FILL + + + + + + True + 0 + Identifier + + + GTK_FILL + + + + + + True + 0 + Description + + + 1 + 2 + GTK_FILL + + + + + + True + 0 + Mirrors + + + 2 + 3 + GTK_FILL + + + + + + True + 0 + URI + + + 3 + 4 + GTK_FILL + + + + + + True + True + + + 1 + 4 + + + + + + True + True + + + 1 + 4 + 1 + 2 + + + + + + True + True + + + 1 + 2 + 3 + 4 + + + 120 @@ -5555,6 +5885,10 @@ Install+Removal 0 + + False + False + @@ -5567,6 +5901,8 @@ Install+Removal + False + False 1 @@ -5581,6 +5917,8 @@ Install+Removal + False + False 2 @@ -5651,177 +5989,6 @@ Install+Removal GTK_FILL - - - True - True - - - 1 - 2 - 3 - 4 - - - - - - True - True - - - 1 - 4 - 1 - 2 - - - - - - True - True - - - 1 - 4 - - - - - - True - 0 - URI - - - 3 - 4 - GTK_FILL - - - - - - True - 0 - Mirrors - - - 2 - 3 - GTK_FILL - - - - - - True - 0 - Description - - - 1 - 2 - GTK_FILL - - - - - - True - 0 - Identifier - - - GTK_FILL - - - - - - True - 0 - Compression - - - 2 - 3 - 3 - 4 - GTK_FILL - - - - - - True - bz2 -gz - - - 3 - 4 - 3 - 4 - GTK_FILL - GTK_FILL - - - - - True - True - - - 1 - 2 - 4 - 5 - - - - - - True - 0 - Services Port - - - 4 - 5 - GTK_FILL - - - - - - True - 0 - Secure Services Port - - - 2 - 3 - 4 - 5 - GTK_FILL - - - - - - True - True - - - 3 - 4 - 4 - 5 - - - @@ -5893,6 +6060,10 @@ gz + + False + False + @@ -5905,6 +6076,8 @@ gz + False + False 1 @@ -5921,6 +6094,8 @@ gz + False + False 2 @@ -5935,6 +6110,8 @@ gz + False + False 3 @@ -6504,7 +6681,91 @@ gz 5 4 - + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + True + True + + + 1 + 2 + 12 + 13 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + Creation date + True + + + 12 + 13 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + True + True + + + 1 + 2 + 11 + 12 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + Install Size + True + + + 11 + 12 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + True + True + + + 1 + 2 + 10 + 11 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + Package Size + True + + + 10 + 11 + + + + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 @@ -6515,234 +6776,21 @@ gz 1 2 - 1 - 2 + 9 + 10 - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 - Website + MD5 Signature True - 1 - 2 - GTK_FILL - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - True - True - - - 1 - 2 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - Location - True - - - GTK_FILL - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - Version - True - - - 2 - 3 - GTK_FILL - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - True - True - - - 1 - 2 - 2 - 3 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - Slot - True - - - 3 - 4 - GTK_FILL - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - True - True - - - 1 - 2 - 3 - 4 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - Kernel Tag - True - - - 4 - 5 - GTK_FILL - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - True - True - - - 1 - 2 - 4 - 5 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - Revision - True - - - 5 - 6 - GTK_FILL - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - True - True - - - 1 - 2 - 5 - 6 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - Branch - True - - - 6 - 7 - GTK_FILL - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - True - True - - - 1 - 2 - 6 - 7 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - Entropy API - True - - - 7 - 8 - GTK_FILL - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - True - True - - - 1 - 2 - 7 - 8 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - Download Path - True - - - 8 - 9 + 9 + 10 @@ -6763,20 +6811,233 @@ gz - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 - MD5 Signature + Download Path True - 9 - 10 + 8 + 9 - + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + True + True + + + 1 + 2 + 7 + 8 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + Entropy API + True + + + 7 + 8 + GTK_FILL + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + True + True + + + 1 + 2 + 6 + 7 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + Branch + True + + + 6 + 7 + GTK_FILL + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + True + True + + + 1 + 2 + 5 + 6 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + Revision + True + + + 5 + 6 + GTK_FILL + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + True + True + + + 1 + 2 + 4 + 5 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + Kernel Tag + True + + + 4 + 5 + GTK_FILL + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + True + True + + + 1 + 2 + 3 + 4 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + Slot + True + + + 3 + 4 + GTK_FILL + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + True + True + + + 1 + 2 + 2 + 3 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + Version + True + + + 2 + 3 + GTK_FILL + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + Location + True + + + GTK_FILL + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + True + True + + + 1 + 2 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + Website + True + + + 1 + 2 + GTK_FILL + + + + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 @@ -6787,92 +7048,8 @@ gz 1 2 - 9 - 10 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - Package Size - True - - - 10 - 11 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - True - True - - - 1 - 2 - 10 - 11 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - Install Size - True - - - 11 - 12 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - True - True - - - 1 - 2 - 11 - 12 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - Creation date - True - - - 12 - 13 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - True - True - - - 1 - 2 - 12 - 13 + 1 + 2 @@ -6904,129 +7081,6 @@ gz 5 2 15 - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - True - True - True - - - 1 - 2 - 2 - 3 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - CXXFLAGS - True - - - 2 - 3 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - True - True - True - - - 1 - 2 - 1 - 2 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - CFLAGS - True - - - 1 - 2 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - True - True - True - - - 1 - 2 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - CHOST - True - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - Masked - True - - - 3 - 4 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - True - True - True - - - 1 - 2 - 3 - 4 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - ChangeLog - True - - - 4 - 5 - - True @@ -7070,6 +7124,129 @@ gz 5 + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + ChangeLog + True + + + 4 + 5 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + True + True + True + + + 1 + 2 + 3 + 4 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + Masked + True + + + 3 + 4 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + CHOST + True + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + True + True + True + + + 1 + 2 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + CFLAGS + True + + + 1 + 2 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + True + True + True + + + 1 + 2 + 1 + 2 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + CXXFLAGS + True + + + 2 + 3 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + True + True + True + + + 1 + 2 + 2 + 3 + + @@ -7414,6 +7591,10 @@ gz + + False + False + @@ -7663,6 +7844,10 @@ gz + + False + False + @@ -7693,6 +7878,8 @@ gz + False + False 1 @@ -7735,6 +7922,10 @@ gz + + False + False + @@ -7896,6 +8087,10 @@ Please read them carefully and <b>make your choice</b>. + + False + False + @@ -7931,6 +8126,8 @@ Please read them carefully and <b>make your choice</b>. + False + False 1 @@ -7990,6 +8187,10 @@ Please read them carefully and <b>make your choice</b>. True 1 + + False + False + @@ -8003,6 +8204,8 @@ Please read them carefully and <b>make your choice</b>. 0 + False + False 1 @@ -8067,6 +8270,10 @@ Please read them carefully and <b>make your choice</b>. True 0 + + False + False + @@ -8077,6 +8284,8 @@ Please read them carefully and <b>make your choice</b>. 0 + False + False 1 @@ -8091,6 +8300,8 @@ Please read them carefully and <b>make your choice</b>. 0 + False + False 2 @@ -8516,15 +8727,23 @@ Please read them carefully and <b>make your choice</b>. 2 2 - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 1 + 0 + Announced + True + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + Revised True - 1 - 2 1 2 @@ -8542,27 +8761,19 @@ Please read them carefully and <b>make your choice</b>. - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - Revised + 1 True + 1 + 2 1 2 - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - Announced - True - - @@ -8729,6 +8940,10 @@ Please read them carefully and <b>make your choice</b>. True 0 + + False + False + @@ -8868,108 +9083,28 @@ Please read them carefully and <b>make your choice</b>. 2 3 - + True 0 - Title - - - - - True - 0 - this is the title + this is the size True 1 2 + 5 + 6 - + True 0 - Description + Size - 1 - 2 - - - - - True - 0 - this is the description - True - - - 1 - 2 - 1 - 2 - - - - - True - 0 - Author - - - 2 - 3 - - - - - True - 0 - this is the author - True - - - 1 - 2 - 2 - 3 - - - - - True - 0 - Date - - - 3 - 4 - - - - - True - 0 - this it the date - True - - - 1 - 2 - 3 - 4 - - - - - True - 0 - Keywords - - - 4 - 5 + 5 + 6 @@ -8987,30 +9122,110 @@ Please read them carefully and <b>make your choice</b>. - + True 0 - Size + Keywords - 5 - 6 + 4 + 5 - + True 0 - this is the size + this it the date True 1 2 - 5 - 6 + 3 + 4 + + + True + 0 + Date + + + 3 + 4 + + + + + True + 0 + this is the author + True + + + 1 + 2 + 2 + 3 + + + + + True + 0 + Author + + + 2 + 3 + + + + + True + 0 + this is the description + True + + + 1 + 2 + 1 + 2 + + + + + True + 0 + Description + + + 1 + 2 + + + + + True + 0 + this is the title + True + + + 1 + 2 + + + + + True + 0 + Title + + 3 @@ -9091,6 +9306,10 @@ Please read them carefully and <b>make your choice</b>. + + False + False + @@ -9242,56 +9461,26 @@ Please read them carefully and <b>make your choice</b>. 2 3 - + True - 0 - Title - - - - - True - 0 - Description - - - 1 - 2 - - - - - True - True - 256 + 1 2 + 3 + 4 - - True - True - 500 - - - 1 - 2 - 1 - 2 - - - - + True 0 - Keywords (space separated) + Document type - 2 - 3 + 3 + 4 @@ -9308,28 +9497,58 @@ Please read them carefully and <b>make your choice</b>. - + True 0 - Document type + Keywords (space separated) - 3 - 4 + 2 + 3 - + True - + True + 500 1 2 - 3 - 4 + 1 + 2 + + + True + True + 256 + + + 1 + 2 + + + + + True + 0 + Description + + + 1 + 2 + + + + + True + 0 + Title + + 3 @@ -9445,6 +9664,10 @@ Please read them carefully and <b>make your choice</b>. + + False + False + @@ -10504,6 +10727,10 @@ Please read them carefully and <b>make your choice</b>. 0 + + False + False + @@ -10516,6 +10743,8 @@ Please read them carefully and <b>make your choice</b>. + False + False 1 @@ -10530,6 +10759,8 @@ Please read them carefully and <b>make your choice</b>. + False + False 2 @@ -10544,6 +10775,8 @@ Please read them carefully and <b>make your choice</b>. + False + False 3 @@ -10858,6 +11091,10 @@ Please read them carefully and <b>make your choice</b>. 0 + + False + False + @@ -10870,6 +11107,8 @@ Please read them carefully and <b>make your choice</b>. + False + False 1 @@ -11141,85 +11380,16 @@ Please read them carefully and <b>make your choice</b>. - + True True - False + localhost 1 2 - 3 - 4 - - - True - True - root - - - 1 - 2 - 2 - 3 - - - - - True - 0 - Password - - - 3 - 4 - - - - - True - 0 - Username - - - 2 - 3 - - - - - True - True - 1027 1 65535 1 10 0 - 1 - - - 1 - 2 - 1 - 2 - - - - - True - 0 - Port - - - 1 - 2 - - - - - True - 0 - Hostname - - True @@ -11238,14 +11408,83 @@ Please read them carefully and <b>make your choice</b>. - + + True + 0 + Hostname + + + + + True + 0 + Port + + + 1 + 2 + + + + True True - localhost + 1027 1 65535 1 10 0 + 1 1 2 + 1 + 2 + + + + + True + 0 + Username + + + 2 + 3 + + + + + True + 0 + Password + + + 3 + 4 + + + + + True + True + root + + + 1 + 2 + 2 + 3 + + + + + True + True + False + + + 1 + 2 + 3 + 4 @@ -11355,6 +11594,10 @@ Please read them carefully and <b>make your choice</b>. 0 + + False + False + @@ -11367,6 +11610,8 @@ Please read them carefully and <b>make your choice</b>. + False + False 1 @@ -11429,261 +11674,19 @@ Please read them carefully and <b>make your choice</b>. 2 15 - + True 0 - Queue Id - - - - - True - 0 - Command name - - - 1 - 2 - - - - - True - 0 - Command description - - - 2 - 3 - - - - - True - 0 - Process result + True + PANGO_WRAP_CHAR + 1 + 2 11 12 - - - True - 0 - Remote stdout file - - - 10 - 11 - - - - - True - 0 - Errored at - - - 9 - 10 - - - - - True - 0 - Completed at - - - 8 - 9 - - - - - True - 0 - Processing at - - - 7 - 8 - - - - - True - 0 - Queued at - - - 6 - 7 - - - - - True - 0 - User / Group - - - 5 - 6 - - - - - True - 0 - Command arguments - - - 3 - 4 - - - - - True - 0 - Call - - - 4 - 5 - - - - - True - 0 - True - - - 1 - 2 - - - - - True - 0 - True - - - 1 - 2 - 1 - 2 - - - - - True - 0 - True - - - 1 - 2 - 2 - 3 - - - - - True - 0 - True - - - 1 - 2 - 3 - 4 - - - - - True - 0 - True - - - 1 - 2 - 4 - 5 - - - - - True - 0 - True - - - 1 - 2 - 5 - 6 - - - - - True - 0 - True - - - 1 - 2 - 6 - 7 - - - - - True - 0 - True - - - 1 - 2 - 7 - 8 - - - - - True - 0 - True - - - 1 - 2 - 8 - 9 - - - - - True - 0 - True - - - 1 - 2 - 9 - 10 - - True @@ -11698,19 +11701,261 @@ Please read them carefully and <b>make your choice</b>. - + True 0 True - PANGO_WRAP_CHAR 1 2 + 9 + 10 + + + + + True + 0 + True + + + 1 + 2 + 8 + 9 + + + + + True + 0 + True + + + 1 + 2 + 7 + 8 + + + + + True + 0 + True + + + 1 + 2 + 6 + 7 + + + + + True + 0 + True + + + 1 + 2 + 5 + 6 + + + + + True + 0 + True + + + 1 + 2 + 4 + 5 + + + + + True + 0 + True + + + 1 + 2 + 3 + 4 + + + + + True + 0 + True + + + 1 + 2 + 2 + 3 + + + + + True + 0 + True + + + 1 + 2 + 1 + 2 + + + + + True + 0 + True + + + 1 + 2 + + + + + True + 0 + Call + + + 4 + 5 + + + + + True + 0 + Command arguments + + + 3 + 4 + + + + + True + 0 + User / Group + + + 5 + 6 + + + + + True + 0 + Queued at + + + 6 + 7 + + + + + True + 0 + Processing at + + + 7 + 8 + + + + + True + 0 + Completed at + + + 8 + 9 + + + + + True + 0 + Errored at + + + 9 + 10 + + + + + True + 0 + Remote stdout file + + + 10 + 11 + + + + + True + 0 + Process result + + 11 12 + + + True + 0 + Command description + + + 2 + 3 + + + + + True + 0 + Command name + + + 1 + 2 + + + + + True + 0 + Queue Id + + @@ -11766,69 +12011,18 @@ Please read them carefully and <b>make your choice</b>. 2 8 - + True 0 - Pinboard Id - - - - - True - 0 - Date - - - 1 - 2 - - - - - True - 0 - Done - - - 2 - 3 - - - - - True - 0 - Note + True + 1 + 2 3 4 - - - True - 0 - True - - - 1 - 2 - - - - - True - 0 - True - - - 1 - 2 - 1 - 2 - - True @@ -11843,7 +12037,7 @@ Please read them carefully and <b>make your choice</b>. - + True 0 True @@ -11851,10 +12045,61 @@ Please read them carefully and <b>make your choice</b>. 1 2 + 1 + 2 + + + + + True + 0 + True + + + 1 + 2 + + + + + True + 0 + Note + + 3 4 + + + True + 0 + Done + + + 2 + 3 + + + + + True + 0 + Date + + + 1 + 2 + + + + + True + 0 + Pinboard Id + + False @@ -11948,83 +12193,6 @@ Please read them carefully and <b>make your choice</b>. 4 2 3 - - - True - 0 - Notice board Id - - - - - True - 0 - Date - - - 1 - 2 - - - - - True - 0 - Title - - - 2 - 3 - - - - - True - 0 - Link - - - 3 - 4 - - - - - True - 0 - True - - - 1 - 2 - - - - - True - 0 - True - - - 1 - 2 - 1 - 2 - - - - - True - 0 - True - - - 1 - 2 - 2 - 3 - - True @@ -12043,6 +12211,83 @@ Please read them carefully and <b>make your choice</b>. 4 + + + True + 0 + True + + + 1 + 2 + 2 + 3 + + + + + True + 0 + True + + + 1 + 2 + 1 + 2 + + + + + True + 0 + True + + + 1 + 2 + + + + + True + 0 + Link + + + 3 + 4 + + + + + True + 0 + Title + + + 2 + 3 + + + + + True + 0 + Date + + + 1 + 2 + + + + + True + 0 + Notice board Id + + False @@ -12193,6 +12438,10 @@ Please read them carefully and <b>make your choice</b>. 0 + + False + False + @@ -12298,6 +12547,10 @@ Please read them carefully and <b>make your choice</b>. + + False + False + @@ -12332,6 +12585,8 @@ Please read them carefully and <b>make your choice</b>. + False + False 1 @@ -12368,6 +12623,8 @@ Please read them carefully and <b>make your choice</b>. + False + False 2 @@ -12419,6 +12676,10 @@ Please read them carefully and <b>make your choice</b>. True 0 + + False + False + @@ -12430,6 +12691,8 @@ Please read them carefully and <b>make your choice</b>. 0 + False + False 1