Re: Activities versus presenters - best practise

2010-11-29 Thread Raphael André Bauer
On Fri, Nov 26, 2010 at 3:01 PM, Thomas Broyer t.bro...@gmail.com wrote: On 26 nov, 14:40, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: Hi, just a simple best-practise question. We are using GWT 2.1, mappers, activities and views. Everything works nicely. But sometimes we

Re: Simple question about GWT.create() signature

2010-11-29 Thread Alessandro Carraro (JUG Padova)
Thank you for the reply I did not know much about GWT-RPC, bay be I should study more before making questions... I was aware of the generic call, but looks to me like a cast :) I was NOT aware of the feature called 'type inference'. I used my IDE to complete, and noticed that only Object methods

Re: How do you use Custom Widgets (Composites) multiple times?

2010-11-29 Thread ep
thats because the GWT Widget actually wraps a DOM Element, which is used to render to the browser. Consider simple plain HTML, where you want to render exactly same infoBox (let it be a divHello world/ div) twice, at the top and at the bottom of the page, you're really going to have two different

Re: Simple question about GWT.create() signature

2010-11-29 Thread ep
Thomas, in fact it would be really nice if GWT.create() would not require literals, we wanted to use a template method throughout our framework to allow to declare the classes to instantiate, maybe you can provide the issue number so we can vote for it :-) But after a month I discovered that

Re: gwt File Upload

2010-11-29 Thread mram
It works perfectly. Just copy the code in the example and it will work in your project. On 28 nov, 19:56, Noor baken...@gmail.com wrote: Hi, Have anyone of used thishttp://code.google.com/p/gwtupload/. This is because before I use it i want to ensure that it lives up to the expectation. So

Re: gwt File Upload

2010-11-29 Thread massimo malvestio
I'm testing it, it looks good -- 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: Place image in object, send object over rpc, use hibernate to update database

2010-11-29 Thread Gaurav Vaish
Sending image data over RPC... how do you plan to use this binary data on the client side? It's not possible... JavaScript does not have any image-processing API. You can do something like this: - Create the image binary data on the server, and label it with some unique ID (store in memory,

Re: Place image in object, send object over rpc, use hibernate to update database

2010-11-29 Thread ep
just wondering how u want to get image's raw data (binary) on the client...actually not possible before html5, you have to upload the image via browser form (and all the remnant data maybe as well to not work with separate transactions)... take a look at gwtupload On 29 Nov., 08:20, Noor

Re: Several Servlets Help

2010-11-29 Thread Gaurav Vaish
Like any other class. And in any medium sized application, there can be over 1000 classes :) -- Happy Hacking, Gaurav Vaish http://www.mastergaurav.com On Nov 29, 10:14 am, Noor baken...@gmail.com wrote: HI, in almost every tutorial I have seen only on servlets, Is it possible to have

Re: Client File IO

2010-11-29 Thread ep
as didier already mentioned you'll dont have to care about stuff not under governance of SoP, actually, the only work your rpc servlet will have to do is to rewrite the URLs, here you can develop a logic based on SoP: i.e. an iframe may reference foreign sites, img as well, script, too, etc.

Re: What is the best way to render complex cell?

2010-11-29 Thread Konstantin Scheglov
We plan to introduce UiBinder for Cells in a future version of GWT, hopefully GWT 2.2.  We want Cells to be a complete replacement for Widgets, but we realize that the potential for an HTML syntax error grows as the level of complexity of a Cell increases.  UiBinder for Cells should make it

Re: onChange event fired twice

2010-11-29 Thread ep
do you also add the current changehandler to the recently created listbox? I mean, while you add the new listbox to the container, this op fires the second change event, looks like you're nesting your listboxes, so any change on the child box will propagate to the parent resulting in second

Extended Methods for EntityProxies

2010-11-29 Thread Ramon Buckland
Hi, -== Context ==- I have created a widget that implicitly holds an EntityProxy as it's backing value. eg: MySpecialDisplayPanelE extends EntityProxy I use this panel (which has a Label and other decorations) when I need to display the entity. Click on the entity and it swaps to a listbox to

GWTTest case mapping URI to file for testing

