kingabohus / co-ode-owl-plugins

Automatically exported from code.google.com/p/co-ode-owl-plugins
0 stars 0 forks source link

OWLDoc: URNs produce files with %3A which browsers struggle with #21

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
The colon gets escaped as %3.

Links are correct but safari for example refuses to follow them.
Opening an html file directly from Finder with double click causes the URL
to contain %253 instead. Changing this to %3 fails.

Original issue reported on code.google.com by NickIsConfused@gmail.com on 18 May 2009 at 5:00

GoogleCodeExporter commented 8 years ago
That is %3A.

The browser appears to be decoding this and searching for urn:a:b.html.

Under OSX, filenames cannot contain : characters.

This is why the browser is additionally escaping the % itself - %25

A single URL scheme should produce the same name for the local file whether it 
is
accessed through a browser or not.

Original comment by NickIsConfused@gmail.com on 18 May 2009 at 5:11