Skip to content

Commit

Permalink
Issue 630: Change branding from Google Refine to OpenRefine
Browse files Browse the repository at this point in the history
** The first native Github commit (ie not one converted from SVN **
Change Google Refine to OpenRefine or just Refine.  
Change icon filenames and add some placeholder icons
  • Loading branch information
tfmorris committed Oct 18, 2012
1 parent 03d997b commit 0bd2104
Show file tree
Hide file tree
Showing 62 changed files with 8,384 additions and 8,378 deletions.
126 changes: 63 additions & 63 deletions .settings/org.eclipse.jdt.ui.prefs

Large diffs are not rendered by default.

568 changes: 284 additions & 284 deletions CHANGES.txt

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions IDEs/eclipse/README.txt
@@ -1,17 +1,17 @@

Google Refine for Eclipse
OpenRefine for Eclipse
-------------------------


This file contains Eclipse-specific help files that can get simplify your life
developing Google Refine with Eclipse (http://www.eclipse.org/).
developing OpenRefine with Eclipse (http://www.eclipse.org/).



Code Style Format Configurations (Refine.style.xml)
------------------------------------------------------

This is the code formatting configurations that all Google Refine developers should follow.
This is the code formatting configurations that all OpenRefine 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.
Expand All @@ -24,6 +24,6 @@
Thank you for your interest.


The Google Refine Development Team
http://code.google.com/p/google-refine/
The OpenRefine Development Team
http://github.com/OpenRefine/OpenRefine

2 changes: 1 addition & 1 deletion IDEs/eclipse/Refine.style.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<profiles version="11">
<profile kind="CodeFormatterProfile" name="Google Refine" version="11">
<profile kind="CodeFormatterProfile" name="OpenRefine" version="11">
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if" value="do not insert"/>
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert" value="insert"/>
<setting id="org.eclipse.jdt.core.formatter.brace_position_for_enum_constant" value="end_of_line"/>
Expand Down
22 changes: 12 additions & 10 deletions README.txt
@@ -1,25 +1,25 @@



G o o g l e R e f i n e
---------------------------
O p e n R e f i n e
-------------------



What is this?
-------------

Google Refine is a power tool that allows you to load data, understand it,
is a power tool that allows you to load data, understand it,
clean it up, reconcile it internally, and augment it with data coming from
Freebase or other web sources. All with the comfort and privacy of
your own computer.



Where can I get more information on Google Refine?
Where can I get more information on ?
----------------------------------------------

Look at the Google Refine web site
Look at the web site

http://code.google.com/p/google-refine/

Expand All @@ -28,9 +28,9 @@ Look at the Google Refine web site
Licensing and legal issues
--------------------------

Google Refine is open source software and is licensed under the BSD license
is open source software and is licensed under the BSD license
located in the LICENSE.txt. See that file also for information on open source
libraries that Google Refine depends on.
libraries that depends on.



Expand All @@ -39,7 +39,9 @@ Credits

This software was created by Metaweb Technologies, Inc. and originally written
and conceived by David Huynh <dfhuynh@google.com>. Metaweb Technologies, Inc.
was acquired by Google, Inc. in July 2010.
was acquired by Google, Inc. in July 2010 and the product was renamed Google Refine.
In October 2012, it was renamed OpenRefine as it transitioned to a
community-supported product.

This is the full list of contributors (in chronological order):

Expand All @@ -66,5 +68,5 @@ This is the full list of contributors (in chronological order):
Thank you for your interest.


The Google Refine Development Team
http://code.google.com/p/google-refine/
The OpenRefine Development Team
http://github.com/OpenRefine/OpenRefine
2 changes: 1 addition & 1 deletion broker/appengine/.settings/org.eclipse.jdt.ui.prefs
@@ -1,4 +1,4 @@
#Mon Sep 27 15:02:14 PDT 2010
eclipse.preferences.version=1
formatter_profile=_Google Refine
formatter_profile=_OpenRefine
formatter_settings_version=11
2 changes: 1 addition & 1 deletion broker/core/.settings/org.eclipse.jdt.ui.prefs
@@ -1,4 +1,4 @@
#Mon Sep 27 15:02:27 PDT 2010
eclipse.preferences.version=1
formatter_profile=_Google Refine
formatter_profile=_OpenRefine
formatter_settings_version=11
12 changes: 6 additions & 6 deletions broker/core/IDEs/eclipse/README.txt
@@ -1,16 +1,16 @@

Google Refine Helpers for Eclipse
---------------------------------
OpenRefine Helpers for Eclipse
------------------------------


This file contains Eclipse-specific help files that can get simplify your life
developing Google Refine with Eclipse (http://www.eclipse.org/).
developing OpenRefine with Eclipse (http://www.eclipse.org/).


Launch Files (*.launch)
-----------------------

These are files that help you running Google Refine directly from eclipse without having to execute
These are files that help you running OpenRefine directly from Eclipse without having to execute
the shell scripts.

To run, right click on the files directly from Eclipse, then do "Run As -> <name>".
Expand All @@ -25,6 +25,6 @@
Thank you for your interest.


The Google Refine Development Team
http://code.google.com/p/google-refine/
The OpenRefine Development Team
http://github.com/OpenRefine/OpenRefine

6 changes: 3 additions & 3 deletions broker/core/src/com/google/refine/broker/RefineBroker.java
Expand Up @@ -67,9 +67,9 @@ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
import edu.mit.simile.butterfly.ButterflyModuleImpl;

/**
* This class contains all the code shared by various implementations of a Google Refine Broker.
* This class contains all the code shared by various implementations of a OpenRefine Broker.
*
* A broker is a server used by multiple Google Refine installations to enable collaborative
* A broker is a server used by multiple OpenRefine installations to enable collaborative
* development over the same project.
*
* Broker implementations differ in how they store their state but all of them are required
Expand Down Expand Up @@ -228,7 +228,7 @@ protected String getUserId(HttpServletRequest request) throws Exception {

HttpPost httpRequest = new HttpPost(USER_INFO_URL);
httpRequest.setHeader(OAUTH_HEADER, oauth);
httpRequest.getParams().setParameter(CoreProtocolPNames.USER_AGENT, "Google Refine Broker");
httpRequest.getParams().setParameter(CoreProtocolPNames.USER_AGENT, "OpenRefine Broker");
httpRequest.setEntity(entity);

ResponseHandler<String> responseHandler = new BasicResponseHandler();
Expand Down
2 changes: 1 addition & 1 deletion broker/core/tests/conf/tests.xml
@@ -1,6 +1,6 @@
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >

<suite name="Google Refine Broker Unit Tests">
<suite name="OpenRefine Broker Unit Tests">
<test name="tests">
<packages>
<package name="com.google.refine.broker.tests.*"/>
Expand Down
34 changes: 17 additions & 17 deletions build.properties
@@ -1,17 +1,17 @@
# Build properties for Google Refine build with Ant
# Priority order (earliest property definition wins):
# 1. command line
# 2. this file
# 3. build.xml defaults
#
#revision=rc1
#version=2.1
#full_version=0.0.0.0
#
# Launch4j directory (only needed to build Windows kits)
launch4j.dir=/Program Files/Launch4j
# Use something similar to the following on Unix-like systems
#launch4j.dir=/opt/launch4j
#
#build.dir=build
#dist.dir=dist
# Build properties for OpenRefine build with Ant
# Priority order (earliest property definition wins):
# 1. command line
# 2. this file
# 3. build.xml defaults
#
#revision=rc1
#version=2.1
#full_version=0.0.0.0
#
# Launch4j directory (only needed to build Windows kits)
launch4j.dir=/Program Files/Launch4j
# Use something similar to the following on Unix-like systems
#launch4j.dir=/opt/launch4j
#
#build.dir=build
#dist.dir=dist
40 changes: 20 additions & 20 deletions build.xml
Expand Up @@ -2,11 +2,11 @@

<!--+
|
| Google Refine Build File
| OpenRefine Build File
|
+-->

<project name="google-refine" default="build" basedir=".">
<project name="openrefine" default="build" basedir=".">

<!-- Properties are immutable, so anything set in this file takes priority-->
<property file="build.properties"/>
Expand All @@ -19,11 +19,11 @@
<property name="build.dir" value="build"/>
<property name="dist.dir" value="dist"/>

<property name="appengine.app_id" value="google-refine-broker"/>
<property name="appengine.app_id" value="openrefine-broker"/>
<property name="appengine.version" value="1"/>
<property name="appengine.sdk.dir" value="/opt/appengine"/>

<property name="fullname" value="google-refine-${version}-${revision}" />
<property name="fullname" value="openrefine-${version}-${revision}" />

<property name="main.dir" value="${basedir}/main" />

Expand Down Expand Up @@ -61,7 +61,7 @@
<property name="built.broker.webapp.dir" value="${build.dir}/broker" />

<property name="mac.dir" value="${build.dir}/mac" />
<property name="release.name" value="google-refine-${version}" />
<property name="release.name" value="openrefine-${version}" />
<property name="windows.dir" value="${build.dir}/windows/${release.name}" />
<property name="linux.dir" value="${build.dir}/linux/${release.name}" />

Expand Down Expand Up @@ -227,12 +227,12 @@

<jarbundler
dir="${mac.dir}"
name="Google Refine"
name="OpenRefine"
mainclass="com.google.refine.Refine"
icon="${graphics.dir}/icon/google-refine.icns"
icon="${graphics.dir}/icon/openrefine.icns"
version="${version}"
infostring="Google Refine ${version}"
aboutmenuname="Google Refine"
infostring="OpenRefine ${version}"
aboutmenuname="OpenRefine"
workingdirectory="$APP_PACKAGE/Contents/Resources"
jvmversion="1.6+"
bundleid="com.google.refine.Refine"
Expand Down Expand Up @@ -263,10 +263,10 @@
<launch4j>
<config
headerType="console"
outfile="${windows.dir}/google-refine.exe"
outfile="${windows.dir}/openrefine.exe"
jarPath="server/lib/${fullname}-server.jar"
dontWrapJar="true"
icon="${graphics.dir}/icon/google-refine.ico">
icon="${graphics.dir}/icon/openrefine.ico">
<classPath mainClass="com.google.refine.Refine">
<cp>server/lib/*.jar</cp>
</classPath>
Expand All @@ -276,14 +276,14 @@
<versionInfo
fileVersion="${full_version}"
txtFileVersion="${version}"
fileDescription="google-refine"
copyright="Copyright (c) 2010, Google, Inc."
fileDescription="openrefine"
copyright="Copyright (c) 2012 OpenRefine contributors, 2010, Google, Inc."
productVersion="${full_version}"
txtProductVersion="${full_version}"
productName="Google Refine"
companyName="Google, Inc."
internalName="google-refine"
originalFilename="google-refine.exe"
productName="OpenRefine"
companyName="OpenRefine team"
internalName="openrefine"
originalFilename="openrefine.exe"
/>
</config>
</launch4j>
Expand Down Expand Up @@ -311,14 +311,14 @@
</fileset>
</copy>

<copy file="${conf.dir}/google-refine.l4j.ini" tofile="${windows.dir}/google-refine.l4j.ini"/>
<copy file="${conf.dir}/openrefine.l4j.ini" tofile="${windows.dir}/openrefine.l4j.ini"/>
<copy file="${basedir}/refine.bat" tofile="${windows.dir}/refine.bat"/>
<copy file="${basedir}/refine.ini" tofile="${windows.dir}/refine.ini"/>
<copy file="${basedir}/README.txt" tofile="${windows.dir}/README.txt"/>
<copy file="${basedir}/LICENSE.txt" tofile="${windows.dir}/LICENSE.txt"/>

<mkdir dir="${dist.dir}"/>
<zip destfile="${dist.dir}/google-refine-${version}-${revision}.zip" basedir="${windows.dir}/.." includes="${release.name}/**"/>
<zip destfile="${dist.dir}/openrefine-${version}-${revision}.zip" basedir="${windows.dir}/.." includes="${release.name}/**"/>
</target>

<target name="linux" depends="jar, prepare_webapp">
Expand Down Expand Up @@ -349,7 +349,7 @@
<copy file="${basedir}/refine" tofile="${linux.dir}/refine"/>

<mkdir dir="${dist.dir}"/>
<tar longfile="gnu" compression="gzip" destfile="${dist.dir}/google-refine-${version}-${revision}.tar.gz">
<tar longfile="gnu" compression="gzip" destfile="${dist.dir}/openrefine-${version}-${revision}.tar.gz">
<tarfileset dir="${linux.dir}/.." filemode="755">
<include name="${release.name}/refine"/>
</tarfileset>
Expand Down
26 changes: 13 additions & 13 deletions conf/google-refine.l4j.ini → conf/openrefine.l4j.ini
@@ -1,13 +1,13 @@
# Launch4j runtime config

# initial memory heap size
-Xms256M

# max memory memory heap size
-Xmx1024M

# Use system defined HTTP proxies
-Djava.net.useSystemProxies=true

#-XX:+UseLargePages
#-Dsomevar="%SOMEVAR%"
# Launch4j runtime config

# initial memory heap size
-Xms256M

# max memory memory heap size
-Xmx1024M

# Use system defined HTTP proxies
-Djava.net.useSystemProxies=true

#-XX:+UseLargePages
#-Dsomevar="%SOMEVAR%"
4 changes: 2 additions & 2 deletions conf/pmd.rules.xml
@@ -1,10 +1,10 @@
<?xml version="1.0"?>
<ruleset name="Google Refine PMD Ruleset"
<ruleset name="OpenRefine PMD Ruleset"
xmlns="http://pmd.sf.net/ruleset/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd"
xsi:noNamespaceSchemaLocation="http://pmd.sf.net/ruleset_xml_schema.xsd">
<description>Google Refine PMD Ruleset</description>
<description>OpenRefine PMD Ruleset</description>

<rule ref="rulesets/basic.xml">
<exclude name="EmptyCatchBlock"/>
Expand Down
4 changes: 2 additions & 2 deletions extensions/build.xml
Expand Up @@ -2,11 +2,11 @@

<!--+
|
| Google Refine Extensions Build File
| OpenRefine Extensions Build File
|
+-->

<project name="google-refine-extensions" default="build" basedir=".">
<project name="openrefine-extensions" default="build" basedir=".">
<target name="build">
<echo message="Building extensions" />
<ant dir="sample/" target="build" />
Expand Down
2 changes: 1 addition & 1 deletion extensions/freebase/build.xml
Expand Up @@ -2,7 +2,7 @@

<!--+
|
| Google Refine Extension Freebase Build File
| OpenRefine Extension Freebase Build File
|
+-->

Expand Down
2 changes: 1 addition & 1 deletion extensions/freebase/module/MOD-INF/module.properties
@@ -1,4 +1,4 @@
name = freebase
description = Google Refine Freebase Extension
description = OpenRefine Freebase Extension
templating = false
requires = core
2 changes: 1 addition & 1 deletion extensions/gdata/README.txt
@@ -1,4 +1,4 @@
Google Refine extension for Google Spreadsheets
OpenRefine extension for Google Spreadsheets
by Tom Morris <tfmorris@gmail.com>

This extension provides Refine with the ability to read Google spreadsheets
Expand Down

0 comments on commit 0bd2104

Please sign in to comment.