Author: lslezak
Date: Tue Dec 30 15:44:50 2008
New Revision: 54349
URL: http://svn.opensuse.org/viewcvs/yast?rev=54349&view=rev
Log:
- better help text for package installation progress dialog
(bnc#443142)
Modified:
trunk/yast2/library/packages/src/SlideShow.ycp
trunk/yast2/package/yast2.changes
Modified: trunk/yast2/library/packages/src/SlideShow.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/yast2/library/packages/src/Slide…
==============================================================================
--- trunk/yast2/library/packages/src/SlideShow.ycp (original)
+++ trunk/yast2/library/packages/src/SlideShow.ycp Tue Dec 30 15:44:50 2008
@@ -650,7 +650,8 @@
string HelpText()
{
// Help text while software packages are being installed (displayed only in rare cases)
- string help_text = _("<p>Please wait while packages are being installed.</p>");
+ string help_text = _("<p>Please wait while packages are being installed.</p>")
+ + _("<P><B>Aborting Installation</B>Package installation can be abored using the <B>Abort</B> button. However, the system then can be in a inconsistent or unusable state or it may not boot if a basic system component is not installed.</P>");
return help_text;
}
Modified: trunk/yast2/package/yast2.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/yast2/package/yast2.changes?rev=…
==============================================================================
--- trunk/yast2/package/yast2.changes (original)
+++ trunk/yast2/package/yast2.changes Tue Dec 30 15:44:50 2008
@@ -3,6 +3,8 @@
- use "Installed Size" label in the summary table during package
installation (bnc#355326)
+- better help text for package installation progress dialog
+ (bnc#443142)
-------------------------------------------------------------------
Tue Dec 23 08:38:26 CET 2008 - lslezak(a)suse.cz
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
Author: lslezak
Date: Tue Dec 30 14:40:14 2008
New Revision: 54348
URL: http://svn.opensuse.org/viewcvs/yast?rev=54348&view=rev
Log:
- use "Installed Size" label in the summary table during package
installation (bnc#355326)
Modified:
trunk/yast2/library/packages/src/SlideShow.ycp
trunk/yast2/package/yast2.changes
Modified: trunk/yast2/library/packages/src/SlideShow.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/yast2/library/packages/src/Slide…
==============================================================================
--- trunk/yast2/library/packages/src/SlideShow.ycp (original)
+++ trunk/yast2/library/packages/src/SlideShow.ycp Tue Dec 30 14:40:14 2008
@@ -535,8 +535,8 @@
`header(
// Table headings for CD statistics during installation
_("Media"),
- // Table headings for CD statistics during installation
- `Right( _("Size") ),
+ // Table headings for CD statistics during installation - keep as short as possible!
+ `Right( _("Installed Size") ),
// Table headings for CD statistics during installation
`Right( _("Packages") ),
// Table headings for CD statistics during installation
Modified: trunk/yast2/package/yast2.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/yast2/package/yast2.changes?rev=…
==============================================================================
--- trunk/yast2/package/yast2.changes (original)
+++ trunk/yast2/package/yast2.changes Tue Dec 30 14:40:14 2008
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Tue Dec 30 14:37:45 CET 2008 - lslezak(a)suse.cz
+
+- use "Installed Size" label in the summary table during package
+ installation (bnc#355326)
+
+-------------------------------------------------------------------
Tue Dec 23 08:38:26 CET 2008 - lslezak(a)suse.cz
- CommandLine.ycp - fixed handling of multiline help texts in
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
Author: lslezak
Date: Tue Dec 30 13:35:58 2008
New Revision: 54347
URL: http://svn.opensuse.org/viewcvs/yast?rev=54347&view=rev
Log:
- do not display the free space warning in the installation summary
for the partitions which are already almost full but nothing is
going to be installed there (bnc#259493)
Modified:
trunk/packager/package/yast2-packager.changes
trunk/packager/src/modules/SpaceCalculation.ycp
Modified: trunk/packager/package/yast2-packager.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/packager/package/yast2-packager.…
==============================================================================
--- trunk/packager/package/yast2-packager.changes (original)
+++ trunk/packager/package/yast2-packager.changes Tue Dec 30 13:35:58 2008
@@ -4,6 +4,9 @@
- display the Package selector instead of the Pattern selector
if there is a resolver problem during installation/update,
display the conflicts immeditely (bnc#436721)
+- do not display the free space warning in the installation summary
+ for the partitions which are already almost full but nothing is
+ going to be installed there (bnc#259493)
-------------------------------------------------------------------
Tue Dec 23 09:46:51 CET 2008 - lslezak(a)suse.cz
Modified: trunk/packager/src/modules/SpaceCalculation.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/packager/src/modules/SpaceCalcul…
==============================================================================
--- trunk/packager/src/modules/SpaceCalculation.ycp (original)
+++ trunk/packager/src/modules/SpaceCalculation.ycp Tue Dec 30 13:35:58 2008
@@ -611,14 +611,16 @@
//$[ "dir" : [ total, usednow, usedfuture ], .... ]
foreach (string dir, list sizelist, Pkg::TargetGetDU(),
{
- y2milestone ("%1: %2", dir, sizelist);
+ y2milestone ("Disk usage of directory %1: %2", dir, sizelist);
integer total = sizelist[0]:0;
integer used_future = sizelist[2]:0;
+ integer used_now = sizelist[1]:0;
integer current_free_size = (total - used_future);
integer current_free_percent = current_free_size*100/total;
- if (current_free_size > 0)
+ // ignore the partitions which were already full and no files will be installed there (bnc#259493)
+ if (used_future > used_now && current_free_size > 0)
{
if (current_free_percent < free_percent && current_free_size < max_unsufficient_free_size )
{
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
Author: lslezak
Date: Tue Dec 30 12:13:24 2008
New Revision: 54345
URL: http://svn.opensuse.org/viewcvs/yast?rev=54345&view=rev
Log:
- display the Package selector instead of the Pattern selector
if there is a resolver problem during installation/update,
display the conflicts immeditely (bnc#436721)
Modified:
trunk/packager/package/yast2-packager.changes
trunk/packager/src/clients/inst_sw_select.ycp
Modified: trunk/packager/package/yast2-packager.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/packager/package/yast2-packager.…
==============================================================================
--- trunk/packager/package/yast2-packager.changes (original)
+++ trunk/packager/package/yast2-packager.changes Tue Dec 30 12:13:24 2008
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Tue Dec 30 11:48:28 CET 2008 - lslezak(a)suse.cz
+
+- display the Package selector instead of the Pattern selector
+ if there is a resolver problem during installation/update,
+ display the conflicts immeditely (bnc#436721)
+
+-------------------------------------------------------------------
Tue Dec 23 09:46:51 CET 2008 - lslezak(a)suse.cz
- repositories.ycp - configure 'keeppackages' repository option
Modified: trunk/packager/src/clients/inst_sw_select.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/packager/src/clients/inst_sw_sel…
==============================================================================
--- trunk/packager/src/clients/inst_sw_select.ycp (original)
+++ trunk/packager/src/clients/inst_sw_select.ycp Tue Dec 30 12:13:24 2008
@@ -20,6 +20,7 @@
textdomain "packager";
import "Packages";
+ import "PackagesUI";
symbol ret = `again;
@@ -32,7 +33,18 @@
while ( ret == `again )
{
- ret = (symbol)WFM::CallFunction( "inst_packages", [] );
+ // display the installation summary in case there is a solver problem (bnc#436721)
+ if (Packages::solve_errors > 0)
+ {
+ y2milestone("Unresolved conflicts, using summary mode");
+ ret = PackagesUI::RunPackageSelector($["mode" : `summaryMode]);
+ }
+ else
+ {
+ ret = PackagesUI::RunPatternSelector();
+ }
+
+ y2milestone("Package selector result: %1", ret);
if ( ret == `accept )
{
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org