Re: GWT /Eclipse/Tomcat

2010-05-14 Thread rjcarr
Hi Alan- The short answer is yes, you can use tomcat (stand-alone) instead of jetty (gwt embedded). The simple solution is to just add -noserver to your devmode launcher. You can also modify the eclipse lauch config file to do this same and then you have integrated debugging. You might have to

Re: GWT HTTP form post

2010-05-14 Thread rjcarr
I don't have the code in front of me, but you just need to know what you named your form elements. The FileItem has a getFieldName() method, so just look for the name of your hidden field. On May 11, 8:44 am, heyyo handecano...@gmail.com wrote: Hi, I created a form panel, I can upload file and

Re: Hidden FileUpload Widget

2010-05-14 Thread Manuel Carrasco Moñino
Gwtupload has a DecoratedFileUpload which does it. http://code.google.com/p/gwtupload Cheers -Manolo On Sat, May 8, 2010 at 7:17 PM, kratzbaumkordel crizzy...@arcor.de wrote: Hi, I'm wondering if it is possible to hide the GWT UploadWidget (or not use it at all) and instead open the file

Re: GWT /Eclipse/Tomcat

2010-05-14 Thread Jan Ehrhardt
Here is a small introduction to use Tomcat h ttp://www.ducktools.org/2010/05/gwt-eclipse-tomcat-2.html ttp://www.ducktools.org/2010/05/gwt-eclipse-tomcat-2.htmlRegards Jan Ehrhardt 2010/5/14 rjcarr rjc...@gmail.com Hi Alan- The short answer is yes, you can use tomcat (stand-alone) instead of

Lightweight Metrics in Firebug Console -- a bookmarklet

2010-05-14 Thread Sripathi Krishnan
I created a utilityhttp://blog.530geeks.com/2010/05/view-gwt-metrics-in-firebug.htmlto see GWTs lightweight metrics in the firebug console window; thought this group may find it useful. gwtmetrics http://code.google.com/p/degwt/wiki/gwtmetrics is just a js file that can be injected into any page

Re: Developer plug-in hangs

2010-05-14 Thread Charan
Hi, I workaround for my developer plug-in window hanging. i was mentioned the -logLevel ALL, i deleted this option in java arguments then it working fine. Regards, Charan On May 13, 2:25 pm, Charan s.chara...@gmail.com wrote: Yes it was compiled sucessfuly. On May 11, 11:34 am, Chatak

What is the use of gwt-api-checker.jar in GWT 2.0.3

2010-05-14 Thread Charan
Hi, I was developing a GWT app in 2.0.3 version. I have seen two files newly added gwt-api-checker.jar and gwt-soyc- vis.jar i never used any of these jars files in my app development. Anyone can tell me what is purpose of these jars files. Regards Charan -- You received this message because

Issue on Normal mode not replicating in the Developer mode

2010-05-14 Thread Charan
Hi, I have Horizontal split panel, on left side widget i have vertical panel which is holding a Horizontal panel which contains 2 widgets image and label. I am dynamically adding the horizontal panel with image and Label which is working fine in the GWT 1.5.3 version but not working in 2.0.3

Re: Issue on Normal mode not replicating in the Developer mode

2010-05-14 Thread Charan
Hi, i=(j=null,JXd(j.d.ef(_xf),218)); this where FF is failed for j is null i=(j=null,aYd(j.c.df(kAf),218)); this where IE is failing for c is null or not an object Any help is appreciated. Regards, Charan On May 14, 2:43 pm, Charan s.chara...@gmail.com wrote: Hi, I have Horizontal split

Re: What is the use of gwt-api-checker.jar in GWT 2.0.3

