Community
Participate
Working Groups
When wikitext is run on Windows, it generates relative href's between wiki pages that look like this: <a href="../../../../\Orion\Documentation\User_Guide\Reference\Navigator_page/Navigator-page.html" If your web server also runs windows, this will resolve ok, but if the server is non-Windows it will be a broken link. This is because back-slash is a legal path character on non-windows.
Created attachment 198660 [details] Simple fix Here is a simple fix. A better fix would be to use java.net.URI to represent relative paths. Right now you are likely not properly encoding characters that must be encoded in well-formed URIs. Sorry for the big diff on imports - this was caused by automatic Organize Imports. I suggest using project-specific settings for code style so that all contributors produce the same output (select the project, > Properties > Java Code Style > Organize Imports > Enable project specific settings).
Patch applied. Fix pushed to master. Thanks for the patch! Steffen do we have recommendations for organize imports settings on Mylyn projects?
Created attachment 198861 [details] mylyn/context/zip
If the patch was applied to CVS the contribution should be marked as iplog+ and the bug should have the contributed keyword (the latter is for reporting only). I have opened bug 350937 to enable project specific settings for Organize Imports.
done.