Hello community, here is the log from the commit of package yast2-ntp-client checked in at Thu Sep 13 18:37:12 CEST 2007. -------- --- yast2-ntp-client/yast2-ntp-client.changes 2007-09-06 18:56:10.000000000 +0200 +++ /mounts/work_src_done/NOARCH/yast2-ntp-client/yast2-ntp-client.changes 2007-09-13 18:29:35.656600000 +0200 @@ -1,0 +2,9 @@ +Thu Sep 13 17:50:19 CEST 2007 - kmachalkova@suse.cz + +- In installation proposal, remember whether synchronization with + NTP server has been selected (#308238) +- Set AbortFunction back to 'nil' after NtpClient::Read has been + called to prevent segfault after multiple calls (#294773) +- 2.15.10 + +------------------------------------------------------------------- Old: ---- yast2-ntp-client-2.15.9.tar.bz2 New: ---- yast2-ntp-client-2.15.10.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-ntp-client.spec ++++++ --- /var/tmp/diff_new_pack.T28812/_old 2007-09-13 18:37:03.000000000 +0200 +++ /var/tmp/diff_new_pack.T28812/_new 2007-09-13 18:37:03.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package yast2-ntp-client (Version 2.15.9) +# spec file for package yast2-ntp-client (Version 2.15.10) # # Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,12 +11,12 @@ # norootforbuild Name: yast2-ntp-client -Version: 2.15.9 +Version: 2.15.10 Release: 1 License: GPL v2 or later Group: System/YaST BuildRoot: %{_tmppath}/%{name}-%{version}-build -Source0: yast2-ntp-client-2.15.9.tar.bz2 +Source0: yast2-ntp-client-2.15.10.tar.bz2 prefix: /usr BuildRequires: perl-XML-Writer update-desktop-files yast2 yast2-devtools yast2-testsuite #SLPAPI.pm @@ -36,7 +36,7 @@ Lukas Ocilka <locilka@suse.cz> %prep -%setup -n yast2-ntp-client-2.15.9 +%setup -n yast2-ntp-client-2.15.10 %build %{prefix}/bin/y2tool y2autoconf @@ -74,6 +74,12 @@ /usr/share/YaST2/schema/autoyast/rnc/ntpclient.rnc %changelog +* Thu Sep 13 2007 - kmachalkova@suse.cz +- In installation proposal, remember whether synchronization with + NTP server has been selected (#308238) +- Set AbortFunction back to 'nil' after NtpClient::Read has been + called to prevent segfault after multiple calls (#294773) +- 2.15.10 * Thu Sep 06 2007 - kmachalkova@suse.cz - Accept IP as a valid NTP server address (#308265) - Use Packages::addAdditionalPackage() for marking xntp package for ++++++ yast2-ntp-client-2.15.9.tar.bz2 -> yast2-ntp-client-2.15.10.tar.bz2 ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ntp-client-2.15.9/src/dialogs.ycp new/yast2-ntp-client-2.15.10/src/dialogs.ycp --- old/yast2-ntp-client-2.15.9/src/dialogs.ycp 2007-09-06 18:18:47.000000000 +0200 +++ new/yast2-ntp-client-2.15.10/src/dialogs.ycp 2007-09-13 17:50:10.000000000 +0200 @@ -4,7 +4,7 @@ * Summary: Dialogs definitions * Authors: Jiri Srain <jsrain@suse.cz> * - * $Id: dialogs.ycp 40794 2007-09-06 16:18:46Z kmachalkova $ + * $Id: dialogs.ycp 40896 2007-09-13 15:50:09Z kmachalkova $ */ { @@ -59,6 +59,7 @@ NtpClient::AbortFunction = PollAbort; boolean ret = NtpClient::Read(); + NtpClient::AbortFunction = nil; return ret ? `next : `abort; } diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ntp-client-2.15.9/src/ntp-client_proposal.ycp new/yast2-ntp-client-2.15.10/src/ntp-client_proposal.ycp --- old/yast2-ntp-client-2.15.9/src/ntp-client_proposal.ycp 2007-09-06 18:14:12.000000000 +0200 +++ new/yast2-ntp-client-2.15.10/src/ntp-client_proposal.ycp 2007-09-12 19:06:06.000000000 +0200 @@ -84,11 +84,7 @@ if (func == "CreateUI") { term cont = - `Left (`VBox ( `id(`ntp_content), - `Left (`RadioButton (`id (`ntp), `opt (`notify), - // radio button label - _("Synchronize with NTP Server"), false) - ), + `Left ( `VBox( `VSpacing (0.5), `HBox ( `HSpacing (3), @@ -127,6 +123,17 @@ ret = true; } +else if (func == "GetUseNTP") +{ + ret = NtpClient::ntp_selected; +} + +else if (func == "SetUseNTP") +{ + NtpClient::ntp_selected = param["ntp_used"]:false; + ret = true; +} + else if (func == "MakeProposal") { ProposeSomething(); diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ntp-client-2.15.9/src/NtpClient.ycp new/yast2-ntp-client-2.15.10/src/NtpClient.ycp --- old/yast2-ntp-client-2.15.9/src/NtpClient.ycp 2007-09-06 16:30:07.000000000 +0200 +++ new/yast2-ntp-client-2.15.10/src/NtpClient.ycp 2007-09-13 17:48:18.000000000 +0200 @@ -4,7 +4,7 @@ * Summary: Data for configuration of ntp-client, input and output functions. * Authors: Jiri Srain <jsrain@suse.cz> * - * $Id: NtpClient.ycp 40721 2007-09-03 14:28:22Z kmachalkova $ + * $Id: NtpClient.ycp 40895 2007-09-13 15:48:17Z kmachalkova $ * * Representation of the configuration of ntp-client. * Input and output routines. @@ -127,6 +127,8 @@ global boolean config_has_been_read = false; +global boolean ntp_selected = false; + /** * Abort function * @return blah blah lahjk diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ntp-client-2.15.9/VERSION new/yast2-ntp-client-2.15.10/VERSION --- old/yast2-ntp-client-2.15.9/VERSION 2007-09-06 18:29:19.000000000 +0200 +++ new/yast2-ntp-client-2.15.10/VERSION 2007-09-13 18:14:39.000000000 +0200 @@ -1 +1 @@ -2.15.9 +2.15.10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de