[yast-commit] r57814 - in /branches/SuSE-Code-11-Branch/pos-installation: VERSION package/yast2-pos-installation.changes src/clients/inst_slepos_detection.ycp
Author: jsuchome Date: Wed Jul 1 10:00:25 2009 New Revision: 57814 URL: http://svn.opensuse.org/viewcvs/yast?rev=57814&view=rev Log: - save the content of input boxes (bnc#518061) - 2.17.6 Modified: branches/SuSE-Code-11-Branch/pos-installation/VERSION branches/SuSE-Code-11-Branch/pos-installation/package/yast2-pos-installation.changes branches/SuSE-Code-11-Branch/pos-installation/src/clients/inst_slepos_detection.ycp Modified: branches/SuSE-Code-11-Branch/pos-installation/VERSION URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-Branch/pos-installation/VERSION?rev=57814&r1=57813&r2=57814&view=diff ============================================================================== --- branches/SuSE-Code-11-Branch/pos-installation/VERSION (original) +++ branches/SuSE-Code-11-Branch/pos-installation/VERSION Wed Jul 1 10:00:25 2009 @@ -1 +1 @@ -2.17.5 +2.17.6 Modified: branches/SuSE-Code-11-Branch/pos-installation/package/yast2-pos-installation.changes URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-Branch/pos-installation/package/yast2-pos-installation.changes?rev=57814&r1=57813&r2=57814&view=diff ============================================================================== --- branches/SuSE-Code-11-Branch/pos-installation/package/yast2-pos-installation.changes (original) +++ branches/SuSE-Code-11-Branch/pos-installation/package/yast2-pos-installation.changes Wed Jul 1 10:00:25 2009 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Wed Jul 1 09:45:01 CEST 2009 - jsuchome@suse.cz + +- save the content of input boxes (bnc#518061) +- 2.17.6 + +------------------------------------------------------------------- Wed Jul 1 08:38:37 CEST 2009 - jsuchome@suse.cz - updated the help text (bnc#517717) Modified: branches/SuSE-Code-11-Branch/pos-installation/src/clients/inst_slepos_detection.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-Branch/pos-installation/src/clients/inst_slepos_detection.ycp?rev=57814&r1=57813&r2=57814&view=diff ============================================================================== --- branches/SuSE-Code-11-Branch/pos-installation/src/clients/inst_slepos_detection.ycp (original) +++ branches/SuSE-Code-11-Branch/pos-installation/src/clients/inst_slepos_detection.ycp Wed Jul 1 10:00:25 2009 @@ -60,7 +60,9 @@ */ term cont = `RadioButtonGroup (`id ("migration_data"), `opt (`notify), `VBox ( - `Left (`RadioButton (`id ("rb_file"), `opt (`notify), _("Path to archive file"))), + `Left ( + // radio button label + `RadioButton (`id ("rb_file"), `opt (`notify), _("Path to archive file"), file_path != "")), `HBox ( `HSpacing (3), `HBox ( @@ -69,7 +71,7 @@ ) ), `VSpacing (), - `Left (`RadioButton (`id ("rb_dir"), `opt (`notify), _("Path to backup directory"))), + `Left (`RadioButton (`id ("rb_dir"), `opt (`notify), _("Path to backup directory"), dir_path != "")), `HBox ( `HSpacing (3), `HBox ( @@ -137,9 +139,15 @@ // FIXME validate // reset the possible value of the string which won't be used if (UI::QueryWidget (`id ("migration_data"), `Value) == "rb_file") + { + file_path = (string) UI::QueryWidget (`id ("file_path"), `Value); dir_path = ""; + } else + { + dir_path = (string) UI::QueryWidget (`id ("dir_path"), `Value); file_path = ""; + } POSInstallation::dir_path = dir_path; POSInstallation::file_path = file_path; -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
jsuchome@svn.opensuse.org