Re: [patch] Fix bug 3348

2007-03-18 Thread Georg Baum
Am Sonntag, 18. März 2007 18:58 schrieb Jürgen Spitzmüller: > Georg Baum wrote: > > It turns out that the boost::filesystem::native path check is unusable, > > because it disallows absolute paths on unix and spaces on windows. > > How did you find this out? By testing? I searched the boost docs, a

Re: [patch] Fix bug 3348

2007-03-18 Thread Jürgen Spitzmüller
Georg Baum wrote: > It turns out that the boost::filesystem::native path check is unusable, > because it disallows absolute paths on unix and spaces on windows. How did you find this out? By testing? I searched the boost docs, and found next to nothing about fs::native. > Therefore we have to go

Re: [patch] Fix bug 3348

2007-03-18 Thread José Matos
On Sunday 18 March 2007 5:50:22 pm Georg Baum wrote: > This goes in tomorrow unless I get objections. OK. > Georg -- José Abílio

[patch] Fix bug 3348

2007-03-18 Thread Georg Baum
See http://bugzilla.lyx.org/show_bug.cgi?id=3348. It turns out that the boost::filesystem::native path check is unusable, because it disallows absolute paths on unix and spaces on windows. Therefore we have to go back to the exception solution (but a slightly better one). This goes in tomorrow un