2010-05-14 Thread Olivier Monaco
Charan, Of course, you search through manual (http://code.google.com/intl/fr/ webtoolkit/overview.html) without success. But did you search through the Wiki of the Googlecode project (http://code.google.com/p/google- web-toolkit/)? Olivier On 14 mai, 11:36, Charan s.chara...@gmail.com wrote:

Re: Code Splitting

2010-05-14 Thread larshub
If you are using the command pattern (Action) then you can create a second ActionService. We have done so and can easily control this way which classes are included in the LightService. It's really simple. If you have the interface ActionService with Result execute(Action action); extend the

Re: Code Splitting

2010-05-14 Thread larshub
ups...some mistakes. Certainly you have to subclass the Action and Result with LightAction and LightResult - NOT the service interface. Otherwise you would have again all Action classes and it's model classes in it. I'm sorry for confusing -- You received this message because you are subscribed

GWT Compiler Update from 1.7.1 to 2.0.3

2010-05-14 Thread Adam
Hey Gang, I hope someone is able to shed some light on this issue I'm having. We are currently using GWT 1.7.1 to compile our GWT applications. Everything is working fine with GWT 1.7.1, as a note. I've been tasked with updating us to 2.0.3. To give a little background we're using generate-with

Synchronous Calls with RPC??

2010-05-14 Thread fomba collins
Hi, Is there a way of making synchronous calls in GWT using RPC. I actually need something on the client side to ensure that the asynchronous processing in rpc is complete. Can Anyone help?    -- You received this message because you are subscribed to the Google Groups Google Web

Re: Synchronous Calls with RPC??

2010-05-14 Thread Olivier Monaco
Hi, Doing synchronous call is globally a bad idea. What is your exact need? Olivier On 14 mai, 17:05, fomba collins fomba_coll...@yahoo.com wrote: Hi, Is there a way of making synchronous calls in GWT using RPC. I actually need something on the client side to ensure that the asynchronous

Re: GWT article 'Large scale ...' license of source code

2010-05-14 Thread Olivier Monaco
Jan, Please read the terms of use from the gwt web site. All is there. Olivier On 14 mai, 07:36, Jan Ehrhardt jan.ehrha...@googlemail.com wrote: Hello, I would like to reuse the source code of the GWT article 'Large scale application development and MVP' for my own samples and articles, but

Problems with ZeroClipboard in widget

2010-05-14 Thread Dan
Hi all, I created a basic project that uses ZeroClipboard to copy text to the clipboard and it works fine. I then created a widget which has the same text box and button I used in the project above. And it doesn't work... The widget consists of a few elements, like a text box and radio buttons,

Re: Synchronous Calls with RPC??

2010-05-14 Thread Travis
We have implemented synchronous calls in our project, but we had to make changes to the source code of GWT and create our own distribution. It has been working well for us, but try and limit its use to short calls to the server that run quickly since it will freeze up all browsers completely

Re: Synchronous Calls with RPC??

2010-05-14 Thread fomba collins
I have a method that uses the response of an asynchronous call. Here is it:   for(int i=0;ilisteOfApplications.size();i++) {       menuItem.setText(listeOfApplications.get(i).toString()); MenuSetup ms1 =  new MenuSetup(menu, menuItem);  ms1.getSubMenus();     }   During each iteraton,

Re: XML binding/mapping and GWT-RPC

2010-05-14 Thread ciosbel
I assume that the files are on your server? If you are trying to set the contents of the elements of the xml file, then why not use an RPC mechanism that automatically binds them to POJOs on the client? (you don't have to use GWT-RPC) Or am I missing something? If they are stored as XML on

Re: XML binding/mapping and GWT-RPC

2010-05-14 Thread Christian Goudreau
Take a look at this project http://code.google.com/p/piriti/ Cheers Christian On Fri, May 14, 2010 at 1:18 PM, ciosbel andrew...@gmail.com wrote: I assume that the files are on your server? If you are trying to set the contents of the elements of the xml file, then why not use an RPC

Development mode problem: Keep asking to install plugin

2010-05-14 Thread VJ
Hi, I am new the GWT and created a sample application (eclipse Galileo). When I run the application in Development Mode, it asks me to install the plug-in. After successful installation, 'Please enter your name' flashes and it goes back to install the plug-in. Any help is appreciated. Thanks,

Re: gwitbus - The GWT Event Bus for non-GWT projects

2010-05-14 Thread Nathan Wells
Is there a reason you're not using the EventBus that was created by the Java community (primarily) for Swing? https://eventbus.dev.java.net/ On May 8, 7:28 am, dan twining dantwin...@gmail.com wrote: Hello everyone, I just wanted to let people know about gwitbus

New to GWT

2010-05-14 Thread sehgal.prithvi
Dear All, I am completely new to GWT. I am not very well versed with Javascript or CSS, but i want to evaluate GWT as RIA framework. Can someone suggest me the beginning point? Which book i should start? Something cool which i can make as a beginner. Looking forward to hear from you. Best

GWT with JPA - no persistence provider

2010-05-14 Thread maliniak
GWT with JPA There are two projects in my eclipse workspace, let's name them: -JPAProject -GWTProject JPAProject contains JPA configuration stuff (persistence.xml, entity classes and so on). GWTProject is an examplary GWT project (taken from official GWT tutorial). Both projects work fine

Re: Synchronous Calls with RPC??

2010-05-14 Thread Gursel Koca
http://code.google.com/p/google-web-toolkit/issues/detail?id=4898 On 14 Mayıs, 18:05, fomba collins fomba_coll...@yahoo.com wrote: Hi, Is there a way of making synchronous calls in GWT using RPC. I actually need something on the client side to ensure that the asynchronous processing in

How to use different icons for Tree leaf

2010-05-14 Thread Basu
Experts out there, I am very new to GWT. Is there a way to set different icons for tree leaf. I have done this easier in other tools, but finding it difficult with GWT If I set an icon on tree item, it either shows the text or the icon. what should I do? thanks, Basu -- You received this

Re: ScrollPanel not displaying contents in nested DockLayoutPanels

2010-05-14 Thread Mike
Hi, I have the same type of problem but with slightly simplier structure: RootLayoutPanel DockLayoutPanel ScrollPanel (in center) DockLayoutPanel Widget within north of the last DockLayoutPanel shows up correctly. Other parts (east, west, center, south) do not appear, i.e. if I

Target element of an event?

2010-05-14 Thread CJ Bilkins
How do I get the target of a clickevent in 2.0? From what I can tell, this is impossible? But that can't be... so I must just be missing something. I've found: event.getNativeEvent().getEventTarget() But I can't seem to get that EventTarget to turn back into my Button. Here is the scenario:

Direct-Eval rpc payload size

2010-05-14 Thread Gursel Koca
I am using direct-eval rpc. The performance is better than the usual gwt-rpc mechanism especially in dev mode. But while I am checking the payload size with fiddler, I am surprised to notice the payload size is 70 times more than usual rpc mechanism. Serialized domain objects represents

GWT MenuItem with FileBrowse

2010-05-14 Thread gwtnewbie
Hi , I am trying to use MenuItem called Open to open up a FileBrowser and then be able to select a file. The problem i am seeing is MenuItem can fire a command , and if i try to use the FileUpload widget in the command code , it requires a form panel and submit button to be able to use that

one widget in each screen corner

2010-05-14 Thread Iván Navarro
hi, I'm green with GWT and this could be a silly question to do, but friends I'm stuck with this issue for days. I just need to two widgets, one in the left up corner and the other in the right up corner. My problem is the widgets always appear together in the up left corner. I've tried with

Large GWT project source code organization

2010-05-14 Thread Frederic Conrotte
Hello On a large entreprise GWT project with a lot of JPA beans and WebServices on server side code, would you recommend having all the source code within a single WAR file or splitting between client and server code ? * Option 1 - single WAR file: project/src/ com.mycompany.project.client

Use different containers between presenters

2010-05-14 Thread andres.arellano
Hi, I'm using an architecture very close to what is proposed in the Chris Ramsdale's article Large scale application development and MVP but I want to share the control of the application with a second presenter. At first the app is controlled by the AppController class but then I want to share

Code to run server or client with XML + XML-to-string

2010-05-14 Thread MH
I want to write some Java code that can run either server-side or in GWT. The problem is that the XML package that GWT supports com.google.gwt.xml.client.* will not run server side. Any ideas please? Also in com.google.gwt.xml.client.* how do I serialize an XML Document or Element to e.g. a

GWT and JMeter

2010-05-14 Thread wbabachan
Dear all I want to know how GWT parses the rpc response *on the client*. The reason is that I have no idea how to get some information from response for jmeter test. Please look at the following scenario: I Have a rpc service that returns an ArrayList of a DTO objects, I mean pojos with set and

detect a mouseup when mouse is off the browser

2010-05-14 Thread Adam D
Dear all, I am trying to create a table similar to the one in google spreadsheet, where the user can with a mousedrag select cells. In google spreadsheet when I end my selection out of the browser the selection finalises, it actually puts a blue border on the last cell. I have created a

GWT 2.0.3 maven compile issues

2010-05-14 Thread HummerVin
I have a mature GWT 1.5.3 application that I am trying to migrate to version 2.0.3. The projects (1 main, 3 commons projects) compile and build fine under 1.5.3. We use Maven to do the builds, and maven- googlewebtoolkit2-plugin version 2.0-RC1 to compile the GWT code. Per examples I found on the

why the webbAppCreator cannot run?

2010-05-14 Thread ferdian
i was installed the GWT and try to run the webbAppCreator, but it appeared with some error missing required argument 'module name' .how should i fix it? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

GWT with JPA - no persistence provider

2010-05-14 Thread maliniak
GWT with JPA There are two projects in my eclipse workspace, let's name them: -JPAProject -GWTProject JPAProject contains JPA configuration stuff (persistence.xml, entity classes and so on). GWTProject is an examplary GWT project (taken from official GWT tutorial). Both projects work fine

Let users build a user interface in the browser

2010-05-14 Thread linuxdogm
Hello, I already read about the GWT UiBinder which lets developers easy build user interfaces from XML files. What I want is letting the users build user interfaces directly in the webbrowser (without coding). Maybe they have a list of components which they can select in the browser and can drag

Re: Let users build a user interface in the browser

2010-05-14 Thread aditya sanas
hi, Thats a great idea. all d best -- Aditya On Fri, May 14, 2010 at 2:55 PM, linuxdogm togroe...@googlemail.com wrote: Hello, I already read about the GWT UiBinder which lets developers easy build user interfaces from XML files. What I want is letting the users build user interfaces

Re: New to GWT

2010-05-14 Thread aditya sanas
Hi, There are few GWT tutorials available online some f them are PPTs but currently there is no any book available for gwt so not a great news for novice programmers :( so if you really want to learn GWT you have to practice this tool its the only way that you can learn this. -- Aditya On

Re: UiBinder + CSS layouting

2010-05-14 Thread Brian Reilly
Check out the Using an external resource with a UiBinder section of Declarative Layout with UiBinder in the GWT docs: http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html#Using_an_external_resource Doing your styles this way allows you to see CSS changes in development mode

UI binder and custom classes

2010-05-14 Thread mic
I wanted to ping community members to see how UI binder is used to handle adding widgets to a flex table, for example. g:FlexTable g:CheckBox ui:field='test'/ /g:FlexTable This doesn't cut it, given that flex table has row, column, I want to be able to specify that. One option is to

Re: XML binding/mapping and GWT-RPC

2010-05-14 Thread ciosbel
I've seen that project (and it's quite amazing) but its purpose is client-side mapping using deferred binding. And i don't want to parse 15K LOC client-side... And it does not (yet :D) generate xml from the annotated classes. Thanks anyway. ciosbel. On 14 Mag, 19:19, Christian Goudreau

Re: Synchronous Calls with RPC??

2010-05-14 Thread kozura
For all those instinctively pushing for synchronous RPC whenever somebody needs it, please! This is exactly a case where synchronous network calls would be very bad, and just providing them because it's easier to understand or whatever would mean people would design very poor applications that

Re: New to GWT

2010-05-14 Thread Frederic Conrotte
but currently there is no any book available for gwt There are several books on GWT: http://code.google.com/intl/fr/webtoolkit/books.html I would even add this one: http://www.amazon.com/Pro-Application-Development-Experts-Voice/dp/1590599853 Fred On 14 mai, 19:53, aditya sanas

Google packages size in initial download after code split...

2010-05-14 Thread golfdude
Hi, After code split my initial download is 240Kb. When I see the package split, com.google packages and java.util together take up 60% of it. Is it something one cannot do much about ? Any kind of optimization around this ? java.util 25118 (14.2%) com.google.gwt.user.client.ui 23371

GWT Sprite adds height attribute in the style class

2010-05-14 Thread Vaibhav
Hi, I have implemented ClientBundle in my application and so far it is working fine until I came across this issue. I have a css class which has a background image so I defined it as a sprite in my css. I am using this css class on Button and it looks okay. But I lost vertical text

Re: XML binding/mapping and GWT-RPC

2010-05-14 Thread kozura
Server-side translation and sending through serialized classes is a fine way to go. I do it using xmlbeans, but then do a trivial conversion to some POJO classes that are much simpler and more compact for use on the client side, and of course work through RPC. I didn't actually try seeing if the

Re: IE8 doesn't recognize ClickEvent handler on Label ( I think )

2010-05-14 Thread Tristan
When I removed the left button recognition code it now works @UiHandler(myLabel) public void onMyLabel(ClickEvent event) { getPresenter().onMyLabel(); } On May 7, 11:26 pm, Tristan tristan.slomin...@gmail.com wrote: The following doesn't work in IE8. Do I have to do something with (meta

Re: Let users build a user interface in the browser

2010-05-14 Thread kozura
You might look at gwt-designer; I don't know what their latest stuff does but it's exacrly this. On May 14, 3:25 am, linuxdogm togroe...@googlemail.com wrote: Hello, I already read about the GWT UiBinder which lets developers easy build user interfaces from XML files. What I want is letting

Re: Target element of an event?

2010-05-14 Thread kozura
Widget target = (Widget)event.getSource() On May 13, 10:02 am, CJ Bilkins cory.mawhor...@gmail.com wrote: How do I get the target of a clickevent in 2.0?  From what I can tell, this is impossible?  But that can't be... so I must just be missing something. I've found:

Re: detect a mouseup when mouse is off the browser

2010-05-14 Thread kozura
No, you need to detect the MouseOut event and deal with it there; after that all bets are off of what mouse events you can get depending on browser and OS. On May 13, 4:52 pm, Adam D adamantios.dal...@googlemail.com wrote: Dear all, I am trying to create a table similar to the one in google

Re: Let users build a user interface in the browser

2010-05-14 Thread linuxdogm
Thanks for your answer. But I want the users to design the user interface *in* the browser and *not* like a developer in Eclipse. On 14 Mai, 22:41, kozura koz...@gmail.com wrote: You might look at gwt-designer; I don't know what their latest stuff does but it's exacrly this. On May 14, 3:25 

Re: detect a mouseup when mouse is off the browser

2010-05-14 Thread Adam D
Well Google spreadsheet is able to do it somehow and I am sure setting an onclick on the body will fire even if the mouseup is out of the screen. So there must be a way to do it. If I was working on Javascript I would easily have code it but I am looking for a GWT solution. Adam On 14 May,

About Date object in GWT

2010-05-14 Thread Sabbir
the methods in Date objecat as getTime, getHour, etc are deprecated ones. And in GWT calendar object is not allowed. so how do set the date object in GWT??? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: About Date object in GWT

2010-05-14 Thread Jim Douglas
Just use java.util.Date; ignore the deprecation warnings. On May 14, 6:13 pm, Sabbir leo.sh...@gmail.com wrote: the methods in Date objecat as getTime, getHour, etc are deprecated ones. And in GWT calendar object is not allowed. so how do set the date object in GWT??? -- You received this

Re: Let users build a user interface in the browser

2010-05-14 Thread Gal Dolber
I am working on that. My idea its to get an interface like DashCode. This is what I got: - List of all widgets (even created by the user) - You can insert the widgets - You see the real composite while you add widgets - You can select a widget and edit his properties in a property

[gwt-contrib] [google-web-toolkit] r8139 committed - Adds loading feedback and GWT logo to the scaffolding sample....

2010-05-14 Thread codesite-noreply
Revision: 8139 Author: jaime...@google.com Date: Thu May 13 20:18:52 2010 Log: Adds loading feedback and GWT logo to the scaffolding sample. Review by: rj...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8139 Added:

[gwt-contrib] [google-web-toolkit] r8140 committed - Fix server side error reporting....

2010-05-14 Thread codesite-noreply
Revision: 8140 Author: amitman...@google.com Date: Thu May 13 20:26:19 2010 Log: Fix server side error reporting. Patch by: amitmanjhi Review by: rjrjr (tbr) http://code.google.com/p/google-web-toolkit/source/detail?r=8140 Modified:

[gwt-contrib] Fixes a bug in IE where we swap the tbody but don't update the childContainer in CellListImpl. (issue529801)

2010-05-14 Thread jlabanca
Reviewers: amitmanjhi, cramsdale, Description: Fixes a bug in IE where we swap the tbody but don't update the childContainer in CellListImpl. Please review this at http://gwt-code-reviews.appspot.com/529801/show Affected files: M

[gwt-contrib] [google-web-toolkit] r8141 committed - Fixes a bug in IE where we swap the tbody but don't update the childCo...

2010-05-14 Thread codesite-noreply
Revision: 8141 Author: jlaba...@google.com Date: Fri May 14 03:42:40 2010 Log: Fixes a bug in IE where we swap the tbody but don't update the childContainer in CellListImpl. Also fixes a bug where the table won't refresh if it is set to a size of 0, then goes back to its previous state.

[gwt-contrib] Re: Adds a loading animation to the table. Adds timers to desktop and mobile to refresh tables as d... (issue503802)

2010-05-14 Thread jgw
On 2010/05/12 20:09:19, jlabanca wrote: LGTM http://gwt-code-reviews.appspot.com/503802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8142 committed - Adds datastore indexes for the Expenses app.

2010-05-14 Thread codesite-noreply
Revision: 8142 Author: jlaba...@google.com Date: Fri May 14 05:12:25 2010 Log: Adds datastore indexes for the Expenses app. http://code.google.com/p/google-web-toolkit/source/detail?r=8142 Added: /branches/2.1/bikeshed/war/WEB-INF/datastore-indexes.xml Modified:

[gwt-contrib] Re: changes to hyperlink and Showcase sample (issue74801)

2010-05-14 Thread zundel
close me? http://gwt-code-reviews.appspot.com/74801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Adds a mobile-friendly drag-scroll implementation. (issue530801)

2010-05-14 Thread jgw
Reviewers: jlabanca, Description: Adds a mobile-friendly drag-scroll implementation. Changes the standard and mobile expense samples to use said scrolling. (desktop Expense sample still uses regular scrollbars on non-touch devices) Adds onclick='' to cell containers, so that touch devices show

[gwt-contrib] [google-web-toolkit] r8143 committed - Edited PrecompressLinker wiki page to reflect minor changes made durin...

2010-05-14 Thread codesite-noreply
Revision: 8143 Author: sp...@google.com Date: Fri May 14 10:42:56 2010 Log: Edited PrecompressLinker wiki page to reflect minor changes made during code review. http://code.google.com/p/google-web-toolkit/source/detail?r=8143 Modified: /wiki/PrecompressLinker.wiki

[gwt-contrib] Setting DocType or Standards mode within generated cache.html files

2010-05-14 Thread Erin
I am trying to use the TabLayoutPanel, but having issues within IE. Using Debug bar, I can see that the frame created from the generated files has document mode of IE5 Quirks. There is no DocType set within the generated cache.html. I have tried just adding the DocType definition to the page that

Re: [gwt-contrib] Setting DocType or Standards mode within generated cache.html files

2010-05-14 Thread Joel Webber
Erin, The DOCTYPE of the script HTML won't affect the behavior of the outer page. You should only have to put a simple !DOCTYPE html in the outer page -- that's it. If you're still having troubles with LayoutPanel after that, ping me. Cheers, joel. Le 13 mai 2010 15:04, Erin

[gwt-contrib] [google-web-toolkit] r8144 committed - Update rev to snapshot, fix soyc-vis...

2010-05-14 Thread codesite-noreply
Revision: 8144 Author: gwt.mirror...@gmail.com Date: Fri May 14 08:07:31 2010 Log: Update rev to snapshot, fix soyc-vis Review by: cramsd...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8144 Modified: /branches/2.1/bikeshed/scripts/maven_script.sh

[gwt-contrib] [google-web-toolkit] r8146 committed - Fixes stupid mistake in supportsTouch()

2010-05-14 Thread codesite-noreply
Revision: 8146 Author: gwt.mirror...@gmail.com Date: Fri May 14 12:16:26 2010 Log: Fixes stupid mistake in supportsTouch() http://code.google.com/p/google-web-toolkit/source/detail?r=8146 Modified: /branches/2.1/bikeshed/src/com/google/gwt/mobile/client/TouchHandler.java

[gwt-contrib] [google-web-toolkit] r8147 committed - Setting the total number of reports in the database and pretty printed...

2010-05-14 Thread codesite-noreply
Revision: 8147 Author: jlaba...@google.com Date: Fri May 14 08:44:01 2010 Log: Setting the total number of reports in the database and pretty printed them. http://code.google.com/p/google-web-toolkit/source/detail?r=8147 Modified:

[gwt-contrib] Fix issue 3415 and other Date/Time parsing issues. (issue534801)

2010-05-14 Thread jat
Reviewers: rchandia, Description: Fix issue 3415 and other Date/Time parsing issues. Issue: 3415 Patch by: jat Review by: rchandia Please review this at http://gwt-code-reviews.appspot.com/534801/show Affected files: M user/src/com/google/gwt/i18n/client/impl/DateRecord.java A

[gwt-contrib] Re: Adds a mobile-friendly drag-scroll implementation. (issue530801)

2010-05-14 Thread cromwellian
Joel, I think post I/O perhaps we should add touch events support to dispatchEvent() rather than call addEventListener directly, so you'd be able to invoke sinkEvents(Event.TOUCH_EVENTS);. I did this for my apps and have working code. http://gwt-code-reviews.appspot.com/530801/diff/1/9 File

[gwt-contrib] [google-web-toolkit] r8148 committed - Making the reason denied popup look nicer.

2010-05-14 Thread codesite-noreply
Revision: 8148 Author: jlaba...@google.com Date: Fri May 14 12:19:05 2010 Log: Making the reason denied popup look nicer. http://code.google.com/p/google-web-toolkit/source/detail?r=8148 Modified: /branches/2.1/bikeshed/src/com/google/gwt/sample/bikeshed/style/client/common.css

[gwt-contrib] [google-web-toolkit] r8149 committed - Add an EntityCounter that computes and persists a count for each entit...

2010-05-14 Thread codesite-noreply
Revision: 8149 Author: r...@google.com Date: Fri May 14 13:11:53 2010 Log: Add an EntityCounter that computes and persists a count for each entity kind. It may be run manually using a different .html entry point as needed. Also, fix checkstyle errors.

[gwt-contrib] [google-web-toolkit] r8150 committed - Placeholder for 2.1.0 M1.

2010-05-14 Thread codesite-noreply
Revision: 8150 Author: jasonpar...@google.com Date: Fri May 14 20:15:36 2010 Log: Placeholder for 2.1.0 M1. http://code.google.com/p/google-web-toolkit/source/detail?r=8150 Added: /2.1.0.M1 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8151 committed - Maven artifacts for GWT 2.1.0.M1

2010-05-14 Thread codesite-noreply
Revision: 8151 Author: jasonpar...@google.com Date: Fri May 14 21:40:36 2010 Log: Maven artifacts for GWT 2.1.0.M1 http://code.google.com/p/google-web-toolkit/source/detail?r=8151 Added: /2.1.0.M1/gwt /2.1.0.M1/gwt/maven /2.1.0.M1/gwt/maven/com /2.1.0.M1/gwt/maven/com/google

[gwt-contrib] [google-web-toolkit] r8152 committed - Add the updated GWT Maven plugin (which understands GWT 2.1) to the M1...

2010-05-14 Thread codesite-noreply
Revision: 8152 Author: jasonpar...@google.com Date: Fri May 14 22:52:41 2010 Log: Add the updated GWT Maven plugin (which understands GWT 2.1) to the M1 Maven repo. http://code.google.com/p/google-web-toolkit/source/detail?r=8152 Added: /2.1.0.M1/gwt/maven/org