Renamed metaweb to google in various top level files

git-svn-id: http://google-refine.googlecode.com/svn/trunk@1132 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
David Huynh 2010-08-04 17:19:03 +00:00
parent 1f6bb0baf0
commit 1d87b2e210
6 changed files with 15 additions and 14 deletions

View File

@ -14,6 +14,7 @@ Features:
- New exporters: to RDF (as extension) - New exporters: to RDF (as extension)
- In CSV and TSV importers, added support for ignoring quotation marks - In CSV and TSV importers, added support for ignoring quotation marks
- Regexp groups capturing GEL function - Regexp groups capturing GEL function
- Text facet's choice count limit is now configurable through preference page
Fixes: Fixes:
- TSV/CSV exporter bug: Gridworks crashed when there were empty cells. - TSV/CSV exporter bug: Gridworks crashed when there were empty cells.

View File

@ -39,7 +39,7 @@ Apache License 2.0
------------------ ------------------
licenses/apache2.0.LICENSE.txt licenses/apache2.0.LICENSE.txt
calendar-parser (package com.metaweb.gridworks.expr.util) calendar-parser (package com.google.gridworks.expr.util)
ant-tools ant-tools
commons-lang commons-lang
commons-codec commons-codec

View File

@ -38,16 +38,16 @@
------- -------
This software was created by Metaweb Technology Inc. and originally written This software was created by Metaweb Technology Inc. and originally written
and conceived by David Huynh <david@metaweb.com>. and conceived by David Huynh <dfhuynh@google.com>.
This is the full list of contributors (in chronological order): This is the full list of contributors (in chronological order):
- David Huynh <david@metaweb.com> - David Huynh <dfhuynh@google.com>
- Stefano Mazzocchi <stefano@metaweb.com> - Stefano Mazzocchi <stefanom@google.com>
- Vishal Talwar <vishal@metaweb.com> - Vishal Talwar <vtalwar@google.com>
- Jeff Fry <jfry@metaweb.com> - Jeff Fry <jfry@google.com>
- Will Moffat <willmoffat@metaweb.com> - Will Moffat <wdm@google.com>
- James Home <jh@metaweb.com> - James Home <jameshome@google.com>
- Iain Sproat <iainsproat@gmail.com> - Iain Sproat <iainsproat@gmail.com>

View File

@ -228,14 +228,14 @@
<jarbundler <jarbundler
dir="${mac.dir}" dir="${mac.dir}"
name="Gridworks" name="Gridworks"
mainclass="com.metaweb.gridworks.Gridworks" mainclass="com.google.gridworks.Gridworks"
icon="${graphics.dir}/icon/gridworks.icns" icon="${graphics.dir}/icon/gridworks.icns"
version="${version}" version="${version}"
infostring="Gridworks ${version}" infostring="Gridworks ${version}"
aboutmenuname="Gridworks" aboutmenuname="Gridworks"
workingdirectory="$APP_PACKAGE/Contents/Resources" workingdirectory="$APP_PACKAGE/Contents/Resources"
jvmversion="1.6+" jvmversion="1.6+"
bundleid="com.metaweb.gridworks.Gridworks" bundleid="com.google.gridworks.Gridworks"
vmoptions="-Xms256M -Xmx1024M -Dgridworks.version=${revision}" vmoptions="-Xms256M -Xmx1024M -Dgridworks.version=${revision}"
antialiasedgraphics="true" antialiasedgraphics="true"
antialiasedtext="true" antialiasedtext="true"
@ -267,7 +267,7 @@
jarPath="server/lib/${fullname}-server.jar" jarPath="server/lib/${fullname}-server.jar"
dontWrapJar="true" dontWrapJar="true"
icon="${graphics.dir}/icon/gridworks.ico"> icon="${graphics.dir}/icon/gridworks.ico">
<classPath mainClass="com.metaweb.gridworks.Gridworks"> <classPath mainClass="com.google.gridworks.Gridworks">
<cp>server/lib/*.jar</cp> <cp>server/lib/*.jar</cp>
</classPath> </classPath>
<jre minVersion="1.6.0" jdkPreference="preferJre" initialHeapSize="256" maxHeapSize="1024"> <jre minVersion="1.6.0" jdkPreference="preferJre" initialHeapSize="256" maxHeapSize="1024">

View File

@ -610,7 +610,7 @@ run() {
CLASSPATH="$GRIDWORKS_CLASSES_DIR${SEP}$GRIDWORKS_LIB_DIR/*" CLASSPATH="$GRIDWORKS_CLASSES_DIR${SEP}$GRIDWORKS_LIB_DIR/*"
RUN_CMD="$JAVA -cp $CLASSPATH $OPTS com.metaweb.gridworks.Gridworks" RUN_CMD="$JAVA -cp $CLASSPATH $OPTS com.google.gridworks.Gridworks"
#echo "$RUN_CMD" #echo "$RUN_CMD"
#echo "" #echo ""
@ -662,7 +662,7 @@ broker_run() {
CLASSPATH="$GRIDWORKS_CLASSES_DIR${SEP}$GRIDWORKS_LIB_DIR/*" CLASSPATH="$GRIDWORKS_CLASSES_DIR${SEP}$GRIDWORKS_LIB_DIR/*"
RUN_CMD="$JAVA -cp $CLASSPATH $OPTS com.metaweb.gridworks.Gridworks" RUN_CMD="$JAVA -cp $CLASSPATH $OPTS com.google.gridworks.Gridworks"
#echo "$RUN_CMD" #echo "$RUN_CMD"
#echo "" #echo ""

View File

@ -159,7 +159,7 @@ if ""%ACTION%"" == ""run"" goto doRun
:doRun :doRun
set CLASSPATH="%GRIDWORKS_CLASSES_DIR%;%GRIDWORKS_LIB_DIR%\*" set CLASSPATH="%GRIDWORKS_CLASSES_DIR%;%GRIDWORKS_LIB_DIR%\*"
"%JAVA_HOME%\bin\java.exe" -cp %CLASSPATH% %OPTS% -Djava.library.path=%GRIDWORKS_LIB_DIR%/native/windows com.metaweb.gridworks.Gridworks "%JAVA_HOME%\bin\java.exe" -cp %CLASSPATH% %OPTS% -Djava.library.path=%GRIDWORKS_LIB_DIR%/native/windows com.google.gridworks.Gridworks
goto end goto end
:doAnt :doAnt