Hello community, here is the log from the commit of package yast2-core checked in at Fri May 26 15:35:19 CEST 2006. -------- --- yast2-core/yast2-core.changes 2006-05-02 16:30:07.000000000 +0200 +++ yast2-core/yast2-core.changes 2006-05-25 10:43:54.000000000 +0200 @@ -1,0 +2,7 @@ +Thu May 25 10:43:24 CEST 2006 - mvidner@suse.cz + +- Use [:alpha:] instead of A-Za-z to catch all ASCII letters even in + Estonian (#177560). +- 2.13.23 + +------------------------------------------------------------------- Old: ---- yast2-core-2.13.22.tar.bz2 New: ---- yast2-core-2.13.23.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-core.spec ++++++ --- /var/tmp/diff_new_pack.cK3Xy6/_old 2006-05-26 15:34:47.000000000 +0200 +++ /var/tmp/diff_new_pack.cK3Xy6/_new 2006-05-26 15:34:47.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package yast2-core (Version 2.13.22) +# spec file for package yast2-core (Version 2.13.23) # # Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,12 +11,12 @@ # norootforbuild Name: yast2-core -Version: 2.13.22 +Version: 2.13.23 Release: 1 License: GPL Group: System/YaST BuildRoot: %{_tmppath}/%{name}-%{version}-build -Source0: yast2-core-2.13.22.tar.bz2 +Source0: yast2-core-2.13.23.tar.bz2 prefix: /usr BuildRequires: ElectricFence blocxx-devel curl-devel dejagnu docbook-xsl-stylesheets doxygen gcc-c++ libxcrypt-devel libxslt liby2util-devel openslp-devel perl-XML-Writer popt-devel sgml-skel udev yast2-devtools Summary: YaST2 - Core Libraries @@ -93,7 +93,7 @@ Stanislav Visnovsky <visnov@suse.cz> %prep -%setup -n yast2-core-2.13.22 +%setup -n yast2-core-2.13.23 %build %{prefix}/bin/y2tool y2autoconf @@ -164,6 +164,10 @@ /usr/share/YaST2/data/devtools/bin/generateYCPWrappers %changelog -n yast2-core +* Thu May 25 2006 - mvidner@suse.cz +- Use [:alpha:] instead of A-Za-z to catch all ASCII letters even in + Estonian (#177560). +- 2.13.23 * Tue May 02 2006 - lslezak@suse.cz - ag_background - use unlimited buffer size as default, do not block the subprocess (#169648), update of the example ++++++ yast2-core-2.13.22.tar.bz2 -> yast2-core-2.13.23.tar.bz2 ++++++ ++++ 13677 lines of diff (skipped) ++++ retrying with extended exclude list diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/Makefile.am new/yast2-core-2.13.23/Makefile.am --- old/yast2-core-2.13.22/Makefile.am 2006-05-02 16:24:24.000000000 +0200 +++ new/yast2-core-2.13.23/Makefile.am 2006-05-25 10:49:48.000000000 +0200 @@ -8,6 +8,7 @@ #where devtools are PREFIX := $(shell pkg-config --print-errors --variable=prefix yast2-devtools) +Y2TOOL = $(PREFIX)/bin/y2tool VERSION = $(shell cat $(srcdir)/VERSION) RPMNAME = $(shell cat $(srcdir)/RPMNAME) @@ -95,7 +96,7 @@ done pot: - y2tool y2makepot -s $(srcdir) + $(Y2TOOL) y2makepot -s $(srcdir) install-pot: pot @POT_DST=`find -type d -name testsuite -prune , \ @@ -116,7 +117,7 @@ fi spellcheck: pot - y2tool pot-spellcheck + $(Y2TOOL) pot-spellcheck # all-local: $(if $(IS_DEVTOOLS),,$(POT_DST)) @@ -143,20 +144,20 @@ rm -f package/*.bak rm -f package/*.auto mv $(RPMNAME)-$(VERSION).tar.bz2 package/ - if ! test -x $(PREFIX)/bin/y2tool; then \ - echo "$(PREFIX)/bin/y2tool: not found."; \ + if ! test -x $(Y2TOOL); then \ + echo "$(Y2TOOL): not found."; \ echo "You have to install yast2-devtools to making a package"; \ false; \ fi here=`pwd`; \ cd $(srcdir) && for i in $(RPMNAME)*.spec.in; do \ newname="`echo "$$i" | sed "s/\.in$$//g"`"; \ - $(PREFIX)/bin/y2tool create-spec < $$i > $$here/package/$${newname} ; \ + $(Y2TOOL) create-spec < $$i > $$here/package/$${newname} ; \ done package: check-up-to-date check-tagversion check-all-packages check-textdomain package-local -TAGVERSION = $(PREFIX)/bin/y2tool tagversion +TAGVERSION = $(Y2TOOL) tagversion check-up-to-date check-cvs-up-to-date check-svn-up-to-date: if [ -d $(srcdir)/CVS ]; then \ @@ -200,12 +201,12 @@ fi check-textdomain: - $(PREFIX)/bin/y2tool check-textdomain $(srcdir) + $(Y2TOOL) check-textdomain $(srcdir) stable: checkin-stable checkin-stable: package - $(PREFIX)/bin/y2tool checkin-stable + $(Y2TOOL) checkin-stable # For po/ modules diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/VERSION new/yast2-core-2.13.23/VERSION --- old/yast2-core-2.13.22/VERSION 2006-05-02 16:18:04.000000000 +0200 +++ new/yast2-core-2.13.23/VERSION 2006-05-25 10:41:32.000000000 +0200 @@ -1 +1 @@ -2.13.22 +2.13.23 diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-ini/src/IniAgent.cc new/yast2-core-2.13.23/agent-ini/src/IniAgent.cc --- old/yast2-core-2.13.22/agent-ini/src/IniAgent.cc 2006-01-06 16:17:34.000000000 +0100 +++ new/yast2-core-2.13.23/agent-ini/src/IniAgent.cc 2006-05-25 10:44:35.000000000 +0200 @@ -8,7 +8,7 @@ * Petr Blahos <pblahos@suse.cz> * Martin Vidner <mvidner@suse.cz> * - * $Id: IniAgent.cc 26855 2006-01-06 09:49:16Z mvidner $ + * $Id: IniAgent.cc 31143 2006-05-25 08:44:19Z mvidner $ */ #include "IniAgent.h" @@ -209,29 +209,29 @@ YCPMap param; YCPList lp; l = YCPList (); - lp->add (YCPString ("([a-zA-Z0-9_]+)[ \t]*=[ \t]*\"([^\"]*)\"")); + lp->add (YCPString ("([[:alnum:]_]+)[ \t]*=[ \t]*\"([^\"]*)\"")); lp->add (YCPString ("%s=\"%s\"")); param->add (YCPString ("match"), lp); lp = YCPList (); - lp->add (YCPString ("([a-zA-Z0-9_]+)[ \t]*=[ \t]*\"([^\"]*)")); + lp->add (YCPString ("([[:alnum:]_]+)[ \t]*=[ \t]*\"([^\"]*)")); lp->add (YCPString ("([^\"]*)\"")); param->add (YCPString ("multiline"), lp); l->add (param); lp = YCPList (); param = YCPMap (); - lp->add (YCPString ("^[ \t]*([a-zA-Z_][a-zA-Z0-9_]*)[ \t]*=[ \t]*'([^']*)'")); + lp->add (YCPString ("^[ \t]*([[:alpha:]_][[:alnum:]_]*)[ \t]*=[ \t]*'([^']*)'")); lp->add (YCPString ("%s='%s'")); param->add (YCPString ("match"), lp); lp = YCPList (); - lp->add (YCPString ("([a-zA-Z_][a-zA-Z0-9_]*)[ \t]*=[ \t]*'([^']*)")); + lp->add (YCPString ("([[:alpha:]_][[:alnum:]_]*)[ \t]*=[ \t]*'([^']*)")); lp->add (YCPString ("([^']*)'")); param->add (YCPString ("multiline"), lp); l->add (param); lp = YCPList (); param = YCPMap (); - lp->add (YCPString ("([a-zA-Z0-9_]+)[ \t]*=[ \t]*([^\"]*[^ \t\"]|)[ \t]*$")); + lp->add (YCPString ("([[:alnum:]_]+)[ \t]*=[ \t]*([^\"]*[^ \t\"]|)[ \t]*$")); lp->add (YCPString ("%s=\"%s\"")); param->add (YCPString ("match"), lp); l->add (param); diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-ini/testsuite/debug/chg-repeat.scr new/yast2-core-2.13.23/agent-ini/testsuite/debug/chg-repeat.scr --- old/yast2-core-2.13.22/agent-ini/testsuite/debug/chg-repeat.scr 2005-01-21 18:50:41.000000000 +0100 +++ new/yast2-core-2.13.23/agent-ini/testsuite/debug/chg-repeat.scr 2006-05-24 16:12:03.000000000 +0200 @@ -7,8 +7,8 @@ "comments": [ "^[ \t]*;.*", ";.*", "\\{[^}]*\\}", "^[ \t]*$" ], "sections" : [ $[ - "begin" : [ "[ \t]*\\+([A-Za-z0-9_]+)[ \t]*", "+%s" ], - "end" : [ "[ \t]*\\-([A-Za-z0-9_]+)[ \t]*", "-%s" ], + "begin" : [ "[ \t]*\\+([[:alnum:]_]+)[ \t]*", "+%s" ], + "end" : [ "[ \t]*\\-([[:alnum:]_]+)[ \t]*", "-%s" ], ], ], "params" : [ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-ini/testsuite/debug/chg1.scr new/yast2-core-2.13.23/agent-ini/testsuite/debug/chg1.scr --- old/yast2-core-2.13.22/agent-ini/testsuite/debug/chg1.scr 2005-01-21 18:50:42.000000000 +0100 +++ new/yast2-core-2.13.23/agent-ini/testsuite/debug/chg1.scr 2006-05-24 16:12:03.000000000 +0200 @@ -7,8 +7,8 @@ "comments": [ "^[ \t]*;.*", ";.*", "\\{[^}]*\\}", "^[ \t]*$" ], "sections" : [ $[ - "begin" : [ "[ \t]*\\+([A-Za-z0-9_]+)[ \t]*", "+%s" ], - "end" : [ "[ \t]*\\-([A-Za-z0-9_]+)[ \t]*", "-%s" ], + "begin" : [ "[ \t]*\\+([[:alnum:]_]+)[ \t]*", "+%s" ], + "end" : [ "[ \t]*\\-([[:alnum:]_]+)[ \t]*", "-%s" ], ], ], "params" : [ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-ini/testsuite/debug/chg2.scr new/yast2-core-2.13.23/agent-ini/testsuite/debug/chg2.scr --- old/yast2-core-2.13.22/agent-ini/testsuite/debug/chg2.scr 2005-01-21 18:50:42.000000000 +0100 +++ new/yast2-core-2.13.23/agent-ini/testsuite/debug/chg2.scr 2006-05-24 16:12:03.000000000 +0200 @@ -7,8 +7,8 @@ "comments": [ "^[ \t]*;.*", ";.*", "\\{[^}]*\\}", "^[ \t]*$" ], "sections" : [ $[ - "begin" : [ "[ \t]*\\+([A-Za-z0-9_]+)[ \t]*", "+%s" ], - "end" : [ "[ \t]*\\-([A-Za-z0-9_]+)[ \t]*", "-%s" ], + "begin" : [ "[ \t]*\\+([[:alnum:]_]+)[ \t]*", "+%s" ], + "end" : [ "[ \t]*\\-([[:alnum:]_]+)[ \t]*", "-%s" ], ], ], "params" : [ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-ini/testsuite/debug/chg3.scr new/yast2-core-2.13.23/agent-ini/testsuite/debug/chg3.scr --- old/yast2-core-2.13.22/agent-ini/testsuite/debug/chg3.scr 2005-01-21 18:50:42.000000000 +0100 +++ new/yast2-core-2.13.23/agent-ini/testsuite/debug/chg3.scr 2006-05-24 16:12:03.000000000 +0200 @@ -7,8 +7,8 @@ "comments": [ "^[ \t]*;.*", ";.*", "\\{[^}]*\\}", "^[ \t]*$" ], "sections" : [ $[ - "begin" : [ "[ \t]*\\+([A-Za-z0-9_]+)[ \t]*", "+%s" ], - "end" : [ "[ \t]*\\-([A-Za-z0-9_]+)[ \t]*", "-%s" ], + "begin" : [ "[ \t]*\\+([[:alnum:]_]+)[ \t]*", "+%s" ], + "end" : [ "[ \t]*\\-([[:alnum:]_]+)[ \t]*", "-%s" ], ], ], "params" : [ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-ini/testsuite/debug/err1.scr new/yast2-core-2.13.23/agent-ini/testsuite/debug/err1.scr --- old/yast2-core-2.13.22/agent-ini/testsuite/debug/err1.scr 2005-01-21 18:50:41.000000000 +0100 +++ new/yast2-core-2.13.23/agent-ini/testsuite/debug/err1.scr 2006-05-24 16:12:03.000000000 +0200 @@ -7,8 +7,8 @@ "comments": [ "^[ \t]*;.*", ";.*", "\\{[^}]*\\}", "^[ \t]*$" ], "sections" : [ $[ - "begin" : [ "[ \t]*\\+([A-Za-z0-9_]+)[ \t]*", "+%s" ], - "end" : [ "[ \t]*\\-([A-Za-z0-9_]+)[ \t]*", "-%s" ], + "begin" : [ "[ \t]*\\+([[:alnum:]_]+)[ \t]*", "+%s" ], + "end" : [ "[ \t]*\\-([[:alnum:]_]+)[ \t]*", "-%s" ], ], ], "params" : [ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-ini/testsuite/debug/wr_add.scr new/yast2-core-2.13.23/agent-ini/testsuite/debug/wr_add.scr --- old/yast2-core-2.13.22/agent-ini/testsuite/debug/wr_add.scr 2005-01-21 18:50:40.000000000 +0100 +++ new/yast2-core-2.13.23/agent-ini/testsuite/debug/wr_add.scr 2006-05-24 16:12:03.000000000 +0200 @@ -8,8 +8,8 @@ "comments": [ "^[ \t]*;.*", ";.*", "\\{[^}]*\\}", "^[ \t]*$" ], "sections" : [ $[ - "begin" : [ "[ \t]*\\+([A-Za-z0-9_]+)[ \t]*", "+%s" ], - "end" : [ "[ \t]*\\-([A-Za-z0-9_]+)[ \t]*", "-%s" ], + "begin" : [ "[ \t]*\\+([[:alnum:]_]+)[ \t]*", "+%s" ], + "end" : [ "[ \t]*\\-([[:alnum:]_]+)[ \t]*", "-%s" ], ], ], "params" : [ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-ini/testsuite/debug/wr_addsec.scr new/yast2-core-2.13.23/agent-ini/testsuite/debug/wr_addsec.scr --- old/yast2-core-2.13.22/agent-ini/testsuite/debug/wr_addsec.scr 2005-01-21 18:50:40.000000000 +0100 +++ new/yast2-core-2.13.23/agent-ini/testsuite/debug/wr_addsec.scr 2006-05-24 16:12:03.000000000 +0200 @@ -8,8 +8,8 @@ "comments": [ "^[ \t]*;.*", ";.*", "\\{[^}]*\\}", "^[ \t]*$" ], "sections" : [ $[ - "begin" : [ "[ \t]*\\+([A-Za-z0-9_]+)[ \t]*", "+%s" ], - "end" : [ "[ \t]*\\-([A-Za-z0-9_]+)[ \t]*", "-%s" ], + "begin" : [ "[ \t]*\\+([[:alnum:]_]+)[ \t]*", "+%s" ], + "end" : [ "[ \t]*\\-([[:alnum:]_]+)[ \t]*", "-%s" ], ], ], "params" : [ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-ini/testsuite/debug/wr_chg.scr new/yast2-core-2.13.23/agent-ini/testsuite/debug/wr_chg.scr --- old/yast2-core-2.13.22/agent-ini/testsuite/debug/wr_chg.scr 2005-01-21 18:50:40.000000000 +0100 +++ new/yast2-core-2.13.23/agent-ini/testsuite/debug/wr_chg.scr 2006-05-24 16:12:03.000000000 +0200 @@ -8,8 +8,8 @@ "comments": [ "^[ \t]*;.*", ";.*", "\\{[^}]*\\}", "^[ \t]*$" ], "sections" : [ $[ - "begin" : [ "[ \t]*\\+([A-Za-z0-9_]+)[ \t]*", "+%s" ], - "end" : [ "[ \t]*\\-([A-Za-z0-9_]+)[ \t]*", "-%s" ], + "begin" : [ "[ \t]*\\+([[:alnum:]_]+)[ \t]*", "+%s" ], + "end" : [ "[ \t]*\\-([[:alnum:]_]+)[ \t]*", "-%s" ], ], ], "params" : [ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-ini/testsuite/debug/wr_chgsec.scr new/yast2-core-2.13.23/agent-ini/testsuite/debug/wr_chgsec.scr --- old/yast2-core-2.13.22/agent-ini/testsuite/debug/wr_chgsec.scr 2005-01-21 18:50:41.000000000 +0100 +++ new/yast2-core-2.13.23/agent-ini/testsuite/debug/wr_chgsec.scr 2006-05-24 16:12:03.000000000 +0200 @@ -8,8 +8,8 @@ "comments": [ "^[ \t]*;.*", ";.*", "\\{[^}]*\\}", "^[ \t]*$" ], "sections" : [ $[ - "begin" : [ "[ \t]*\\+([A-Za-z0-9_]+)[ \t]*", "+%s" ], - "end" : [ "[ \t]*\\-([A-Za-z0-9_]+)[ \t]*", "-%s" ], + "begin" : [ "[ \t]*\\+([[:alnum:]_]+)[ \t]*", "+%s" ], + "end" : [ "[ \t]*\\-([[:alnum:]_]+)[ \t]*", "-%s" ], ], ], "params" : [ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-ini/testsuite/debug/wr_deep.scr new/yast2-core-2.13.23/agent-ini/testsuite/debug/wr_deep.scr --- old/yast2-core-2.13.22/agent-ini/testsuite/debug/wr_deep.scr 2005-01-21 18:50:41.000000000 +0100 +++ new/yast2-core-2.13.23/agent-ini/testsuite/debug/wr_deep.scr 2006-05-24 16:12:03.000000000 +0200 @@ -8,8 +8,8 @@ "comments": [ "^[ \t]*;.*", ";.*", "\\{[^}]*\\}", "^[ \t]*$" ], "sections" : [ $[ - "begin" : [ "[ \t]*\\+([A-Za-z0-9_]+)[ \t]*", "+%s" ], - "end" : [ "[ \t]*\\-([A-Za-z0-9_]+)[ \t]*", "-%s" ], + "begin" : [ "[ \t]*\\+([[:alnum:]_]+)[ \t]*", "+%s" ], + "end" : [ "[ \t]*\\-([[:alnum:]_]+)[ \t]*", "-%s" ], ], ], "params" : [ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-ini/testsuite/debug/write1.scr new/yast2-core-2.13.23/agent-ini/testsuite/debug/write1.scr --- old/yast2-core-2.13.22/agent-ini/testsuite/debug/write1.scr 2005-01-21 18:50:40.000000000 +0100 +++ new/yast2-core-2.13.23/agent-ini/testsuite/debug/write1.scr 2006-05-24 16:12:03.000000000 +0200 @@ -7,8 +7,8 @@ "comments": [ "^[ \t]*;.*", ";.*", "\\{[^}]*\\}", "^[ \t]*$" ], "sections" : [ $[ - "begin" : [ "[ \t]*\\+([A-Za-z0-9_]+)[ \t]*", "+%s" ], - "end" : [ "[ \t]*\\-([A-Za-z0-9_]+)[ \t]*", "-%s" ], + "begin" : [ "[ \t]*\\+([[:alnum:]_]+)[ \t]*", "+%s" ], + "end" : [ "[ \t]*\\-([[:alnum:]_]+)[ \t]*", "-%s" ], ], ], "params" : [ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-ini/testsuite/debug/write2.scr new/yast2-core-2.13.23/agent-ini/testsuite/debug/write2.scr --- old/yast2-core-2.13.22/agent-ini/testsuite/debug/write2.scr 2005-01-21 18:50:40.000000000 +0100 +++ new/yast2-core-2.13.23/agent-ini/testsuite/debug/write2.scr 2006-05-24 16:12:03.000000000 +0200 @@ -7,8 +7,8 @@ "comments": [ "^[ \t]*;.*", ";.*", "\\{[^}]*\\}", "^[ \t]*$" ], "sections" : [ $[ - "begin" : [ "[ \t]*\\+([A-Za-z0-9_]+)[ \t]*", "+%s" ], - "end" : [ "[ \t]*\\-([A-Za-z0-9_]+)[ \t]*", "-%s" ], + "begin" : [ "[ \t]*\\+([[:alnum:]_]+)[ \t]*", "+%s" ], + "end" : [ "[ \t]*\\-([[:alnum:]_]+)[ \t]*", "-%s" ], ], ], "params" : [ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-ini/testsuite/tests/add1.scr new/yast2-core-2.13.23/agent-ini/testsuite/tests/add1.scr --- old/yast2-core-2.13.22/agent-ini/testsuite/tests/add1.scr 2005-01-21 18:50:35.000000000 +0100 +++ new/yast2-core-2.13.23/agent-ini/testsuite/tests/add1.scr 2006-05-24 16:12:03.000000000 +0200 @@ -7,8 +7,8 @@ "comments": [ "^[ \t]*;.*", ";.*", "\\{[^}]*\\}", "^[ \t]*$" ], "sections" : [ $[ - "begin" : [ "[ \t]*\\+([A-Za-z0-9_]+)[ \t]*", "+%s" ], - "end" : [ "[ \t]*\\-([A-Za-z0-9_]+)[ \t]*", "-%s" ], + "begin" : [ "[ \t]*\\+([[:alnum:]_]+)[ \t]*", "+%s" ], + "end" : [ "[ \t]*\\-([[:alnum:]_]+)[ \t]*", "-%s" ], ], ], "params" : [ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-ini/testsuite/tests/del1.scr new/yast2-core-2.13.23/agent-ini/testsuite/tests/del1.scr --- old/yast2-core-2.13.22/agent-ini/testsuite/tests/del1.scr 2005-01-21 18:50:38.000000000 +0100 +++ new/yast2-core-2.13.23/agent-ini/testsuite/tests/del1.scr 2006-05-24 16:12:04.000000000 +0200 @@ -7,8 +7,8 @@ "comments": [ "^[ \t]*;.*", ";.*", "\\{[^}]*\\}", "^[ \t]*$" ], "sections" : [ $[ - "begin" : [ "[ \t]*\\+([A-Za-z0-9_]+)[ \t]*", "+%s" ], - "end" : [ "[ \t]*\\-([A-Za-z0-9_]+)[ \t]*", "-%s" ], + "begin" : [ "[ \t]*\\+([[:alnum:]_]+)[ \t]*", "+%s" ], + "end" : [ "[ \t]*\\-([[:alnum:]_]+)[ \t]*", "-%s" ], ], ], "params" : [ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-ini/testsuite/tests/icreg1.scr new/yast2-core-2.13.23/agent-ini/testsuite/tests/icreg1.scr --- old/yast2-core-2.13.22/agent-ini/testsuite/tests/icreg1.scr 2005-01-21 18:50:38.000000000 +0100 +++ new/yast2-core-2.13.23/agent-ini/testsuite/tests/icreg1.scr 2006-05-24 16:12:04.000000000 +0200 @@ -8,12 +8,12 @@ "comments": [ "^[ \t]*;.*", ";.*", "^[ \t]*$" ], "sections" : [ $[ - "begin" : [ "Section=([a-zA-Z0-9]+)", "Section=%s" ], + "begin" : [ "Section=([[:alnum:]]+)", "Section=%s" ], ], ], "params" : [ $[ - "match" : [ "Value=([a-zA-Z0-9]+)=(.*)$" , "Value=%s=%s"], + "match" : [ "Value=([[:alnum:]]+)=(.*)$" , "Value=%s=%s"], ], ], ] diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-ini/testsuite/tests/icreg2.scr new/yast2-core-2.13.23/agent-ini/testsuite/tests/icreg2.scr --- old/yast2-core-2.13.22/agent-ini/testsuite/tests/icreg2.scr 2005-01-21 18:50:35.000000000 +0100 +++ new/yast2-core-2.13.23/agent-ini/testsuite/tests/icreg2.scr 2006-05-24 16:12:04.000000000 +0200 @@ -8,12 +8,12 @@ "comments": [ "^[ \t]*;.*", ";.*", "^[ \t]*$" ], "sections" : [ $[ - "begin" : [ "Section=([a-zA-Z0-9]+)", "Section=%s" ], + "begin" : [ "Section=([[:alnum:]]+)", "Section=%s" ], ], ], "params" : [ $[ - "match" : [ "Value=([a-zA-Z0-9]+)=(.*)$" , "Value=%s=%s"], + "match" : [ "Value=([[:alnum:]]+)=(.*)$" , "Value=%s=%s"], ], ], ] diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-ini/testsuite/tests/n1.scr new/yast2-core-2.13.23/agent-ini/testsuite/tests/n1.scr --- old/yast2-core-2.13.22/agent-ini/testsuite/tests/n1.scr 2005-01-21 18:50:38.000000000 +0100 +++ new/yast2-core-2.13.23/agent-ini/testsuite/tests/n1.scr 2006-05-24 16:12:04.000000000 +0200 @@ -7,8 +7,8 @@ "comments": [ "^[ \t]*;.*", ";.*", "\\{[^}]*\\}", "^[ \t]*$" ], "sections" : [ $[ - "begin" : [ "[ \t]*\\+([A-Za-z0-9_]+)[ \t]*", "+%s" ], - "end" : [ "[ \t]*\\-([A-Za-z0-9_]+)[ \t]*", "-%s" ], + "begin" : [ "[ \t]*\\+([[:alnum:]_]+)[ \t]*", "+%s" ], + "end" : [ "[ \t]*\\-([[:alnum:]_]+)[ \t]*", "-%s" ], ], ], "subindent" : " ", diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-ini/testsuite/tests/type1.scr new/yast2-core-2.13.23/agent-ini/testsuite/tests/type1.scr --- old/yast2-core-2.13.22/agent-ini/testsuite/tests/type1.scr 2005-01-21 18:50:36.000000000 +0100 +++ new/yast2-core-2.13.23/agent-ini/testsuite/tests/type1.scr 2006-05-24 16:12:04.000000000 +0200 @@ -7,24 +7,24 @@ "comments": [ "^[ \t]*$" ], "sections" : [ $[ - "begin" : ["1[ \t]+([a-zA-Z0-9]+)[ \t]*$", "1 %s", ] + "begin" : ["1[ \t]+([[:alnum:]]+)[ \t]*$", "1 %s", ] ], $[ - "begin" : ["2[ \t]+([a-zA-Z0-9]+)[ \t]*$", "2 %s", ] + "begin" : ["2[ \t]+([[:alnum:]]+)[ \t]*$", "2 %s", ] ], $[ - "begin" : ["3[ \t]+([a-zA-Z0-9]+)[ \t]*$", "3 %s", ] + "begin" : ["3[ \t]+([[:alnum:]]+)[ \t]*$", "3 %s", ] ], ], "params" : [ $[ - "match" : [ "^V1 ([a-zA-Z0-9]+) = (.*)$", "V1 %s = %s" ], + "match" : [ "^V1 ([[:alnum:]]+) = (.*)$", "V1 %s = %s" ], ], $[ - "match" : [ "^V2 ([a-zA-Z0-9]+) # (.*)$", "V2 %s # %s" ], + "match" : [ "^V2 ([[:alnum:]]+) # (.*)$", "V2 %s # %s" ], ], $[ - "match" : [ "^V3 ([a-zA-Z0-9]+) % (.*)$", "V3 %s %% %s" ], + "match" : [ "^V3 ([[:alnum:]]+) % (.*)$", "V3 %s %% %s" ], ], ], ] diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-modules/testsuite/tests/dir.scr new/yast2-core-2.13.23/agent-modules/testsuite/tests/dir.scr --- old/yast2-core-2.13.22/agent-modules/testsuite/tests/dir.scr 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-core-2.13.23/agent-modules/testsuite/tests/dir.scr 2006-05-24 16:42:40.000000000 +0200 @@ -0,0 +1,6 @@ +. + +`ag_modules( + `ModulesConf("tests/dir.in.test") +) + diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-modules/testsuite/tests/missing.scr new/yast2-core-2.13.23/agent-modules/testsuite/tests/missing.scr --- old/yast2-core-2.13.22/agent-modules/testsuite/tests/missing.scr 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-core-2.13.23/agent-modules/testsuite/tests/missing.scr 2006-05-24 16:41:52.000000000 +0200 @@ -0,0 +1,6 @@ +. + +`ag_modules( + `ModulesConf("tests/missing.in.test") +) + diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-modules/testsuite/tests/read1.scr new/yast2-core-2.13.23/agent-modules/testsuite/tests/read1.scr --- old/yast2-core-2.13.22/agent-modules/testsuite/tests/read1.scr 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-core-2.13.23/agent-modules/testsuite/tests/read1.scr 2006-05-24 16:41:50.000000000 +0200 @@ -0,0 +1,6 @@ +. + +`ag_modules( + `ModulesConf("tests/read1.in.test") +) + diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-modules/testsuite/tests/write1.scr new/yast2-core-2.13.23/agent-modules/testsuite/tests/write1.scr --- old/yast2-core-2.13.22/agent-modules/testsuite/tests/write1.scr 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-core-2.13.23/agent-modules/testsuite/tests/write1.scr 2006-05-24 16:41:53.000000000 +0200 @@ -0,0 +1,6 @@ +. + +`ag_modules( + `ModulesConf("tests/write1.in.test") +) + diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-modules/testsuite/tests/write2.scr new/yast2-core-2.13.23/agent-modules/testsuite/tests/write2.scr --- old/yast2-core-2.13.22/agent-modules/testsuite/tests/write2.scr 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-core-2.13.23/agent-modules/testsuite/tests/write2.scr 2006-05-24 16:42:13.000000000 +0200 @@ -0,0 +1,6 @@ +. + +`ag_modules( + `ModulesConf("tests/write2.in.test") +) + diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/agent-modules/testsuite/tests/write3.scr new/yast2-core-2.13.23/agent-modules/testsuite/tests/write3.scr --- old/yast2-core-2.13.22/agent-modules/testsuite/tests/write3.scr 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-core-2.13.23/agent-modules/testsuite/tests/write3.scr 2006-05-24 16:42:26.000000000 +0200 @@ -0,0 +1,6 @@ +. + +`ag_modules( + `ModulesConf("tests/write3.in.test") +) + diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/configure.in new/yast2-core-2.13.23/configure.in --- old/yast2-core-2.13.22/configure.in 2006-05-02 16:24:23.000000000 +0200 +++ new/yast2-core-2.13.23/configure.in 2006-05-25 10:49:47.000000000 +0200 @@ -1,9 +1,9 @@ dnl configure.in for yast2-core dnl -dnl -- This file is generated by y2autoconf - DO NOT EDIT! -- +dnl -- This file is generated by y2autoconf 2.13.17 - DO NOT EDIT! -- dnl (edit configure.in.in instead) -AC_INIT(yast2-core, 2.13.22, http://www.suse.de/feedback, yast2-core) +AC_INIT(yast2-core, 2.13.23, http://bugs.opensuse.org/, yast2-core) dnl Check for presence of file 'RPMNAME' AC_CONFIG_SRCDIR([RPMNAME]) @@ -17,7 +17,7 @@ AM_INIT_AUTOMAKE(tar-ustar) dnl searches for some needed programs dnl Important YaST2 variables -VERSION="2.13.22" +VERSION="2.13.23" RPMNAME="yast2-core" MAINTAINER="Stanislav Visnovsky <visnov@suse.cz>" diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/libycp/src/parser.h new/yast2-core-2.13.23/libycp/src/parser.h --- old/yast2-core-2.13.22/libycp/src/parser.h 2006-04-10 10:27:50.000000000 +0200 +++ new/yast2-core-2.13.23/libycp/src/parser.h 2005-04-19 11:07:11.000000000 +0200 @@ -1,7 +1,7 @@ -/* A Bison parser, made by GNU Bison 2.1. */ +/* A Bison parser, made by GNU Bison 1.875. */ /* Skeleton parser for Yacc-like parsing with Bison, - Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -15,8 +15,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. */ + Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. */ /* As a special exception, when this file is copied by Bison into a Bison output file, you may use that output file without restriction. @@ -95,7 +95,6 @@ UMINUS = 321 }; #endif -/* Tokens. */ #define SCANNER_ERROR 258 #define END_OF_FILE 259 #define EMPTY 260 diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/libycp/testsuite/tests/builtin/Builtin-String1.err new/yast2-core-2.13.23/libycp/testsuite/tests/builtin/Builtin-String1.err --- old/yast2-core-2.13.22/libycp/testsuite/tests/builtin/Builtin-String1.err 2005-12-09 15:31:13.000000000 +0100 +++ new/yast2-core-2.13.23/libycp/testsuite/tests/builtin/Builtin-String1.err 2006-05-24 16:34:00.000000000 +0200 @@ -142,7 +142,7 @@ ---------------------------------------------------------------------- Parsed: ---------------------------------------------------------------------- -(regexptokenize ("aaabbBb", "(.*[A-Z]).*") == ["aaabbB"]) +(regexptokenize ("aaabbBb", "(.*[[:upper:]]).*") == ["aaabbB"]) ---------------------------------------------------------------------- Parsed: ---------------------------------------------------------------------- diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/libycp/testsuite/tests/builtin/Builtin-String1.ycp new/yast2-core-2.13.23/libycp/testsuite/tests/builtin/Builtin-String1.ycp --- old/yast2-core-2.13.22/libycp/testsuite/tests/builtin/Builtin-String1.ycp 2005-12-09 15:31:13.000000000 +0100 +++ new/yast2-core-2.13.23/libycp/testsuite/tests/builtin/Builtin-String1.ycp 2006-05-24 15:55:40.000000000 +0200 @@ -66,7 +66,7 @@ (regexpsub ("aaabbb", "(.*ab).*", "s_\\1_e") == "s_aaab_e") (regexpsub ("aaabbb", "(.*abb)(.*)", "s_\\1_e\\2") == "s_aaabb_eb") -(regexptokenize ("aaabbBb", "(.*[A-Z]).*") == [ "aaabbB" ]) +(regexptokenize ("aaabbBb", "(.*[[:upper:]]).*") == [ "aaabbB" ]) (regexptokenize ("aaabbb", "(.*ab)(.*)") == ["aaab", "bb"]) (regexptokenize ("aaabbb", "(.*ba).*") == []) (regexptokenize ("aaabbb", "(.*ba).*()") == []) diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/libycp/testsuite/tests/builtin/Builtin_XI.err new/yast2-core-2.13.23/libycp/testsuite/tests/builtin/Builtin_XI.err --- old/yast2-core-2.13.22/libycp/testsuite/tests/builtin/Builtin_XI.err 2005-01-21 18:48:39.000000000 +0100 +++ new/yast2-core-2.13.23/libycp/testsuite/tests/builtin/Builtin_XI.err 2006-05-24 16:34:21.000000000 +0200 @@ -40,7 +40,7 @@ ---------------------------------------------------------------------- Parsed: ---------------------------------------------------------------------- -(regexptokenize ("aaabbBb", "(.*[A-Z]).*") == ["aaabbB"]) +(regexptokenize ("aaabbBb", "(.*[[:upper:]]).*") == ["aaabbB"]) ---------------------------------------------------------------------- Parsed: ---------------------------------------------------------------------- diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/libycp/testsuite/tests/builtin/Builtin_XI.ycp new/yast2-core-2.13.23/libycp/testsuite/tests/builtin/Builtin_XI.ycp --- old/yast2-core-2.13.22/libycp/testsuite/tests/builtin/Builtin_XI.ycp 2005-01-21 18:48:39.000000000 +0100 +++ new/yast2-core-2.13.23/libycp/testsuite/tests/builtin/Builtin_XI.ycp 2006-05-24 15:55:05.000000000 +0200 @@ -11,7 +11,7 @@ ( regexpsub( "aaabbb", "(.*ab).*", "s_\\1_e" ) == "s_aaab_e" ) ( regexpsub( "aaabbb", "(.*abb)(.*)", "s_\\1_e\\2" ) == "s_aaabb_eb" ) -( regexptokenize( "aaabbBb", "(.*[A-Z]).*") == [ "aaabbB" ] ) +( regexptokenize( "aaabbBb", "(.*[[:upper:]]).*") == [ "aaabbB" ] ) ( regexptokenize( "aaabbb", "(.*ab)(.*)") == [ "aaab", "bb" ] ) ( regexptokenize( "aaabbb", "(.*ba).*") == [] ) ( regexptokenize( "aaabbb", "(.*ba).*()") == [] ) diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-core-2.13.22/libyui/doc/examples/Layout-Stretchable2.ycp new/yast2-core-2.13.23/libyui/doc/examples/Layout-Stretchable2.ycp --- old/yast2-core-2.13.22/libyui/doc/examples/Layout-Stretchable2.ycp 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-core-2.13.23/libyui/doc/examples/Layout-Stretchable2.ycp 2005-12-13 14:46:32.000000000 +0100 @@ -0,0 +1,35 @@ +{ + // Layout example: + // + // Build a dialog with three widgets without any weights. + // + // Each widget will get its "nice size", i.e. the size that makes + // the widget's contents fit into it. + // + // Upon resize the first and the last widgets will stretch, the + // center widget will retain its size. + // + // The stretchable widgets will get an equal share of the extra + // space in addition to their "nice size". They are not + // (generally) of equal size! + // + + UI::OpenDialog( + `VBox ( + `HBox( + `TextEntry( `opt(`hstretch, `default), "I am stretchable" ), + `TextEntry( "I am not" ), + `TextEntry( `opt(`hstretch ), "I am stretchable, too" ) + ), + `HBox( + `PushButton( `opt(`hstretch, `default), "I am stretchable" ), + `PushButton( "I am not" ), + `PushButton( `opt(`hstretch ), "I am stretchable, too" ) + ) + ) + ); + + UI::UserInput(); + UI::CloseDialog(); +} + ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun...