Skip to content

Commit d54a4bd

Browse files
Mirroring got broken around the merge from branches/2.1, although I'm
not yet sure how. This catches up to "authoritative" content across the board, while I figure out what broke. git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@8234 8db76d5a-ed1c-0410-87a9-c151d255dfc7
1 parent 49d7041 commit d54a4bd

File tree

502 files changed

+174062
-55750
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

502 files changed

+174062
-55750
lines changed

bikeshed/build.xml

Lines changed: 558 additions & 0 deletions
Large diffs are not rendered by default.

bikeshed/eclipse.README

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ but they should not be submitted.
1111
bin/
1212
build/
1313
classes/
14-
# Matches gwtc output in the war directory, e.g. war/com.google.gwt.bikeshed.tree.Tree/
14+
# Matches gwtc output in the war directory
1515
com.google.gwt.*
1616
bikeshed/war/cookbook/
1717
bikeshed/war/expenses/
@@ -30,10 +30,9 @@ bikeshed/war/stocksMobile/
3030
* Google > App Engine > ORM
3131
* Remove all existing entries
3232
* Add
33-
* src/com/google/gwt/sample/bikeshed/stocks/server
34-
* src/com/google/gwt/sample/bikeshed/stocks/shared
3533
* src/com/google/gwt/sample/expenses/server/domain
3634
* Java Build Path > Libraries > Add Variable > GWT_TOOLS, Extend > redist/json/r2_20080312/json.jar
35+
* Java Build Path > Libraries > Add Variable > GWT_TOOLS, Extend > lib/apache/commons/commons-httpclient-3.1.jar
3736
* Copy tools/redist/json/r2_20080312/json.jar to bikeshed/war/WEB_INF/lib
3837
* Copy all jars from bikeshed/war/temp-lib to bikeshed/war/WEB-INF/lib
3938
* Right click on the bikeshed project and choose Run as > Web Application. Choose from the various .html files

bikeshed/scripts/dataPopulator

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#!/bin/bash
2+
#
3+
# Copyright 2010 Google Inc.
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
6+
# use this file except in compliance with the License. You may obtain a copy of
7+
# the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14+
# License for the specific language governing permissions and limitations under
15+
# the License.
16+
17+
# example invocation: ./dataPopulator http://127.0.0.1:8888/gwtRequest $PWD/expensesJsonData.txt
18+
19+
# the first argument should be the URL.
20+
# the second argument is the pathname of the file to be read.
21+
22+
MAVEN_REPO=~/.m2/repository
23+
24+
NEW_CLASSPATH=$MAVEN_REPO/org/json/json/20090211/json-20090211.jar
25+
for i in dev user servlet bikeshed
26+
do
27+
NEW_CLASSPATH=$MAVEN_REPO/com/google/gwt/gwt-${i}/2.1.0.M1/gwt-${i}-2.1.0.M1.jar:$NEW_CLASSPATH
28+
done
29+
30+
java -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog\
31+
-Dorg.apache.commons.logging.simplelog.defaultlog=ERROR\
32+
-cp $NEW_CLASSPATH com.google.gwt.requestfactory.server.SampleDataPopulator "$@"

0 commit comments

Comments
 (0)