|
From: <tob...@us...> - 2014-06-02 17:18:24
|
Revision: 8438
http://sourceforge.net/p/bigdata/code/8438
Author: tobycraig
Date: 2014-06-02 17:18:22 +0000 (Mon, 02 Jun 2014)
Log Message:
-----------
#960 & #961 - Fixed wrong variable names
Modified Paths:
--------------
branches/NEW_WORKBENCH_1_3_2_BRANCH/bigdata-war/src/html/js/workbench.js
Modified: branches/NEW_WORKBENCH_1_3_2_BRANCH/bigdata-war/src/html/js/workbench.js
===================================================================
--- branches/NEW_WORKBENCH_1_3_2_BRANCH/bigdata-war/src/html/js/workbench.js 2014-06-02 17:09:07 UTC (rev 8437)
+++ branches/NEW_WORKBENCH_1_3_2_BRANCH/bigdata-war/src/html/js/workbench.js 2014-06-02 17:18:22 UTC (rev 8438)
@@ -7,7 +7,7 @@
var NAMESPACE_PARAMS = {
'name': 'com.bigdata.rdf.sail.namespace',
'index': 'com.bigdata.search.FullTextIndex.fieldsEnabled',
- 'truth-maintenance': 'com.bigdata.rdf.sail.truthMaintenance',
+ 'truthMaintenance': 'com.bigdata.rdf.sail.truthMaintenance',
'quads': 'com.bigdata.rdf.store.AbstractTripleStore.quads'
};
@@ -237,7 +237,7 @@
// TODO: allow for other options to be specified
var data = '<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">\n<properties>\n';
for(key in NAMESPACE_PARAMS) {
- data += '<entry key="' + keys[key] + '">' + params[key] + '</entry>\n';
+ data += '<entry key="' + NAMESPACE_PARAMS[key] + '">' + params[key] + '</entry>\n';
}
data += '</properties>';
var settings = {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|