[yast-commit] r61054 - in /branches/SuSE-Code-11-SP1-Branch/product-creator: VERSION package/yast2-product-creator.changes src/kiwi_dialogs.ycp
Author: jsuchome Date: Fri Feb 26 16:41:49 2010 New Revision: 61054 URL: http://svn.opensuse.org/viewcvs/yast?rev=61054&view=rev Log: - do not escape path to local sources (bnc#561612) - 2.17.30 Modified: branches/SuSE-Code-11-SP1-Branch/product-creator/VERSION branches/SuSE-Code-11-SP1-Branch/product-creator/package/yast2-product-creator.changes branches/SuSE-Code-11-SP1-Branch/product-creator/src/kiwi_dialogs.ycp Modified: branches/SuSE-Code-11-SP1-Branch/product-creator/VERSION URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP1-Branch/product-creator/VERSION?rev=61054&r1=61053&r2=61054&view=diff ============================================================================== --- branches/SuSE-Code-11-SP1-Branch/product-creator/VERSION (original) +++ branches/SuSE-Code-11-SP1-Branch/product-creator/VERSION Fri Feb 26 16:41:49 2010 @@ -1 +1 @@ -2.17.29 +2.17.30 Modified: branches/SuSE-Code-11-SP1-Branch/product-creator/package/yast2-product-creator.changes URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP1-Branch/product-creator/package/yast2-product-creator.changes?rev=61054&r1=61053&r2=61054&view=diff ============================================================================== --- branches/SuSE-Code-11-SP1-Branch/product-creator/package/yast2-product-creator.changes (original) +++ branches/SuSE-Code-11-SP1-Branch/product-creator/package/yast2-product-creator.changes Fri Feb 26 16:41:49 2010 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Fri Feb 26 16:32:02 CET 2010 - jsuchome@suse.cz + +- do not escape path to local sources (bnc#561612) +- 2.17.30 + +------------------------------------------------------------------- Mon Feb 22 15:43:36 CET 2010 - jsuchome@suse.cz - enable saving kiwi logs on demand (fate#306937) Modified: branches/SuSE-Code-11-SP1-Branch/product-creator/src/kiwi_dialogs.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP1-Branch/product-creator/src/kiwi_dialogs.ycp?rev=61054&r1=61053&r2=61054&view=diff ============================================================================== --- branches/SuSE-Code-11-SP1-Branch/product-creator/src/kiwi_dialogs.ycp (original) +++ branches/SuSE-Code-11-SP1-Branch/product-creator/src/kiwi_dialogs.ycp Fri Feb 26 16:41:49 2010 @@ -2304,6 +2304,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