Merge branch 'master' of https://github.com/tfmorris/OpenRefine
This commit is contained in:
commit
33046cff25
@ -9,7 +9,7 @@
|
||||
"New York" and "new york" are very likely to refer to the same concept and
|
||||
just have capitalization differences, and "Gödel" and "Godel" probably refer
|
||||
to the same person.
|
||||
<a href="http://code.google.com/p/google-refine/wiki/Clustering" target="_blank">Find out more ...</a>
|
||||
<a href="https://github.com/OpenRefine/OpenRefine/wiki/Clustering" target="_blank">Find out more ...</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -64,4 +64,4 @@
|
||||
</td>
|
||||
</tr></table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -153,7 +153,7 @@ ClusteringDialog.prototype._renderTable = function(clusters) {
|
||||
cluster.value = value;
|
||||
|
||||
parent.find("input[type='text']").val(value);
|
||||
parent.find("input:not(:checked)").attr('checked', true).change();
|
||||
parent.find("input[type='checkbox']").attr('checked', true).change();
|
||||
return false;
|
||||
};
|
||||
for (var c = 0; c < choices.length; c++) {
|
||||
@ -202,7 +202,7 @@ ClusteringDialog.prototype._renderTable = function(clusters) {
|
||||
editCheck.attr("checked", "true");
|
||||
}
|
||||
|
||||
var input = $('<input size="25" />')
|
||||
var input = $('<input type="text" size="25" />')
|
||||
.attr("value", cluster.value)
|
||||
.keyup(function() {
|
||||
cluster.value = this.value;
|
||||
|
16
refine.bat
16
refine.bat
@ -23,25 +23,25 @@ goto endUtils
|
||||
echo Usage %0 [options] ^<action^>
|
||||
echo where [options] include:
|
||||
echo.
|
||||
echo /? print this message and exit
|
||||
echo "/?" print this message and exit
|
||||
echo.
|
||||
echo /p <port> the port that OpenRefine will listen to
|
||||
echo "/p <port>" the port that OpenRefine will listen to
|
||||
echo default: 3333
|
||||
echo.
|
||||
echo /i <interface> the host interface OpenRefine should bind to
|
||||
echo "/i <interface>" the host interface OpenRefine should bind to
|
||||
echo default: 127.0.0.1
|
||||
echo.
|
||||
echo /w <path> path to the webapp
|
||||
echo "/w <path>" path to the webapp
|
||||
echo default src\main\webapp
|
||||
echo.
|
||||
echo /d enable JVM debugging (on port 8000)
|
||||
echo "/d" enable JVM debugging (on port 8000)
|
||||
echo.
|
||||
echo /m <memory> max memory heap size to use
|
||||
echo "/m <memory>" max memory heap size to use
|
||||
echo default: 1024M
|
||||
echo.
|
||||
echo /x enable JMX monitoring (for jconsole and friends)
|
||||
echo "/x" enable JMX monitoring (for jconsole and friends)
|
||||
echo.
|
||||
echo and <action> is one of
|
||||
echo "and <action> is one of
|
||||
echo.
|
||||
echo build ..................... Build OpenRefine
|
||||
echo run ....................... Run OpenRefine
|
||||
|
@ -5,7 +5,7 @@ no_proxy="localhost,127.0.0.1"
|
||||
#REFINE_PORT=3334
|
||||
#REFINE_HOST=127.0.0.1
|
||||
#REFINE_WEBAPP=main\webapp
|
||||
#REFINE_MEMORY=1024M
|
||||
REFINE_MEMORY=3000M
|
||||
|
||||
# Some sample configurations. These have no defaults.
|
||||
#ANT_HOME=C:\grefine\tools\apache-ant-1.8.1
|
||||
|
Loading…
Reference in New Issue
Block a user