Bugs item #745579, was opened at 2003-05-29 17:43 Message generated for change (Comment added) made by drieseng You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=474851&aid=745579&group_id=54790
Category: None Group: None >Status: Closed >Resolution: Out of Date Priority: 5 Submitted By: Martin Hanson (martin-hanson) Assigned to: Nobody/Anonymous (nobody) Summary: Slingshot does not support spaces in project paths Initial Comment: The regular expression pattern in Solution.cs in Slingshot does not support spaces in project paths. This is easily fixed by changing the pattern from: string pattern = @"^Project\(""(?<unknown>\S+)""\) = ""(?<name>\S+)"", ""(?<path>\S+)"", ""(?<id>\S+)"""; to: string pattern = @"^Project\(""(?<unknown>\S+)""\) = ""(?<name>\S+)"", ""(?<path>[ \S]+)"", ""(? <id>\S+)"""; Essentially change the \S to [ \S] ---------------------------------------------------------------------- >Comment By: Gert Driesen (drieseng) Date: 2004-08-02 14:50 Message: Logged In: YES user_id=707851 slingshot has been deprecated ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=474851&aid=745579&group_id=54790 ------------------------------------------------------- This SF.Net email is sponsored by OSTG. Have you noticed the changes on Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now, one more big change to announce. We are now OSTG- Open Source Technology Group. Come see the changes on the new OSTG site. www.ostg.com _______________________________________________ NAntContrib-Developer mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nantcontrib-developer

