Re: DOM

2010-02-01 Thread Jaswanth
and ya forgot to ask what about using Gquery instead of the above..??. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

Compiling in subdirectory

2010-02-01 Thread cromoteca
Hi, when I compile my module, it gets compiled into /something in the war folder. Is there any way to compile it into /some/thing and run it from there? Thank you. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Facing problem during compiling my project with GWT 1.6.4

2010-02-01 Thread chill_hus
I am sorry the issue is not with rocket it has to do with gwt compling. i went through the discussion on http://code.google.com/p/google-web-toolkit/issues/detail?id=3510 I was able to compile for one permutation but was facing error when compiling for all 5 permutations Compiling 5

Re: SuggestBox doesnt work in IE 6

2010-02-01 Thread Thomas Broyer
On Feb 1, 8:22 am, forewar fore...@gmail.com wrote: When I try to show suggestion list in Internet Explorer 6, I just get Javascrpt error Invalid class string and suggestion list doesnt appear of course. IE7 and all other browsers work fine. AsyncCallbackArrayList callback = new

Javascript errors GWT 2.0 / Firefox 3.0

2010-02-01 Thread rmuller
I am using GWT 2.0 and Firefox 3.0.17 I get these two errors, reported by the Firefox error console: Error: $entry(__gwt_makeTearOff(null, 7667759, 0)) is not a function Source File: http://localhost: Line: 7 and: Error: Permission denied to get property HTMLInputElement.tagName Source

inherits name=com.google.gwt.inject.Inject/

2010-02-01 Thread Stine
Hi! I am trying to introduce Gin in my GWT project and have added inherits name=com.google.gwt.inject.Inject/ in my gwt.xml. I am being told that I am missing the above inherits statement in my gwt.xml when I try to create an injector though: import

Re: how to use Comet on Gwt?

2010-02-01 Thread mariyan nenchev
Is this game opensourced :). On Sun, Jan 31, 2010 at 7:48 PM, KeremTiryaki keremtiry...@gmail.comwrote: check instant messeger application's source from http://gwtapps.com/ it is a book web site... I think it is very good. I used that book when I was developing this: http://tr.im/iflagame

Re: Can't remove 0 index in ArrayList

2010-02-01 Thread Martin Trummer
seems to work for me - here's a little test: ListInteger list = new ArrayListInteger(); list.add(6); list.add(7); list.remove(0); list.remove(0); after that the list is empty again. tested in development mode with gwt 2.0.0 just a guess: make sure, you call the right function remove

Re: How do I make the server RPC to client?

2010-02-01 Thread Martin Trummer
more generally speaking, you want server push http://en.wikipedia.org/wiki/Server_push On 31 Jan., 21:27, Paul Robinson ukcue...@gmail.com wrote: Search for comet. It's the closest technique to what you want. JA wrote: Might be a silly question, but how do you make this scenario work

How to create a Grid with Picture as a type of column?

2010-02-01 Thread Bhavesh Shah
Hi all, I need to implement a Grid which will have one column which will show the picutre of the users. Can any body give me hint or reference to such kind of implementation ? Thanks in advance, Bhavesh Shah -- You received this message because you are subscribed to the Google Groups Google

Re: Some general questions

2010-02-01 Thread vdimitrov
Thank you for your replies! Depends what you call the old programmatic approach, but it'll do its best to never be *worse* than what you'd have written by hand (@UiHandler might be an exception, but it has also room for improvement in future GWT releases). It means that I already have my

java applet integration

2010-02-01 Thread ben fenster
i load a java applet in my gwt project and some of the fetures in the applet works fine but some of ther throws the following errors altough they work when i run them in a non browser form i am using gwt2.0 and i get the following error 13:30:10.386 [ERROR] [vzooo] Uncaught exception escaped

Re: Can't remove 0 index in ArrayList

