This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/dnfdragora/updater.py b/dnfdragora/updater.py | |
index 8e2ba89..ed67074 100644 | |
--- a/dnfdragora/updater.py | |
+++ b/dnfdragora/updater.py | |
@@ -57,7 +57,8 @@ class Updater: | |
else: | |
icon_path = icon_path + '/dnfdragora.png' | |
- theme_icon_pathname = self.__get_theme_icon_pathname() or icon_path | |
+ theme_icon_pathname = icon_path if 'icon-path' in options.keys() else self.__get_theme_icon_pathname() or icon_path |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from firewall.client import FirewallClient | |
import threading | |
from gi.repository import GLib | |
def fwConnectionChanged(): | |
print ("event connection changed") | |
def glib_mainloop(loop): | |
loop.run() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// g++ -I/usr/include/yui -lyui test-YtableCell.cc -o test-YtableCell | |
#include <sstream> | |
#include "YUI.h" | |
#include "YApplication.h" | |
#include "YWidgetFactory.h" | |
#include "YDialog.h" | |
#include "YLayoutBox.h" | |
#include "YEvent.h" | |
#include "YTable.h" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/dnfdragora/progress_ui.py b/dnfdragora/progress_ui.py | |
index 3096142..9840862 100644 | |
--- a/dnfdragora/progress_ui.py | |
+++ b/dnfdragora/progress_ui.py | |
@@ -74,7 +74,10 @@ class ProgressBar: | |
def set_progress(self, frac, label=None) : | |
if label is not None: | |
self.progressbar.setLabel(label) | |
- self.progressbar.setValue(int(100*frac)) | |
+ val = self.progressbar.value() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (c) 2014 Angelo Naselli <[email protected]> | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining | |
* a copy of this software and associated documentation files (the | |
* "Software"), to deal in the Software without restriction, including | |
* without limitation the rights to use, copy, modify, merge, publish, | |
* distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is | |
* furnished to do so, subject to the following conditions: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/lib/ManaTools/Module/Users.pm b/lib/ManaTools/Module/Users.pm | |
index 522b0d5..19509b3 100644 | |
--- a/lib/ManaTools/Module/Users.pm | |
+++ b/lib/ManaTools/Module/Users.pm | |
@@ -205,6 +205,13 @@ sub _config_fileBuilder { | |
return $confDir . "/manauser"; | |
} | |
+# users/groups tab | |
+has 'groups_users_tab' => ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import yui | |
# enable logging for debug | |
log = yui.YUILog.instance() | |
log.setLogFileName("debug.log") | |
log.enableDebugLogging( True ) | |
factory = yui.YUI.widgetFactory() | |
dialog = factory.createMainDialog() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/swig/yui.i 2015-12-05 21:09:48.996373277 +0100 | |
+++ b/swig/yui.i 2015-12-06 00:22:11.517161595 +0100 | |
@@ -278,8 +278,10 @@ class Exception; | |
{ return ($self != i); } | |
#endif | |
#if defined(SWIGPYTHON) | |
- int __cmp__( YItem *i ) | |
- { return ($self - i); } | |
+ int __eq__( YItem *i ) | |
+ { return ($self == i); } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/swig/yui.i.mga 2015-12-04 11:43:42.614392025 +0100 | |
+++ a/swig/yui.i 2015-12-04 12:02:08.414341480 +0100 | |
@@ -223,6 +223,7 @@ class Exception; | |
%include yui/YMultiLineEdit.h | |
%include yui/YMultiProgressMeter.h | |
%include yui/YMultiSelectionBox.h | |
+%include yui/YWizard.h | |
%include yui/YOptionalWidgetFactory.h | |
%include yui/YPackageSelector.h | |
%include yui/YPackageSelectorPlugin.h |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Copyright (C) 2015, Angelo Naselli. | |
# | |
# TThis program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License version 2, as | |
# published by the Free Software Foundation. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |