diff --git a/IDEs/eclipse/README.txt b/IDEs/eclipse/README.txt index 15ee509e5..0c51bd325 100644 --- a/IDEs/eclipse/README.txt +++ b/IDEs/eclipse/README.txt @@ -1,26 +1,26 @@ - Gridworks Helpers for Eclipse - ----------------------------- + Google Refine for Eclipse + ------------------------- This file contains Eclipse-specific help files that can get simplify your life - developing Gridworks with Eclipse (http://www.eclipse.org/). + developing Google Refine with Eclipse (http://www.eclipse.org/). Launch Files (*.launch) ----------------------- - These are files that help you running Gridworks directly from eclipse without having to execute + These are files that help you running Google Refine directly from eclipse without having to execute the shell scripts. To run, right click on the files directly from Eclipse, then do "Run As -> ". - Code Style Format Configurations (Gridworks.style.xml) + Code Style Format Configurations (Refine.style.xml) ------------------------------------------------------ - This is the code formatting configurations that all Gridworks developers should follow. + This is the code formatting configurations that all Google Refine developers should follow. To import, open the Eclipse preferences, then follow to "Java > Code Style > Formatter" and click the "Import" button and load the file. @@ -33,6 +33,6 @@ Thank you for your interest. - The Freebase Gridworks Development Team - http://code.google.com/p/freebase-gridworks/ + The Google Refine Development Team + http://code.google.com/p/google-refine/ \ No newline at end of file diff --git a/IDEs/eclipse/Gridworks.style.xml b/IDEs/eclipse/Refine.style.xml similarity index 99% rename from IDEs/eclipse/Gridworks.style.xml rename to IDEs/eclipse/Refine.style.xml index 7ffeb1524..422c8d706 100644 --- a/IDEs/eclipse/Gridworks.style.xml +++ b/IDEs/eclipse/Refine.style.xml @@ -1,6 +1,6 @@ - + diff --git a/LICENSE.txt b/LICENSE.txt index 322235c0a..cbbbfb815 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -39,7 +39,7 @@ Apache License 2.0 ------------------ licenses/apache2.0.LICENSE.txt - calendar-parser (package com.google.gridworks.expr.util) + calendar-parser (package com.google.refine.expr.util) ant-tools commons-lang commons-codec diff --git a/extensions/build.xml b/extensions/build.xml index 0d77cc2f1..29efe08c9 100644 --- a/extensions/build.xml +++ b/extensions/build.xml @@ -2,11 +2,11 @@ - + diff --git a/main/tests/client/src/facets.js b/main/tests/client/src/facets.js index 7b11db7fa..831be4944 100644 --- a/main/tests/client/src/facets.js +++ b/main/tests/client/src/facets.js @@ -7,7 +7,7 @@ var test_facets = new function() { // test opening Food project test = newTest(); - assert (test, "assertText", { jquery: '("h1")[0]', validator: "Welcome to Gridworks" }); + assert (test, "assertText", { jquery: '("h1")[0]', validator: "Welcome to Google Refine" }); this.test_home_page = test; // make sure the dataset was loaded properly diff --git a/main/webapp/modules/core/about.html b/main/webapp/modules/core/about.html index 55106f0fd..554bbb443 100644 --- a/main/webapp/modules/core/about.html +++ b/main/webapp/modules/core/about.html @@ -1,7 +1,7 @@ - About Freebase Gridworks + About Google Refine @@ -9,9 +9,9 @@ $scriptInjection @@ -14,7 +14,7 @@
diff --git a/main/webapp/modules/core/project.vt b/main/webapp/modules/core/project.vt index 30b18dfb4..8ad0dd171 100644 --- a/main/webapp/modules/core/project.vt +++ b/main/webapp/modules/core/project.vt @@ -2,7 +2,7 @@ - Freebase Gridworks + Google Refine @@ -15,7 +15,7 @@
diff --git a/main/webapp/modules/core/scripts/dialogs/clustering-dialog.js b/main/webapp/modules/core/scripts/dialogs/clustering-dialog.js index 399c64060..17e458fb7 100644 --- a/main/webapp/modules/core/scripts/dialogs/clustering-dialog.js +++ b/main/webapp/modules/core/scripts/dialogs/clustering-dialog.js @@ -293,7 +293,7 @@ ClusteringDialog.prototype._apply = function(onDone) { } if (edits.length > 0) { - Gridworks.postCoreProcess( + Refine.postCoreProcess( "mass-edit", {}, { diff --git a/main/webapp/modules/core/scripts/dialogs/column-reordering-dialog.js b/main/webapp/modules/core/scripts/dialogs/column-reordering-dialog.js index 3e938223a..e4872caaa 100644 --- a/main/webapp/modules/core/scripts/dialogs/column-reordering-dialog.js +++ b/main/webapp/modules/core/scripts/dialogs/column-reordering-dialog.js @@ -36,7 +36,7 @@ ColumnReorderingDialog.prototype._dismiss = function() { ColumnReorderingDialog.prototype._commit = function() { var columnNames = this._elmts.columnContainer.find('div').map(function() { return this.getAttribute("column"); }).get(); - Gridworks.postCoreProcess( + Refine.postCoreProcess( "reorder-columns", null, { "columnNames" : JSON.stringify(columnNames) }, diff --git a/main/webapp/modules/core/scripts/dialogs/expression-preview-dialog.html b/main/webapp/modules/core/scripts/dialogs/expression-preview-dialog.html index ecbb39ed9..a6deadddc 100644 --- a/main/webapp/modules/core/scripts/dialogs/expression-preview-dialog.html +++ b/main/webapp/modules/core/scripts/dialogs/expression-preview-dialog.html @@ -14,7 +14,7 @@ -
+
  • Preview
  • History
  • diff --git a/main/webapp/modules/core/scripts/dialogs/extend-data-preview-dialog.js b/main/webapp/modules/core/scripts/dialogs/extend-data-preview-dialog.js index 9f1a456c4..cba9960d6 100644 --- a/main/webapp/modules/core/scripts/dialogs/extend-data-preview-dialog.js +++ b/main/webapp/modules/core/scripts/dialogs/extend-data-preview-dialog.js @@ -39,7 +39,7 @@ ExtendDataPreviewDialog.getAllProperties = function(typeID, onDone) { var done = false; $.getJSON( - Gridworks.gridworksHelperService + "/get_properties_of_type?type=" + typeID + "&callback=?", + Refine.refineHelperService + "/get_properties_of_type?type=" + typeID + "&callback=?", null, function(data) { if (done) return; diff --git a/main/webapp/modules/core/scripts/dialogs/templating-exporter-dialog.js b/main/webapp/modules/core/scripts/dialogs/templating-exporter-dialog.js index 9b9fd0822..942d13b39 100644 --- a/main/webapp/modules/core/scripts/dialogs/templating-exporter-dialog.js +++ b/main/webapp/modules/core/scripts/dialogs/templating-exporter-dialog.js @@ -107,7 +107,7 @@ TemplatingExporterDialog.prototype._export = function() { .css("display", "none") .attr("method", "post") .attr("action", "/command/core/export-rows/" + name + ".txt") - .attr("target", "gridworks-export"); + .attr("target", "refine-export"); var appendField = function(name, value) { $('