2010-11-29 Thread Raphael André Bauer
Hi folks, I want to write a GWTTestcase that fetches a file from the server. My setup is maven + headless htmlunit for integration testing (target integration-test). Say I got a json file (named test.json I want to read from the server in directory root. Where do I have to put my json file in

Re: What is the best way to render complex cell?

2010-11-29 Thread ailinykh
Good news. Thank you, Andrey On Nov 28, 6:22 pm, John LaBanca jlaba...@google.com wrote: We plan to introduce UiBinder for Cells in a future version of GWT, hopefully GWT 2.2.  We want Cells to be a complete replacement for Widgets, but we realize that the potential for an HTML syntax error

HorizontalPanel align in uibinder......

2010-11-29 Thread Baloe
Hi all, I want to display three buttons at the right of a horizontalpanel, and then I'll add something on the left. But first, how do I get these buttons at the right? I've read somewhere to put the in a cel, but it doesn't matter. Setting a stylename, setting the horizontalalignment on the cell

What is 'final' keyword for?

2010-11-29 Thread ailinykh
Hello, everybody! In HasDataPresenter.java I see code like this: // Update the page size. final boolean pageSizeChanged = (pageSize != length); if (pageSizeChanged) { pageSize = length; } and later if(pageSizeChanged) doSomething(); What a reason to use 'final'

Re: What is 'final' keyword for?

2010-11-29 Thread Paul Grenyer
Hi On Mon, Nov 29, 2010 at 2:34 PM, ailinykh ailin...@gmail.com wrote: Hello, everybody! In HasDataPresenter.java I see code like this: // Update the page size.    final boolean pageSizeChanged = (pageSize != length);    if (pageSizeChanged) {      pageSize = length;    }   and later  

Re: What is 'final' keyword for?

2010-11-29 Thread Christian Goudreau
http://en.wikipedia.org/wiki/Final_(Java) Cheers, On Mon, Nov 29, 2010 at 9:34 AM, ailinykh ailin...@gmail.com wrote: Hello, everybody! In HasDataPresenter.java I see code like this: // Update the page size. final boolean pageSizeChanged = (pageSize != length); if (pageSizeChanged)

Re: What is the best way to render complex cell?

2010-11-29 Thread Stephen Haberman
We plan to introduce UiBinder for Cells in a future version of GWT, hopefully GWT 2.2. Sweet! I was mulling that the flyweight-ness of cells would allow them to be used within the static/no-iteration nature of ui.xml files. The current API seems like it might need to change though--take

Re: What is 'final' keyword for?

2010-11-29 Thread ep
I guess he got confused on variable name, as actually a final pageSizeChanged promotes that cannot get changed and therefore the latter check is needless if (pageSizeChanged) { pageSize = length; } I've had to look at it twice as well ;) On 29 Nov., 15:37, Paul Grenyer

Re: GWTTest case mapping URI to file for testing

2010-11-29 Thread ep
have you registered a servlet in your GWT module? servlet class=yourServletClass path=/test.json/ On 29 Nov., 14:54, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: Hi folks, I want to write a GWTTestcase that fetches a file from the server. My setup is maven + headless htmlunit for

Re: GWTTest case mapping URI to file for testing

2010-11-29 Thread Raphael André Bauer
On Mon, Nov 29, 2010 at 2:54 PM, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: Hi folks, I want to write a GWTTestcase that fetches a file from the server. My setup is maven + headless htmlunit for integration testing (target integration-test). Say I got a json file (named

Re: GWTTest case mapping URI to file for testing

2010-11-29 Thread Raphael André Bauer
On Mon, Nov 29, 2010 at 3:54 PM, ep eplisc...@googlemail.com wrote: have you registered a servlet in your GWT module? servlet class=yourServletClass path=/test.json/ thanks for that hint... However - are you sure it still works?

Deprecated HandlerManager and svn 2.1 branch question

2010-11-29 Thread Andy
I'm updating my little gwt-traction library and noticed that it's giving compile warnings when I compile with the 2.1 jar downloaded from http://code.google.com/webtoolkit/download.html I often build from source and looking at the 2.1 branch, it doesn't look deprecated:

Testing RESTful services using GWTTestCase

2010-11-29 Thread Raphael André Bauer
Hi folks, what I want to do are two simple things: 1. Mock a RESTFul Api using a servlet. 2. Use that mock inside a GWTTestCase that retrieves data from that servlet and does some meaningful testing. I am running here into a lot of problems where the servlet is not started from the GWTTestCase,

Re: Deprecated HandlerManager and svn 2.1 branch question

2010-11-29 Thread Jeff Larsen
HandlerManager has been replaced with EventBus. You could swap it out with new SimpleEventBus(); On Nov 29, 10:09 am, Andy pula...@gmail.com wrote: I'm updating my little gwt-traction library and noticed that it's giving compile warnings when I compile with the 2.1 jar downloaded

CellTable, how to create a cell with custom listbox

2010-11-29 Thread savilak
I have to create a CellTable with cells that contain ListBoxes. The issue is that I want each item of the listbox to contain an Image and Text! Standard ListBoxes does not allow us to use images at its items (select optionItem 1/option /select). What is the best approach I can follow to

Re: GWT 2.1.0 maven asks for com.google.gwt:gwt-dev:jar:windows:2.1.0??

2010-11-29 Thread ialpert
For what it's worth i've managed to fix my problems I included gwt-dev jar in my pom with compile turned on (dispite the warning) I used -Dgwt.test.mode=htmlunit to get unit tests to run without opening a browser. and then changed my pom to default to htmlunit (and up the timeout test time)

Re: Place image in object, send object over rpc, use hibernate to update database

2010-11-29 Thread Noor
Ya this is not possible in client side javascript. I am finding this a very great limitation because we should have been able to read file. I think the file system should have been accessible via javascript but i think this can lead to security issues. Still, thanks for your comments!! -- You

Request.cancel doesn't work for me!

2010-11-29 Thread newnoise
Hi, I'm working on an GWT-App displaying a map with different layers. Some of those layers are drawn just on request and just for the part of the map which is currently displayed. The Problem occurs if a user moves and zooms the map pretty fast, so that a lot of pictures have to be drawn. This

Help me to get rid of these d... scrollbars!!! :-/

2010-11-29 Thread Magnus
Hi, my application is shown with unwanted scrollbars in IE. They are also unnecessary, because there is nothing to scroll. I have tried everything to get rid of them. Please take a look at it: http://www.bavaria64.de/bcs/bcs.html?test I disabled scrolling and set margin to 0:

Re: Help me to get rid of these d... scrollbars!!! :-/

2010-11-29 Thread Jeff Schwartz
Check out box model at W3C's site and how IE's box model is different. I am not saying this is the problem, only that it might be. Jeff On Mon, Nov 29, 2010 at 12:17 PM, Magnus alpineblas...@googlemail.comwrote: Hi, my application is shown with unwanted scrollbars in IE. They are also

Re: Request.cancel doesn't work for me!

2010-11-29 Thread newnoise
Me again, just tried to make the imExpensive-method less complex, but still no success. The Request is not cancelled ... What am I doing wrong? Thanks Tom On Nov 29, 6:16 pm, newnoise tommmuel...@googlemail.com wrote: Hi, I'm working on an GWT-App displaying a map with different layers.

Re: Help me to get rid of these d... scrollbars!!! :-/

2010-11-29 Thread Magnus
Hi Jeff, could you say this a little more precisely? I actually don't know what to do/check exactly. Thank you Magnus -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Help me to get rid of these d... scrollbars!!! :-/

2010-11-29 Thread Jeff Schwartz
http://www.w3.org/TR/CSS2/box.html http://www.456bereastreet.com/archive/200612/internet_explorer_and_the_css_box_model/ On Mon, Nov 29, 2010 at 1:30 PM, Magnus alpineblas...@googlemail.comwrote: Hi Jeff, could you say this a little more precisely? I actually don't know what to do/check

Re: Help me to get rid of these d... scrollbars!!! :-/

2010-11-29 Thread Jeff Schwartz
BTW, you can use a hack: body{ padding:0; margin:0; overflow:hidden; } But IMO it is best to address the issues causing the problem. Also, are you using a DOCTYPE in your pages? Using it would eliminate the box model problem for versions of IE v6

gwt apps as javascript library in portal

2010-11-29 Thread d...@vide.bz
Hi, I like to make 2 projects in gwt, one for a photogallery and one with a calendar. Now I like to use the generated js in my portal and include the photogallery.js and calendar.js in the head of the page. Is a problem to include two js coming from 2 different gwt projects? Can resource

Re: Problem with maven-gwt-plugin and GWT 2.1

2010-11-29 Thread cri
When I try to use version 2.1.0 of gwt-maven-plugin at http://mojo.codehaus.org/gwt-maven-plugin/, I get the error documented at http://jira.codehaus.org/browse/MGWT-246. Has anyone been successful in getting the plugin to generate a project that can be imported into eclipse without errors?

Using unchanged CSS class names (no obfuscation or prefixing at all)

2010-11-29 Thread sinelaw
I've created a patch for CssResources to not change CSS class names at all. Details + motivation are given in the issue here: http://code.google.com/p/google-web-toolkit/issues/detail?id=5659 Also, see at least one case where a developer (other than me) needed such a feature:

Request factory usage - error

2010-11-29 Thread markos
It looks like a miss configuration in my app, I'm using the Expenses sample of the trunk as guide for my implementation, and I'm trying to use the RequesFactory to implement the EntityProxy functionality (using the eclipse plugin), the thing is that my methods are not found for my Requests, the

Overlay types implementing server side model interfaces

2010-11-29 Thread toman
Hi, I would image that this has been discussed before but couldn't find direct topics on it. I'd like my overlay types to share common model interfaces with the server and so far i've succeeded pretty well but but now I ran into problems when my model objects contain a collection of other types

ServiceLayer API and SimpleRequestProcessor Issue

2010-11-29 Thread Eugene Goncharov
Dear Team, I'm working on the project right now that is based on the Google technologies stack(GWT, Guice, Google App Engine). My team and I wanted to make the overall project structure in domain-driven design style, so after the latest changes to GWT(the ones that currently in trunk version)

Calling Server Side code on Client Side

2010-11-29 Thread Tarun
I am creating a GWT based application using Google App Engine for Java. I have created a persistent class whose data is to be shown in a widget using GWT RPC calls. I run a query on the server side and pass its results as a List of objects of the persistent class in the *ServiceImpl class on the

.cache.html file size got double after upgrading to GWT 2.1 from 1.7

2010-11-29 Thread Jewel
Hi, We are developing a small application using gwt 1.7.1. The GWT compiler is generating .chache.html file for 6 permutation each one having size around 1 mega bytes. Wen we upgraded the gwt version to 2.1 suddenly we observed that the size of the .cache.html file got increased to 2.8 mega bytes

Re: Help me to get rid of these d... scrollbars!!! :-/

2010-11-29 Thread Magnus
Hi, I use this doctype: !doctype html It's the HTML page generated when creating a GWT project. The HTML page is nearly empty. It just contains a loading indicator which is removed on module load and replaced by the main panel. Magnus -- You received this message because you are subscribed

Re: Help me to get rid of these d... scrollbars!!! :-/

2010-11-29 Thread Magnus
Hi Jeff, why is this a hack? Why not use it? Magnus On Nov 29, 7:40 pm, Jeff Schwartz jefftschwa...@gmail.com wrote: BTW, you can use a hack:         body{            padding:0;            margin:0;             overflow:hidden;        } -- You received this message because you are

Drag-and-drop solution with GwtQuery

2010-11-29 Thread Julien Dramaix
Hello, I'm proud to announce you the first release of the drag-and-drop plugin for GwtQuery. This plugin allows you to make any DOM element draggable and/or droppable. In addition, it offers an API to add drag-and-drop support to your GWT widget including also the new data presentetation widgets.

Re: onChange event fired twice

2010-11-29 Thread Leung
Hi, Thank you very much for your reply. A new listbox is created and added to the arraylist when the onChange is fired. Every listbox has its own private inner ChangeHandler, and it is distinguished by the index of the listbox array. I have printed the index from onChange of the ChangeHandler.

FormPanel Example

2010-11-29 Thread Greg Dougherty
I have this vague memory that there was sample code showing how to use a FormPanel, with both client and server side code. Does such an example exist? I can't find it on SVN. Thanks, Greg -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: Drag-and-drop solution with GwtQuery

2010-11-29 Thread nino ekambi
Absolutely fantastic Great work , cheers Alain 2010/11/29 Julien Dramaix julien.dram...@gmail.com Hello, I'm proud to announce you the first release of the drag-and-drop plugin for GwtQuery. This plugin allows you to make any DOM element draggable and/or droppable. In addition, it offers

Re: Help me to get rid of these d... scrollbars!!! :-/

2010-11-29 Thread Jeff Schwartz
I did some googling on the subject of IE and vertical scroll bar issues and I found this: http://bytes.com/topic/html-css/answers/100111-remove-vertical-scrollbar-ie-when-standards-mode So I guess my hack isn't a hack after all :) IE is the biggest PITA to support. Jeff On Mon, Nov 29, 2010 at

Re: Help me to get rid of these d... scrollbars!!! :-/

2010-11-29 Thread Jeff Schwartz
Your doctype declaration is fine. See my later response. On Mon, Nov 29, 2010 at 2:55 PM, Magnus alpineblas...@googlemail.comwrote: Hi, I use this doctype: !doctype html It's the HTML page generated when creating a GWT project. The HTML page is nearly empty. It just contains a loading

GWT 2.1 Activities – nesting? YAGNI ? - an example of where you NEED it !

2010-11-29 Thread zixzigma
Hello Everyone, GWT MVP 2.1 has no direct support for complex layout/views and nested/ composite activities. ActivityManager only AcceptsOneWidget. To get around this design limitation, it was suggested to have multiple ActivityManagers, each responsible for a given display region. The example

Re: GWT 2.1 Activities – nesting? YAGNI ? - an exa mple of where you NEED it !

2010-11-29 Thread zixzigma
the article also argued, that having the same size/fixed regions leads to consistent layout. in the case of Fixed WIDTH, that is true. but if your regions have sub-regions, the sizing is no longer the Width, but rather the HEIGHT. our WEST region, can have WEST_NORTH, WEST_MAIN, WEST_SOUTH, and

Using the Lightweight Metrics System in my GWT code

2010-11-29 Thread JimmyJoe
Hi everyone, We have a class for capturing events in our Java code for performance monitoring, which I have ported to our GWT client code. Unfortunately, getting it to play nice with the Lightweight Metrics System has been a little frustrating. By itself, our performance monitoring classes work

is there a way to see or export the dynamic html?

2010-11-29 Thread Ray Tayek
hi, is any way to grab a copy of the dynamic stuff that my gwt app added to the dom? i have fierbug and see some of it, but i have poor vision and it would be nice to save it somehow. thanks --- co-chair http://ocjug.org/ -- You received this message because you are subscribed to the Google

Re: Frustrated with GWT Binder

2010-11-29 Thread Jeff Zhang
Paul, Thank you very much On Nov 27, 2:26 am, Paul Stockley pstockl...@gmail.com wrote: You need to add it to the RootLayoutPanel not the RootPanel. On Nov 26, 2:46 am,JeffZhangzjf...@gmail.com wrote: Hi all, I'd like to create a UI like the sample application Mail. But I meet

Re: Drag-and-drop solution with GwtQuery

2010-11-29 Thread zixzigma
WOW this is Fantastic !!! just looked at the demo, CellTable and CellTree are beyond amazing ! THANK YOU !!! i am super excited, going to experiment with the code very soon. Super Great, Thank You very much ! -- You received this message because you are subscribed to the Google Groups

New to GWT

2010-11-29 Thread Jerry Ragland
Hi Guys, I am new to GWT. I am in the process of developing a stand alone java application and found out that I can develop a stand alone app in java with GWT and use Adobe AIR to render it. I tried the StockWatcher sample that I found in the website, followed the instructions and it works great

Re: Request order

2010-11-29 Thread Kristof Pelckmans
Stefan, Did you read this post? http://groups.google.com/group/google-web-toolkit/browse_thread/thread/6d982ecf9398ddec Queueing your requests in the client guarantees server side execution order, albeit it might be a bit drastic. Is your locking/check mechanism generic? Kristof On Nov 21,

GWTTestCase: Unable to access objects returned from a successful RPC call

2010-11-29 Thread jtran
I've got a project I'm working on where I make an RPC call to the server which calls a webservice on a different domain, gets some XML, parses it, and then returns to me a Java object. Now I'm trying to unit test this and I'm running into a problem where my Java object is not accessible after

Generating build.xml file for web app

2010-11-29 Thread noob
Hi, I took over a fairly large gwt project from someone midway. I'm done with my app, but I don't know how to generate the ant build script now. I've tried the deploy module feature, but I get a Parse Error or Internal Design Error, log below:

Re: is there a way to see or export the dynamic html?

2010-11-29 Thread David Chandler
Snapshot (Firefox plugin) to the rescue... http://turbomanage.wordpress.com/2010/05/22/how-to-save-a-snapshot-of-a-web-page-including-gwt/ Enjoy! /dmc On Mon, Nov 29, 2010 at 8:23 PM, Ray Tayek rta...@ca.rr.com wrote: hi, is any way to grab a copy of the dynamic stuff that my gwt app added to

Re: New to GWT

2010-11-29 Thread David Chandler
Hi Jerry, Adobe AIR isn't officially supported on this forum, but IIRC there are some recent threads on the topic. You might also have a look at http://coova.org/node/86 HTH, /dmc On Mon, Nov 29, 2010 at 7:18 PM, Jerry Ragland jerryragl...@gmail.com wrote: Hi Guys, I am new to GWT. I am in

Re: Place image in object, send object over rpc, use hibernate to update database

2010-11-29 Thread David Chandler
Here's a recent article on how to do this with GWT + Google App Engine: http://ikaisays.com/2010/09/08/gwt-blobstore-the-new-high-performance-image-serving-api-and-cute-dogs-on-office-chairs/ /dmc On Mon, Nov 29, 2010 at 12:12 PM, Noor baken...@gmail.com wrote: Ya this is not possible in

Re: ACL in GWT

2010-11-29 Thread Adligo
Hi, Here is my take on how to do ACL (Access Control Lists) on a GWT RPC server (servlet). http://cvs.adligo.org/viewvc/adi_gwt_rpc_servlet/src/org/adligo/i/adi/server/rpc/AdiControllerServlet.java?view=markup Spring Security (and all other web 1.0 style HttpFilter security can only secure

Re: is there a way to see or export the dynamic html?

2010-11-29 Thread Ray Tayek
At 06:25 PM 11/29/2010, you wrote: Snapshot (Firefox plugin) to the rescue... http://turbomanage.wordpress.com/2010/05/22/how-to-save-a-snapshot-of-a-web-page-including-gwt/ got it. thanks On Mon, Nov 29, 2010 at 8:23 PM, Ray Tayek rta...@ca.rr.com wrote: hi, is any way to grab a copy of

Re: Generating build.xml file for web app

2010-11-29 Thread Ray Tayek
At 02:00 PM 11/29/2010, you wrote: ... but I don't know how to generate the ant build script ... i'm a newbie also. if you have the command line versio, create an app and copy and modify the build.xml (please see below). i just chabge the app name in about 7 places and it seems to work ok

Re: GWT 2.1 Activities – nesting? YAGNI ? - an exa mple of where you NEED it !

2010-11-29 Thread Ashton Thomas
Do you need to think of each area on the left and right as independent activities? can you, instead, create just one area for the left and have it be made of multiple widgets. So instead of having a full activity, you create each box area as it's own widget? So you would have one main activity

GWT MVP how to map a Composite Place to its corresponding Activities

2010-11-29 Thread zixzigma
Hello Everyone, Roo scaffolding creates ProxyPlace and ProxyListPlace. ProxyPlace is good if we need to deal with one EntityProxy at a time. in a more complex situation, where view might be consisted of multiple panels, many EntitiyProxies might be needed to populate those panels, and to make

Re: GWT 2.1 Activities – nesting? YAGNI ? - an exa mple of where you NEED it !

2010-11-29 Thread zixzigma
Thank you for your comments. So you would have one main activity for each major area with one view and could have multiple widgets that accomplish what your individual activities could? I had thought about this, but my concern is by doing so, we lose the navigation/history/bookmarking. in the

Modeling a simple 1 to Many relationship using Request Factory, Objectify...

2010-11-29 Thread Richard Berger
With much help from web sources and others, I got this working - won't be of any help to the smart folks out there - just the Morons Like Me (tm) :). Here's a link - don't make fun of my ancient MovableType blog - it was all the rage in the late 90s -

[gwt-contrib] Re: Factors out TypeOracleMediator.computeBinaryClassName() into a separate class file. (issue1144801)

2010-11-29 Thread Eric Ayers
Since the function isn't documented, I'm not sure what its supposed to return, but it looks to me like the getQualifiedBinaryName() method returns the same string in all cases where it is actually used. It has a TODO(scottb): remove me... and is rarely used: only in some error messages and as a

[gwt-contrib] Ensure RequestFactory is UTF-8 clean. (issue1158801)

2010-11-29 Thread bobv
Reviewers: rchandia, rjrjr, tbroyer, Description: Ensure RequestFactory is UTF-8 clean. Refactor existing RPC Unicode tests to allow re-use by RequestFactory. Issue 5474. Patch by: bobv, tbroyer Review by: rchandia Reported by: diego.dupin Please review this at

[gwt-contrib] First pass at Issue 1405 (Dialog Box header fix)

2010-11-29 Thread Jeff Larsen
Please review this at http://gwt-code-reviews.appspot.com/1149803/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Ensure RequestFactory is UTF-8 clean. (issue1158801)

2010-11-29 Thread rchandia
LGTM On 2010/11/29 15:59:13, bobv wrote: http://gwt-code-reviews.appspot.com/1158801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Ensure RequestFactory is UTF-8 clean. (issue1158801)

2010-11-29 Thread t . broyer
LGTM (note that it also fixes issue 5238, which is a dupe of 5474, AIUI) http://gwt-code-reviews.appspot.com/1158801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r9278 committed - Fixing a few bugs in Cell widgets....

2010-11-29 Thread codesite-noreply
Revision: 9278 Author: jlaba...@google.com Date: Tue Nov 23 02:17:31 2010 Log: Fixing a few bugs in Cell widgets. Issue 5625: Fixes a bug in CellBrowser where the first item in each list is not clickable because we are too optimistic about not reselecting a row that is already selected. Now

[gwt-contrib] Re: Factors out TypeOracleMediator.computeBinaryClassName() into a separate class file. (issue1144801)

2010-11-29 Thread zundel
http://gwt-code-reviews.appspot.com/1144801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Factors out TypeOracleMediator.computeBinaryClassName() into a separate class file. (issue1144801)

2010-11-29 Thread zundel
RPC depends on primitive types being expressed in JNI format, while other references to JType.getQualifiedBinaryName() depend on the primitive type names being boolean, int, ... I don't see good way to merge the two functions. Since this function is only referenced by the RPC subsystem, I

[gwt-contrib] [google-web-toolkit] r9279 committed - Reduces the size of the soyc report by combining many s...

2010-11-29 Thread codesite-noreply
Revision: 9279 Author: gwt.mirror...@gmail.com Date: Tue Nov 23 04:15:32 2010 Log: Reduces the size of the soyc report by combining many s mall files into larger files. Reduces the number of files generated by the report by up to a factor of 10 if you are using split points. - Split Point

[gwt-contrib] [google-web-toolkit] r9280 committed - Fixes two DevMode issues:...

2010-11-29 Thread codesite-noreply
Revision: 9280 Author: knor...@google.com Date: Tue Nov 23 04:56:18 2010 Log: Fixes two DevMode issues: 1 - Generic SingleImplJso interfaces are now mapped by their JGenericType in TypeOracle instead of their JParameterizedType since lookups in DevMode will use the generic type. 2 - Fixes a bug

[gwt-contrib] [google-web-toolkit] r9282 committed - Cherry picking EditTextCell and JavaDoc fixes into release branch.

2010-11-29 Thread codesite-noreply
Revision: 9282 Author: jlaba...@google.com Date: Wed Nov 24 05:29:07 2010 Log: Cherry picking EditTextCell and JavaDoc fixes into release branch. http://code.google.com/p/google-web-toolkit/source/detail?r=9282 Modified: /releases/2.1/user/src/com/google/gwt/cell/client/EditTextCell.java

[gwt-contrib] [google-web-toolkit] r9284 committed - Fixing JavaDoc warnings in Cell Widgets....

2010-11-29 Thread codesite-noreply
Revision: 9284 Author: jlaba...@google.com Date: Tue Nov 23 05:52:59 2010 Log: Fixing JavaDoc warnings in Cell Widgets. Review at http://gwt-code-reviews.appspot.com/1143801 Review by: p...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=9284 Modified:

[gwt-contrib] [google-web-toolkit] r9288 committed - Merge trunk r8971 into the 2.1 release branch....

2010-11-29 Thread codesite-noreply
Revision: 9288 Author: j...@google.com Date: Wed Nov 24 08:39:32 2010 Log: Merge trunk r8971 into the 2.1 release branch. Fix the DevMode Swing UI to avoid clipping buttons when the URL is too large or the window is resized. Patch by: jat Review by: fredsa

[gwt-contrib] [google-web-toolkit] r9289 committed - Add support for RpcTokens, which, if set, are sent with each RPCReques...

2010-11-29 Thread codesite-noreply
Revision: 9289 Author: me...@google.com Date: Tue Nov 23 13:47:33 2010 Log: Add support for RpcTokens, which, if set, are sent with each RPCRequest to the server. RpcTokens can be used to implement XSRF protection for GWT RPC calls. Review at http://gwt-code-reviews.appspot.com/1107801

[gwt-contrib] [google-web-toolkit] r9290 committed - Add 2nd constructor for backwards compatibility....

2010-11-29 Thread codesite-noreply
Revision: 9290 Author: me...@google.com Date: Tue Nov 23 15:46:55 2010 Log: Add 2nd constructor for backwards compatibility. Review by: j...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=9290 Modified: /trunk/user/src/com/google/gwt/user/server/rpc/RPCRequest.java

[gwt-contrib] [google-web-toolkit] r9291 committed - Update JUnit from DeferredCommand to Scheduler....

2010-11-29 Thread codesite-noreply
Revision: 9291 Author: gwt.mirror...@gmail.com Date: Mon Nov 29 12:12:46 2010 Log: Update JUnit from DeferredCommand to Scheduler. http://gwt-code-reviews.appspot.com/1145801/show Review by: con...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=9291 Modified:

[gwt-contrib] [google-web-toolkit] r9292 committed - Cleanup DOM after DoubleClickEventSinkTest tests complete...

2010-11-29 Thread codesite-noreply
Revision: 9292 Author: fre...@google.com Date: Wed Nov 24 08:37:51 2010 Log: Cleanup DOM after DoubleClickEventSinkTest tests complete Review at http://gwt-code-reviews.appspot.com/1150801 Review by: j...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=9292 Modified:

[gwt-contrib] Re: Add support for touch events for supported mobile webkit platforms. (issue867801)

2010-11-29 Thread fredsa
committed in r9287 http://gwt-code-reviews.appspot.com/867801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r9298 committed - Remove inadvertent commit of .rej file....

2010-11-29 Thread codesite-noreply
Revision: 9298 Author: j...@google.com Date: Mon Nov 29 11:16:39 2010 Log: Remove inadvertent commit of .rej file. Patch by: jat Review by: rjrjr (TBR) http://code.google.com/p/google-web-toolkit/source/detail?r=9298 Deleted: /trunk/user/src/com/google/gwt/user/client/ui/Label.java.rej

[gwt-contrib] Re: Fixing a few bugs in Cell widgets. (issue1141801)

2010-11-29 Thread jlabanca
committed as r9278 http://gwt-code-reviews.appspot.com/1141801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixing JavaDoc warnings in Cell Widgets. (issue1143801)

2010-11-29 Thread jlabanca
committed as r9284 http://gwt-code-reviews.appspot.com/1143801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r9299 committed - Remove the implementation from GWTTestCase checkpoints....

2010-11-29 Thread codesite-noreply
Revision: 9299 Author: sco...@google.com Date: Mon Nov 29 11:57:12 2010 Log: Remove the implementation from GWTTestCase checkpoints. http://gwt-code-reviews.appspot.com/1146801/show Review by: con...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=9299 Modified:

[gwt-contrib] Make ListEditorWrapper update its backing on flush(). (issue1159801)

2010-11-29 Thread rchandia
Reviewers: bobv, rjrjr, Description: Make ListEditorWrapper update its backing on flush(). Fixes Issue 5500. Please review this at http://gwt-code-reviews.appspot.com/1159801/show Affected files: M user/src/com/google/gwt/editor/client/adapters/ListEditorWrapper.java M

[gwt-contrib] Re: Passing the row index along with the row value to Cell methods. Currently, the row index is not ... (issue1129801)

2010-11-29 Thread jlabanca
I agree with most of the comments except passing values as separate arguments from the Context because it doesn't seem to make any difference. Do you have a convincing argument why it should be separated? http://gwt-code-reviews.appspot.com/1129801/diff/4001/5008 File

[gwt-contrib] [google-web-toolkit] r9300 committed - Cherry picking r9200 into release branch, fixes issue 5552

2010-11-29 Thread codesite-noreply
Revision: 9300 Author: rj...@google.com Date: Mon Nov 29 12:23:16 2010 Log: Cherry picking r9200 into release branch, fixes issue 5552 http://code.google.com/p/google-web-toolkit/source/detail?r=9300 Modified: /releases/2.1/dev/core/src/com/google/gwt/dev/jjs/impl/BuildTypeMap.java

Re: [gwt-contrib] Re: r9277 committed - Removing reference to designTime.getProvidedField()

2010-11-29 Thread Ray Ryan
Yes. -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Factors out TypeOracleMediator.computeBinaryClassName() into a separate class file. (issue1144801)

2010-11-29 Thread Eric Ayers
I commiserate. But this patch has nothing to do with that method. On Mon, Nov 29, 2010 at 4:53 PM, Scott Blum sco...@google.com wrote: On Mon, Nov 29, 2010 at 2:50 PM, zun...@google.com wrote: other references to JType.getQualifiedBinaryName() depend on the primitive type names being

  1   2   >