Hello community, here is the log from the commit of package yast2-storage for openSUSE:Factory checked in at 2015-02-01 12:29:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-storage (Old) and /work/SRC/openSUSE:Factory/.yast2-storage.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-storage" Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-storage/yast2-storage.changes 2014-12-03 22:52:32.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-storage.new/yast2-storage.changes 2015-02-01 12:29:02.000000000 +0100 @@ -1,0 +2,6 @@ +Thu Jan 29 14:09:12 CET 2015 - [email protected] + +- fixed callback for mount graph handling +- version 3.1.51 + +------------------------------------------------------------------- Old: ---- yast2-storage-3.1.50.tar.bz2 New: ---- yast2-storage-3.1.51.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-storage.spec ++++++ --- /var/tmp/diff_new_pack.WpiCzI/_old 2015-02-01 12:29:03.000000000 +0100 +++ /var/tmp/diff_new_pack.WpiCzI/_new 2015-02-01 12:29:03.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package yast2-storage # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: yast2-storage -Version: 3.1.50 +Version: 3.1.51 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ yast2-storage-3.1.50.tar.bz2 -> yast2-storage-3.1.51.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-storage-3.1.50/package/yast2-storage.changes new/yast2-storage-3.1.51/package/yast2-storage.changes --- old/yast2-storage-3.1.50/package/yast2-storage.changes 2014-12-01 14:43:13.000000000 +0100 +++ new/yast2-storage-3.1.51/package/yast2-storage.changes 2015-01-30 11:33:15.000000000 +0100 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Thu Jan 29 14:09:12 CET 2015 - [email protected] + +- fixed callback for mount graph handling +- version 3.1.51 + +------------------------------------------------------------------- Fri Nov 28 16:14:01 CET 2014 - [email protected] - fixed tmpfs handling in GetDiskPartition (bsc#902385) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-storage-3.1.50/package/yast2-storage.spec new/yast2-storage-3.1.51/package/yast2-storage.spec --- old/yast2-storage-3.1.50/package/yast2-storage.spec 2014-12-01 14:43:13.000000000 +0100 +++ new/yast2-storage-3.1.51/package/yast2-storage.spec 2015-01-30 11:33:15.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package yast2-storage # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: yast2-storage -Version: 3.1.50 +Version: 3.1.51 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-storage-3.1.50/src/include/partitioning/ep-graph.rb new/yast2-storage-3.1.51/src/include/partitioning/ep-graph.rb --- old/yast2-storage-3.1.50/src/include/partitioning/ep-graph.rb 2014-12-01 14:43:14.000000000 +0100 +++ new/yast2-storage-3.1.51/src/include/partitioning/ep-graph.rb 2015-01-30 11:33:15.000000000 +0100 @@ -1,6 +1,6 @@ # encoding: utf-8 -# Copyright (c) 2012 Novell, Inc. +# Copyright (c) [2012-2015] Novell, Inc. # # All Rights Reserved. # @@ -19,10 +19,11 @@ # To contact Novell about this file by physical or electronic mail, you may # find current contact information at www.novell.com. -# File: ep-main.ycp +# File: ep-graph.rb # Package: yast2-storage # Summary: Expert Partitioner # Authors: Arvin Schnell <[email protected]> + module Yast module PartitioningEpGraphInclude def initialize_partitioning_ep_graph(include_target) @@ -67,13 +68,7 @@ # dialog heading, graph is the mathematic term for # a set of notes connected with edges term(:IconAndHeading, _("Device Graph"), StorageIcons.graph_icon), - term( - :Graph, - Id(:graph), - Opt(:notify, :notifyContextMenu), - filename, - "dot" - ), + term(:Graph, Id(:graph), Opt(:notify, :notifyContextMenu), filename, "dot"), HBox( # button text PushButton(Id(:save), _("Save Device Graph...")), @@ -162,13 +157,7 @@ # dialog heading, graph is the mathematic term for # a set of notes connected with edges term(:IconAndHeading, _("Mount Graph"), StorageIcons.graph_icon), - term( - :Graph, - Id(:graph), - Opt(:notify, :notifyContextMenu), - filename, - "dot" - ), + term(:Graph, Id(:graph), Opt(:notify, :notifyContextMenu), filename, "dot"), HBox( # button text PushButton(Id(:save), _("Save Mount Graph...")), diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-storage-3.1.50/src/include/partitioning/ep-main.rb new/yast2-storage-3.1.51/src/include/partitioning/ep-main.rb --- old/yast2-storage-3.1.50/src/include/partitioning/ep-main.rb 2014-12-01 14:43:14.000000000 +0100 +++ new/yast2-storage-3.1.51/src/include/partitioning/ep-main.rb 2015-01-30 11:33:15.000000000 +0100 @@ -19,10 +19,11 @@ # To contact Novell about this file by physical or electronic mail, you may # find current contact information at www.novell.com. -# File: ep-main.ycp +# File: ep-main.rb # Package: yast2-storage # Summary: Expert Partitioner # Authors: Arvin Schnell <[email protected]> + module Yast module PartitioningEpMainInclude def initialize_partitioning_ep_main(include_target) @@ -156,14 +157,11 @@ :devicegraph => { :create => fun_ref(method(:CreateDeviceGraphPanel), "void (any)"), :refresh => fun_ref(method(:RefreshDeviceGraphPanel), "void (any)"), - :handle => fun_ref( - method(:HandleDeviceGraphPanel), - "void (any, map)" - ) + :handle => fun_ref(method(:HandleDeviceGraphPanel), "void (any, map)") }, :mountgraph => { :create => fun_ref(method(:CreateMountGraphPanel), "void (any)"), - :refresh => fun_ref(method(:RefreshDeviceGraphPanel), "void (any)"), + :refresh => fun_ref(method(:RefreshMountGraphPanel), "void (any)"), :handle => fun_ref(method(:HandleMountGraphPanel), "void (any, map)") }, :summary => { @@ -448,25 +446,17 @@ ] if UI.HasSpecialWidget(:Graph) - # tree node label tree = Builtins.add( tree, - Item( - Id(:devicegraph), - term(:icon, StorageIcons.graph_icon), - _("Device Graph"), - open.call(:devicegraph) - ) + # tree node label + Item(Id(:devicegraph), term(:icon, StorageIcons.graph_icon), + _("Device Graph"), open.call(:devicegraph)) ) - # tree node label tree = Builtins.add( tree, - Item( - Id(:mountgraph), - term(:icon, StorageIcons.graph_icon), - _("Mount Graph"), - open.call(:mountgraph) - ) + # tree node label + Item(Id(:mountgraph), term(:icon, StorageIcons.graph_icon), + _("Mount Graph"), open.call(:mountgraph)) ) end -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
