On Monday 24 August 2009 13:48:01 Josef Reidinger wrote:
On 08/24/2009 01:31 PM, Bjoern Geuken wrote:
ref: refs/heads/master commit 10e502901ee5e98552aa1c701cf7d2d965587fa2 Author: Bjoern Geuken <bgeuken@suse.de> Date: Mon Aug 24 13:31:19 2009 +0200
patches module: added policikit class, which is parent of package and patch model --- .../patches/app/controllers/packages_controller.rb | 27 ----- .../patches/app/controllers/patches_controller.rb | 19 +++- plugins/patches/app/models/package.rb | 90 ++++------------ plugins/patches/app/models/patch.rb | 70 ++----------- plugins/patches/app/models/policykit.rb | 112 ++++++++++++++++++++ 5 files changed, 159 insertions(+), 159 deletions(-)
diff --git a/plugins/patches/app/models/policykit.rb b/plugins/patches/app/models/policykit.rb new file mode 100644 index 0000000..f5bad05 --- /dev/null +++ b/plugins/patches/app/models/policykit.rb @@ -0,0 +1,112 @@ +require "dbus" +require 'socket' +require 'thread' + +# Used to stop DBus::Main loop +class PKErrorException < Exception; end +# Used to stop DBus::Main loop +class PKFinishedException < Exception; end + +# Model for patches available via package kit +class Policykit +
Hi, I don't see any reason for PolicyKit name, maybe you want name it PackageKit? This patch is nice example of DRY refactoring, good job ;) Yes, Duncan just pointed me to this. And again Duncan has advised me to do so^^ -- To unsubscribe, e-mail: yast-devel+unsubscribe@opensuse.org For additional commands, e-mail: yast-devel+help@opensuse.org