[yast-commit] r61052 - in /trunk/product-creator: VERSION package/yast2-product-creator.changes src/kiwi_dialogs.ycp

Author: jsuchome Date: Fri Feb 26 16:33:41 2010 New Revision: 61052 URL: http://svn.opensuse.org/viewcvs/yast?rev=61052&view=rev Log: - do not escape path to local sources (bnc#561612 - 2.19.5 Modified: trunk/product-creator/VERSION trunk/product-creator/package/yast2-product-creator.changes trunk/product-creator/src/kiwi_dialogs.ycp Modified: trunk/product-creator/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/product-creator/VERSION?rev=61052... ============================================================================== --- trunk/product-creator/VERSION (original) +++ trunk/product-creator/VERSION Fri Feb 26 16:33:41 2010 @@ -1 +1 @@ -2.19.4 +2.19.5 Modified: trunk/product-creator/package/yast2-product-creator.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/product-creator/package/yast2-pro... ============================================================================== --- trunk/product-creator/package/yast2-product-creator.changes (original) +++ trunk/product-creator/package/yast2-product-creator.changes Fri Feb 26 16:33:41 2010 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Fri Feb 26 16:33:06 CET 2010 - jsuchome@suse.cz + +- do not escape path to local sources (bnc#561612 +- 2.19.5 + +------------------------------------------------------------------- Mon Feb 22 15:46:01 CET 2010 - jsuchome@suse.cz - enable saving kiwi logs on demand (fate#306937) Modified: trunk/product-creator/src/kiwi_dialogs.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/product-creator/src/kiwi_dialogs.... ============================================================================== --- trunk/product-creator/src/kiwi_dialogs.ycp (original) +++ trunk/product-creator/src/kiwi_dialogs.ycp Fri Feb 26 16:33:41 2010 @@ -2301,6 +2301,12 @@ if (haskey (repositories, url)) continue; + map parsed = URL::Parse(url); + if (parsed["scheme"]:"" == "dir") + { + url = parsed["path"]:url; + y2milestone ("un-escaping local directory path: %1", url); + } boolean plaindir = SourceDialogs::IsPlainDir(); repositories[url] = $[ -- 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