[yast-commit] r48576 - in /trunk/packager: VERSION package/yast2-packager.changes src/modules/SlideShowCallbacks.ycp
Author: lslezak Date: Fri Jun 27 11:16:09 2008 New Revision: 48576 URL: http://svn.opensuse.org/viewcvs/yast?rev=48576&view=rev Log: - adapted to the new patch messages and patch scripts callbacks (bnc#401220) - 2.17.1 Modified: trunk/packager/VERSION trunk/packager/package/yast2-packager.changes trunk/packager/src/modules/SlideShowCallbacks.ycp Modified: trunk/packager/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/packager/VERSION?rev=48576&r1=48575&r2=48576&view=diff ============================================================================== --- trunk/packager/VERSION (original) +++ trunk/packager/VERSION Fri Jun 27 11:16:09 2008 @@ -1 +1 @@ -2.17.0 +2.17.1 Modified: trunk/packager/package/yast2-packager.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/packager/package/yast2-packager.changes?rev=48576&r1=48575&r2=48576&view=diff ============================================================================== --- trunk/packager/package/yast2-packager.changes (original) +++ trunk/packager/package/yast2-packager.changes Fri Jun 27 11:16:09 2008 @@ -1,4 +1,12 @@ ------------------------------------------------------------------- +Wed Jun 18 17:47:15 CEST 2008 - lslezak@suse.cz + +- add an update repository obtained via suse_register (fate#302990) +- adapted to the new patch messages and patch scripts callbacks + (bnc#401220) +- 2.17.1 + +------------------------------------------------------------------- Wed Jun 18 15:35:31 CEST 2008 - lslezak@suse.cz - ask user when uninstalling a package via command line option Modified: trunk/packager/src/modules/SlideShowCallbacks.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/packager/src/modules/SlideShowCallbacks.ycp?rev=48576&r1=48575&r2=48576&view=diff ============================================================================== --- trunk/packager/src/modules/SlideShowCallbacks.ycp (original) +++ trunk/packager/src/modules/SlideShowCallbacks.ycp Fri Jun 27 11:16:09 2008 @@ -133,10 +133,10 @@ } - global void ScriptStart(string patch_name, string patch_version, string patch_arch, string script_path, boolean installation) + global void ScriptStart(string patch_name, string patch_version, string patch_arch, string script_path) { string patch_full_name = PackageCallbacks::FormatPatchName(patch_name, patch_version, patch_arch); - y2milestone("ScriptStart: patch:%1, script:%2, installation:%3", patch_full_name, script_path, installation); + y2milestone("ScriptStart: patch:%1, script:%2", patch_full_name, script_path); // reset the progressbar if (UI::WidgetExists(`progressCurrentPackage)) @@ -178,10 +178,14 @@ return true; } - global void ScriptProblem(string description) + global string ScriptProblem(string description) { y2milestone("ScriptProblem: %1", description); Popup::Error(description); + + // Abort + // TODO: support also Ignore and Retry + return "A"; } global void ScriptFinish() -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
lslezak@svn.opensuse.org