|
From: <tob...@us...> - 2014-04-05 01:16:54
|
Revision: 8057
http://sourceforge.net/p/bigdata/code/8057
Author: tobycraig
Date: 2014-04-05 01:16:51 +0000 (Sat, 05 Apr 2014)
Log Message:
-----------
#879 - Fixed problem with URIs containing URI-encoded elements in explore tab
Modified Paths:
--------------
branches/RDR/bigdata-war/src/html/js/workbench.js
Modified: branches/RDR/bigdata-war/src/html/js/workbench.js
===================================================================
--- branches/RDR/bigdata-war/src/html/js/workbench.js 2014-04-05 00:35:08 UTC (rev 8056)
+++ branches/RDR/bigdata-war/src/html/js/workbench.js 2014-04-05 01:16:51 UTC (rev 8057)
@@ -710,7 +710,7 @@
}
var settings = {
type: 'POST',
- data: 'query=' + encodeURI(query),
+ data: 'query=' + encodeURIComponent(query),
dataType: 'json',
accepts: {'json': 'application/sparql-results+json'},
success: updateExploreStart,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|