id,summary,reporter,owner,description,type,status,priority,milestone,component,resolution,keywords,cc,thread
1319,Embedder should ignore hash parameters when calculating netstreambasepath,pablo,pablo,"From Jan:

I am using the jquery address plugin to get deep links for ajax pages.

So I am having urls in the form of:

{{{ page.html#/subpage.html }}}

When I embed a video Jwplayer tries to access a video on

{{{ page.html#/video.mp4 }}}

So the server just returns page.html.

I worked out a bugfix, but I am too lazy to put it into the svn. Here it is. Could you commit it?
{{{
		// in jwplayer.js from line 2890
		function jsonToFlashvars(json) {
			var baseurl=window.location.href;
			var firsthash=baseurl.indexOf('#');
			if(firsthash>0){
				baseurl=baseurl.substring(0,firsthash);
			}
			var flashvars = json.netstreambasepath ? '' : 'netstreambasepath=' + encodeURIComponent(baseurl) + '&';
}}}",bug,closed,,Player 5.7,embedding,fixed,,,http://www.longtailvideo.com/support/forums/jw-player/bug-reports/19678/hashes-in-baseurl
