Mailinglist Archive: yast-commit (883 mails)

< Previous Next >
[yast-commit] r58093 - in /trunk/users: VERSION package/yast2-users.changes src/YaPI/USERS.pm src/dialogs.ycp
  • From: jsuchome@xxxxxxxxxxxxxxxx
  • Date: Thu, 16 Jul 2009 13:59:50 -0000
  • Message-id: <E1MRRV0-0005uY-Sx@xxxxxxxxxxxxxxxx>
Author: jsuchome
Date: Thu Jul 16 15:59:50 2009
New Revision: 58093

URL: http://svn.opensuse.org/viewcvs/yast?rev=58093&view=rev
Log:
- use GetFeature instead of GetBooleanFeature to detect if the
key is present
- 2.18.8


Modified:
trunk/users/VERSION
trunk/users/package/yast2-users.changes
trunk/users/src/YaPI/USERS.pm
trunk/users/src/dialogs.ycp

Modified: trunk/users/VERSION
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/users/VERSION?rev=58093&r1=58092&r2=58093&view=diff
==============================================================================
--- trunk/users/VERSION (original)
+++ trunk/users/VERSION Thu Jul 16 15:59:50 2009
@@ -1 +1 @@
-2.18.7
+2.18.8

Modified: trunk/users/package/yast2-users.changes
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/users/package/yast2-users.changes?rev=58093&r1=58092&r2=58093&view=diff
==============================================================================
--- trunk/users/package/yast2-users.changes (original)
+++ trunk/users/package/yast2-users.changes Thu Jul 16 15:59:50 2009
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Thu Jul 16 15:58:18 CEST 2009 - jsuchome@xxxxxxx
+
+- use GetFeature instead of GetBooleanFeature to detect if the
+ key is present
+- 2.18.8
+
+-------------------------------------------------------------------
Fri Jun 26 15:13:55 CEST 2009 - jsuchome@xxxxxxx

- manual installation of 32bit packages packages no longer needed

Modified: trunk/users/src/YaPI/USERS.pm
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/users/src/YaPI/USERS.pm?rev=58093&r1=58092&r2=58093&view=diff
==============================================================================
--- trunk/users/src/YaPI/USERS.pm (original)
+++ trunk/users/src/YaPI/USERS.pm Thu Jul 16 15:59:50 2009
@@ -443,6 +443,7 @@
}

Users->SetGUI (0);
+ Mode->SetUI ("commandline");

$ret = Users->Read ();
if ($ret ne "") { return $ret; }

Modified: trunk/users/src/dialogs.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/users/src/dialogs.ycp?rev=58093&r1=58092&r2=58093&view=diff
==============================================================================
--- trunk/users/src/dialogs.ycp (original)
+++ trunk/users/src/dialogs.ycp Thu Jul 16 15:59:50 2009
@@ -390,12 +390,12 @@
`Left( `CheckBox (`id (`autologin),_("A&utomatic Login"),
Autologin::used) )
);
- boolean root_pw_feature = ProductFeatures::GetBooleanFeature
("globals", "root_password_as_first_user");
- if (root_pw_feature != nil)
+ any root_pw_feature = ProductFeatures::GetFeature ("globals",
"root_password_as_first_user");
+ if (root_pw_feature != "")
optionbox = add (optionbox,
`Left (`CheckBox (`id (`root_pw),
// checkbox label
- _("U&se this password for system administrator"), root_pw,
root_pw_feature)
+ _("U&se this password for system administrator"),
root_pw_feature == true)
));
}
else if (!do_not_edit && !installation ())

--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx

< Previous Next >
This Thread
  • No further messages