Bugs item #1546218, was opened at 2006-08-24 13:06
Message generated for change (Settings changed) made by robmen
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1546218&group_id=105970

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: votive
Group: v2.0
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: shirata (shirata)
>Assigned to: Justin Rockwood (justinrockwood)
Summary: problem with spaces in wixproj's RelativeOutputDirectory

Initial Comment:
related to Bug 1511034

WixProj that has RelativeOutputDirectory with spaces 
has the spaces replaced with %20 in the light command 
arguements.

Fix:

In PackageUtility.MakeRelative(),  System.Uri should 
used the Uri(string, bool) constructor.

public static string MakeRelative(string basePath, 
string pathToMakeRelative)
{
    Uri baseUri = new Uri(basePath);
    Uri relativeUri = new Uri(pathToMakeRelative);

should be

public static string MakeRelative(string basePath, 
string pathToMakeRelative)
{
    Uri baseUri = new Uri(basePath, true);
    Uri relativeUri = new Uri(pathToMakeRelative, 
true);


----------------------------------------------------------------------

Comment By: shirata (shirata)
Date: 2006-08-24 13:08

Message:
Logged In: YES 
user_id=1373564

This is for wix-2.0.4415.0.


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1546218&group_id=105970

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
WiX-devs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wix-devs

Reply via email to