Author: lslezak
Date: Mon Nov 3 15:12:42 2008
New Revision: 52834
URL: http://svn.opensuse.org/viewcvs/yast?rev=52834&view=rev
Log:
- use AutoIndexes zypp::Fetcher feature, fixed signed file
downloading (bnc#409927)
Modified:
trunk/pkg-bindings/package/yast2-pkg-bindings.changes
trunk/pkg-bindings/src/Source_Download.cc
Modified: trunk/pkg-bindings/package/yast2-pkg-bindings.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/pkg-bindings/package/yast2-pkg-b…
==============================================================================
--- trunk/pkg-bindings/package/yast2-pkg-bindings.changes (original)
+++ trunk/pkg-bindings/package/yast2-pkg-bindings.changes Mon Nov 3 15:12:42 2008
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Mon Nov 3 14:52:43 CET 2008 - lslezak(a)suse.cz
+
+- use AutoIndexes zypp::Fetcher feature, fixed signed file
+ downloading (bnc#409927)
+
+-------------------------------------------------------------------
Fri Oct 31 16:29:10 CET 2008 - lslezak(a)suse.cz
- Pkg::ResolvableProperties() - return correct status for selected
Modified: trunk/pkg-bindings/src/Source_Download.cc
URL: http://svn.opensuse.org/viewcvs/yast/trunk/pkg-bindings/src/Source_Download…
==============================================================================
--- trunk/pkg-bindings/src/Source_Download.cc (original)
+++ trunk/pkg-bindings/src/Source_Download.cc Mon Nov 3 15:12:42 2008
@@ -81,7 +81,8 @@
// keep a reference to the tmpdir so the directory is not deleted at the and of the block
tmp_dirs.push_back(tmpdir);
- path = tmpdir.path() / f->value();
+ path = tmpdir.path();
+ fch.setOptions(zypp::Fetcher::AutoAddIndexes);
fch.enqueueDigested(mloc);
fch.start(path, *repo->mediaAccess()); // uses MediaAccess to retrieve
fch.reset();
@@ -283,7 +284,8 @@
// keep the reference to the tmpdir so the directory is not deleted at the and of the block
tmp_dirs.push_back(tmpdir);
path = tmpdir.path();
- f.enqueueDir(mloc, recursive->value());
+ f.setOptions(zypp::Fetcher::AutoAddIndexes);
+ f.enqueueDigestedDir(mloc, recursive->value());
f.start(path, *repo->mediaAccess()); // uses MediaAccess to retrieve
f.reset();
}
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
Author: keichwa
Date: Mon Nov 3 15:01:09 2008
New Revision: 52832
URL: http://svn.opensuse.org/viewcvs/yast?rev=52832&view=rev
Log:
Created tag stable-2_17_6 for slide-show
Added:
tags/stable-2_17_6/slide-show/
- copied from r52831, trunk/slide-show/
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
Author: lslezak
Date: Mon Nov 3 12:01:00 2008
New Revision: 52827
URL: http://svn.opensuse.org/viewcvs/yast?rev=52827&view=rev
Log:
Created tag stable-2_17_20 for core
Added:
tags/stable-2_17_20/core/
- copied from r52826, trunk/core/
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
Author: lslezak
Date: Mon Nov 3 12:00:55 2008
New Revision: 52826
URL: http://svn.opensuse.org/viewcvs/yast?rev=52826&view=rev
Log:
- fixed testing of the result of polkit_caller_new_from_dbus_name()
call which sometime sets the error object even when there is no
real error (bnc#439150)
- 2.17.20
Modified:
trunk/core/VERSION
trunk/core/liby2dbus/src/PolKit.cc
trunk/core/package/yast2-core.changes
Modified: trunk/core/VERSION
URL: http://svn.opensuse.org/viewcvs/yast/trunk/core/VERSION?rev=52826&r1=52825&…
==============================================================================
--- trunk/core/VERSION (original)
+++ trunk/core/VERSION Mon Nov 3 12:00:55 2008
@@ -1 +1 @@
-2.17.19
+2.17.20
Modified: trunk/core/liby2dbus/src/PolKit.cc
URL: http://svn.opensuse.org/viewcvs/yast/trunk/core/liby2dbus/src/PolKit.cc?rev…
==============================================================================
--- trunk/core/liby2dbus/src/PolKit.cc (original)
+++ trunk/core/liby2dbus/src/PolKit.cc Mon Nov 3 12:00:55 2008
@@ -25,11 +25,22 @@
y2debug("Checking action %s from %s", action_id.c_str(), dbus_caller.c_str());
PolKitCaller *pk_caller = polkit_caller_new_from_dbus_name(con, dbus_caller.c_str(), &dbus_error);
+
if (dbus_error_is_set (&dbus_error))
{
- y2error ("dbus error: %s: %s", dbus_error.name, dbus_error.message);
+ // PolKit sometimes sets the error even if the PolKitCaller object has been successfully returned
+ // see bnc#439150
+ if (pk_caller == NULL)
+ {
+ y2error ("dbus error: %s: %s", dbus_error.name, dbus_error.message);
+ }
+
dbus_error_free (&dbus_error);
- return false;
+
+ if (pk_caller == NULL)
+ {
+ return false;
+ }
}
if (pk_caller == NULL)
Modified: trunk/core/package/yast2-core.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/core/package/yast2-core.changes?…
==============================================================================
--- trunk/core/package/yast2-core.changes (original)
+++ trunk/core/package/yast2-core.changes Mon Nov 3 12:00:55 2008
@@ -1,4 +1,12 @@
-------------------------------------------------------------------
+Mon Nov 3 11:55:50 CET 2008 - lslezak(a)suse.cz
+
+- fixed testing of the result of polkit_caller_new_from_dbus_name()
+ call which sometime sets the error object even when there is no
+ real error (bnc#439150)
+- 2.17.20
+
+-------------------------------------------------------------------
Fri Oct 24 15:54:54 CEST 2008 - visnov(a)suse.cz
- Also print diff when agent-process testsuite fails
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
Author: keichwa
Date: Mon Nov 3 11:48:21 2008
New Revision: 52825
URL: http://svn.opensuse.org/viewcvs/yast?rev=52825&view=rev
Log:
fix defects reported as bnc#439101
Modified:
trunk/slide-show/SuSELinux/slideshow.xml
Modified: trunk/slide-show/SuSELinux/slideshow.xml
URL: http://svn.opensuse.org/viewcvs/yast/trunk/slide-show/SuSELinux/slideshow.x…
==============================================================================
--- trunk/slide-show/SuSELinux/slideshow.xml (original)
+++ trunk/slide-show/SuSELinux/slideshow.xml Mon Nov 3 11:48:21 2008
@@ -156,11 +156,11 @@
<section label="10_devel">
<title>Virtualization Technology and Application Development Tools</title>
- <para>The Xen hypervisor is included with openSUSE. Xen is one of the most
-robust solutions for virtualization available. In addition, openSUSE
-provides tools for network file sharing, printing (Samba) and Web hosting
-(Apache). For application development, openSUSE comes with a complete
-set of runtime environments plus extensive application development tools,
+ <para>The Xen hypervisor is included with openSUSE. Xen is one of the most
+robust solutions for virtualization available. In addition, openSUSE provides
+tools for network file sharing (Samba, NFS, etc.), printing (CUPS) and Web
+hosting (Apache). For application development, openSUSE comes with a complete
+set of runtime environments plus extensive application development tools,
including KDevelop, Eclipse and Mono.</para>
</section>
@@ -170,7 +170,7 @@
<para>
The openSUSE distribution provides extensive documentation for specific
openSUSE questions as well as general Linux-related questions. The Help
-Center is accessible via the main menu . Manuals are also available in
+Center is accessible via the main menu. Manuals are also available in
PDF and can be downloaded and printed <!-- translator: check whether a
dedicated page exists for your language and use it instead of "en" -->
(http://en.opensuse.org/Documentation).
@@ -188,7 +188,9 @@
www.opensuse.org
</para>
-<para>For support from other openSUSE users, visit the official openSUSE
+<para><!-- translator: adjust the snippet about forums according to your
+language; see https://bugzilla.novell.com/show_bug.cgi?id=439101 -->
+For support from other openSUSE users, visit the official openSUSE
forums at http://forums.opensuse.org/. Here you'll find thousands of other
openSUSE users, eager to help you get everything you can out of Linux. If
you're an experienced openSUSE user, the forums are a great place to meet
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org