[gwt-contrib] [google-web-toolkit] r8198 committed - Rename dataSizeIsExact() to isDataSizeExact()

2010-05-19 Thread codesite-noreply

Revision: 8198
Author: gwt.mirror...@gmail.com
Date: Wed May 19 14:14:07 2010
Log: Rename dataSizeIsExact() to isDataSizeExact()

http://code.google.com/p/google-web-toolkit/source/detail?r=8198

Modified:
  
/branches/2.1/user/src/com/google/gwt/user/cellview/client/AbstractPager.java

 /branches/2.1/user/src/com/google/gwt/user/cellview/client/CellBrowser.java
 /branches/2.1/user/src/com/google/gwt/user/cellview/client/CellList.java
 /branches/2.1/user/src/com/google/gwt/user/cellview/client/CellTable.java
  
/branches/2.1/user/src/com/google/gwt/user/cellview/client/CellTreeNodeView.java

 /branches/2.1/user/src/com/google/gwt/user/cellview/client/SimplePager.java
 /branches/2.1/user/src/com/google/gwt/view/client/ListView.java

===
---  
/branches/2.1/user/src/com/google/gwt/user/cellview/client/AbstractPager.java	 
Wed May 19 09:09:03 2010
+++  
/branches/2.1/user/src/com/google/gwt/user/cellview/client/AbstractPager.java	 
Wed May 19 14:14:07 2010

