[gwt-contrib] Re: Trouble building GWT 2.0 from svn

2009-07-19 Thread Kango_V

Same as Brett, that's all you need.  Using ant 1.7.1 java 6u14 amd64.

On Jul 19, 4:01 am, "brett.wooldridge" 
wrote:
> Not sure what the problem is.  This is all I did (literally):
>
> mkdir gwt-trunk
> cd gwt-trunk
> svn checkouthttp://google-web-toolkit.googlecode.com/svn/tools/tools
> svn checkouthttp://google-web-toolkit.googlecode.com/svn/trunk/trunk
> cd trunk
> ant
>
> That's it.  I didn't set any environment variables (not even
> GWT_TOOLS), I have no classpath in my environment, etc.  The only
> thing in my path is Ant and Java.

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



[gwt-contrib] [google-web-toolkit commit] r5754 - Making test.noserver actually use -noserver.

2009-07-19 Thread codesite-noreply

Author: fabb...@google.com
Date: Sun Jul 19 11:38:45 2009
New Revision: 5754

Modified:
trunk/user/build.xml

Log:
Making test.noserver actually use -noserver.

Review by: knorton

Modified: trunk/user/build.xml
==
--- trunk/user/build.xml(original)
+++ trunk/user/build.xmlSun Jul 19 11:38:45 2009
@@ -153,7 +153,7 @@



-
+

  


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



[gwt-contrib] Re: noserver should be, well, -noserver

2009-07-19 Thread knorton

lgtm.

http://gwt-code-reviews.appspot.com/47821

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



[gwt-contrib] [google-web-toolkit commit] r5753 - Checkstyle comment fixes (period on first sentence, a few extra @params).

2009-07-19 Thread codesite-noreply

Author: fabb...@google.com
Date: Sun Jul 19 11:17:55 2009
New Revision: 5753

Modified:
trunk/dev/core/src/com/google/gwt/core/ext/linker/CompilationResult.java
trunk/user/src/com/google/gwt/dom/client/Document.java
trunk/user/src/com/google/gwt/rpc/server/RpcServlet.java
 
trunk/user/src/com/google/gwt/user/rebind/rpc/CustomFieldSerializerValidator.java
trunk/user/test/com/google/gwt/dom/client/DocumentTest.java
trunk/user/test/com/google/gwt/dom/client/FormTests.java
trunk/user/test/com/google/gwt/dom/client/MapTests.java
trunk/user/test/com/google/gwt/dom/client/NodeTest.java
trunk/user/test/com/google/gwt/dom/client/SelectTests.java
trunk/user/test/com/google/gwt/dom/client/TableTests.java
trunk/user/test/com/google/gwt/emultest/java/lang/C.java
trunk/user/test/com/google/gwt/emultest/java/util/StackProfile.java
trunk/user/test/com/google/gwt/emultest/java/util/StackTest.java
trunk/user/test/com/google/gwt/i18n/rebind/MessageFormatParserTest.java
trunk/user/test/com/google/gwt/user/client/rpc/UnicodeEscapingTest.java
trunk/user/test/com/google/gwt/user/client/ui/CreateEventTest.java
trunk/user/test/com/google/gwt/user/maptests/FastStringMapTest.java
trunk/user/test/com/google/gwt/user/server/rpc/RPCTest.java

Log:
Checkstyle comment fixes (period on first sentence, a few extra @params).

Modified:  
trunk/dev/core/src/com/google/gwt/core/ext/linker/CompilationResult.java
==
---  
trunk/dev/core/src/com/google/gwt/core/ext/linker/CompilationResult.java
 
(original)
+++  
trunk/dev/core/src/com/google/gwt/core/ext/linker/CompilationResult.java
 
Sun Jul 19 11:17:55 2009
@@ -42,7 +42,7 @@
public abstract String[] getJavaScript();

/**
-   * Returns the permutation ID
+   * Returns the permutation ID.
 */
public abstract int getPermutationId();


Modified: trunk/user/src/com/google/gwt/dom/client/Document.java
==
--- trunk/user/src/com/google/gwt/dom/client/Document.java  (original)
+++ trunk/user/src/com/google/gwt/dom/client/Document.java  Sun Jul 19  
11:17:55 2009
@@ -1024,7 +1024,7 @@
}-*/;

