Hello community,

here is the log from the commit of package yast2 for openSUSE:Factory checked 
in at 2014-09-17 21:23:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2 (Old)
 and      /work/SRC/openSUSE:Factory/.yast2.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2/yast2.changes      2014-09-07 
11:10:08.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.yast2.new/yast2.changes 2014-09-17 
21:23:52.000000000 +0200
@@ -1,0 +2,14 @@
+Wed Sep 17 09:16:23 CEST 2014 - sch...@suse.de
+
+- Checking nil for repository name. (bnc#896466)
+- 3.1.107
+
+-------------------------------------------------------------------
+Tue Sep 16 12:58:53 UTC 2014 - an...@suse.com
+
+- Added an extra help message when authentication against a
+  registration server fails while refreshing repositories
+  (bnc#895719)
+- 3.1.106
+
+-------------------------------------------------------------------

Old:
----
  yast2-3.1.105.tar.bz2

New:
----
  yast2-3.1.107.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ yast2.spec ++++++
--- /var/tmp/diff_new_pack.KwR0qT/_old  2014-09-17 21:23:53.000000000 +0200
+++ /var/tmp/diff_new_pack.KwR0qT/_new  2014-09-17 21:23:53.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        3.1.105
+Version:        3.1.107
 Release:        0
 Url:            https://github.com/yast/yast-yast2
 

++++++ yast2-3.1.105.tar.bz2 -> yast2-3.1.107.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-3.1.105/library/packages/src/modules/PackageCallbacks.rb 
new/yast2-3.1.107/library/packages/src/modules/PackageCallbacks.rb
--- old/yast2-3.1.105/library/packages/src/modules/PackageCallbacks.rb  
2014-09-06 07:47:23.000000000 +0200
+++ new/yast2-3.1.107/library/packages/src/modules/PackageCallbacks.rb  
2014-09-17 09:31:10.000000000 +0200
@@ -32,6 +32,7 @@
 # $Id$
 #
 require "yast"
+require "uri"
 
 module Yast
   class PackageCallbacksClass < Module
@@ -2538,6 +2539,23 @@
 
 
     def Authentication(url, msg, username, password)
+
+      # FIXME after SLE12 release
+      # The following 'if' block is a workaround for bnc#895719 that should be
+      # extracted to a proper private method (not sure if it will work as
+      # expected being a callback) and adapted to use normal _() instead of
+      # dgettext()
+      url_query = URI(url).query
+      if url_query
+        url_params = Hash[URI.decode_www_form(url_query)]
+        if url_params.has_key?("credentials")
+          # Seems to be the url of a registration server, so add the tip to msg
+          tip = Builtins.dgettext("registration",
+                                  "Check that this system is known to the 
registration server.")
+          msg = "#{tip}\n#{msg}"
+        end
+      end
+
       popup = VBox(
         HSpacing(50), # enforce width
         VSpacing(0.1),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-3.1.105/library/packages/src/modules/SignatureCheckDialogs.rb 
new/yast2-3.1.107/library/packages/src/modules/SignatureCheckDialogs.rb
--- old/yast2-3.1.105/library/packages/src/modules/SignatureCheckDialogs.rb     
2014-09-06 07:47:23.000000000 +0200
+++ new/yast2-3.1.107/library/packages/src/modules/SignatureCheckDialogs.rb     
2014-09-17 09:31:10.000000000 +0200
@@ -974,7 +974,7 @@
             "(%2):"
         ),
         Ops.get_locale(repo, "name", _("Unknown")),
-        repo["url"] ? repo["url"].scan(/.{1,59}/).join("\n") :
+        repo && repo["url"] ? repo["url"].scan(/.{1,59}/).join("\n") :
           _("Unknown")
       )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.105/package/yast2.changes 
new/yast2-3.1.107/package/yast2.changes
--- old/yast2-3.1.105/package/yast2.changes     2014-09-06 07:47:23.000000000 
+0200
+++ new/yast2-3.1.107/package/yast2.changes     2014-09-17 09:31:10.000000000 
+0200
@@ -1,4 +1,18 @@
 -------------------------------------------------------------------
+Wed Sep 17 09:16:23 CEST 2014 - sch...@suse.de
+
+- Checking nil for repository name. (bnc#896466)
+- 3.1.107
+
+-------------------------------------------------------------------
+Tue Sep 16 12:58:53 UTC 2014 - an...@suse.com
+
+- Added an extra help message when authentication against a
+  registration server fails while refreshing repositories
+  (bnc#895719)
+- 3.1.106
+
+-------------------------------------------------------------------
 Fri Sep  5 14:32:23 UTC 2014 - lsle...@suse.cz
 
 - do not write /etc/sysconfig/kernel:INITRD_MODULES, it has been
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.105/package/yast2.spec 
new/yast2-3.1.107/package/yast2.spec
--- old/yast2-3.1.105/package/yast2.spec        2014-09-06 07:47:23.000000000 
+0200
+++ new/yast2-3.1.107/package/yast2.spec        2014-09-17 09:31:10.000000000 
+0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        3.1.105
+Version:        3.1.107
 Release:        0
 URL:            https://github.com/yast/yast-yast2
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to