@@ -87,7 +87,7 @@
* forward.
*/
   public boolean hasNextPage() {
-if (!view.dataSizeIsExact()) {
+if (!view.isDataSizeExact()) {
   return true;
 }
 return view.getPageStart() + view.getPageSize() < view.getDataSize();
@@ -168,7 +168,7 @@
* @param index the page index
*/
   public void setPage(int index) {
-if (!isRangeLimited || !view.dataSizeIsExact() || hasPage(index)) {
+if (!isRangeLimited || !view.isDataSizeExact() || hasPage(index)) {
   // We don't use the local version of setPageStart because the user
   // probably wants to use absolute page indexes.
   view.setPageStart(view.getPageSize() * index);
@@ -181,7 +181,7 @@
* @param index the index
*/
   public void setPageStart(int index) {
-if (isRangeLimited && view.dataSizeIsExact()) {
+if (isRangeLimited && view.isDataSizeExact()) {
   index = Math.min(index, view.getDataSize() - view.getPageSize());
 }
 index = Math.max(0, index);
===
---  
/branches/2.1/user/src/com/google/gwt/user/cellview/client/CellBrowser.java	 
Wed May 19 09:09:03 2010
+++  
/branches/2.1/user/src/com/google/gwt/user/cellview/client/CellBrowser.java	 
Wed May 19 14:14:07 2010

@@ -682,13 +682,13 @@

 // Create a delegate list view so we can trap data changes.
 ListView listViewDelegate = new ListView() {
-  public boolean dataSizeIsExact() {
-return listView.dataSizeIsExact();
-  }
-
   public Range getRange() {
 return listView.getRange();
   }
+
+  public boolean isDataSizeExact() {
+return listView.isDataSizeExact();
+  }

   public void setData(int start, int length, List values) {
 // Trim to the current level if the open node no longer exists.
===
---  
/branches/2.1/user/src/com/google/gwt/user/cellview/client/CellList.java	 
Wed May 19 09:09:03 2010
+++  
/branches/2.1/user/src/com/google/gwt/user/cellview/client/CellList.java	 
Wed May 19 11:00:16 2010

@@ -179,10 +179,6 @@
   }
 };
   }
-
-  public boolean dataSizeIsExact() {
-return impl.dataSizeIsExact();
-  }

   public int getDataSize() {
 return impl.getDataSize();
@@ -240,6 +236,10 @@
 }
 return null;
   }
+
+  public boolean isDataSizeExact() {
+return impl.dataSizeIsExact();
+  }

   @Override
   public void onBrowserEvent(Event event) {
===
---  
/branches/2.1/user/src/com/google/gwt/user/cellview/client/CellTable.java	 
Wed May 19 09:09:03 2010
+++  
/branches/2.1/user/src/com/google/gwt/user/cellview/client/CellTable.java	 
Wed May 19 11:00:16 2010

@@ -519,10 +519,6 @@
   public void addColumnStyleName(int index, String styleName) {
 ensureTableColElement(index).addClassName(styleName);
   }
-
-  public boolean dataSizeIsExact() {
-return impl.dataSizeIsExact();
-  }

   public int getBodyHeight() {
 int height = getClientHeight(tbody);
@@ -585,6 +581,10 @@
   public int getSize() {
 return impl.getDataSize();
   }
+
+  public boolean isDataSizeExact() {
+return impl.dataSizeIsExact();
+  }

   /**
* Check whether or not mouse selection is enabled.
===
---  
/branches/2.1/user/src/com/google/gwt/user/cellview/client/CellTreeNodeView.java	 
Wed May 19 09:09:03 2010
+++  
/branches/2.1/user/src/com/google/gwt/user/cellview/client/CellTreeNodeView.java	 
Wed May 19 11:00:16 2010

@@ -317,10 +317,6 @@
   impl.setSelectionModel(null, false);
 }

-public boolean dataSizeIsExact() {
-  return impl.dataSizeIsExact();
-}
-
 public int getDataSize() {
   return impl.getDataSize();
 }
@@ -340,6 +336,10 @@
 public Range getRange() {
   return impl.getRange();
 }
+
+public boolean isDataSizeExact() {
+  return impl.dataSizeIsExact();
+}

 public void setData(int start, int length, List values) {
   impl.setData(values, sta

[gwt-contrib] [google-web-toolkit] r8197 committed - Add a package description for c.g.gwt.regexp.shared....

2010-05-19 Thread codesite-noreply

Revision: 8197
Author: j...@google.com
Date: Wed May 19 10:09:25 2010
Log: Add a package description for c.g.gwt.regexp.shared.

Patch by: jat
Review by: rjrjr (TBR)

http://code.google.com/p/google-web-toolkit/source/detail?r=8197

Added:
 /branches/2.1/user/src/com/google/gwt/regexp/shared/package.html

===
--- /dev/null
+++ /branches/2.1/user/src/com/google/gwt/regexp/shared/package.html	Wed  
May 19 10:09:25 2010

@@ -0,0 +1,5 @@
+
+
+A regular expression package based on the capabilities of Javascript's  
RegExp.

+
+

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] [google-web-toolkit] r8195 committed - Update Javadoc build file to pick up bikeshed packages....

2010-05-19 Thread codesite-noreply

Revision: 8195
Author: j...@google.com
Date: Wed May 19 09:34:38 2010
Log: Update Javadoc build file to pick up bikeshed packages.

Patch by: jat
Review by: rjrjr

http://code.google.com/p/google-web-toolkit/source/detail?r=8195

Modified:
 /branches/2.1/doc/build.xml

===
--- /branches/2.1/doc/build.xml Mon May 17 09:49:11 2010
+++ /branches/2.1/doc/build.xml Wed May 19 09:34:38 2010
@@ -10,7 +10,7 @@
   location="${gwt.build.lib}/gwt-dev.jar" />


   -   
value="com.google.gwt.animation.client;com.google.gwt.benchmarks.client;com.google.gwt.cell.client;com.google.gwt.core.client;com.google.gwt.core.ext;com.google.gwt.core.ext.soyc;com.google.gwt.core.ext.linker;com.google.gwt.core.ext.typeinfo;com.google.gwt.core.linker;com.google.gwt.debug.client;com.google.gwt.dom.client;com.google.gwt.event.dom.client;com.google.gwt.event.logical.shared;com.google.gwt.event.shared;com.google.gwt.http.client;com.google.gwt.i18n.client;com.google.gwt.i18n.shared;com.google.gwt.i18n.client.constants;com.google.gwt.i18n.rebind.format;com.google.gwt.i18n.rebind.keygen;com.google.gwt.json.client;com.google.gwt.junit.client;com.google.gwt.logging.client;com.google.gwt.benchmarks.client;com.google.gwt.resources.client;com.google.gwt.resources.ext;com.google.gwt.user.cellview.client;com.google.gwt.user.client;com.google.gwt.user.client.rpc;com.google.gwt.user.client.ui;com.google.gwt.user.datepicker.client;com.google.gwt.user.server.rpc;com.google.gwt.xml.client;com.google.gwt.uibinder.client;com.google.gwt.rpc.client;com.google.gwt.rpc.server;com.google.gwt.jsonp.client;com.google.gwt.view.client"/>
+   
value="com.google.gwt.animation.client;com.google.gwt.benchmarks.client;com.google.gwt.cell.client;com.google.gwt.core.client;com.google.gwt.core.ext;com.google.gwt.core.ext.soyc;com.google.gwt.core.ext.linker;com.google.gwt.core.ext.typeinfo;com.google.gwt.core.linker;com.google.gwt.debug.client;com.google.gwt.dom.client;com.google.gwt.event.dom.client;com.google.gwt.event.logical.shared;com.google.gwt.event.shared;com.google.gwt.http.client;com.google.gwt.i18n.client;com.google.gwt.i18n.shared;com.google.gwt.i18n.client.constants;com.google.gwt.i18n.rebind.format;com.google.gwt.i18n.rebind.keygen;com.google.gwt.json.client;com.google.gwt.junit.client;com.google.gwt.logging.client;com.google.gwt.benchmarks.client;com.google.gwt.regexp.shared;com.google.gwt.resources.client;com.google.gwt.resources.ext;com.google.gwt.user.cellview.client;com.google.gwt.user.client;com.google.gwt.user.client.rpc;com.google.gwt.user.client.ui;com.google.gwt.user.datepicker.client;com.google.gwt.user.server.rpc;com.google.gwt.xml.client;com.google.gwt.uibinder.client;com.google.gwt.rpc.client;com.google.gwt.rpc.server;com.google.gwt.jsonp.client;com.google.gwt.view.client;com.google.gwt.app.client;com.google.gwt.app.place;com.google.gwt.app.util;com.google.gwt.requestfactory.server;com.google.gwt.requestfactory.shared;com.google.gwt.user.valuestore.shared;com.google.gwt.user.valuestore.ui"/>
   value="java.lang;java.lang.annotation;java.util;java.io;java.sql" />


   

[gwt-contrib] Re: Fixes a memory leak on IE with the cross-site fragment loading strategy. (issue544801)

2010-05-19 Thread spoon

Thanks!


http://gwt-code-reviews.appspot.com/544801/show

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] [google-web-toolkit] r8194 committed - Minimal package javadoc for bikeshed/.../gwt/app...

2010-05-19 Thread codesite-noreply

Revision: 8194
Author: rj...@google.com
Date: Wed May 19 09:32:06 2010
Log: Minimal package javadoc for bikeshed/.../gwt/app

Review by: j...@google.com
http://code.google.com/p/google-web-toolkit/source/detail?r=8194

Added:
 /branches/2.1/bikeshed/src/com/google/gwt/app/client/package.html
 /branches/2.1/bikeshed/src/com/google/gwt/app/package.html
 /branches/2.1/bikeshed/src/com/google/gwt/app/place/package.html
 /branches/2.1/bikeshed/src/com/google/gwt/app/rebind/package.html
 /branches/2.1/bikeshed/src/com/google/gwt/app/util/package.html
Modified:
 /branches/2.1/bikeshed/src/com/google/gwt/app/client/EditorSupport.java
  
/branches/2.1/bikeshed/src/com/google/gwt/app/rebind/EditorSupportGenerator.java


===
--- /dev/null
+++ /branches/2.1/bikeshed/src/com/google/gwt/app/client/package.html	Wed  
May 19 09:32:06 2010

@@ -0,0 +1,5 @@
+
+
+Client specific classes of the GWT application framework.
+
+
===
--- /dev/null
+++ /branches/2.1/bikeshed/src/com/google/gwt/app/package.html	Wed May 19  
09:32:06 2010

@@ -0,0 +1,5 @@
+
+
+Classes that frame an application architecture.
+
+
===
--- /dev/null
+++ /branches/2.1/bikeshed/src/com/google/gwt/app/place/package.html	Wed  
May 19 09:32:06 2010

@@ -0,0 +1,5 @@
+
+
+Classes to define application workflow.
+
+
===
--- /dev/null
+++ /branches/2.1/bikeshed/src/com/google/gwt/app/rebind/package.html	Wed  
May 19 09:32:06 2010

@@ -0,0 +1,5 @@
+
+
+Code generators for the GWT application framework.
+
+
===
--- /dev/null
+++ /branches/2.1/bikeshed/src/com/google/gwt/app/util/package.html	Wed May  
19 09:32:06 2010

@@ -0,0 +1,5 @@
+
+
+Support classes for the GWT application framework.
+
+
===
--- /branches/2.1/bikeshed/src/com/google/gwt/app/client/EditorSupport.java	 
Tue May  4 17:35:40 2010
+++ /branches/2.1/bikeshed/src/com/google/gwt/app/client/EditorSupport.java	 
Wed May 19 09:32:06 2010

@@ -23,7 +23,8 @@
 import java.util.Set;

 /**
- * The DataBinder base class for all the editor functionality.
+ * Implemented by objects that provide data binding support for
+ * instances of {...@link RecordEditView}.
  *
  * @param  the Record type
  * @param  the View type
===
---  
/branches/2.1/bikeshed/src/com/google/gwt/app/rebind/EditorSupportGenerator.java	 
Thu May 13 07:44:39 2010
+++  
/branches/2.1/bikeshed/src/com/google/gwt/app/rebind/EditorSupportGenerator.java	 
Wed May 19 09:32:06 2010

@@ -49,9 +49,9 @@
 import java.util.Map.Entry;

 /**
- * Generates implementations of
- * {...@link com.google.gwt.requestfactory.shared.RequestFactory  
RequestFactory}

- * and its nested interfaces.
+ * Generates implementations of {...@link
+ * com.google.gwt.app.client.EditorSupport EditorSupport} and its
+ * nested interfaces.
  */
 public class EditorSupportGenerator extends Generator {

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] Re: Fixes a memory leak on IE with the cross-site fragment loading strategy. (issue544801)

2010-05-19 Thread jlabanca

LGTM

http://gwt-code-reviews.appspot.com/544801/show

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] [google-web-toolkit] r8193 committed - Added javadoc for a few bikeshed packages.

2010-05-19 Thread codesite-noreply

Revision: 8193
Author: amitman...@google.com
Date: Wed May 19 09:23:43 2010
Log: Added javadoc for a few bikeshed packages.

http://code.google.com/p/google-web-toolkit/source/detail?r=8193

Added:
  
/branches/2.1/bikeshed/src/com/google/gwt/requestfactory/server/package.html
  
/branches/2.1/bikeshed/src/com/google/gwt/requestfactory/shared/package.html

 /branches/2.1/bikeshed/src/com/google/gwt/user/client/ui/package.html
 /branches/2.1/bikeshed/src/com/google/gwt/valuestore/shared/package.html

===
--- /dev/null
+++  
/branches/2.1/bikeshed/src/com/google/gwt/requestfactory/server/package.html	 
Wed May 19 09:23:43 2010

@@ -0,0 +1,7 @@
+
+
+Server side classes for mediating between the client side and the  
persistent datastore.

+
+This package contains classes that can receive client side read and write  
requests in the JSON format, perform the necessary operations on the  
persistent datastore, and return the results in JSON format.

+
+
===
--- /dev/null
+++  
/branches/2.1/bikeshed/src/com/google/gwt/requestfactory/shared/package.html	 
Wed May 19 09:23:43 2010

@@ -0,0 +1,5 @@
+
+
+Shared classes used on both the client and the server side for  
transmitting data between the sever and the client in JSON format.

+
+
===
--- /dev/null
+++ /branches/2.1/bikeshed/src/com/google/gwt/user/client/ui/package.html	 
Wed May 19 09:23:43 2010

@@ -0,0 +1,9 @@
+
+
+Widgets, Panels, and other user-interface classes.
+
+This package contains all of the high-level user-interface Widgets, along  
with

+panels and event interfaces. These classes form the bulk of the client-side
+libraries used by GWT applications.
+
+
===
--- /dev/null
+++  
/branches/2.1/bikeshed/src/com/google/gwt/valuestore/shared/package.html	 
Wed May 19 09:23:43 2010

@@ -0,0 +1,5 @@
+
+
+Client side classes for implementing ValueStore, a cache for storing a  
subset (or all) fields of server side objects.

+
+

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] Re: When SoycReportLinker looks for report files, it now tolerates (issue545801)

2010-05-19 Thread spoon

Ray,

Can you review this, whenever your I/O involvement gives you time to do
so?


http://gwt-code-reviews.appspot.com/545801/show

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] When SoycReportLinker looks for report files, it now tolerates (issue545801)

2010-05-19 Thread spoon

Reviewers: cromwellian,

Description:
When SoycReportLinker looks for report files, it now tolerates
missing "soycReport" from the beginning of the emitted
artifact paths.


Please review this at http://gwt-code-reviews.appspot.com/545801/show

Affected files:
  M dev/core/src/com/google/gwt/core/linker/SoycReportLinker.java
  A dev/core/test/com/google/gwt/core/linker/SoycReportLinkerTest.java


--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] [google-web-toolkit] r8192 committed - Use memcache to store report query cursors...

2010-05-19 Thread codesite-noreply

Revision: 8192
Author: r...@google.com
Date: Wed May 19 09:09:03 2010
Log: Use memcache to store report query cursors
Deal with counts of 1000 in the UI better

http://code.google.com/p/google-web-toolkit/source/detail?r=8192

Modified:
  
/branches/2.1/bikeshed/src/com/google/gwt/sample/expenses/gwt/client/ExpenseList.java
  
/branches/2.1/bikeshed/src/com/google/gwt/sample/expenses/server/domain/EntityCounter.java
  
/branches/2.1/bikeshed/src/com/google/gwt/sample/expenses/server/domain/Report.java

 /branches/2.1/bikeshed/war/WEB-INF/web.xml
  
/branches/2.1/user/src/com/google/gwt/user/cellview/client/AbstractPager.java

 /branches/2.1/user/src/com/google/gwt/user/cellview/client/CellBrowser.java
 /branches/2.1/user/src/com/google/gwt/user/cellview/client/CellList.java
  
/branches/2.1/user/src/com/google/gwt/user/cellview/client/CellListImpl.java

 /branches/2.1/user/src/com/google/gwt/user/cellview/client/CellTable.java
  
/branches/2.1/user/src/com/google/gwt/user/cellview/client/CellTreeNodeView.java

 /branches/2.1/user/src/com/google/gwt/user/cellview/client/SimplePager.java
 /branches/2.1/user/src/com/google/gwt/view/client/ListView.java

===
---  
/branches/2.1/bikeshed/src/com/google/gwt/sample/expenses/gwt/client/ExpenseList.java	 
Tue May 18 06:37:32 2010
+++  
/branches/2.1/bikeshed/src/com/google/gwt/sample/expenses/gwt/client/ExpenseList.java	 
Wed May 19 09:09:03 2010

@@ -66,7 +66,7 @@
 import java.util.Set;

 /**
- * The list of expense reports on the left side of the app.
+ * The list of expense reports on the right side of the app.
  */
 public class ExpenseList extends Composite implements
 ReportRecordChanged.Handler {
@@ -572,7 +572,9 @@
   lastDataSizeReceiver = new Receiver() {
 public void onSuccess(Long response) {
   if (this == lastDataSizeReceiver) {
-reports.updateDataSize(response.intValue(), true);
+int count = response.intValue();
+// Treat count == 1000 as inexact due to AppEngine limitation
+reports.updateDataSize(count, count != 1000);
   }
 }
   };
@@ -584,8 +586,14 @@
 lastDataReceiver = new Receiver>() {
   public void onSuccess(List newValues) {
 if (this == lastDataReceiver) {
-  reports.updateViewData(table.getPageStart(), newValues.size(),
-  newValues);
+  int size = newValues.size();
+  if (size < table.getPageSize()) {
+// Now we know the exact data size
+reports.updateDataSize(table.getPageStart() + size, true);
+  }
+  if (size > 0) {
+reports.updateViewData(table.getPageStart(), size, newValues);
+  }

   // Add the new keys to the known keys.
   boolean isInitialData = knownReportKeys == null;
===
---  
/branches/2.1/bikeshed/src/com/google/gwt/sample/expenses/server/domain/EntityCounter.java	 
Fri May 14 13:11:53 2010
+++  
/branches/2.1/bikeshed/src/com/google/gwt/sample/expenses/server/domain/EntityCounter.java	 
Wed May 19 09:09:03 2010

@@ -47,6 +47,8 @@

   private static final Long ZERO = Long.valueOf(0L);

+  private static final boolean DENSE_IDS = false;
+
   public static final EntityManager entityManager() {
 return EMF.get().createEntityManager();
   }
@@ -137,11 +139,12 @@
 log.info("Starting at getNumExpenses() = " + counter.getNumExpenses());
 log.info("Starting at getNumReports() = " + counter.getNumReports());

+long endTime = System.currentTimeMillis() + 2;
 EntityTransaction transaction = em.getTransaction();
 transaction.begin();

 try {
-  while (true) {
+  while (System.currentTimeMillis() < endTime) {
 Long min;
 switch (kind) {
   case KIND_EMPLOYEE:
@@ -164,7 +167,8 @@
 + mmin + " and id < " + mmax;
 Number count = (Number) em.createQuery(query).getSingleResult();
 long value = count.longValue();
-if (value == 0) {
+if (value == 0 && DENSE_IDS) {
+  log.info("Got 0 results between " + mmin + " and " + mmax);
   break;
 }

@@ -220,8 +224,8 @@
   log.warning("Got exception " + e.getMessage());
   throw e;
 } finally {
-  log.warning("Rolling back transaction");
   if (transaction != null) {
+log.warning("Rolling back transaction");
 transaction.rollback();
   }
   transaction = null;
===
---  
/branches/2.1/bikeshed/src/com/google/gwt/sample/expenses/server/domain/Report.java	 
Tue May 18 06:37:32 2010
+++  
/branches/2.1/bikeshed/src/com/google/gwt/sample/expenses/server/domain/Report.java	 
Wed May 19 09:09:03 2010

@@ -1,12 +1,12 @@
 /*
  * Copyright 2010 Google Inc.
- *
+ *
  * Licensed under the Apache License, Version 2.0 (the "License"); you may  
not
  * use this file except in compliance with the License. You may obtain a  

[gwt-contrib] [google-web-toolkit] r8191 committed - Remove whitelist and open app to all users.

2010-05-19 Thread codesite-noreply

Revision: 8191
Author: jlaba...@google.com
Date: Wed May 19 08:47:50 2010
Log: Remove whitelist and open app to all users.

http://code.google.com/p/google-web-toolkit/source/detail?r=8191

Deleted:
  
/branches/2.1/bikeshed/src/com/google/gwt/sample/expenses/gwt/server/ExpenseRequestFactoryServlet.java

Modified:
 /branches/2.1/bikeshed/war/WEB-INF/web.xml

===
---  
/branches/2.1/bikeshed/src/com/google/gwt/sample/expenses/gwt/server/ExpenseRequestFactoryServlet.java	 
Sat May 15 13:21:57 2010

+++ /dev/null
@@ -1,107 +0,0 @@
-/*
- * Copyright 2010 Google Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may  
not
- * use this file except in compliance with the License. You may obtain a  
copy of

- * the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,  
WITHOUT

- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations  
under

- * the License.
- */
-package com.google.gwt.sample.expenses.gwt.server;
-
-import com.google.appengine.api.datastore.DatastoreServiceFactory;
-import com.google.appengine.api.datastore.KeyRange;
-import com.google.appengine.api.users.User;
-import com.google.appengine.api.users.UserServiceFactory;
-import com.google.gwt.requestfactory.server.RequestFactoryServlet;
-import com.google.gwt.requestfactory.shared.RequestFactory.WriteOperation;
-
-import org.json.JSONException;
-import org.json.JSONObject;
-
-import java.util.Collections;
-import java.util.HashSet;
-import java.util.Set;
-
-/**
- * Custom servlet for the Expense app.
- */
-public class ExpenseRequestFactoryServlet extends RequestFactoryServlet {
-  private static final Set USER_WHITE_LIST = initUserWhiteList();
-
-  private static final String WHITELIST_MESSAGE = "The datastore cannot be  
modified until after Google I/O.";

-
-  private static Set initUserWhiteList() {
-Set whiteList = new HashSet();
-whiteList.add("jlaba...@google.com");
-whiteList.add("br...@google.com");
-whiteList.add("amitman...@google.com");
-whiteList.add("cramsd...@google.com");
-whiteList.add("j...@google.com");
-whiteList.add("rj...@google.com");
-whiteList.add("cromwell...@google.com");
-whiteList.add("knor...@google.com");
-whiteList.add("sco...@google.com");
-whiteList.add("jaime...@google.com");
-whiteList.add("jasonpar...@google.com");
-whiteList.add("rda...@google.com");
-whiteList.add("r...@google.com");
-whiteList.add("zun...@google.com");
-whiteList.add("ben.a...@gmail.com");
-return Collections.unmodifiableSet(whiteList);
-  }
-
-  /**
-   * Check if the user is whitelisted to edit data..
-   *
-   * @return true if white listed.
-   */
-  private static boolean isUserWhiteListed() {
-User curUser = UserServiceFactory.getUserService().getCurrentUser();
-return curUser != null
-&& USER_WHITE_LIST.contains(curUser.getEmail().toLowerCase());
-  }
-
-  @Override
-  protected Long generateIdForCreate(String key) {
-// TODO(jlabanca): Automatic IDs are being duplicated. Assigning an
-// ID manually for now.
-KeyRange range =  
DatastoreServiceFactory.getDatastoreService().allocateIds(

-key, 1);
-return range.getStart().getId();
-  }
-
-  @Override
-  protected JSONObject updateRecordInDataStore(String recordToken,
-  JSONObject recordObject, WriteOperation writeOperation) {
-
-// Ensure that the user is white listed.
-if (!isUserWhiteListed()) {
-  JSONObject returnObject = new JSONObject();
-  try {
-if (writeOperation == WriteOperation.DELETE
-|| writeOperation == WriteOperation.UPDATE) {
-  returnObject.put("id", recordObject.getString("id"));
-} else {
-  returnObject.put("futureId", recordObject.getString("id"));
-}
-JSONObject violations = new JSONObject();
-violations.put("", WHITELIST_MESSAGE);
-returnObject.put("violations", violations);
-return returnObject;
-  } catch (JSONException e) {
-// ignore.
-e.printStackTrace();
-  }
-}
-
-return super.updateRecordInDataStore(recordToken, recordObject,
-writeOperation);
-  }
-}
===
--- /branches/2.1/bikeshed/war/WEB-INF/web.xml  Tue May 18 17:22:30 2010
+++ /branches/2.1/bikeshed/war/WEB-INF/web.xml  Wed May 19 08:47:50 2010
@@ -14,7 +14,7 @@
   
   
 requestFactoryServlet
- 
com.google.gwt.sample.expenses.gwt.server.ExpenseRequestFactoryServlet
+  
com.google.gwt.requestfactory.server.RequestFactoryServlet

   

   

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] [google-web-toolkit] r8190 committed - Fix error in RegExp Javadoc....

2010-05-19 Thread codesite-noreply

Revision: 8190
Author: j...@google.com
Date: Wed May 19 07:50:18 2010
Log: Fix error in RegExp Javadoc.

Suggested by: t.broyer
Patch by: jat
Review by: rjrjr (TBR)

http://code.google.com/p/google-web-toolkit/source/detail?r=8190

Modified:
 /branches/2.1/user/src/com/google/gwt/regexp/shared/RegExp.java

===
--- /branches/2.1/user/src/com/google/gwt/regexp/shared/RegExp.java	Mon  
Feb  1 08:08:26 2010
+++ /branches/2.1/user/src/com/google/gwt/regexp/shared/RegExp.java	Wed May  
19 07:50:18 2010

@@ -360,7 +360,7 @@
   /**
* Determines if the regular expression matches the given string. This  
call
* affects the value returned by {...@link #getLastIndex()} if the global  
flag is

-   * not set. Equivalent to: {...@code exec(input) != null}
+   * set. Equivalent to: {...@code exec(input) != null}
*
* @param input the string to apply the regular expression to
* @return whether the regular expression matches the given string.

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] [google-web-toolkit] r8189 committed - Adds the content.jar and artifacts.jar for E34 and E35 update sites. ...

2010-05-19 Thread codesite-noreply

Revision: 8189
Author: jasonpar...@google.com
Date: Wed May 19 10:21:28 2010
Log: Adds the content.jar and artifacts.jar for E34 and E35 update sites.   
This is required because Eclipse's old update mechanism checks parent  
directories for update sites.  In the E34 case, it would find the STS  
update site and try to use that -- unfortunately that one is for E35.

http://code.google.com/p/google-web-toolkit/source/detail?r=8189

Added:
 /2.1.0.M1/eclipse/plugin/3.4/artifacts.jar
 /2.1.0.M1/eclipse/plugin/3.4/content.jar
 /2.1.0.M1/eclipse/plugin/3.5/artifacts.jar
 /2.1.0.M1/eclipse/plugin/3.5/content.jar

===
--- /dev/null   
+++ /2.1.0.M1/eclipse/plugin/3.4/artifacts.jar  Wed May 19 10:21:28 2010
Binary file, no diff available.
===
--- /dev/null   
+++ /2.1.0.M1/eclipse/plugin/3.4/content.jarWed May 19 10:21:28 2010
Binary file, no diff available.
===
--- /dev/null
+++ /2.1.0.M1/eclipse/plugin/3.5/artifacts.jar  Wed May 19 10:21:28 2010
@@ -0,0 +1,23 @@
+PKòQ³<
+   artifacts.xmlþÊ  ÍXÍr›0 ¼ç)tÈTÉ!   ˜ÚÉôÐöÞÄçŽ 2Q H•D~'ï^  °k;5$&¾Ø#‰ý´Z­WÂã‹û< ·T*Æ‹	 
t 
+ -bž°" ÀéÕ·³ ^œ  /ˆÔlFbýƒ

+®˜æò Ä Qj ¹L  3& EôOÉ
+~ X¡©,H† F5 É Š ËEFÑeõõe­4\ad8Í)´pP œNàwÎÓŒ‚©Hˆ¦à’™  —àë‚ p‘ êÒ
+ ý èf²¯rÜL
+ž  0 ’ j T Å
+Mu\õ·#5S3CÌs!©R41uHVš^-K
+­­ Írª4ÉE ppàá0rÝÀöG äØjITíœ aö®fäÖŒdi¤š±ÌìË ž| 
2e?ƒ“j ÙŒ™>®R†®Ë"Éèé) ¼Ô¢Ô xü4Wd*³gKdeÊ

+e
+?±äùçñÓ‹ Ïè ‘Í2þ7Í5+ˆ|Ø2Ãbpm‚ ‹/onY¹ Í(ѥܶ¤—Ñ×Ö4¶jE«Vm”Z_§ ¸
+ K„à’ª °d  
+PZù ¥wºa sIWLï ÛçÎ ¶
+Ûö ÈÁNð2Ñ&ß¹Íغ“ kÏ m¬äcìÚ#\K»	 
˜ð»"ã$é Œ¹‰ B_™_^ƒ7bf,&Ú¬Ózd¢­ó¯“ç=5÷÷ X%¿ O!Œª˜kÔ®Ú{UÛ <×q‚°»Ü  Ãè½õG¶£üÔõkÄ›· w7¾çx=\¿‚Ú‡UÍ>ÑÂä+Ý ˜ƒ\ä­Äƒi£Û½Ù  a0

+ë#¦‹N œ‹›|Ð  "?²{hÜ ÷ñ
+'­Â"#ÚÜφ Ù   £
+ ïŒ:´Ä}-E–s÷m‰Ò=u±g÷¸k¬¢†ò'R7DV×ôálêõJ‚ Q‡fÓeÙUi^Ü–Íù á» 3
+q [Ù*jßÆ
+üåÀ
+Ù¸Ïéß w 'ÓÜ
+ƒ
+ };°{äâΰ —yý@ ÜÍŽ7rý¨Ç%`w܇˼ ¨Ã*+ artifacts.xmlþÊ  PK  ?   * 
===

--- /dev/null   
+++ /2.1.0.M1/eclipse/plugin/3.5/content.jarWed May 19 10:21:28 2010
Binary file, no diff available.

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8188 committed - Add latest build of GPE to E35 update site.

2010-05-19 Thread codesite-noreply

Revision: 8188
Author: jasonpar...@google.com
Date: Wed May 19 09:57:41 2010
Log: Add latest build of GPE to E35 update site.
http://code.google.com/p/google-web-toolkit/source/detail?r=8188

Added:
  
/2.1.0.M1/eclipse/plugin/3.5/features/com.google.appengine.eclipse.sdkbundle.e35.feature.1.3.4_1.3.4.v201005191217.jar
  
/2.1.0.M1/eclipse/plugin/3.5/features/com.google.gdt.eclipse.suite.e35.feature_1.4.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/3.5/features/com.google.gwt.eclipse.sdkbundle.e35.feature.2.1.0_2.1.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.appengine.eclipse.core_1.4.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.appengine.eclipse.sdkbundle.1.3.4_1.3.4.v201005191217.jar
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.gdt.eclipse.core_1.4.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.gdt.eclipse.platform.e35_1.4.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.gdt.eclipse.platform.shared_1.4.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.gdt.eclipse.platform_1.4.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.gdt.eclipse.suite_1.4.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.gwt.eclipse.core_1.4.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.gwt.eclipse.oophm_1.4.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.gwt.eclipse.sdkbundle.2.1.0_2.1.0.m1-201005191217.jar

Modified:
 /2.1.0.M1/eclipse/plugin/3.5/site.xml

===
--- /dev/null
+++  
/2.1.0.M1/eclipse/plugin/3.5/features/com.google.appengine.eclipse.sdkbundle.e35.feature.1.3.4_1.3.4.v201005191217.jar	 
Wed May 19 09:57:41 2010

@@ -0,0 +1,61 @@
+PK  
+ ÊJ³<	   META-INF/þÊ  PK  
+ ÉJ³< }›F^   j   META-INF/MANIFEST.MFóMÌËLK-.Ñ

+K-*ÎÌϳR0Ô3àårÌC q,HLÎHU Š %Íõ y¹œ‹R KRSt *AêÍô â
+ u“ Ì 4‚Kó |3“‹ò‹+‹KRs‹ <ó’õ4y¹x¹ PK  
+ ÊJ³<@  ä²   Ù   feature.xmlµXßsÚH ~×_Ñ¥§Ý”% Žïvs¶·ˆ! Y >ƒ7•§Ô

+0öhF; AØ¿þz~ „q%øÊ! ±¤î¯¿îéîé™ó?¾å
+VT•LŠ‹°
+·B "•  ‹‹ð~ú!ú-üã28ŸS¢+E °?–]„©Ìã
+” NcR T,˜ 1M9+J —Ù㬠 ~£§g±WŽÛñiü6ô œÌ(¿ ¯- t‹ ú  >‘  IïOØ oPÄ·ñªÓj·ZgíßÛ 
ö¿k™BÉ Ë¨Š Éi
+}  ‘Æáe`„Î3Z¦Š  ¡.½Ö!ƒ¹TŽ
+µe¹¼·ÞØ/}ç#œÆg 2Ùô¯RYl [,umãª~  Vë÷Ú¤!æ  
+ö g) %­Õƒëñøz؇îí-ôG׃Q &ã ÓÏÝ»>ôú õ‡ãÛ›þh

+  ¦ða| Ÿº ua8¸ê &} ŒðÕMw:  ‚ [(Æ¡sby Á
+ù Át¹ç¿q˜•àId %ld   �...@£ìaȦtå%È9l¨z¡
+übäBû:üõ?V?'  RC
+ÁÓK40g B¿¥´ÐÀ `F œ  Úk¦—Ö’ ˆ ¾x}9Ó E	˜ˆ {[! ÚÆ –Z ï  iFë Eäd›¤‰¶˜K ó  
¸ œ–%(úwÅ º:Û 
+¢çd†Ü8Y ®8Y(ꀦ׊i,Ž (å\¯‰¢ ±R+6«4ÊìbäH¡—ÍÏ ©  »  LBxß  &'ðy0ý8¾Ÿ .ç]w4

+ô'€kx5
+õ fÑðé tG_puG½    4A¿ Ê0GzÌ„ f ¥   ¥
+Û&YÍSYДÍYŠîˆEEËI  P $+Mea E†kž3M´}~âKlò ýñ•X ÿ0ofÔ  
Ëùœ* 5#–Ñ å Í™eÎ+Áô¦Ž %Šo€Kù ÂŒ”Ì1ÁÿBt’*–S¡	 ­?E¥
+YÒ²¶žQ Cj	 
»òw®4  ãò¹N§%åÅNõ€ÑI ÙkÆ9 , A×àÛWi\I¥ÀÕ¯ GÆ w´è"Ž®£ ±É]ÿˆ9EÒ%j È%fÉœ	V.1  
èF¾5Ä„¦"³ÐŠrJ°4rYꚣ)	)Ðÿæjt   «NÜ ä/0 +

+†}½" û ÛžÂÐȬJMlNlH·™è— ˆMÓÂó ª—DƒIs!m1`   ©yebR“¶
+ã]rDqa›Ü¶ÅâIB¹Ä bªø\D„RrŠQE  
ƒ¯ë†bí  *Þ¶±à™– wýëî]o0º†÷÷£Þ°ßƒéÇÁ]/ºíÞM¿lÛ¨ë sɹ\›ìÅþ¤2(ˆÂ4Ý |RÌÛ& 
+öC ¹í6âÓÙoOu“ ¶Ž ï
+Mú 5–¤¬=E]Æm#š+™{ .]ºc^ Á øDµÞ`ß :˜wuvøgXÅ`ò %& ÔôÅ ™qLúwuÇ\¯×1¦ªž‘M,Õ"y0Ð	 
jºÍ/3KÏÙl×I#-%/#R°ø ¨ Ûˆ _

+S
+©
++&§F¢v
+±½
+Û°Ñ Oº+ôë¸B„Æ©Äh[O }x U‡“X_
+0‚  L`loÉCY$Xi$}ÄÆšE;H”ŒÚñ¿â3 ÷ 
+N* öTCÙ,3yÄ\$8Hä¹ipC¹X˜<µ üqÀŽ Yê ›aãÎHb ¾ @Ì ¨ÔÕ¬|>x

+¼F´€78dâ®ä7 „MŽ‘GŠ ’
+’ùglb—0Û¼Ûñ »ý %ù ¡F˜?N§·p
+»ªÐ¯ â ‡Þ qÍÃH¤ÖÞ+F{ ú\
+]!Ïô§æ  N_Ñ ‹÷œ+ýáOõƒrçÄKò“rÌÍÖÓòýDp S¯GVË
+ ¨Éµ\  7Ú
+KøÁRª{_t†¤;¿ùžõ" 3...@¯š 
+קd `åO­&ílìVË5mÃÜKcšá>KTf;GgÏÏCá‡Ró†àn£º¦J

+–KGõŠ*{*A E s{ùvìö
+ÎnáOÕ—dåÎÔ3Š NUº
+±‡#;QâP² 7ë”fäÀ#³\ǯ Ã
+'Ò ¢û3ª?E«Nû4òsž?5 ¼Ùù`Fœ Ä  XÝïëfxÛUr
+šäFÁ Pæ0×ì .Ð{ º8®܈ïM4ºÉ ²±ø€”¾%d«÷”ñ• Ø‹ÀR£‚ ûHæ´Ë©†Iá[é^ÅlCX:±¯ 
øì«I‹h›Qû¼&·?BÂìD”v Òr›ß Ît }...@4q Öç¾_úÃ_á;è” EÌ ð70ƸL6y±”xdøo
+ÅñÏ Ix\ š±óo  •ˆ‘UØCê©íÿÝ8
+ž-X¡¹‚Ó}¶ï'½ã¸ £mÈ
+ÉŶ  —£& cÃPí MFUÊiUbΧæt ˉ6çÅW
+v†v„³³‹ó® ¢¹¤!‚}]QÛ Ïžé–O
+ 
+r´, KsÙㆸ·{

+Ø  Õ±Dž•Ýçá.Ù¶—jö±R¼¾^;¯
+Ô¥O®$ïÝË

[gwt-contrib] [google-web-toolkit] r8187 committed - Add latest build of GPE to E34 update site.

2010-05-19 Thread codesite-noreply

Revision: 8187
Author: jasonpar...@google.com
Date: Wed May 19 09:55:56 2010
Log: Add latest build of GPE to E34 update site.
http://code.google.com/p/google-web-toolkit/source/detail?r=8187

Added:
  
/2.1.0.M1/eclipse/plugin/3.4/features/com.google.appengine.eclipse.sdkbundle.e34.feature.1.3.4_1.3.4.v201005191216.jar
  
/2.1.0.M1/eclipse/plugin/3.4/features/com.google.gdt.eclipse.suite.e34.feature_1.4.0.m1-201005191216.jar
  
/2.1.0.M1/eclipse/plugin/3.4/features/com.google.gwt.eclipse.sdkbundle.e34.feature.2.1.0_2.1.0.m1-201005191216.jar
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.appengine.eclipse.core_1.4.0.m1-201005191216.jar
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.appengine.eclipse.sdkbundle.1.3.4_1.3.4.v201005191216.jar
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.gdt.eclipse.core_1.4.0.m1-201005191216.jar
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.gdt.eclipse.platform.e34_1.4.0.m1-201005191216.jar
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.gdt.eclipse.platform.shared_1.4.0.m1-201005191216.jar
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.gdt.eclipse.platform_1.4.0.m1-201005191216.jar
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.gdt.eclipse.suite_1.4.0.m1-201005191216.jar
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.gwt.eclipse.core_1.4.0.m1-201005191216.jar
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.gwt.eclipse.oophm_1.4.0.m1-201005191216.jar
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.gwt.eclipse.sdkbundle.2.1.0_2.1.0.m1-201005191216.jar

Modified:
 /2.1.0.M1/eclipse/plugin/3.4/site.xml

===
--- /dev/null
+++  
/2.1.0.M1/eclipse/plugin/3.4/features/com.google.appengine.eclipse.sdkbundle.e34.feature.1.3.4_1.3.4.v201005191216.jar	 
Wed May 19 09:55:56 2010

@@ -0,0 +1,57 @@
+PK  
+ ¢J³<	   META-INF/þÊ  PK  
+ ¡J³< Θd\   j   META-INF/MANIFEST.MFóMÌËLK-.Ñ

+K-*ÎÌϳR0Ô3àårÌC q,HLÎHU Š %ÍAÒÎE©‰%©)ºN• õfz ñ †ºI f
+ Á¥y
+¾™ÉEùÅ•Å%©¹Å
+žyÉzš¼\¼\ PK  
+ ¢J³+4¥K 7 íéS ° (•%¯$CÙ¿þŽ~ LÈiÉ=)}hlÏ|óÍhf4ÒùŸß

+ +ª4“â"î$í ¨ÈdÎÄâ"¾Ÿ¾oý
+ÿy  Ï)1•¢ ¸ Ë/âL ÉBÊ § )K* LЄfœ•š&:ÿ:«DŽßèë7IPN:ÉëäM
+08™Q~ _; è–%ô
+ | 
$+ “Þ_°'Þ ˆo“Õi»ÓnŸuþèœv~«eJ%W,§ª%HAkè  ˆ,‰/#+tžS )V „º Z‡ æRy ΖãòÎyã¾ô½ €Ÿ

+dº‡é^e²Ü(¶XšÚÆUý NÛí?j“–˜‡h(¸ œeThZ«G×ãñõ° ÝÛ[è ® £>LÆ履ºw}èõÿî Ç·7ýÑ þ Láýø 
>vÿîÂppÕ Mú0 á«›ît0
+EQ·TŒÃé‰ã E ö EÓåžÿÖa¦! ÈÁHØÈ
+0 T AÙÃ M©*4È9L¨Z¡
+übåb÷:þõ?N¿   Ò@
+Á3K40g B¿e´4À `F•œ  Úkf–Î’ H > }93 E؈Y{[! ÆÅ –Æ”oS iNë Eät›¤©q˜KSð(º 
œj
+ŠþS1
+®Î6€‚è9™!7NÖ€+N Šú0 éµb ‹ã ´œ›5Q r¦ b³Ê Ì.Fž zÙü,‘º€¸; Á$†wÝÉ`r Ÿ Ó ãû)àrÞuGÓA  ¸†WãQo` 
+ŸÞCwô WwÔ; Š¡A ô[©,s¤ÇlØhŽQšPÚ°m“Õ>é’flÎ2tG,*² ° XN ½€ %™¶•

+  9®yÁ 1îù‘/‰Í ô'Tb
+üü™Q‹,çsª|Ô¬XNW”K4g—¹¨ 3›: ”(¾ .å× fD3Ï ÿ‹ÑIªXA
+!+´¢œ , BjSs´%! úß\ ni auš´ ù ÌÄJ¡áP¯Èã^cÛS  ™W™ ͉ é6 Ãò ±iZxzAÍ’ °i.¤+ , +5¯lLjÒ®p‚Kž(.l“Û¶X IÐKŒ!¦JÈEDÐ’SŒ* Y| 
S7 gÿ{Pɶ EO´<¸ë_wïzƒÑ5¼» õ†ý

+L? îz­ÛîÝôó¶ ú
+8—œËµÍ^ìO*‡’(LÓ­ÁGżmRÑa?´‘Ûn#! ÃöT7   éê8
+^¸¤OQcItí)ê2î Ñ\É"(péÓ
+ó:Š^ÁGjÌ ûÞÐü­³#<Ã* ›'(1ñ ¶/ÖÈŒcÒ¿­;æz½N0UÍŒl © éƒ
+NQÓo~¹]zÎf»NÚ2RrÝ"%K
+ˆ:q ¨ñÕ2å-UaÅ ÔJÔŽ#v°ã 6z Hw
+y Wˆ08•XmçÉ¡ Ï êqRç« F0‹€	Œí-}ÐeŠ•F²¯ØXóÖ  %[ ä·äÌÂ=C‡“J =ÕP¶ËL¾b. 
+$ŠÂ6¸¡\,lžº þ8`G„,óÈÍ°qo$u ß  Ã...@k›j¦Ÿ ^ ¯ 
+à

+ ™¸+
+Í aÓcB  Z É Éþ³6±KØmÞïø Ý~‡’þ€P#Ì ¦Ó[¸Â]U˜  ñƒGo†¸æa%2gï £½ }*
+® göSóÇ
+g/è Ã{Ê•þð§úA¹wâ9ùI9æfûqù~$8Œ©—#kd  ÔäªW ¶Ç ~p”êÞ×:CÒ§¿‡žõ, ;i...@¯š 
+קd `ú§V“ñ6v«å›¶e

+¤1ÍpŸ%*w ãtÏÏCá mxCp·Q]S% +¤§zE•;• ˆ"Šù½|;v‡ ç¶ðÇêK²ògê Å §Ò¾BÜáÈM”8”lÀÏ:ÚŽ
+xd–ëäåb¸ DšAô ¶êO­Õiçu+ÌyáÔ ðjçƒ
+qn  Âau¿¯ÛámWÉ5hZX ;@ÙÃ\³ �...@ï èâ »ò#~0Ñè& ÊÖâ Rú–’­ÞcÆW.bÏ Ë¬
+jì#ÙÓ.§ &eh¥{ ³
+¡öb_N“³/6-ZÛŒÚç5¹ý  f'¢tj”¶ßü p¦Cèû ¢ Ú°>÷ýÒ þ
+ßA§ü b
+€¿‚1Æe²)Ê¥Ä#à +,Ž  HÂãrÐŽ ÿ8È–FŒ¼Â
+ROmÿïÆáñ\Á
+Ã ¼ÞgûnÒ;Ž ±Ú–Ì‘\\ ip9j"±6,Õ
+1dTeœV s>³§û[NŒ=/¾h°s´#¼ ]œw
+ ͥ
+ ì늺&xöD·|,üP’£e©XÚË
+?ĽÙSÀN¨Ž%ò¤ì>  ɶ½Ts •âõõÚyU¢.}t%yï_N˜9¸÷‹ µ/⺉:ùÖšÎÜú e&Ü;¹+(› ¸)§XµXQ7 
4Ü‘¦%¯0
+âôÒ³«ù¸§p ¥· 1×ðÄT_Eìݾ.r³»w­ móÎ5n^œ¾±·» 1Ùò"^(  j¬úX+| 
ËbgØ={Ž  <ëâwïö  ¹\ .IÞÒì_t ÝøÄ îÊœ?ñå»·¾Xc¶ .b£*j=ˆÎÓàöeô?PK
+

[gwt-contrib] [google-web-toolkit] r8186 committed - Add latest build of GPE to E33 update site.

2010-05-19 Thread codesite-noreply

Revision: 8186
Author: jasonpar...@google.com
Date: Wed May 19 09:53:00 2010
Log: Add latest build of GPE to E33 update site.
http://code.google.com/p/google-web-toolkit/source/detail?r=8186

Added:
  
/2.1.0.M1/eclipse/plugin/3.3/features/com.google.appengine.eclipse.sdkbundle.e33.feature.1.3.4_1.3.4.v201005191213.jar
  
/2.1.0.M1/eclipse/plugin/3.3/features/com.google.gdt.eclipse.suite.e33.feature_1.4.0.m1-201005191213.jar
  
/2.1.0.M1/eclipse/plugin/3.3/features/com.google.gwt.eclipse.sdkbundle.e33.feature.2.1.0_2.1.0.m1-201005191213.jar
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.appengine.eclipse.core_1.4.0.m1-201005191213.jar
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.appengine.eclipse.sdkbundle.1.3.4_1.3.4.v201005191213.jar
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gdt.eclipse.core_1.4.0.m1-201005191213.jar
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gdt.eclipse.platform.e33_1.4.0.m1-201005191213.jar
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gdt.eclipse.platform.shared_1.4.0.m1-201005191213.jar
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gdt.eclipse.platform_1.4.0.m1-201005191213.jar
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gdt.eclipse.suite_1.4.0.m1-201005191213.jar
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gwt.eclipse.core_1.4.0.m1-201005191213.jar
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gwt.eclipse.oophm_1.4.0.m1-201005191213.jar
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gwt.eclipse.sdkbundle.2.1.0_2.1.0.m1-201005191213.jar

Modified:
 /2.1.0.M1/eclipse/plugin/3.3/site.xml

===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.3/features/com.google.appengine.eclipse.sdkbundle.e33.feature.1.3.4_1.3.4.v201005191213.jar	 
Wed May 19 09:53:00 2010

Binary file, no diff available.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.3/features/com.google.gdt.eclipse.suite.e33.feature_1.4.0.m1-201005191213.jar	 
Wed May 19 09:53:00 2010

Binary file, no diff available.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.3/features/com.google.gwt.eclipse.sdkbundle.e33.feature.2.1.0_2.1.0.m1-201005191213.jar	 
Wed May 19 09:53:00 2010

Binary file, no diff available.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.appengine.eclipse.core_1.4.0.m1-201005191213.jar	 
Wed May 19 09:53:00 2010

Binary file, no diff available.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.appengine.eclipse.sdkbundle.1.3.4_1.3.4.v201005191213.jar	 
Wed May 19 09:53:00 2010

File is too large to display a diff.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gdt.eclipse.core_1.4.0.m1-201005191213.jar	 
Wed May 19 09:53:00 2010

Binary file, no diff available.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gdt.eclipse.platform.e33_1.4.0.m1-201005191213.jar	 
Wed May 19 09:53:00 2010

Binary file, no diff available.
===
--- /dev/null
+++  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gdt.eclipse.platform.shared_1.4.0.m1-201005191213.jar	 
Wed May 19 09:53:00 2010

@@ -0,0 +1,90 @@
+PK  
+ ËI³<	   META-INF/þÊ  PK  
+ ÊI³<_#{ }   ð   META-INF/MANIFEST.MF ’OOÃ0 Åï•ú

+r ©µÚÁ@ qØP
+@ š˜Ä 
+Ôë2Ú¤$ÎXùô¤ûSuŒ ·êùçg¿¸S®ä -ůh¬ÔjÄRHÂ`¬zʸæb‰Ìk¾xÝ–ï

+rÂ<ž4-  É[’ÆïÉ ;›;ŦR m KXYö¨ œ‡ÁÄ©¼Äxº ×y ºÒ3¯pÄ
+´.Jd™(em‘Í—Ü`Îf%§
+6•ÿp
+T]ϼ©Þu)Å®Wè
+Šm? 9 î< Þ7ƒÝšÝZ© òë  sIÚXXñ5 ¡ ù0ÜZi©Ë= $×¼
++)- Æ)’ Fí¾ °hÖþâa  ?PK  
+ ËI³

[gwt-contrib] [google-web-toolkit] r8185 committed - Add latest build of GPE to STS update site.

2010-05-19 Thread codesite-noreply

Revision: 8185
Author: jasonpar...@google.com
Date: Wed May 19 09:47:54 2010
Log: Add latest build of GPE to STS update site.
http://code.google.com/p/google-web-toolkit/source/detail?r=8185

Added:
  
/2.1.0.M1/eclipse/plugin/features/com.google.appengine.eclipse.sdkbundle.e35.feature.1.3.4_1.3.4.v201005191217.jar
  
/2.1.0.M1/eclipse/plugin/features/com.google.gdt.eclipse.suite.e35.feature_1.4.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/features/com.google.gwt.eclipse.sdkbundle.e35.feature.2.1.0_2.1.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/plugins/com.google.appengine.eclipse.core_1.4.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/plugins/com.google.appengine.eclipse.sdkbundle.1.3.4_1.3.4.v201005191217.jar
  
/2.1.0.M1/eclipse/plugin/plugins/com.google.gdt.eclipse.core_1.4.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/plugins/com.google.gdt.eclipse.platform.e35_1.4.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/plugins/com.google.gdt.eclipse.platform.shared_1.4.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/plugins/com.google.gdt.eclipse.platform_1.4.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/plugins/com.google.gdt.eclipse.suite_1.4.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/plugins/com.google.gwt.eclipse.core_1.4.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/plugins/com.google.gwt.eclipse.oophm_1.4.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/plugins/com.google.gwt.eclipse.sdkbundle.2.1.0_2.1.0.m1-201005191217.jar
  
/2.1.0.M1/eclipse/plugin/zips/com.google.gdt.eclipse.suite.e35.feature_1.4.0.m1-201005191217.zip

Modified:
 /2.1.0.M1/eclipse/plugin/site.xml

===
--- /dev/null
+++  
/2.1.0.M1/eclipse/plugin/features/com.google.appengine.eclipse.sdkbundle.e35.feature.1.3.4_1.3.4.v201005191217.jar	 
Wed May 19 09:47:54 2010

@@ -0,0 +1,61 @@
+PK  
+ ÊJ³<	   META-INF/þÊ  PK  
+ ÉJ³< }›F^   j   META-INF/MANIFEST.MFóMÌËLK-.Ñ

+K-*ÎÌϳR0Ô3àårÌC q,HLÎHU Š %Íõ y¹œ‹R KRSt *AêÍô â
+ u“ Ì 4‚Kó |3“‹ò‹+‹KRs‹ <ó’õ4y¹x¹ PK  
+ ÊJ³<@  ä²   Ù   feature.xmlµXßsÚH ~×_Ñ¥§Ý”% Žïvs¶·ˆ! Y >ƒ7•§Ô

+0öhF; AØ¿þz~ „q%øÊ! ±¤î¯¿îéîé™ó?¾å
+VT•LŠ‹°
+·B "•  ‹‹ð~ú!ú-üã28ŸS¢+E °?–]„©Ìã
+” NcR T,˜ 1M9+J —Ù㬠 ~£§g±WŽÛñiü6ô œÌ(¿ ¯- t‹ ú  >‘  IïOØ oPÄ·ñªÓj·ZgíßÛ 
ö¿k™BÉ Ë¨Š Éi
+}  ‘Æáe`„Î3Z¦Š  ¡.½Ö!ƒ¹TŽ
+µe¹¼·ÞØ/}ç#œÆg 2Ùô¯RYl [,umãª~  Vë÷Ú¤!æ  
+ö g) %­Õƒëñøz؇îí-ôG׃Q &ã ÓÏÝ»>ôú õ‡ãÛ›þh

+  ¦ða| Ÿº ua8¸ê &} ŒðÕMw:  ‚ [(Æ¡sby Á
+ù Át¹ç¿q˜•àId %ld   �...@£ìaȦtå%È9l¨z¡
+übäBû:üõ?V?'  RC
+ÁÓK40g B¿¥´ÐÀ `F œ  Úk¦—Ö’ ˆ ¾x}9Ó E	˜ˆ {[! ÚÆ –Z ï  iFë Eäd›¤‰¶˜K ó  
¸ œ–%(úwÅ º:Û 
+¢çd†Ü8Y ®8Y(ꀦ׊i,Ž (å\¯‰¢ ±R+6«4ÊìbäH¡—ÍÏ ©  »  LBxß  &'ðy0ý8¾Ÿ .ç]w4

+ô'€kx5
+õ fÑðé tG_puG½    4A¿ Ê0GzÌ„ f ¥   ¥
+Û&YÍSYДÍYŠîˆEEËI  P $+Mea E†kž3M´}~âKlò ýñ•X ÿ0ofÔ  
Ëùœ* 5#–Ñ å Í™eÎ+Áô¦Ž %Šo€Kù ÂŒ”Ì1ÁÿBt’*–S¡	 ­?E¥
+YÒ²¶žQ Cj	 
»òw®4  ãò¹N§%åÅNõ€ÑI ÙkÆ9 , A×àÛWi\I¥ÀÕ¯ GÆ w´è"Ž®£ ±É]ÿˆ9EÒ%j È%fÉœ	V.1  
èF¾5Ä„¦"³ÐŠrJ°4rYꚣ)	)Ðÿæjt   «NÜ ä/0 +

+†}½" û ÛžÂÐȬJMlNlH·™è— ˆMÓÂó ª—DƒIs!m1`   ©yebR“¶
+ã]rDqa›Ü¶ÅâIB¹Ä bªø\D„RrŠQE  
ƒ¯ë†bí  *Þ¶±à™– wýëî]o0º†÷÷£Þ°ßƒéÇÁ]/ºíÞM¿lÛ¨ë sɹ\›ìÅþ¤2(ˆÂ4Ý |RÌÛ& 
+öC ¹í6âÓÙoOu“ ¶Ž ï
+Mú 5–¤¬=E]Æm#š+™{ .]ºc^ Á øDµÞ`ß :˜wuvøgXÅ`ò %& ÔôÅ ™qLúwuÇ\¯×1¦ªž‘M,Õ"y0Ð	 
jºÍ/3KÏÙl×I#-%/#R°ø ¨ Ûˆ _

+S
+©
++&§F¢v
+±½
+Û°Ñ Oº+ôë¸B„Æ©Äh[O }x U‡“X_
+0‚  L`loÉCY$Xi$}ÄÆšE;H”ŒÚñ¿â3 ÷ 
+N* öTCÙ,3yÄ\$8Hä¹ipC¹X˜<µ üqÀŽ Yê ›aãÎHb ¾ @Ì ¨ÔÕ¬|>x

+¼F´€78dâ®ä7 „MŽ‘GŠ ’
+’ùglb—0Û¼Ûñ »ý %ù ¡F˜?N§·p
+»ªÐ¯ â ‡Þ qÍÃH¤ÖÞ+F{ ú\
+]!Ïô§æ  N_Ñ ‹÷œ+ýáOõƒrçÄKò“rÌÍÖÓòýDp S¯GVË
+ ¨Éµ\  7Ú
+KøÁRª{_t†¤;¿ùžõ" 3...@¯š 
+קd `åO­&ílìVË5mÃÜKcšá>KTf;GgÏÏCá‡Ró†àn£º¦J

+–KGõŠ*{*A E s{ùvìö
+ÎnáOÕ—dåÎÔ3Š NUº
+±‡#;QâP² 7ë”fäÀ#³\ǯ Ã
+'Ò ¢û3ª?E«Nû4òsž?5 ¼Ùù`Fœ Ä  XÝïëfxÛUr
+šäFÁ Pæ0×ì .Ð{ º8®܈ïM4ºÉ ²±ø€”¾%d«÷”ñ• Ø‹ÀR£‚ ûHæ´Ë©†Iá[é^ÅlCX:±¯ 
øì«I‹h›Qû¼&·?BÂìD”v Òr›ß Ît }...@4q Öç¾_úÃ_á;è” EÌ ð70ƸL6y±”xdøo
+ÅñÏ Ix\ š±óo  •ˆ‘UØCê©íÿÝ8
+ž-X¡¹‚Ó}¶ï'½ã¸ £mÈ
+ÉŶ  —£& cÃPí MFUÊiUbΧæt ˉ6çÅW
+v†v„³³‹ó® ¢¹¤!‚}]QÛ Ïžé–O
+ 
+r´, KsÙㆸ·{

+Ø  Õ±Dž•Ýç

[gwt-contrib] [google-web-toolkit] r8184 committed - Add update site for Eclipse 3.5 for GPE 1.4.0 M1.

2010-05-19 Thread codesite-noreply

Revision: 8184
Author: jasonpar...@google.com
Date: Wed May 19 09:25:37 2010
Log: Add update site for Eclipse 3.5 for GPE 1.4.0 M1.
http://code.google.com/p/google-web-toolkit/source/detail?r=8184

Added:
 /2.1.0.M1/eclipse/plugin/3.5
 /2.1.0.M1/eclipse/plugin/3.5/features
  
/2.1.0.M1/eclipse/plugin/3.5/features/com.google.appengine.eclipse.sdkbundle.e35.feature.1.3.4_1.3.4.v201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.5/features/com.google.gdt.eclipse.suite.e35.feature_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.5/features/com.google.gwt.eclipse.sdkbundle.e35.feature.2.1.0_2.1.0.m1-201005172203.jar

 /2.1.0.M1/eclipse/plugin/3.5/plugins
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.appengine.eclipse.core_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.appengine.eclipse.sdkbundle.1.3.4_1.3.4.v201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.gdt.eclipse.core_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.gdt.eclipse.platform.e35_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.gdt.eclipse.platform.shared_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.gdt.eclipse.platform_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.gdt.eclipse.suite_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.gwt.eclipse.core_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.gwt.eclipse.oophm_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.gwt.eclipse.sdkbundle.2.1.0_2.1.0.m1-201005172203.jar

 /2.1.0.M1/eclipse/plugin/3.5/site.xml

===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.5/features/com.google.appengine.eclipse.sdkbundle.e35.feature.1.3.4_1.3.4.v201005172203.jar	 
Wed May 19 09:25:37 2010

Binary file, no diff available.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.5/features/com.google.gdt.eclipse.suite.e35.feature_1.4.0.m1-201005172203.jar	 
Wed May 19 09:25:37 2010

Binary file, no diff available.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.5/features/com.google.gwt.eclipse.sdkbundle.e35.feature.2.1.0_2.1.0.m1-201005172203.jar	 
Wed May 19 09:25:37 2010

Binary file, no diff available.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.appengine.eclipse.core_1.4.0.m1-201005172203.jar	 
Wed May 19 09:25:37 2010

Binary file, no diff available.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.appengine.eclipse.sdkbundle.1.3.4_1.3.4.v201005172203.jar	 
Wed May 19 09:25:37 2010

File is too large to display a diff.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.gdt.eclipse.core_1.4.0.m1-201005172203.jar	 
Wed May 19 09:25:37 2010

Binary file, no diff available.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.gdt.eclipse.platform.e35_1.4.0.m1-201005172203.jar	 
Wed May 19 09:25:37 2010

Binary file, no diff available.
===
--- /dev/null
+++  
/2.1.0.M1/eclipse/plugin/3.5/plugins/com.google.gdt.eclipse.platform.shared_1.4.0.m1-201005172203.jar	 
Wed May 19 09:25:37 2010

@@ -0,0 +1,84 @@
+PK  
+ {˜±<	   META-INF/þÊ  PK  
+ z˜±<ègã „   ð   META-INF/MANIFEST.MF

+R]kÜ0 |7ø?è± {‘Ý|À•>\‚  -\9z × È{Ž.¶äJ«Ë¹¿¾ëû0¹¤ 71; ÍÌj¡¬Yc ü }0ÎÎD 2Mæö
+2ï•~FÁ  o H“; Š°Îo‡‘ 
+òQ ù“¼ _VÑŠ

+ÑÞ
+! vAü° .Òä7þ‰Æc~ mÝâL8ß êÖô a³V  pGÙ \ Ds ¥‰ QíZ2
+f µU; è·-RšT»ÞyÊ—J¿¨†½h×Aã\Ó"4¬~’è[Ekç;Ø  
Ñ ½g±—÷Äð¬<Ö£éÏ$c_s { 뜘¯ÿabmÈù c Ne	-© Là  
‡2yQ¶v~&î÷2Ù¾òi8×d¶Šx‘K× Í kÕßáÍÝií—  
¡+òR R^ 7e)¿N´_ªÃÓ ¢:x «}\±+d?+ëPë·`,Sˆ•¸²ïä#NzÇßUW;ÔqÌZÙ­ñÎv\ÖLü,WU^ÀUš¤É?PK  
+ {˜±

[gwt-contrib] [google-web-toolkit] r8183 committed - Add update site for Eclipse 3.4 for GPE 1.4.0 M1.

2010-05-19 Thread codesite-noreply

Revision: 8183
Author: jasonpar...@google.com
Date: Wed May 19 09:09:28 2010
Log: Add update site for Eclipse 3.4 for GPE 1.4.0 M1.
http://code.google.com/p/google-web-toolkit/source/detail?r=8183

Added:
 /2.1.0.M1/eclipse/plugin/3.4
 /2.1.0.M1/eclipse/plugin/3.4/features
  
/2.1.0.M1/eclipse/plugin/3.4/features/com.google.appengine.eclipse.sdkbundle.e34.feature.1.3.4_1.3.4.v201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.4/features/com.google.gdt.eclipse.suite.e34.feature_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.4/features/com.google.gwt.eclipse.sdkbundle.e34.feature.2.1.0_2.1.0.m1-201005172203.jar

 /2.1.0.M1/eclipse/plugin/3.4/index.html
 /2.1.0.M1/eclipse/plugin/3.4/plugins
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.appengine.eclipse.core_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.appengine.eclipse.sdkbundle.1.3.4_1.3.4.v201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.gdt.eclipse.core_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.gdt.eclipse.platform.e34_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.gdt.eclipse.platform.shared_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.gdt.eclipse.platform_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.gdt.eclipse.suite_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.gwt.eclipse.core_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.gwt.eclipse.oophm_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.gwt.eclipse.sdkbundle.2.1.0_2.1.0.m1-201005172203.jar

 /2.1.0.M1/eclipse/plugin/3.4/site.xml

===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.4/features/com.google.appengine.eclipse.sdkbundle.e34.feature.1.3.4_1.3.4.v201005172203.jar	 
Wed May 19 09:09:28 2010

Binary file, no diff available.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.4/features/com.google.gdt.eclipse.suite.e34.feature_1.4.0.m1-201005172203.jar	 
Wed May 19 09:09:28 2010

Binary file, no diff available.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.4/features/com.google.gwt.eclipse.sdkbundle.e34.feature.2.1.0_2.1.0.m1-201005172203.jar	 
Wed May 19 09:09:28 2010

Binary file, no diff available.
===
--- /dev/null
+++ /2.1.0.M1/eclipse/plugin/3.4/index.html Wed May 19 09:09:28 2010
@@ -0,0 +1,4 @@
+
+  http://code.google.com/eclipse/docs/download_1_4_m1.html";>
+
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.appengine.eclipse.core_1.4.0.m1-201005172203.jar	 
Wed May 19 09:09:28 2010

Binary file, no diff available.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.appengine.eclipse.sdkbundle.1.3.4_1.3.4.v201005172203.jar	 
Wed May 19 09:09:28 2010

File is too large to display a diff.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.gdt.eclipse.core_1.4.0.m1-201005172203.jar	 
Wed May 19 09:09:28 2010

Binary file, no diff available.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.gdt.eclipse.platform.e34_1.4.0.m1-201005172203.jar	 
Wed May 19 09:09:28 2010

Binary file, no diff available.
===
--- /dev/null
+++  
/2.1.0.M1/eclipse/plugin/3.4/plugins/com.google.gdt.eclipse.platform.shared_1.4.0.m1-201005172203.jar	 
Wed May 19 09:09:28 2010

@@ -0,0 +1,90 @@
+PK  
+ z˜±<	   META-INF/þÊ  PK  
+ y˜±<¬òoÏ€   ð   META-INF/MANIFEST.MF

+R]KÃ0 }/ô?äQ¡
+iý‚‰ › Q˜  ¾JLïºÌ6©ÉÍ\ýõÞî£8 | çžœœsn¦Òè xLŸÁym͈e\ÄÑØ| 
CÆ­TK`„Ñðª ß:  e:ézþ% /"K_Å%;™ æZ9ë; Ðxvo ? £'x ÚA:	¦¬aĬ«8¨Z·

+øj! p„
+&Gp‰<è#(ŽX *ë ù¥p„ô î‚...@²’k¹á
+ܺ Œ£bÓZ‡éLª7Y‘ e ^Y[ÕÀ+R?H´µÄ
+u
+_ b—üd‘—ŸD¿” ÊÞô ’¡-©À- t Ì ?˜Pj´Îó> ¥2  ¥÷ÚS ]™´(SZ7bw[™d[ù0
++Ôk‰´È™­µ¢
+Õò³ûvwXû9 ¼ÉÒ\dB\dWy.Î Ú£làð +v
+Ù| —ÍöVé *m†;Óý× žÈ‡Ñ¼k^{7;ÙÿÊÚÕzíµ!
+’ Uvƒ.À ·ÿ]e±  ú¬
+YkgMCe ØC>/ÒŒ_ÄQ
+} PK  
+ z˜±

[gwt-contrib] [google-web-toolkit] r8182 committed - Add update site for Eclipse 3.3 for GPE 1.4.0 M1.

2010-05-19 Thread codesite-noreply

Revision: 8182
Author: jasonpar...@google.com
Date: Wed May 19 09:08:17 2010
Log: Add update site for Eclipse 3.3 for GPE 1.4.0 M1.
http://code.google.com/p/google-web-toolkit/source/detail?r=8182

Added:
 /2.1.0.M1/eclipse/plugin/3.3
 /2.1.0.M1/eclipse/plugin/3.3/features
  
/2.1.0.M1/eclipse/plugin/3.3/features/com.google.appengine.eclipse.sdkbundle.e33.feature.1.3.4_1.3.4.v201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.3/features/com.google.gdt.eclipse.suite.e33.feature_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.3/features/com.google.gwt.eclipse.sdkbundle.e33.feature.2.1.0_2.1.0.m1-201005172203.jar

 /2.1.0.M1/eclipse/plugin/3.3/index.html
 /2.1.0.M1/eclipse/plugin/3.3/plugins
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.appengine.eclipse.core_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.appengine.eclipse.sdkbundle.1.3.4_1.3.4.v201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gdt.eclipse.core_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gdt.eclipse.platform.e33_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gdt.eclipse.platform.shared_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gdt.eclipse.platform_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gdt.eclipse.suite_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gwt.eclipse.core_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gwt.eclipse.oophm_1.4.0.m1-201005172203.jar
  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gwt.eclipse.sdkbundle.2.1.0_2.1.0.m1-201005172203.jar

 /2.1.0.M1/eclipse/plugin/3.3/site.xml

===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.3/features/com.google.appengine.eclipse.sdkbundle.e33.feature.1.3.4_1.3.4.v201005172203.jar	 
Wed May 19 09:08:17 2010

Binary file, no diff available.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.3/features/com.google.gdt.eclipse.suite.e33.feature_1.4.0.m1-201005172203.jar	 
Wed May 19 09:08:17 2010

Binary file, no diff available.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.3/features/com.google.gwt.eclipse.sdkbundle.e33.feature.2.1.0_2.1.0.m1-201005172203.jar	 
Wed May 19 09:08:17 2010

Binary file, no diff available.
===
--- /dev/null
+++ /2.1.0.M1/eclipse/plugin/3.3/index.html Wed May 19 09:08:17 2010
@@ -0,0 +1,4 @@
+
+  http://code.google.com/eclipse/docs/download_1_4_m1.html";>
+
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.appengine.eclipse.core_1.4.0.m1-201005172203.jar	 
Wed May 19 09:08:17 2010

Binary file, no diff available.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.appengine.eclipse.sdkbundle.1.3.4_1.3.4.v201005172203.jar	 
Wed May 19 09:08:17 2010

File is too large to display a diff.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gdt.eclipse.core_1.4.0.m1-201005172203.jar	 
Wed May 19 09:08:17 2010

Binary file, no diff available.
===
--- /dev/null   
+++  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gdt.eclipse.platform.e33_1.4.0.m1-201005172203.jar	 
Wed May 19 09:08:17 2010

Binary file, no diff available.
===
--- /dev/null
+++  
/2.1.0.M1/eclipse/plugin/3.3/plugins/com.google.gdt.eclipse.platform.shared_1.4.0.m1-201005172203.jar	 
Wed May 19 09:08:17 2010

@@ -0,0 +1,128 @@
+PK  
+ 
+˜±<	   META-INF/þÊ  PK  
+ „˜±<7 dÅ}   ð   META-INF/MANIFEST.MF ’ËNÃ0 E÷‘ò ^‚”Œœð¨TÄ¢   TTQ‰-r ipIì` KÃ×ãô •Ç‚]tçÌ ¹žL

+VKt”>£uÊè1Ë€ÇÑD )“VÈWdA ÅQ_¾µ( Ëô¦ëùKà//Ò .â¨Ø´ÆR: òMTÿØ~
+D]ò“
+ þŽ^ý‚ ’¾-à ·Xð9X*2ÖÁJ¬ H£)„ Î)GCî‰$µ }àY ’ðgÔⳋ£ý{¤;lÌŒ­ ÿÕRH Â
+%ßä°lXÿX
+ûõª4 “_ ß”
+ ë5© “~ß
+8´ëpñ8Š£/PK  
+ 
+˜±

[gwt-contrib] [google-web-toolkit] r8181 committed - Add update sites for Eclipse 3.3, 3.4, 3.5, and 3.6 for GPE 1.4.0 M1 (...

2010-05-19 Thread codesite-noreply

Revision: 8181
Author: jasonpar...@google.com
Date: Wed May 19 09:01:36 2010
Log: Add update sites for Eclipse 3.3, 3.4, 3.5, and 3.6 for GPE 1.4.0 M1  
(first commit).

http://code.google.com/p/google-web-toolkit/source/detail?r=8181

Added:
 /2.1.0.M1/eclipse/plugin/index.html

===
--- /dev/null
+++ /2.1.0.M1/eclipse/plugin/index.html Wed May 19 09:01:36 2010
@@ -0,0 +1,4 @@
+
+  http://code.google.com/eclipse/docs/download_1_4_m1.html";>
+

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


Re: [gwt-contrib] Error in 2.1 JavaDoc for RegExp

2010-05-19 Thread John Tamplin
On Wed, May 19, 2010 at 9:45 AM, Thomas Broyer  wrote:

> The JavaDoc for Regexp::test says:
>   * Determines if the regular expression matches the given string.
> This call
>   * affects the value returned by {...@link #getLastIndex()} if the
> global flag is
>   * not set. Equivalent to: {...@code exec(input) != null}
>
> It should obviously read "if the global flag *is* set", like exec()
> does (and its JavaDoc says):
>   * Applies the regular expression to the given string. This call
> affects the
>   * value returned by {...@link #getLastIndex()} if the global flag is
> set.


Thanks.

-- 
John A. Tamplin
Software Engineer (GWT), Google

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Error in 2.1 JavaDoc for RegExp

2010-05-19 Thread Thomas Broyer
The JavaDoc for Regexp::test says:
   * Determines if the regular expression matches the given string.
This call
   * affects the value returned by {...@link #getLastIndex()} if the
global flag is
   * not set. Equivalent to: {...@code exec(input) != null}

It should obviously read "if the global flag *is* set", like exec()
does (and its JavaDoc says):
   * Applies the regular expression to the given string. This call
affects the
   * value returned by {...@link #getLastIndex()} if the global flag is
set.

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors