GWT, IE8 and screen reader

2013-02-11 Thread Michael Vogt
Hello.

 I have a strange problem when using IE8 with the screen reader jaws. For 
example, when a text field receives the focus, the whole page is read from 
the beginning, Looking at the html, it seems a lot of the html is 
duplicated inside a __listener attribute. This does not happen with IE9 or 
IE10.

I read where the __listener attribute is coming from. Now I wonder, if Jaws 
also sees this __listener attribute, and gets confused by multiple 
identical id attributes showing up in the html. IDs are used in the for 
attribute of the label and the aria-labeledby of the text field.

Has someone seen the same problem, and has a solution for it? 


Thanks,
Michael

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: IE10 support in Gwt

2013-02-11 Thread Aladdin
We managed to run GWT on Windows 8 Phone with almost no efforts other than 
some CSS3 changes.

For the desktop (Metro Style App) it was a bit tricky as the GWT was 
breaking down at Parsing XML using IE6 parser implementation (using 
ActiveX), we finally managed to fix this by forcing the loaded 
implementation to use the standard one as Metro style pages doesn't support 
ActiveX and M$ finally decided to support standards 

You may check our App at  
http://www.windowsphone.com/en-us/store/app/aljazira-smart/870a3194-31fd-47d6-a5ee-3e549d7c9557

Our app is set to  meta http-equiv=X-UA-Compatible content=IE=Edge 
(Both Phone  Metro)

For the Metro we compiled only the ie9 permutation 

Alaa

On Monday, January 14, 2013 11:43:48 PM UTC+3, Erik Sapir wrote:

 Hello,

 Are there any plans to support compilation to IE10 in GWT?
 If there are such plans, when should it happen?


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Using RequestFactory with JPA (3 Entities)

2013-02-11 Thread Nermin
Dear Thomas,

thank you for the answer to my question.
I head a JPA problem with an entity being used two times. However, I could 
not figure this out from the error message.
I figured this out by creating the entities without using the 
RequestFactory.

How ever it works fine now. 

Best regards:

Nermin


Am Samstag, 9. Februar 2013 12:30:04 UTC+1 schrieb Thomas Broyer:

 Try to re-generate the DeobfuscatorBuilder for your RequestFactory (maybe 
 run the ValidationTool manually). This error would generally happen if the 
 generated DeobfuscatorBuilder doesn't know about a particular proxy.




-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Does super dev mode works for Internet Explorer (8,9...)?

2013-02-11 Thread Axel REGNOULT
I succeed to use super dev mode, adding manually the bookmarklet in IE, 
with the inside URL:

javascript:%7B window.__gwt_bookmarklet_params %3D 
%7Bserver_url%3A'http%3A%2F%2Flocalhost%3A9876%2F'%2Cmodule_name%3A'MS'%7D%3B 
var s %3D document.createElement('script')%3B s.src %3D 
'http%3A%2F%2Flocalhost%3A9876%2Fdev_mode_on.js'%3B 
void(document.getElementsByTagName('head')%5B0%5D.appendChild(s))%3B%7D

Regards,

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: DataGrid vertical scrollbar overlaps the last column

2013-02-11 Thread El Mentecato Mayor
I don't understand that documentation sentence you just quoted.

What I've done is one of two things as a workaround: 1) set a ~20 pixels 
padding-right on the last column, or 2) set a size to the column to be ~20 
pixels wider than what expect the content to be on the last column.

On Friday, February 8, 2013 1:49:22 PM UTC-5, Alex opn wrote:

 It's caused by 
 CustomScrollPanelhttp://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/ui/CustomScrollPanel.htmlwhich
  is used internally by DataGrid afaik. The documentation suggests: 
  

 If the scrollbars obscures the content, you can set the padding-top and 
 padding-bottom of the content to shift the content out from under the 
 scrollbars. 


 Hope this helps a bit? 

 Am Freitag, 8. Februar 2013 07:53:24 UTC+1 schrieb kedar vyawahare:

 Hi all,
 I am facing a DataGrid horizontal/Vetricle Scrollbar overlaps the last row
 issue. While displaying the data grid, It overlaps the last row as well as 
 column.
 Attached is the screen shot.

 This issue is not specific to IE8. You can reproduce it any browser.
 For vertical scroll bar, even if I add some padding  or make the last
 column wider , the issue is still persist.

 Please suggest workaround to sort out this.

 Thanks in advance.

 Kedar
  



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




GWT OpenLayers Drag a Marker to outside of the map

2013-02-11 Thread JSNI NOOB
I was using this the GWT-openlayers in a project.
And i need to drag a marker (for instance an image of a restaurant to an 
personal GWT widget that receives droppable images).
Is it possible?

My workaround is a little ugly, because i detected the mouse over in the 
marker and then i created a GWT popup and only then i make the drag.
What i want is to detect an click and drag in the marker and start a GWT 
drag action.

Thanks for the help.

code workaround

mark = new Marker(lonlat, new Icon(url,new Size(iconWidth, iconHeight)));

mark .getEvents().register(mouseover, cam, new 
org.gwtopenmaps.openlayers.client.event.EventHandler() {

fp = new image(url);
fp.getElement().setDraggable(Element.DRAGGABLE_TRUE);
pp = new PopupPanel();
pp.add(fp);

fp.addDragStartHandler(new DragStartHandler(){  
//addDomHandler(new DragStartHandler() {

@Override
public void onDragStart(DragStartEvent event) {
//do dragable action
}
}

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: why no getTabBar() in TabLayoutPanel?

2013-02-11 Thread Ben
 

I also would need the getTabBar() but for a different reason (dynamically 
customizing the style of the bar) thus the proposed workarounds are not 
good for me.

 Any suggestion? At least I would like to understand why this essential 
basic functionality has been removed. 

 

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: RequestFactory + ejb3

2013-02-11 Thread nabil . benasker
hi have find a sollution for this problemrequestfactory+ejb

Le vendredi 2 septembre 2011 19:02:15 UTC+2, thiago borges martins a écrit :

 Good afternoon staff, 

 I am developing a system and adopted the gwt + smart for the 
 presentation layer and the back end I work with ejb3. The project is 
 all in maven and modularized. 

 My problem is that GWT can not make conversation with my ejb3, I use 
 the specification requestfactory, Could someone help me?

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Tomcat error messages in localhost_access_log

2013-02-11 Thread Marco
Thanks for the remark with /w00tw00t.at.ISC.SANS.Win32:), i will 
investigate this.

In some rare cases I get following client error:

The call failed on the server; see server log for details


The only message I have is in localhost_access_log , therefore I asked for 
these messages in general.

I found this blog for this topic:
http://www.hierax.org/2010/01/gwt-with-rpcs-on-tomcat-6.html

In my case e.g.:
 [04/Feb/2013:19:05:55 +0100] POST /usergroup HTTP/1.1 500 57
 [04/Feb/2013:18:50:12 +0100] POST /locking HTTP/1.1 500 57

Do you have any experience with that?

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




WebScokets GWT

2013-02-11 Thread Maria Garcia
Hi all,

I want to implement a simple sample with websockets in GWT but I don't know 
the best solution.

I have cheked Atmostphere but I think it's quite complex... moreover, I 
can't execute de gwt-example..

Some advices will be helpful or a simple library...

Regards,
María

PS. I also checked http://code.google.com/p/gwt-ws/ but I can't use it 
because of Jetty.. 

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Tomcat error messages in localhost_access_log

2013-02-11 Thread Thomas Broyer
Unhandled exceptions should be printed to the catalina.out: 
http://tomcat.apache.org/tomcat-7.0-doc/logging.html#Console

On Monday, February 11, 2013 6:54:20 PM UTC+1, Marco wrote:

 Thanks for the remark with /w00tw00t.at.ISC.SANS.Win32:), i will 
 investigate this.

 In some rare cases I get following client error:

 The call failed on the server; see server log for details


 The only message I have is in localhost_access_log , therefore I asked for 
 these messages in general.

 I found this blog for this topic:
 http://www.hierax.org/2010/01/gwt-with-rpcs-on-tomcat-6.html

 In my case e.g.:
  [04/Feb/2013:19:05:55 +0100] POST /usergroup HTTP/1.1 500 57
  [04/Feb/2013:18:50:12 +0100] POST /locking HTTP/1.1 500 57

 Do you have any experience with that?



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




strange CellList selection problem

2013-02-11 Thread Yan
Hi there, 

I have a CellList working with SimplePager, using ListDataProvider.  No 
Async loading.  I load about 250 elements, take all default for page size. 

Pager and scrolling work fine. The problem is that when I click on the 
list. For any page after the 1st page, when I click on an element, it 
automatically jumps to the next page. For instance, if I move to 2nd page 
and click on the 2nd element, it automatically selects the 2nd element on 
the 3rd page.  I have not been able to figure out anything leading to it.  

My code looks quite similarly to the sample.  Any troubleshoot tips?

Thanks,
Yan

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: WebScokets GWT

2013-02-11 Thread Andy Stevko
I've had some success using the GWT/JMS/Stomp/WebSocket protocol stack
which is built on Web Sockets.
The Stomp WebSocket wrapper handles much of the complexity of streaming
data over web sockets and maintaining the connection.
http://code.google.com/p/gwt-stomp-jms/


On Mon, Feb 11, 2013 at 9:55 AM, Maria Garcia 
maria.garcia.aguirrego...@gmail.com wrote:

 Hi all,

 I want to implement a simple sample with websockets in GWT but I don't
 know the best solution.

 I have cheked Atmostphere but I think it's quite complex... moreover, I
 can't execute de gwt-example..

 Some advices will be helpful or a simple library...

 Regards,
 María

 PS. I also checked http://code.google.com/p/gwt-ws/ but I can't use it
 because of Jetty..

 --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to google-web-toolkit+unsubscr...@googlegroups.com.
 To post to this group, send email to google-web-toolkit@googlegroups.com.
 Visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.






-- 
-- A. Stevko
===
If everything seems under control, you're just not going fast enough. M.
Andretti

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[gwt-contrib] Change in gwt[master]: Introduce ImmutableAnnotations to reduce memory usage.

2013-02-11 Thread Brian Slesinsky

Brian Slesinsky has uploaded a new change for review.

  https://gwt-review.googlesource.com/1920


Change subject: Introduce ImmutableAnnotations to reduce memory usage.
..

Introduce ImmutableAnnotations to reduce memory usage.

Most usages of the Annotations class don't actually need inheritance; only
JRealClass does. Also, most JParameters have no annotations. By switching
to an immutable implementation and always using the same instance to  
represent

empty, we can get rid of most Annotations instances.

Change-Id: Id70da4aca286c2da1a5ba423f750cecb14aa11eb
---
M dev/core/src/com/google/gwt/core/ext/typeinfo/HasAnnotations.java
M dev/core/src/com/google/gwt/dev/javac/typemodel/Annotations.java
A dev/core/src/com/google/gwt/dev/javac/typemodel/ImmutableAnnotations.java
M dev/core/src/com/google/gwt/dev/javac/typemodel/JAbstractMethod.java
M dev/core/src/com/google/gwt/dev/javac/typemodel/JField.java
M dev/core/src/com/google/gwt/dev/javac/typemodel/JPackage.java
M dev/core/src/com/google/gwt/dev/javac/typemodel/JParameter.java
7 files changed, 132 insertions(+), 51 deletions(-)



diff --git  
a/dev/core/src/com/google/gwt/core/ext/typeinfo/HasAnnotations.java  
b/dev/core/src/com/google/gwt/core/ext/typeinfo/HasAnnotations.java

index 3b353a9..e4885bd 100644
--- a/dev/core/src/com/google/gwt/core/ext/typeinfo/HasAnnotations.java
+++ b/dev/core/src/com/google/gwt/core/ext/typeinfo/HasAnnotations.java
@@ -27,7 +27,8 @@
 public interface HasAnnotations {
   /**
* Returns an instance of the specified annotation type if it is present  
on

-   * this element or codenull/code if it is not.
+   * this element or codenull/code if it is not. For a class, this will
+   * look for annotations on supertypes as well.
*
* @param annotationClass annotation type to search for
* @return instance of the specified annotation type if it is present on  
this

@@ -36,7 +37,8 @@
   T extends Annotation T getAnnotation(ClassT annotationClass);

   /**
-   * Returns all the annotations present on this element.
+   * Returns all the annotations present on this element. For a class, the  
list

+   * will include annotations on supertypes as well.
*/
   Annotation[] getAnnotations();

@@ -48,9 +50,7 @@

   /**
* Returns codetrue/code if this item has an annotation of the  
specified

-   * type.
-   *
-   * @param annotationClass
+   * type. For a class, this will look at supertypes as well.
*
* @return codetrue/code if this item has an annotation of the  
specified

* type
diff --git  
a/dev/core/src/com/google/gwt/dev/javac/typemodel/Annotations.java  
b/dev/core/src/com/google/gwt/dev/javac/typemodel/Annotations.java

index e9265c7..cc3cf53 100644
--- a/dev/core/src/com/google/gwt/dev/javac/typemodel/Annotations.java
+++ b/dev/core/src/com/google/gwt/dev/javac/typemodel/Annotations.java
@@ -29,11 +29,13 @@
 import java.util.Map.Entry;

 /**
- * Default implementation of the {@link HasAnnotations} interface.
+ * An implementation of the {@link HasAnnotations} interface that supports  
inheritance
+ * of annotations. This is a mutable type, but it's an error to change it  
after doing

+ * a query that looks at inherited annotations.
  */
 class Annotations implements HasAnnotations {

-  private static final ComparatorAnnotation ANNOTATION_COMPARATOR = new  
ComparatorAnnotation() {
+  static final ComparatorAnnotation ANNOTATION_COMPARATOR = new  
ComparatorAnnotation() {

 /**
  * An element can only be annotated with one annotation of a particular
  * type. So we only need to sort by annotation type name, since there  
won't

@@ -44,23 +46,6 @@
   o2.annotationType().getName());
 }
   };
-
-  private static MapClass? extends Annotation, Annotation  
copyOfAnnotations(

-  Annotations otherAnnotations) {
-MapClass? extends Annotation, Annotation declaredAnnotations = new  
HashMapClass? extends Annotation, Annotation();

-if (otherAnnotations != null) {
-  Annotation[] otherDeclaredAnnotations =  
otherAnnotations.getDeclaredAnnotations();

-  for (Annotation otherDeclaredAnnotation : otherDeclaredAnnotations) {
-Class? extends Annotation otherDeclaredAnnotationType =  
otherDeclaredAnnotation.annotationType();

-assert (otherDeclaredAnnotationType != null);
-assert  
(!declaredAnnotations.containsKey(otherDeclaredAnnotationType));

-
-declaredAnnotations.put(otherDeclaredAnnotationType,
-otherDeclaredAnnotation);
-  }
-}
-return declaredAnnotations;
-  }

   /**
* All annotations declared on the annotated element.
@@ -82,19 +67,21 @@
 this.declaredAnnotations = Maps.create();
   }

-  Annotations(Annotations otherAnnotations) {
-this(copyOfAnnotations(otherAnnotations));
-  }
-
   Annotations(MapClass? extends Annotation, Annotation  
declaredAnnotations) {

 this.declaredAnnotations = 

[gwt-contrib] Change in gwt[master]: Introduce ImmutableAnnotations to reduce memory usage.

2013-02-11 Thread John A. Tamplin

John A. Tamplin has posted comments on this change.

Change subject: Introduce ImmutableAnnotations to reduce memory usage.
..


Patch Set 1:

Note that most of the i18n code expects annotations to be inherited -- I  
haven't looked closely at the change, but that functionality needs to be  
preserved.


--
To view, visit https://gwt-review.googlesource.com/1920
To unsubscribe, visit https://gwt-review.googlesource.com/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Id70da4aca286c2da1a5ba423f750cecb14aa11eb
Gerrit-PatchSet: 1
Gerrit-Project: gwt
Gerrit-Branch: master
Gerrit-Owner: Brian Slesinsky skybr...@google.com
Gerrit-Reviewer: John A. Tamplin j...@jaet.org
Gerrit-HasComments: No

--
--
http://groups.google.com/group/Google-Web-Toolkit-Contributors
--- 
You received this message because you are subscribed to the Google Groups Google Web Toolkit Contributors group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[gwt-contrib] Change in gwt[master]: Introduce ImmutableAnnotations to reduce memory usage.

2013-02-11 Thread Matthew Dempsky

Matthew Dempsky has posted comments on this change.

Change subject: Introduce ImmutableAnnotations to reduce memory usage.
..


Patch Set 1:

(1 comment)


File dev/core/src/com/google/gwt/dev/javac/typemodel/Annotations.java
Line 33:  * of annotations. This is a mutable type, but it's an error to  
change it after doing
It looks like it was an error before too, and you're just documenting this  
change?  Or is this a semantics change for users?



--
To view, visit https://gwt-review.googlesource.com/1920
To unsubscribe, visit https://gwt-review.googlesource.com/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Id70da4aca286c2da1a5ba423f750cecb14aa11eb
Gerrit-PatchSet: 1
Gerrit-Project: gwt
Gerrit-Branch: master
Gerrit-Owner: Brian Slesinsky skybr...@google.com
Gerrit-Reviewer: John A. Tamplin j...@jaet.org
Gerrit-Reviewer: Matthew Dempsky mdemp...@google.com
Gerrit-HasComments: Yes

--
--
http://groups.google.com/group/Google-Web-Toolkit-Contributors
--- 
You received this message because you are subscribed to the Google Groups Google Web Toolkit Contributors group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[gwt-contrib] Change in gwt[master]: Introduce ImmutableAnnotations to reduce memory usage.

2013-02-11 Thread Brian Slesinsky

Brian Slesinsky has posted comments on this change.

Change subject: Introduce ImmutableAnnotations to reduce memory usage.
..


Patch Set 1:

I don't intend any change in semantics; I'm just documenting the  
preexisting constraints and improving performance.


The only call to Annotations.setParent() was in JRealClass, and  
the annotations field doesn't escape, so it seems pretty clear that this  
inheritance mechanism is only used in JRealClass.


I haven't traced the dataflow all the way back, so it's possible that we're  
getting the effect of inheritance via copying somewhere, but it's looking  
unlikely.


--
To view, visit https://gwt-review.googlesource.com/1920
To unsubscribe, visit https://gwt-review.googlesource.com/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Id70da4aca286c2da1a5ba423f750cecb14aa11eb
Gerrit-PatchSet: 1
Gerrit-Project: gwt
Gerrit-Branch: master
Gerrit-Owner: Brian Slesinsky skybr...@google.com
Gerrit-Reviewer: Brian Slesinsky skybr...@google.com
Gerrit-Reviewer: John A. Tamplin j...@jaet.org
Gerrit-Reviewer: Matthew Dempsky mdemp...@google.com
Gerrit-HasComments: No

--
--
http://groups.google.com/group/Google-Web-Toolkit-Contributors
--- 
You received this message because you are subscribed to the Google Groups Google Web Toolkit Contributors group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[gwt-contrib] Change in gwt[master]: Reduce devmode memory usage by not caching bytecode.

2013-02-11 Thread Brian Slesinsky

Brian Slesinsky has abandoned this change.

Change subject: Reduce devmode memory usage by not caching bytecode.
..


Abandoned

Committed.

--
To view, visit https://gwt-review.googlesource.com/1910
To unsubscribe, visit https://gwt-review.googlesource.com/settings

Gerrit-MessageType: abandon
Gerrit-Change-Id: I2306c8873cd4651de09ae61bf3f13b64fc4cb7a0
Gerrit-PatchSet: 2
Gerrit-Project: gwt
Gerrit-Branch: master
Gerrit-Owner: Brian Slesinsky skybr...@google.com
Gerrit-Reviewer: Brian Slesinsky skybr...@google.com
Gerrit-Reviewer: Matthew Dempsky mdemp...@google.com
Gerrit-Reviewer: Ray Cromwell cromwell...@google.com

--
--
http://groups.google.com/group/Google-Web-Toolkit-Contributors
--- 
You received this message because you are subscribed to the Google Groups Google Web Toolkit Contributors group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[gwt-contrib] Change in gwt[master]: Clear the GWT bridge to reduce severity of memory leaks. Thi...

2013-02-11 Thread Brian Slesinsky

Brian Slesinsky has abandoned this change.

Change subject: Clear the GWT bridge to reduce severity of memory leaks.  
This allows data held by generators to be freed. (Also, reduces the number  
of red herrings when tracking down a memory leak.)

..


Abandoned

Committed.

--
To view, visit https://gwt-review.googlesource.com/1870
To unsubscribe, visit https://gwt-review.googlesource.com/settings

Gerrit-MessageType: abandon
Gerrit-Change-Id: I17886328c4c41c3e58271b8b4c8fde2e2bf689d0
Gerrit-PatchSet: 1
Gerrit-Project: gwt
Gerrit-Branch: master
Gerrit-Owner: Brian Slesinsky skybr...@google.com
Gerrit-Reviewer: Matthew Dempsky mdemp...@google.com
Gerrit-Reviewer: Ray Cromwell cromwell...@google.com

--
--
http://groups.google.com/group/Google-Web-Toolkit-Contributors
--- 
You received this message because you are subscribed to the Google Groups Google Web Toolkit Contributors group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[gwt-contrib] Change in gwt[master]: Introduce ImmutableAnnotations to reduce memory usage.

2013-02-11 Thread Brian Slesinsky

Brian Slesinsky has posted comments on this change.

Change subject: Introduce ImmutableAnnotations to reduce memory usage.
..


Patch Set 1:

Some numbers, using our largest project:

Without this change there about 480k instances of Annotations per  
TypeOracle (about 11 megabytes). If there's a leak, you can get multiple  
CompilingClassLoaders and TypeOracles.


With the change, there are 27k instances of Annotations and 22k instances  
of ImmutableAnnotations, for about 1mb of memory total.


--
To view, visit https://gwt-review.googlesource.com/1920
To unsubscribe, visit https://gwt-review.googlesource.com/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Id70da4aca286c2da1a5ba423f750cecb14aa11eb
Gerrit-PatchSet: 1
Gerrit-Project: gwt
Gerrit-Branch: master
Gerrit-Owner: Brian Slesinsky skybr...@google.com
Gerrit-Reviewer: Brian Slesinsky skybr...@google.com
Gerrit-Reviewer: John A. Tamplin j...@jaet.org
Gerrit-Reviewer: Matthew Dempsky mdemp...@google.com
Gerrit-HasComments: No

--
--
http://groups.google.com/group/Google-Web-Toolkit-Contributors
--- 
You received this message because you are subscribed to the Google Groups Google Web Toolkit Contributors group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[gwt-contrib] Change in gwt[master]: Changes the GWTTestCase to keep calling user uncaught handle...

2013-02-11 Thread Goktug Gokdogan

Goktug Gokdogan has abandoned this change.

Change subject: Changes the GWTTestCase to keep calling user uncaught  
handler.

..


Abandoned

New solution will be based on newly introduced test specific  
UncaughtExceptionHandler in a different patch.


--
To view, visit https://gwt-review.googlesource.com/1561
To unsubscribe, visit https://gwt-review.googlesource.com/settings

Gerrit-MessageType: abandon
Gerrit-Change-Id: Id0f439aeb5a94925d5f333badb8a5217c6d93a52
Gerrit-PatchSet: 3
Gerrit-Project: gwt
Gerrit-Branch: master
Gerrit-Owner: Goktug Gokdogan gok...@google.com
Gerrit-Reviewer: Brian Slesinsky skybr...@google.com
Gerrit-Reviewer: Goktug Gokdogan gok...@google.com

--
--
http://groups.google.com/group/Google-Web-Toolkit-Contributors
--- 
You received this message because you are subscribed to the Google Groups Google Web Toolkit Contributors group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.