Download links don't escape the "+" character, breaks in some browsers
Bug #574570 reported by
Groxx
This bug affects 2 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Inkscape |
Fix Released
|
Low
|
Unassigned |
Bug Description
Pretty simple. Exists on at least Safari + OSX Leopard, and from what I've heard Firefox as well, possibly on other download links. "plus" characters should be escaped with "%2B", many browsers attempt to download it with the "+" replaced with a space.
Link given: http://
Link required: http://
To post a comment you must log in.
confirmed with Firefox 3.5.9 on OS X 10.5.8
this relates to the download button on the frontpage http:// www.inkscape. org which - depending on the users OS - links to the corresponding package on sf.net:
window.onload = function() platform. indexOf( "Win32" ) != -1) {
document. getElementById( "downloadnowlin k").href = downloads. sourceforge. net/inkscape/ Inkscape- 0.47-3. exe"; userAgent. indexOf( "Mac OS X") != -1) {
document. getElementById( "downloadnowlin k").href = downloads. sourceforge. net/inkscape/ Inkscape- 0.47-1. LEOPARD. dmg"; downloads. sourceforge. net/inkscape/ Inkscape- 0.47-1. LEOPARD% 2B.dmg";
{
if (navigator.
"http://
}else if (navigator.
- "http://
+ "http://
}
}