/**
-   * Enables or disables scrolling of the document
+   * Enables or disables scrolling of the document.
 *
 * @param enable whether scrolling should be enabled or disabled
 */

Modified: trunk/user/src/com/google/gwt/rpc/server/RpcServlet.java
==
--- trunk/user/src/com/google/gwt/rpc/server/RpcServlet.java(original)
+++ trunk/user/src/com/google/gwt/rpc/server/RpcServlet.javaSun Jul 19  
11:17:55 2009
@@ -288,7 +288,6 @@
 *
 * @param request the request being served
 * @param response the response that will be written into
-   * @param responsePayload the payload that is about to be sent to the  
client
 * @return true if responsePayload should be GZIP  
compressed,
 * otherwise false.
 */

Modified:  
trunk/user/src/com/google/gwt/user/rebind/rpc/CustomFieldSerializerValidator.java
==
---  
trunk/user/src/com/google/gwt/user/rebind/rpc/CustomFieldSerializerValidator.java

(original)
+++  
trunk/user/src/com/google/gwt/user/rebind/rpc/CustomFieldSerializerValidator.java

Sun Jul 19 11:17:55 2009
@@ -105,12 +105,6 @@
 * Returns a list of error messages associated with the custom field
 * serializer.
 *
-   * @param streamReaderClass
-   *  {...@link  
com.google.gwt.user.client.rpc.SerializationStreamReader
-   *  SerializationStreamReader}
-   * @param streamWriterClass
-   *  {...@link  
com.google.gwt.user.client.rpc.SerializationStreamWriter
-   *  SerializationStreamWriter}
 * @param serializer the class which performs the serialization
 * @param serializee the class being serialized
 * @return list of error messages, if any, associated with the custom  
field

Modified: trunk/user/test/com/google/gwt/dom/client/DocumentTest.java
==
--- trunk/user/test/com/google/gwt/dom/client/DocumentTest.java (original)
+++ trunk/user/test/com/google/gwt/dom/client/DocumentTest.java Sun Jul 19  
11:17:55 2009
@@ -120,7 +120,7 @@
}

/**
-   * getElementById, getElementsByTagName
+   * getElementById, getElementsByTagName.
 */
public void testGetElements() {
  Document doc = Document.get();
@@ -140,7 +140,7 @@
}

/**
-   * domain, referrer, title, url
+   * domain, referrer, title, url.
 */
public void testProperties() {
  Document doc = Document.get();

Modified: trunk/user/test/com/google/gwt/dom/client/FormTests.java
=

[gwt-contrib] [google-web-toolkit commit] r5752 - Checkstyle comment fix.

2009-07-19 Thread codesite-noreply

Author: fabb...@google.com
Date: Sun Jul 19 09:52:17 2009
New Revision: 5752

Modified:
 
trunk/user/test/com/google/gwt/core/client/impl/AsyncFragmentLoaderTest.java

Log:
Checkstyle comment fix.

Modified:  
trunk/user/test/com/google/gwt/core/client/impl/AsyncFragmentLoaderTest.java
==
---  
trunk/user/test/com/google/gwt/core/client/impl/AsyncFragmentLoaderTest.java
 
(original)
+++  
trunk/user/test/com/google/gwt/core/client/impl/AsyncFragmentLoaderTest.java
 
Sun Jul 19 09:52:17 2009
@@ -27,6 +27,7 @@
  import java.util.List;
  import java.util.Map;

+/** Tests the fragment loader. */
  public class AsyncFragmentLoaderTest extends TestCase {
private static class MockErrorHandler implements LoadErrorHandler {
  private boolean wasCalled = false;

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



[gwt-contrib] noserver should be, well, -noserver

2009-07-19 Thread fabbott

Reviewers: Lex, jat,

Description:
Minor (but significant!) typo from r5094... Passes on my XP box, at
least.

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

Affected files:
   user/build.xml


Index: user/build.xml
===
--- user/build.xml  (revision 5751)
+++ user/build.xml  (working copy)
@@ -153,7 +153,7 @@



-
+

  




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