Author: mcalmer
Date: Mon Mar 31 16:51:34 2008
New Revision: 45894
URL: http://svn.opensuse.org/viewcvs/yast?rev=45894&view=rev
Log:
fix typo
Modified:
trunk/ca-management/src/new_cert.ycp
Modified: trunk/ca-management/src/new_cert.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/ca-management/src/new_cert.ycp?r…
==============================================================================
--- trunk/ca-management/src/new_cert.ycp (original)
+++ trunk/ca-management/src/new_cert.ycp Mon Mar 31 16:51:34 2008
@@ -359,7 +359,7 @@
helptext = helptext + _("<p>The CA is valid for only specific period (<b>Valid Period</b>). Enter the time frame in days.</p>");
// help text 4/4
- helptext = helptext + _("<p><b>Advanced Options</b> are very special options. If you change these options, SUSE cannot guarentee that the generated certificate will work correctly.</p>");
+ helptext = helptext + _("<p><b>Advanced Options</b> are very special options. If you change these options, SUSE cannot guarantee that the generated certificate will work correctly.</p>");
}
else if (kind == "Client Certificate"
|| kind == "Server Certificate")
@@ -374,7 +374,7 @@
helptext = helptext + _("<p>The certificate is valid for only specific period (<b>Valid Period</b>). Enter the time frame in days.</p>");
// help text 4/4
- helptext = helptext + _("<p><b>Advanced Options</b> are very special options. If you change these options, SUSE cannot guarentee that the generated certificate will work correctly.</p>");
+ helptext = helptext + _("<p><b>Advanced Options</b> are very special options. If you change these options, SUSE cannot guarantee that the generated certificate will work correctly.</p>");
}
else if (kind == "Client Request"
|| kind == "Server Request"
@@ -387,7 +387,7 @@
helptext = helptext + _("<p>Each request has its own <b>Key Length</b>. Some applications that use certificates need special key lengths.</p>");
// help text 3/3
- helptext = helptext + _("<p><b>Advanced Options</b> are very special options. If you change these options, SUSE cannot guarentee that the generated certificate will work correctly.</p>");
+ helptext = helptext + _("<p><b>Advanced Options</b> are very special options. If you change these options, SUSE cannot guarantee that the generated certificate will work correctly.</p>");
}
term contents = `VBox ();
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
Author: mvidner
Date: Mon Mar 31 16:36:47 2008
New Revision: 45892
URL: http://svn.opensuse.org/viewcvs/yast?rev=45892&view=rev
Log:
Trap Perl exceptions so that simple bugs don't kill the whole YaST
(FATE 412).
Modified:
trunk/perl-bindings/VERSION
trunk/perl-bindings/package/yast2-perl-bindings.changes
trunk/perl-bindings/src/YPerl.cc
Modified: trunk/perl-bindings/VERSION
URL: http://svn.opensuse.org/viewcvs/yast/trunk/perl-bindings/VERSION?rev=45892&…
==============================================================================
--- trunk/perl-bindings/VERSION (original)
+++ trunk/perl-bindings/VERSION Mon Mar 31 16:36:47 2008
@@ -1 +1 @@
-2.16.4
+2.16.5
Modified: trunk/perl-bindings/package/yast2-perl-bindings.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/perl-bindings/package/yast2-perl…
==============================================================================
--- trunk/perl-bindings/package/yast2-perl-bindings.changes (original)
+++ trunk/perl-bindings/package/yast2-perl-bindings.changes Mon Mar 31 16:36:47 2008
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Mon Mar 31 16:36:21 CEST 2008 - mvidner(a)suse.cz
+
+- Trap Perl exceptions so that simple bugs don't kill the whole YaST
+ (FATE 412).
+- 2.16.5
+
+-------------------------------------------------------------------
Wed Mar 12 14:46:56 CET 2008 - mvidner(a)suse.cz
- adapt testsuite results to latest debug output again
Modified: trunk/perl-bindings/src/YPerl.cc
URL: http://svn.opensuse.org/viewcvs/yast/trunk/perl-bindings/src/YPerl.cc?rev=4…
==============================================================================
--- trunk/perl-bindings/src/YPerl.cc (original)
+++ trunk/perl-bindings/src/YPerl.cc Mon Mar 31 16:36:47 2008
@@ -285,8 +285,10 @@
string full_name = module + "::" + function;
int ret_count = 0;
+ // G_EVAL: prevent errors from making Perl (and the rest of YaST) die
+ // (FATE 412)
// so far we use static methods, so call_pv is enough
- ret_count = call_pv( full_name.c_str(), calling_context );
+ ret_count = call_pv( full_name.c_str(), calling_context | G_EVAL);
//
@@ -295,6 +297,13 @@
SPAGAIN; // Copy global stack pointer to local one
+ // if the eval catches an exception, undef is returned
+ // and we check $@ (ERRSV)
+ if (SvTRUE(ERRSV))
+ {
+ ycp2error ("Perl wanted to die: %s", SvPV_nolen(ERRSV));
+ }
+
YCPValue result = fromPerlScalar (POPs, wanted_result_type);
// If we called it with G_ARRAY, we would have to pop all return
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
Author: jsuchome
Date: Mon Mar 31 15:59:53 2008
New Revision: 45890
URL: http://svn.opensuse.org/viewcvs/yast?rev=45890&view=rev
Log:
Created tag stable-2_16_21 for users
Added:
tags/stable-2_16_21/users/
- copied from r45889, trunk/users/
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
Author: kmachalkova
Date: Mon Mar 31 15:57:28 2008
New Revision: 45887
URL: http://svn.opensuse.org/viewcvs/yast?rev=45887&view=rev
Log:
Created tag stable-2_16_29 for network
Added:
tags/stable-2_16_29/network/
- copied from r45886, trunk/network/
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
Author: mvidner
Date: Mon Mar 31 15:55:36 2008
New Revision: 45885
URL: http://svn.opensuse.org/viewcvs/yast?rev=45885&view=rev
Log:
Don't document a feature that is unclear and was never there
(bnc#373187).
Modified:
trunk/yast2/doc/yast2.8
trunk/yast2/package/yast2.changes
Modified: trunk/yast2/doc/yast2.8
URL: http://svn.opensuse.org/viewcvs/yast/trunk/yast2/doc/yast2.8?rev=45885&r1=4…
==============================================================================
--- trunk/yast2/doc/yast2.8 (original)
+++ trunk/yast2/doc/yast2.8 Mon Mar 31 15:55:36 2008
@@ -103,11 +103,6 @@
List all available modules. To obtain usage info about
a module, use "yast module help".
.\"
-.TP
-.BI --log " " logfile
-Write info to
-.B logfile.
-.\"
.\"
.SH MODULES WITH COMMAND LINE INTERFACE
.TP
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 Mon Mar 31 15:55:36 2008
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Mon Mar 31 15:55:25 CEST 2008 - mvidner(a)suse.cz
+
+- Don't document a feature that is unclear and was never there
+ (bnc#373187).
+
+-------------------------------------------------------------------
Wed Mar 26 16:19:46 CET 2008 - jsuchome(a)suse.cz
- added new anyxml agent, now using perl-XML-Simple library
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org