Hello community,

here is the log from the commit of package webyast-base for openSUSE:Factory 
checked in at 2012-11-25 14:36:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/webyast-base (Old)
 and      /work/SRC/openSUSE:Factory/.webyast-base.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "webyast-base", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/webyast-base/webyast-base.changes        
2012-11-08 21:54:47.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.webyast-base.new/webyast-base.changes   
2012-11-25 14:36:26.000000000 +0100
@@ -1,0 +2,12 @@
+Thu Nov 15 14:53:42 UTC 2012 - [email protected]
+
+- fixed permission check in the permission service (bnc#787654)
+- 0.3.29
+
+-------------------------------------------------------------------
+Fri Nov  2 16:58:52 UTC 2012 - [email protected]
+
+- support also controlpanel/index XML and JSON requests
+  (bnc#787283)
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ webyast-base.spec ++++++
--- /var/tmp/diff_new_pack.1qFBhs/_old  2012-11-25 14:36:27.000000000 +0100
+++ /var/tmp/diff_new_pack.1qFBhs/_new  2012-11-25 14:36:27.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           webyast-base
-Version:        0.3.28
+Version:        0.3.29
 Release:        0
 Provides:       yast2-webservice = %{version}
 Obsoletes:      yast2-webservice < %{version}


++++++ rcwebyast ++++++
--- /var/tmp/diff_new_pack.1qFBhs/_old  2012-11-25 14:36:27.000000000 +0100
+++ /var/tmp/diff_new_pack.1qFBhs/_new  2012-11-25 14:36:27.000000000 +0100
@@ -180,7 +180,7 @@
     echo -n "Starting WebYaST "
     if [ ! -e  $COMBINEDCERTFILE ]
     then
-        echo "\nNo WebYaST certificate found, creating one now..."
+        echo -e "\nNo WebYaST certificate found, creating one now..."
         LOG_FILE="/var/log/webyast/check-create-certificate.log"
         if ! /usr/sbin/check-create-certificate -c -C $CERTIFICATEFILE -K 
$CERTKEYFILE -B $COMBINEDCERTFILE -D webyast -O WebYaST -U WebYaST > $LOG_FILE 
2>&1
         then

++++++ webyastPermissionsService.rb ++++++
--- /var/tmp/diff_new_pack.1qFBhs/_old  2012-11-25 14:36:27.000000000 +0100
+++ /var/tmp/diff_new_pack.1qFBhs/_new  2012-11-25 14:36:27.000000000 +0100
@@ -145,8 +145,6 @@
                 result << "no"
               end
             else
-              uid = 
DBus::SystemBus.instance.proxy.GetConnectionUnixUser(sender)[0]
-              user = Etc.getpwuid(uid).name
               if PolKit.polkit_check(p, user) == :yes
                 result << "yes"
               else

++++++ www.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/www/Gemfile new/www/Gemfile
--- old/www/Gemfile     2012-11-01 07:33:28.000000000 +0100
+++ new/www/Gemfile     2012-10-12 12:59:54.000000000 +0200
@@ -71,7 +71,7 @@
       # needed for rake gettext:find
       gem 'ruby_parser'
 
-      #gem "ruby-debug"
+      gem "ruby-debug"
     end
 end
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/www/app/assets/stylesheets/webyast-controlpanel.css 
new/www/app/assets/stylesheets/webyast-controlpanel.css
--- old/www/app/assets/stylesheets/webyast-controlpanel.css     2012-11-01 
07:31:01.000000000 +0100
+++ new/www/app/assets/stylesheets/webyast-controlpanel.css     2012-11-07 
13:57:52.000000000 +0100
@@ -366,3 +366,8 @@
 span.icon-yast-system{ background-position: 0 -1372px; }
 span.icon-yast-users{ background-position: 0 -1470px; }
 
+/* Align the "Update All" link */
+.update_all {
+    margin-left: 21px;
+    margin-top: 4px;
+}
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/www/app/controllers/controlpanel_controller.rb 
new/www/app/controllers/controlpanel_controller.rb
--- old/www/app/controllers/controlpanel_controller.rb  2012-09-02 
20:54:27.000000000 +0200
+++ new/www/app/controllers/controlpanel_controller.rb  2012-11-07 
10:31:16.000000000 +0100
@@ -34,6 +34,12 @@
     return false if need_redirect
     @shortcuts = shortcuts_data
     @count = getNumberPermittedModules(@shortcuts)
+
+    respond_to do |format|
+      format.html
+      format.xml { render :xml => @shortcuts.map{|name, data| { :name => name, 
:data => data}}.to_xml(:root => "plugins", :dasherize => false) }
+      format.json { render :xml => @shortcuts.map{|name, data| { :name => 
name, :data => data}}.to_json }
+    end
   end
 
   def nextstep

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to