2010-02-01 Thread Christian Goudreau
Yeah, but the thing is that code was working fine prior to gwt 2.0, so I just don't understand why lol Anyway I also tried a simple example like yours and it was working fine, so I just gave up finding a solution to a problem that I alreay resolved by doing the alternative way. Thanks Christian

Is it possible to detect if a popup (opened by Window.open(..) ) has been closed?

2010-02-01 Thread darkflame
I'm integrating a OpenID system into my site, and for part of it, I'm triggering a popup to login to various openID providers. This popup is opened by a simple; Window.open(url, _blank, menubar=1,resizable=1,width=480,height=400); Is it possible to know when the user close's this popup? Either

Re: Is it possible to detect if a popup (opened by Window.open(..) ) has been closed?

2010-02-01 Thread mariyan nenchev
Hi, popup.addCloseHandler(new CloseHandlerPopupPanel() { @Override public void onClose(CloseEventPopupPanel arg0) { // do something on close } }); if you use eventbus you may create your own PopupClosedEvent and onClose do : eventBus.fireEvent(new

Re: Is it possible to detect if a popup (opened by Window.open(..) ) has been closed?

2010-02-01 Thread darkflame
thanks, but I'm affaird I wasn't clear enough :( I meant a popup window, not a popup panel. (that is, an actual separate browser window triggered by a Window.open), and not a internal PopupPanel within the same window. Sorry for the confusion. On Feb 1, 1:42 pm, mariyan nenchev

PopupPanel.AnimationType

2010-02-01 Thread Johan Rydberg
Why isn't it public? Is that part of the API still considered unstable? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: Can't remove 0 index in ArrayList

2010-02-01 Thread Martin Trummer
I think you should take some time to find out what the problem is/was. it's quite unlikely that something in the GWT code changed, so that such a simple thing would stop working. Maybe you just had different data before. Thus it may be an indication that you got something wrong in your code -

Re: Is it possible to detect if a popup (opened by Window.open(..) ) has been closed?

2010-02-01 Thread mariyan nenchev
Hi, what about Window.addCloseHandler(...);? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

Difference in FF and Chrome GWT 2.0

2010-02-01 Thread dinosaurus
I'm evaluating GWT 2.0. I've created a very simple application (see below). I execute it from Eclipse GWT 2.0 plug-in. DockLayoutPanel p = new DockLayoutPanel(Unit.EM); p.addNorth(new Button(north), 2); p.addSouth(new Button(south), 2); p.addEast(new Button(east), 2); p.addWest(new Button(west),

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-01 Thread Tercio
   - Both GXT and Smart GWT are pure gwt (no underlying native JS library,    so expect equivalent speed/performance from the GWT compiler). Nope, SmartGWT is a wrapper to SmartClient JS Library. ckendrick and I have different understandings about override ... :-P We already discussed this

Re: How to create a Grid with Picture as a type of column?

2010-02-01 Thread mariyan nenchev
How do you load your images from the server? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: Is it possible to detect if a popup (opened by Window.open(..) ) has been closed?

2010-02-01 Thread Thomas Wrobel
I think that only monitors the current window :-/ On 1 February 2010 14:39, mariyan nenchev nenchev.mari...@gmail.com wrote: Hi, what about Window.addCloseHandler(...);? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

GWT 1.7 upgrade Issue in Linux

2010-02-01 Thread has
I try to upgrade from GWT 1.5.3 to 1.7, it works fine in Windows but in Linux HostedMode shows blank page while it display the Title but not the contents. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Some question about Serialization tricks...

2010-02-01 Thread BM
Hi, folks. I have a little question that I haven't figured out myself (mea culpa). Since GWT requires IsSerializable, how better I can avoid hassle with duplicating redundant Java Beans? The way it works for me now: one JavaBean is for database, another is for GWT, but both of them are identical

Can we use TooltipText for a TreeGridField

2010-02-01 Thread Aki
I want to use TooltipText for a TreeGridField.Is it possible .But I did not find any API supporting this for TreeGridField. waiting for the reply. Aki. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Question regarding presenter in MVP pattern

2010-02-01 Thread gugguson
Hello. I'm creating an gwt app which will enable the user to enter recipes. I have a presenter with all the basic information like description, directions etc. which is defined like this: public interface Display { HasClickHandlers getSaveButton(); HasClickHandlers getCancelButton();

Building GWT from source

2010-02-01 Thread Karan Bhatnagar
Hi, I am an ant newbie. I am trying to build GWT from source following steps as mentioned at http://code.google.com/webtoolkit/makinggwtbetter.html I am facing problem doing that and could not get solution in ant forums. http://code.google.com/webtoolkit/makinggwtbetter.html Now when I invoke

Re: SuggestBox doesnt work in IE 6

2010-02-01 Thread Bogdan Maryniuck
Screw MSIE 6. It is not supported anymore neither by Microsoft, nor by Google. On Mon, Feb 1, 2010 at 4:22 PM, forewar fore...@gmail.com wrote: When I try to show suggestion list in Internet Explorer 6, I just get Javascrpt error Invalid class string and suggestion list doesnt appear of

Re: UiBinder Templates - Adding a series of HTML elements

2010-02-01 Thread damians
This is normal g:HTMLPanel creates that. g:HTMLPanel/g:HTMLPanel it is like div/div. Try to do : * DateBox.ui.xml *** ui:UiBinder g:HTMLPanel tabletr td g:TextBox ui:field=month /g:TextBox/td td g:TextBox ui:field=day/g:TextBox/td

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-01 Thread Tom Schindl
Though many people think that Overloading/Overwriting and JSNI don't really fit together. I think they do if you are a bit creative. If you are interested in how I solved this problem for QxWT you should take a look at this series of posts.

Re: Can't remove 0 index in ArrayList

2010-02-01 Thread Christian Goudreau
You're right, I'm gonna redo all my views with UiBinder, it'll be a good time to take a deeper look into this. Thanks again for your comments Christian On Mon, Feb 1, 2010 at 8:34 AM, Martin Trummer martin.trum...@24act.atwrote: I think you should take some time to find out what the problem

Supported Browsers

2010-02-01 Thread R.Domingo
Hello, Is there any documentation available about which browsers are supported by gwt 2.0 ? If so, could you please inform me where to find it. thnx, Raymond -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: Supported Browsers

2010-02-01 Thread mariyan nenchev
All major browsers are supported. On Mon, Feb 1, 2010 at 4:55 PM, R.Domingo raym...@domingo.nl wrote: Hello, Is there any documentation available about which browsers are supported by gwt 2.0 ? If so, could you please inform me where to find it. thnx, Raymond -- You received this

Re: Supported Browsers

2010-02-01 Thread Alexander
http://code.google.com/webtoolkit/gettingstarted.html http://code.google.com/webtoolkit/gettingstarted.htmlBottom of page IE, Chrome, Firefox, Safari, and Opera I hope this is enough to amaze you. On 1 February 2010 20:59, mariyan nenchev nenchev.mari...@gmail.com wrote: All major browsers

Re: How to write a simple overlay implementation?

2010-02-01 Thread Tom Schindl
My current work on a GWT-Wrapper for Raphael might be interesting to you [1]. Tom [1]http://tomsondev.bestsolution.at/2010/01/31/qxwt-1-0-1-0-rc1-and-other-cool-stuff/ On Tue, Jan 26, 2010 at 6:45 PM, markww mar...@gmail.com wrote: Ok this is what I came up with:  public class SVGRect

Re: Supported Browsers

2010-02-01 Thread Thomas Broyer
On Feb 1, 3:55 pm, R.Domingo raym...@domingo.nl wrote: Is there any documentation available about which browsers are supported by gwt 2.0 ? If so, could you please inform me where to find it. http://code.google.com/webtoolkit/doc/latest/FAQ_GettingStarted.html#What_browsers_does_GWT_support?

Re: Supported Browsers

2010-02-01 Thread R.Domingo
Thank you all for replying! My question was triggered about the news flash that google will stop supporting IE6 and some other older browsers as described on: http://googleenterprise.blogspot.com/2010/01/modern-browsers-for-modern-applications.html But it seems this has no immediate impact on

Re: How to apply MVP in Views inside View situation?

2010-02-01 Thread Jeff Chimene
On Sun, Jan 31, 2010 at 11:35 AM, Jethro Lai jet...@jethrolai.com wrote: I am new to this GWT MVP pattern even though I've been doing GWT for a while. Let me explain the problem I have. There is view in my application which is a list of words and the info within them. It's pretty much like

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-01 Thread ckendrick
@Tercio I'm not able to follow the distinction you wish to make between behavior and functionality, but in terms of what the Java language calls an override, yes SmartGWT supports it. Demonstrated here among many other places:

Suggestions for dealing with Timers

2010-02-01 Thread Sean
Im trying to do a visual sort. Imagine a bubble sort where you see the items move from one bucket to the next. The way I would move them visually is use a Timer with an AbsolutePanel and move them up. However, I wouldn't want to move the next guy until my last one has finished animating. If I do

Using a widget that requires constructor args

2010-02-01 Thread Lorenzo
Hi all, can someone put an example of how using a widget that requires constructor args in UiBinder? I tried starting from the (very poor) documentation, but I couldn't do it I'm a newbie of GWT... Thanks, Lorenzo -- You received this message because you are subscribed to the Google Groups

Re: Upgrade to GWT 2.0 = java.lang.NullPointerException: No API environment is registered for this thread

2010-02-01 Thread Cyril
Error on my side. When upgrading I unchecked the Use Google App Engine option under project properties/Google/App engine. On Jan 31, 12:01 pm, Cyril cyrilnes...@gmail.com wrote: I just upgraded my working app from GWT 1.7.0 to GWT 2.0 and now when I try to run it in dev mode I have the

Re: Suggestions for dealing with Timers

2010-02-01 Thread Vitali Lovich
The way I would do it would be: Timer t = new Timer() { public void run() { // do one pass of the sort } }; // Schedule the timer to run once in 5 seconds. t.schedule(interval); where interval is how frequently you wish to animate. Remeber - javascript is

Re: Struts2 GWT and classpath

2010-02-01 Thread Henry
You're probably getting a classpath problem. Can you confirm its a classpath exception? What's the error on the Development Mode window printing? In the Run-Debug Configurations...-g(oogle) Web Application window there is a Classpath Tab Make **SURE** that under the User Entries Tree you have

How Do I Change the Welcome File?

2010-02-01 Thread Russ
I created an app, and now I want to run it in a different HTML file. I created the new HTML file, placed it in the war directory, made sure the new HTML file has the correct RootPanels and changed the welcome- file in the web.xml file to refer to the new HTML file. But my app is still not

Usage of two modules that share sessions id ?

2010-02-01 Thread Nico
Hi, I am building a website with GWT. There is a login page on this website that send a session id to client when user is logged in. I'm using the Servlet HttpSession object to get id. Somewhere in the website, there is a link that load a new GWT module page. This is a different module because

Re: Suggestions for dealing with Timers

2010-02-01 Thread Sean
Hi Vitali, That is what I'm doing now. However, I'm going to have something like //For example for(bin : bins) { moveBinToCorrectSpot(bin) } So each Bin will get it's own timer in moveBinToCorrectSpot that moves it to it's right spot. However, they'll all animate at the same time. Jeff, I

Re: Suggestions for dealing with Timers

2010-02-01 Thread Vitali Lovich
So you would obviously have to change it. Incremental command wouldn't help you since you are doing animation Incremental commands are just a way of allowing long-running data processes to maintain an interactive UI - otherwise the UI would block while you did your processing. Thus they don't

Re: Suggestions for dealing with Timers

2010-02-01 Thread Sean
Thanks Vitali, I just made a test with IncrementalCommand, and you are correct. I wasn't seeing the behavior I was looking for. And I misunderstood where you wanted to use the timers. I am smacking my forehead for not figuring that out before. Thank you very much. That is exactly what I need to

Re: Is it possible to detect if a popup (opened by Window.open(..) ) has been closed?

2010-02-01 Thread darkflame
For other peoples reference I found a solution/work-around; Triggered from the popup window itself, I added code that could communicate back to that which opened it. Native javascript like this would trigger the history; window.opener.location.hash = meep2; Or something like this to trigger a

Re: UiBinder and abstract class

2010-02-01 Thread matttai
You are probably setting setWidget(uiBinder.createAndBindUi(this)); in the extended class. I don't see your bind statement for the second class so i cannot tell so it is just a guess. Bind the loginbox content for the LoginDialogBox as a widget and pass it in for your bind in the

Re: Resymbolization

2010-02-01 Thread Andy
I'm not sure if this is (or is contributing to) the problem, but I'm using HTTPS. On Jan 29, 11:46 am, Andy antonvonpil...@gmail.com wrote: I'm trying to use the HttpThrowableReporter to send exception information to the server, but it isn't working for me. The HttpThrowableReporter is

Blur event on FocusPanel is triggered immediately following MouseDown event

2010-02-01 Thread Sky
I click on my FocusPanel and before MouseUp event fires, but after MouseDown event, the Blur event is fired, which is very much undesired. This only happens in Chrome, so it may be a Chrome bug. It does not happen in FF and IE. It may be my fault, but I am not explicitly setting focus on any

Re: Issues with Embedded History Changes

2010-02-01 Thread Michael Mullen
I checked a few other things. In my loading html document, I've got the following line in the body section to add history support: iframe src=javascript:'' id=__gwt_historyFrame style=position:absolute;width:0;height:0;border:0/iframe Is this the correct location to have this? I also just

Re: Question regarding presenter in MVP pattern

2010-02-01 Thread Eric
This is in no way an authoritative answer, but I've decided for my app that defining a Model class and setting and getting a list of that model is the right way to go: So I would add void setRecipeItems( ListRecipeItem items) ; ListRecipeItem getRecipeItem() ; to your Display interface. I'm

Re: Blur event on FocusPanel is triggered immediately following MouseDown event

2010-02-01 Thread Sky
Wow! Now another FocusPanel's MouseDown event doesn't even fire! Except I can make it fire if I do the following. When I click on this element (object B) another element (object A) is losing focus, so if I put a breakpoint in the onBlur event on that item (object A), then when I click on the other

A Sexy/Slick GWT Application?

2010-02-01 Thread Andy
I've been looking at a lot of the demos for the 3rd party GWT plugins; for example, SmartGWT, and read the various postings on this forum about who's actually using GWT, but I was wondering if anyone knows of a really sexy/slick GWT application that not only has a great design, but uses animation

UiBinder + HTML + Widgets

2010-02-01 Thread Eric
Hello all, I hope this is obvious and I'm just missing it, but I can't figure out how to add a Widget to a DivElement or TableCellElement that I get back from my uiBinder template. Here is what I have: ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder div class=wrapper [lots of eye

onBlur called twice because of FocusWidget.setFocus implementation

2010-02-01 Thread Stuart
My use case: I have a TextBox which I want to validate onBlur. If validation fails, I want to setFocus on it again. Which makes onBlur fire again, hence the validation routine runs again (not ideal, in fact, a defect in my mind). My code: == snip == public void onBlur(BlurEvent event) {

UiBinder and non standard CSS properties.

2010-02-01 Thread Carlos Aguayo
Hi, UiBinder can't seem to take non standard CSS properties. I have the following: ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:g='urn:import:com.google.gwt.user.client.ui' ui:style .test { -moz-border-radius: 4px; } /ui:style g:HTMLPanel input

Re: Struts2 GWT and classpath

2010-02-01 Thread finneycanhelp
Hi, I confirmed I am not getting a classpath issue. Using firebug and firefox, I see the URL http://localhost:/org.struts2kata.S2?gwt.codesvr=10.0.0.2:9997 does a redirect to http://localhost:/S2/ Not sure why Then I see the following: http://localhost:/S2/

Re: Issues with Embedded History Changes

2010-02-01 Thread Michael Mullen
I just figured out my problem. Although this does not strike me as a good solution... My onModuleLoad() function had to be changed to the following: public onModuleLoad() { VerticalPanel vp = new VerticalPanel(); vp.add(new MenuObject()); RootPanel.get().add(vp); String initToken =

Alignment of widgets

2010-02-01 Thread Name256
Hello to you all, it is my first time trying out GWT and I am using version 1.7. I have been trying to create a login widget that contains help information on the left and a login form on the right. I have been unable to align the login SImple Panel to the centre of the east side of the dockpanel.

UiHandlers in Extended Abstract Class

2010-02-01 Thread matttai
Having trouble having UiHandlers register when extending from an abstract class. I can register UiHandlers in the abstract class fine, however the extending class cannot register it's handles. Sample code below: Abstract Class: public abstract class GenericWidget extends Composite {

Re: UiHandlers in Extended Abstract Class

2010-02-01 Thread damians
Hello matttai, Is just the same question that you answered me few post before about UiBinder and Abstract class. The error i posted is from the same thing. Extended class does'nt see UiHandlers from base class. Anyone knows is it posible to make it work? Thanks GWT Users. -- You received this

Re: UiHandlers in Extended Abstract Class

2010-02-01 Thread matttai
Hi Damien, I thought u were just asking about binding UI elements across extended and abstract classes which I have been able to successfully do (example code above). The UIHandlers however are a different story and don't work. On Feb 2, 6:11 pm, damians dsu...@o2.pl wrote: Hello matttai, Is

Re: SuggestBox hides RootLayoutPanel and all its contents

2010-02-01 Thread hriess
Is there in the meantime a solution for this problem? I am using a DockLayoutPanel for the layout of the application. A SuggestBox (and other PopupPanels) blanks the complete screen in IE7. After upgrade to GWT 2.0, UiBinder and LayoutPanels I haven't tested my application with IE7 for a long

Re: UiHandlers in Extended Abstract Class

2010-02-01 Thread damians
Yea i can bind UI elements as well but the error i got is on binding @UiHandler(okButton) and that okButton and handler is not in extended class but in base class. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: Alignment of widgets

2010-02-01 Thread Joe Cole
If you are using flextables for forms you will want to set the width of the first column widgets: flextable.getCellFormatter().setWidth(0, 200px); On Feb 2, 7:26 pm, Name256 abel.bi...@gmail.com wrote: Hello to you all, it is my first time trying out GWT and I am using version 1.7. I have

[gwt-contrib] Re: now.. afetr GWT 2.0?

2010-02-01 Thread Martin
+1 for OSGi support -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: GWT Incubator Status Update and Schedule

2010-02-01 Thread Joel Webber
To be clear, we do recognize the importance of starting to support HTML5 constructs that don't work on all browsers, though we need to find a clear way to indicate to developers that a particular library or widget won't work in some cases. None of us have ever worked through all the nuances of how

[gwt-contrib] [google-web-toolkit] r7513 committed - Fix a bug where MenuBar loses focus when moving between submenus using...

2010-02-01 Thread codesite-noreply
Revision: 7513 Author: jlaba...@google.com Date: Mon Feb 1 02:58:54 2010 Log: Fix a bug where MenuBar loses focus when moving between submenus using left/right keys. When are maintaining focus when the popup is auto closed instead of maintaining focus when the popup is manually closed.

[gwt-contrib] [google-web-toolkit] r7514 committed - tr...@7513 was merged into this branch...

2010-02-01 Thread codesite-noreply
Revision: 7514 Author: jlaba...@google.com Date: Mon Feb 1 06:10:29 2010 Log: tr...@7513 was merged into this branch Prevent MenuBar from losing focus when navigating to a new submenu. svn merge --ignore-ancestry -c 7513 http://google-web-toolkit.googlecode.com/svn/trunk .

[gwt-contrib] Re: GWT Incubator Status Update and Schedule

2010-02-01 Thread dflorey
What about Fred Sauer's gwt voices project? AFAK it has an elegant approach how to provide flash based fallback if certain capabilities are not supported by the browser itself. On 1 Feb., 14:25, Joel Webber j...@google.com wrote: To be clear, we do recognize the importance of starting to

[gwt-contrib] Re: GWT Incubator Status Update and Schedule

2010-02-01 Thread dflorey
See: http://groups.google.com/group/google-web-toolkit-contributors/browse_thread/thread/4f5fb0cbd007fa25/e6a70c6a26a444cd?lnk=gstq=compatibility+animations#e6a70c6a26a444cd On 1 Feb., 17:23, dflorey daniel.flo...@gmail.com wrote: What about Fred Sauer's gwt voices project? AFAK it has an

Re: [gwt-contrib] Re: GWT Incubator Status Update and Schedule

2010-02-01 Thread Joel Webber
[+fred, just to make sure he sees this] On Mon, Feb 1, 2010 at 11:26 AM, dflorey daniel.flo...@gmail.com wrote: See: http://groups.google.com/group/google-web-toolkit-contributors/browse_thread/thread/4f5fb0cbd007fa25/e6a70c6a26a444cd?lnk=gstq=compatibility+animations#e6a70c6a26a444cd On 1

[gwt-contrib] Re: JsStackEmulation leaves alone expressions invoked as functions

2010-02-01 Thread bobv
LGTM, with one nit. http://gwt-code-reviews.appspot.com/132815/diff/3015/3018 File user/test/com/google/gwt/core/StackTraceLineNumbersTest.gwt.xml (right): http://gwt-code-reviews.appspot.com/132815/diff/3015/3018#newcode2 Line 2: !-- Copyright 2008 Google Inc. -- Copyright date.

[gwt-contrib] Re: JsStackEmulation leaves alone expressions invoked as functions

2010-02-01 Thread spoon
Thanks, Bob! http://gwt-code-reviews.appspot.com/132815/diff/3015/3018 File user/test/com/google/gwt/core/StackTraceLineNumbersTest.gwt.xml (right): http://gwt-code-reviews.appspot.com/132815/diff/3015/3018#newcode2 Line 2: !-- Copyright 2008 Google Inc. -- On 2010/02/01 16:48:02,

[gwt-contrib] [google-web-toolkit] r7515 committed - Moving emma compiled classes above non-emma compiled classes in the cl...

2010-02-01 Thread codesite-noreply
Revision: 7515 Author: jlaba...@google.com Date: Mon Feb 1 07:18:28 2010 Log: Moving emma compiled classes above non-emma compiled classes in the classpath when running tests so we generate proper emma code coverage. Currently, our code coverage is messed up because we only generate it for

Re: [gwt-contrib] Re: GWT Incubator Status Update and Schedule

2010-02-01 Thread Fred Sauer
Daniel, Last time I looked at HTML5 audio support in browsers (in the context of putting it in to gwt-voices) it was fairly lacking. It's probably a good time to revisit that though. I'd love to get better native support for audio since the current state of affairs (i.e. everything before HTML5)

[gwt-contrib] [google-web-toolkit] r7516 committed - Fixes issue 4512. In JsStackEmulation, avoid rewriting references to...

2010-02-01 Thread codesite-noreply
Revision: 7516 Author: sp...@google.com Date: Mon Feb 1 07:58:03 2010 Log: Fixes issue 4512. In JsStackEmulation, avoid rewriting references to non-references. For example, don't rewrite bar['foo']() to (line=123,bar['foo'])(), because that will result in this being set incorrectly in the

[gwt-contrib] Re: r7517 committed - Adding RegExp to public GWT (native version, pure Java version, tests)

2010-02-01 Thread Thomas Broyer
On 1 fév, 20:26, codesite-nore...@google.com wrote: Revision: 7517 Author: tomer...@google.com Date: Mon Feb  1 08:08:26 2010 Log: Adding RegExp to public GWT (native version, pure Java version, tests) http://code.google.com/p/google-web-toolkit/source/detail?r=7517 Added:  

Re: [gwt-contrib] Re: r7517 committed - Adding RegExp to public GWT (native version, pure Java version, tests)

2010-02-01 Thread John Tamplin
On Mon, Feb 1, 2010 at 3:09 PM, Thomas Broyer t.bro...@gmail.com wrote: Isn't translatable code generally going into /trunk/user/super, and the subpackage being called translatable rather than super? Those are JRE and infrastructure super-source -- this is more user-level code. Also, if you

Re: [gwt-contrib] Re: r7517 committed - Adding RegExp to public GWT (native version, pure Java version, tests)

2010-02-01 Thread Sami Jaber
John, I'm agree with Thomas. RegExp integration should have been discussed in the list. It is landing into the trunk from nowhere for us... Since the 2.0 release, I feel that there is less interaction with the contrib list (btw what have been decided for the roadmap ?) and what we are supposed to

[gwt-contrib] RR : Record selected annotations in Java AST

2010-02-01 Thread bobv
Reviewers: Lex, scottb, Message: Review requested. I'm going to be AFK Tuesday-Thursday, so it's likely I won't be able to get back to this until next week. Description: This is a compiler infrastructure patch that enables annotations to be selectively recorded within the Java AST. Compiler

[gwt-contrib] [google-web-toolkit] r7518 committed - Fix API checker change made in the wrong place....

2010-02-01 Thread codesite-noreply
Revision: 7518 Author: j...@google.com Date: Mon Feb 1 10:46:28 2010 Log: Fix API checker change made in the wrong place. Patch by: jat Review by: amitmanjhi http://code.google.com/p/google-web-toolkit/source/detail?r=7518 Modified: /trunk/tools/api-checker/config/gwt16_20userApi.conf

[gwt-contrib] Re: Comment on DataBackedWidgetsDesign in google-web-toolkit

2010-02-01 Thread codesite-noreply
Comment by djb.bell: This definitely looks promising. Just a quick question though. Will this new model allow for a live continuously updating grid/table. By this I mean as the user scrolls up and down, the model is asked for more rows and the rows above a paged out. This allows the

Re: [gwt-contrib] Re: Comment on DataBackedWidgetsDesign in google-web-toolkit

2010-02-01 Thread John Tamplin
On Mon, Feb 1, 2010 at 5:13 PM, codesite-nore...@google.com wrote: By this I mean as the user scrolls up and down, the model is asked for more rows and the rows above a paged out. This allows the user to scroll around a large data set with no delay. The amount of rows buffered above and

[gwt-contrib] Re: Comment on DataBackedWidgetsDesign in google-web-toolkit

2010-02-01 Thread codesite-noreply
Comment by rj...@google.com: Yes, that use case is on our radar. For more information: http://code.google.com/p/google-web-toolkit/wiki/DataBackedWidgetsDesign -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Comment on DataBackedWidgetsDesign in google-web-toolkit

2010-02-01 Thread codesite-noreply
Comment by andrew.pietsch: This is looking very nice. I presume the filtering usecase is on the radar as well? As another happy user of glazed lists I can also recommend looking at it. If I remember correctly the author is also a google employee. Cheers For more information:

Re: [gwt-contrib] Re: r7517 committed - Adding RegExp to public GWT (native version, pure Java version, tests)

2010-02-01 Thread Bruce Johnson
On Mon, Feb 1, 2010 at 4:05 PM, Sami Jaber sami.ja...@gmail.com wrote: I'm agree with Thomas. RegExp integration should have been discussed in the list. It is landing into the trunk from nowhere for us... I mentioned a couple of weeks ago that we were switching to a different version control