Re: Multiple Message classes vs Single Constant file huge size jump?

2009-06-10 Thread alex.d
Doesn't really matter whether you have your text in one or multiple properties-files. They are compiled in separate browser/language permutations anyway. On 10 Jun., 04:59, retro retrofit.br...@gmail.com wrote: Hi Guys,       I recently switched my UI to break down the constants into multiple

Re: GAE + GWT + password transfer

2009-06-10 Thread Shane
I've actually just noticed that Twitter itself uses Basic Auth: http://apiwiki.twitter.com/Authentication It says OAuth is in development, but that Basic Auth won't be going anywhere for the foreseeable future. The trouble is, Basic Auth is insecure:

Guice 2.0 servlet example

2009-06-10 Thread Dariusz
I'm trying to get the example of guice 2.0 running, but I can't figure out why it's not working. I try to do the same thing as on this page: http://code.google.com/p/google-guice/wiki/ServletModule Here is what I got: web.xml web-app id=WebApp_ID version=2.4 xmlns=http://java.sun.com/xml/

Re: how can set the body of html page color in gwt

2009-06-10 Thread daim
or you put RootPanel.get().setStyleName(body); in your onModuleLoad() function and use .body { background-color: #00; } in your css file :) On 9 Jun., 09:20, lml lalumlonl...@gmail.com wrote: Dear all, how can set the body of html page color in gwt. I gave body bg color ,its working

Re: Alternative (not monolithic) i18n builds?

2009-06-10 Thread dmen
You can use the Dictionary class Thank you, that is exactly what I wanted! but then you need to create a HTML for each locale. I plan to use server side locale resolution with a single JSP ;) --~--~-~--~~~---~--~~ You received this message because you are

Re: GAE + GWT + password transfer

2009-06-10 Thread Shane
Sorry to keep talking to myself here, but I find what other sites are doing really interesting, and pertinent to GAE because there doesn't seem to be an agreed upon solution. Facebook uses a form for their logins that posts to an HTTPS url: https://login.facebook.com/login.php? So does Google

APP engine JDO -Modeling Many 3 Many relationships

2009-06-10 Thread Keith Whittingham
@ManyToMany relationships are not supported in the current version. Example Library --- Book The tutorials suggest that they can be modeled with a ListKey pointing to the other object in each class. When implementing this I suspect that this forces an inefficient query to populate the, say

Re: Changing GWTs hosted mode browser.

2009-06-10 Thread Axel Kittenberger
Ok,I built OOPHM according to this: http://allahbaksh.blogspot.com/2009/02/building-gwt-oophm-from-source.html Now when I try to compile my project with the created gwt-oophm I get:

Re: GWT Compiler Question

2009-06-10 Thread Dariusz
Yes, it is possible. You need to do 2 things. 1. In your gwt module you need to call the rename-to attribute like this: module rename-to=members ... /module 2. Your ant script need to be modified. I found some pieces here and there and it looks like this: ... target name=compile-gwt

Re: Generic MemCache Facade - Please Comment To Improve The Design. Thanks! :-)

2009-06-10 Thread nellyville
sorry, meant to post this in the app engine group. On Jun 9, 2:32 am, nellyville david.jonathan.nel...@gmail.com wrote: package com.DatingSocial.server; import java.util.Collections; import javax.cache.Cache; import javax.cache.CacheException; import javax.cache.CacheManager; import

Server initialization

2009-06-10 Thread Keith Whittingham
Anyone know of a nice way of initializing the server before the client gets busy. The only thing I can think of is overriding init() in every *.serverXServerImpl and have it call my initialization stuff, e.g. @Override public void init() throws ServletException {

Re: Server initialization

2009-06-10 Thread Peter Ondruška
Well, that is what I am doing. I open resources like database in init method and close in destroy. Peter 2009/6/10, Keith Whittingham kwhitting...@gmail.com: Anyone know of a nice way of initializing the server before the client gets busy. The only thing I can think of is overriding init()

Re: Which browser for each GWTShell/HostedMode port?

2009-06-10 Thread Thomas Broyer
On 10 juin, 12:33, Olivier Hoareau reywil...@gmail.com wrote: I can't seem to find a comprehensive list of which web browser (and which version) is used in the GWTShell for mac os/windows/linux. Same question for HostedMode with GWT 1.6. :) HostedBrowser == GWTShell wrt to the embedded

Unit testing GWT and App Engine in Eclipse

2009-06-10 Thread Johan Lundberg
Have been trying to make a unit test for my GWT and App Engine app but there is something I do wrong and I cannot find any documentation about this combination. http://code.google.com/webtoolkit/tutorials/1.6/appengine.html shows the relation between gwt and appengine but it doesn't explain how

Event handler for model ?

2009-06-10 Thread Dalla
Hi I´m having trouble understanding how to implement an event handler for my custom objects with the new event handler system. Let´s pretend I have a very simple model class like this one: public class ArrivalData { private Date date; private boolean processing = false;

Rebind for Android/Webkit?

2009-06-10 Thread Evan Ruff
Hey guys, I'm trying to add some rebind parameters for an Android implementation of my application and I just can't seem to get it to work right. In my Application.gwt.xml I'm doing this: define-property name=WebKit values=yes,no/ property-provider name=WebKit![CDATA[ return

Re: Application out of Date error

2009-06-10 Thread savioseb
What if you want to keep the object detachable? On May 12, 10:59 pm, Fred Sauer fre...@google.com wrote:  2009/5/12 Miguel Méndez mmen...@google.com I must admit that I've not personally researched it.  I think that it has been discussed on the appengine user group however.  You may also

Re: Generic MemCache Facade - Please Comment To Improve The Design. Thanks! :-)

2009-06-10 Thread Alejandro D. Garin
Hi, I'm using a class like yours but without generics because You need to instanciate a MemCache object for every type you want to cache. I use my class as a singleton and inyected with spring where I need it. Regards, On Wed, Jun 10, 2009 at 7:09 AM, nellyville david.jonathan.nel...@gmail.com

Re: Unit testing GWT and App Engine in Eclipse

2009-06-10 Thread Jason Parekh
Hi Johan, I don't think there are any frameworks that can let you test a round-trip between the two. Instead, you'll likely want to test each side individually (see http://code.google.com/appengine/docs/java/howto/unittesting.html for App Engine junit testing). If you're using the Eclipse

ListBox CSS

2009-06-10 Thread stephen.sm...@paretopartners.com
I have 2 seperate problems although im sure there related. Firstly i have a greyout panel (custom made), that is added to the RootPanel, the full height and width of the page and has the following css style: .panel-GlassPanel { background-color: black; filter:alpha(opacity=50);/** 50%

Re: Which browser for each GWTShell/HostedMode port?

2009-06-10 Thread Olivier Hoareau
Merci Thomas! Thanks! So it's likely that I'll have to get my firm give me a MacBook for debugging purpose :D --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

GWT+Gadget+OpenSocial anybody has experience

2009-06-10 Thread vetal
Hi, all! I develop gadget with GWT and google-gadget-api it's realy nice technology, but now i want use OpenSocial lib for my gadget. Anybody try do it, if yes plase help me for start or maybe you have short example it will be great. I will be glad of any help. Thanks and best regards, Vitaly.

Re: GWT+Gadget+OpenSocial anybody has experience

2009-06-10 Thread Eric Ayers
If you are adventurous, there is a set of bindings under development in the SVN respository of the http://code.google.com/p/gwt-google-apis project. Look under the svn/changes/haeberling directory. On Wed, Jun 10, 2009 at 10:34 AM, vetalvitaly.parfo...@gmail.com wrote: Hi, all! I develop

Re: GWT+Gadget+OpenSocial anybody has experience

2009-06-10 Thread Vitaly Parfonov
Thanks, Eric for reply! Where i can find some docs about this project? And as i see last commit in this project be Last Changed Date: 2008-12-15 20:14:18 +0200 (Mon, 15 Dec 2008) so is this are live project? 2009/6/10 Eric Ayers zun...@google.com: If you are adventurous, there is a set of

Re: Scriptaculous appear effect with PNG with transparency shows black background on IE

2009-06-10 Thread Jason Essington
Which version of IE? IE 6 doesn't really support PNG transparency, and requires an activeX hack which may implode with the effects. -jason On Jun 9, 2009, at 8:31 PM, mrpantsuit wrote: I'm actually using the GWT Widget Library's Effect class, which has an Effect.appear(Widget) method. On

Re: Changing GWTs hosted mode browser.

2009-06-10 Thread Jason Essington
Try trunk rather than the OOPHM branch. I believe that the most current OOPHM code is located there. Though you may still need to grab the browser plugins from the older branch. -jason On Jun 10, 2009, at 2:20 AM, Axel Kittenberger wrote: Ok,I built OOPHM according to this:

Re: Browser (IE) hangs when launched a GWT application in a child window

2009-06-10 Thread Maddy
Any thoughts on this? Please help me. It is very urgent. On Jun 5, 5:58 pm, Maddy msures...@gmail.com wrote: Hi gpike, Thank you very much for the information.Can you little bit explain more how to handle the outstanding rpc requests? Maddy On Jun 5, 4:02 pm, gpike gop...@gmail.com

Re: Changing GWTs hosted mode browser.

2009-06-10 Thread Axel Kittenberger
Ok thanks, can you give any easy guidelines how to alter ones build.xml so hosted mode fires the new window, and launches firefox (like in the branch) instead of the buildin mozilla 1.7.2? On 10 Jun., 16:49, Jason Essington jason.essing...@gmail.com wrote: Try trunk rather than the OOPHM

Re: GWT+Gadget+OpenSocial anybody has experience

2009-06-10 Thread Eric Ayers
The project is not dead, just resting peacefully at the moment. In another change branch under changes/zundel I've been working on an update to the gwt-gadgets library that uses the open social spec, but it hasn't been a high priority. On Wed, Jun 10, 2009 at 10:45 AM, Vitaly

Re: Left Menu on this group!

2009-06-10 Thread John Ivens
I thought I was the only one who thought this guy was a couple cans short of a six-pack. On Tue, Jun 9, 2009 at 3:45 PM, Ian Bambury ianbamb...@gmail.com wrote: What *are* you on about? Still, it's one way to introduce yourself to the group :-) Plonk! Ian http://examples.roughian.com

Re: GWT+Gadget+OpenSocial anybody has experience

2009-06-10 Thread Vitaly Parfonov
Hi, again i try use this lib http://gwt-google-apis.googlecode.com/svn/changes/haeberling but the i try build my simple gadget with inherits name=com.google.gwt.opensocial.OpenSocial / i get this error Removing units with errors [ERROR] Errors in /com/google/gwt/opensocial/client/IdSpec.java'

sessions

2009-06-10 Thread Peter Kirklewski
Hi there I'm completely green in the mater of sessions. I have a Login screen and using RPC, I'm connecting to postgres database and am validating the username and password. This part goes fine, but I would like to create a session so the user gets cicked out if he's trying to force a bad

Re: Scriptaculous appear effect with PNG with transparency shows black background on IE

2009-06-10 Thread Kevin Wong
Sorry, I should have specified that. The problem occurs in both IE6 and IE8. (I didn't test on IE7, but I assume it's the same.) I don't think the problem is due to the lack of PNG transparency support in IE6, since it also occurs in IE8; but is perhaps a subclass of that problem related to

Re: GWT+Gadget+OpenSocial anybody has experience

2009-06-10 Thread Eric Ayers
Hmm, I didn't realize quite how adventurous you'd need to be. It looks like there are bugs in the API that need to be worked out. On Wed, Jun 10, 2009 at 11:39 AM, Vitaly Parfonovvitaly.parfo...@gmail.com wrote: Hi, again i try use this lib

Re: GWT - JSON - PHP

2009-06-10 Thread ANDRES BRUN
Hi Ian Thank you for your answer, I think that I'm not walk for the wrong way but haven't the results that I hope, this is my code: PHP ?php //Incluir JSON.php require_once(JSON.php); //Consulto la Base de Datos MySQL y obtengo los resultados $conector =

Re: Eclipse - GWT - ClassNotFoundException in StockWatcher RPC tutorial

2009-06-10 Thread Marty Fried
Sorry, I didn't include it... there's a link in the tutorial for jUnit: http://code.google.com/webtoolkit/tutorials/1.6/projects/GettingStarted.zip On Jun 9, 1:25 am, Paul Hargreaves cbassthef...@yahoo.co.uk wrote: Hi, Thanks for your reply Marty. Does anyone have a link handy to the

Re: Change GWT locale dynamically

2009-06-10 Thread Ronny Bubke
There is no way to change the locale without a reload. This is because GWT-Compiler generates several permutations of js-files. For each locale and for each browser type one. Reason is to optimize javascript size because just the code which is needed for browser and locale is really transfered.

Mysql access dienied in GWT hosted mode

2009-06-10 Thread Bonor
When doing a RPC call my Service get's an Access Denied error when trying to connect with mysql. java.security.AccessControlException: access denied (java.lang.RuntimePermission modifyThreadGroup) Where do i grant access? Suggestions? --~--~-~--~~~---~--~~ You

Run javascript functions from Java String

2009-06-10 Thread Ganaga
Hello, I have a Java object (client side) that contains a snippet of Javascript. Example: String s = window.alert(); Is there a way to execute the content of that String ? I mean is there a way to generate Javascript code on the fly ? Thanks Ganael

Re: Run javascript functions from Java String

2009-06-10 Thread Ian Bambury
Create a jsni method which takes a string and just does an 'eval' - as long as you are sure that the JS is safe Ian http://examples.roughian.com 2009/6/10 Ganaga ganael.jatt...@gmail.com Hello, I have a Java object (client side) that contains a snippet of Javascript. Example: String s

Re: GWT Support for other browsers

2009-06-10 Thread Jeff Chimene
On 06/08/2009 07:54 PM, proge wrote: Is there a way to make GWT support other browsers? We have project for IPTV, and would like to use GWT to build the UI. But the settop box we use is having ANT Galio browser in that, I tried to create a sample project with few controls but unfortunately it

Re: Server initialization

2009-06-10 Thread Jamie
You might try using the servlet configuration 'load-on-startup' setting in your web.xml servlet definition. You could also define your own base class and derive your servlets from that so you at least have the code in one place... Jamie. --- Search for analog and digital

Re: Return type of AsyncCallback methods

2009-06-10 Thread Dalla
Simply put, you don´t, because the call itself won´t return anything. The return type is defined inside the AsyncCallback. If you have an interface like so: public interface GreetingServiceAsync { void greetServer(String input, AsyncCallbackString callback); } String will be your

Re: tested browsers

2009-06-10 Thread mike
I'm really surprised others don't care about this? From your own experience what are the edge case browsers that need the most testing when you're building with GWT? -Mike On Jun 9, 4:48 am, dmen dmenou...@gmail.com wrote: +1 I would realy like to know about this too.

Re: Return type of AsyncCallback methods

2009-06-10 Thread Isaac Truett
I think you might be importing the wrong Request class. The one you want is com.google.gwt.http.client.Request. Is that the class you are importing? Could probably tell you more if you provided the compilation error. :) On Wed, Jun 10, 2009 at 1:29 PM, Maddy msures...@gmail.com wrote: Hi,

Re: Return type of AsyncCallback methods

2009-06-10 Thread Ian Petersen
On Wed, Jun 10, 2009 at 11:15 AM, Dalladalla_man...@hotmail.com wrote: Simply put, you don´t, because the call itself won´t return anything. That's not actually true. I've never done what Maddy is suggesting myself, so, sorry Maddy, I can't directly answer your question except by suggesting

Re: Return type of AsyncCallback methods

2009-06-10 Thread Maddy
Hi, I am using GWT1.4.61 and I guess, I can not use generics syntax. Even in the above example, If I change the return type from String to 'Request'. How can I get the string value, which is actually the response. I need the 'request' object only to handle the state of that. Thanks Maddy On

Re: Return type of AsyncCallback methods

2009-06-10 Thread Maddy
Yes. I need the Handle on the RPC request, so that I can cancel, if that is pending. On Jun 10, 2:29 pm, Maddy msures...@gmail.com wrote: Hi, I am using GWT1.4.61 and I guess, I can not use generics syntax. Even in the above example, If I change the return type from String to 'Request'.

Re: GWT Incubator - ScrollTable with TextBox

2009-06-10 Thread Isaac Truett
I think you want getWidget(), not getText(). Cast the result to TextBox (or perhaps HasText if you want something more generic) and get the text from that. On Sun, Jun 7, 2009 at 1:39 PM, abhiram abhir...@gmail.com wrote: Hi all,   I wanted to know if Scrolltable is a panel good enough to

Re: tested browsers

2009-06-10 Thread Ian Bambury
2009/6/10 mike mikebannis...@gmail.com I'm really surprised others don't care about this? I'm not. From your own experience what are the edge case browsers that need the most testing when you're building with GWT? Chrome. As long as you use the right doctype, level the browsers in

Re: GWT Incubator - ScrollTable with TextBox

2009-06-10 Thread Peter Kirklewski
Hi there Anyone who played with chronoscope and eclipse and knows somw good tutorials please ? Best regards Peter --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

chronoscope

2009-06-10 Thread Peter Kirklewski
Peter Kirklewski wrote: Hi there Anyone who played with chronoscope and eclipse and knows somw good tutorials please ? Best regards Peter --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Re: GWT Incubator - ScrollTable with TextBox

2009-06-10 Thread abhiram wuntakal
Thanks Isaac, I found an other way to get the logic working. it was necessary so that i could conviniently delete the row, save the row data and other such activities!!! thanks again... regards, Abhiram On 6/11/09, Isaac Truett itru...@gmail.com wrote: I think you want getWidget(), not

Re: Given: One WAR archive; three independent Host Pages; common client and server code. Question: How to best organize such project(s) and have each HTML page load only its used code?

2009-06-10 Thread Chris
You can use a Module as a dependency without giving it an entry point, but then you cannot refer directly to that module on your html page. You need to include it via the 'inherits' mechanism in the module's gwt.xml file. Your initial idea was right - make each of the 3 modules that have pages

Re: LoginSecurityFAQ and sessionID/tokens

2009-06-10 Thread eags
I found one discussion with the author of the LoginSecurityFAQ where they ask this exact question and he does state that using a random sessionID other than the one automatically included in the http header generated by the servlet is best. (http://groups.google.com/group/

Re: LoginSecurityFAQ and sessionID/tokens

2009-06-10 Thread eags
LoginSecurityFAQ is here BTW (http://code.google.com/p/google-web- toolkit-incubator/wiki/LoginSecurityFAQ) On Jun 10, 12:28 pm, eags eagsala...@gmail.com wrote: I found one discussion with the author of the LoginSecurityFAQ where they ask this exact question and he does state that using a

Re: Return type of AsyncCallback methods

2009-06-10 Thread Jason Essington
it isn't the callback methods, but rather the return type of the method in your Async Interface so rather than void doSomething(AsyncCallback cb); it would be Request doSomething(AsyncCallback cb); Though I believe that is only available from GWT 1.5 on -jason On Jun 10, 2009, at

Possible to insert a widget into the DOM?

2009-06-10 Thread peterk
Hey all, I'm walking the DOM tree and would like to append a Widget to certain nodes where certain conditions are met, but I'm not having much success. appendChild expects a Node as its parameter, so I can't just append a type of Widget. It will accept Widget.getElement() as a parameter, but

Re: Possible to insert a widget into the DOM?

2009-06-10 Thread Jason Essington
Probably the safest thing to do would be to insert an element, then use the widget's .wrap() method to promote that element to a widget. there are other ways, but they are prone to leaking memory. -jason On Jun 10, 2009, at 1:36 PM, peterk wrote: Hey all, I'm walking the DOM tree and

Re: LoginSecurityFAQ and sessionID/tokens

2009-06-10 Thread Jamie
java.util.Random random = new Random(); String sessionID = Long.toHexString(random.nextLong()); This will generate a 64 bit random number. or you could use a Base64 encoder instead of using a hex string. You might consider also adding the user's IP address into your table, so that you can tie

Read from XML File

2009-06-10 Thread Kinjal Khandhar
Hello All, I am using GWT-Ext Editors grid example and I tried the code given on the site. http://www.gwt-ext.com/demo/#editableGrid I don't know where do I keep the xml file in the folder structure and also what are the other locations where I need to inherit that xml file. Please help if

So Many Forum Messages per day... Can things be split up at all?

2009-06-10 Thread Paul Hargreaves
There are so many messages appearing on this forum that my inbox is so full that there are rivers of unseen questions floating down the road. I am not sure whether this is run by google or publicly run. In any case it is hard to keep track of messages. Is there any way you can create

Re: PureMVC and GWT 1.6 / GXT?

2009-06-10 Thread aquinault
Hi, The official release of PureMVC GWT compliant is: http://trac.puremvc.org/PureMVC_Java_MultiCore I've released the port of the employee admin which is visible on: http://employeeadm.appspot.com/ The source code will be released soon in the official PureMVC repository. On 26 mai, 19:36,

gwt form

2009-06-10 Thread zhyar
Dear All, I want to create a GWT form via POST method and send the data to the PHP file through JSON. So please can anyone help me. Regards, Zhyar. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Bookmarkable link to a GWT page

2009-06-10 Thread Kady
Using GWT on a webpage, is there a way one can provide a bookmarkable link to the page with query parameters containing the values of the form elements? The form itself is being developed in GWT and its elements will have AJAX functionality built into them. We want the link to be similar to

Re: Return type of AsyncCallback methods

2009-06-10 Thread Maddy
Thanks Jason, It is not supported in GWT 1.4.61 Thanks Maddy On Jun 10, 3:29 pm, Jason Essington jason.essing...@gmail.com wrote: it isn't the callback methods, but rather the return type of the   method in your Async Interface so rather than    void doSomething(AsyncCallback cb); it

Re: Help with EventHandlers

2009-06-10 Thread Iván López
Thank you very much!. It works ok and now, with my code working I think I understand a little bit better how handlers works!. Muchas gracias compañero. Saludos, Iván. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

ImageBundle reuse images

2009-06-10 Thread mrpantsuit
This might be a stupid question, but can I use the same Image created from an ImageBundle in multiple places on my page? I guess the more general question is can I use the same Image in multiple places in my page. I assume so. --~--~-~--~~~---~--~~ You received

Re: Possible to insert a widget into the DOM?

2009-06-10 Thread peterk
Hey Jason, Thanks for your reply! I'm afraid I'm still running into problems here. First, even just trying to insert an element. I have this code: SpanElement test_element = Document.get().createSpanElement(); test_element.setInnerText(Hello there); currentNode.appendChild(test_element);

Using Filters

2009-06-10 Thread eags
I'd like to use Filter to implement all my security checks as a gateway to each gwt rpc call. I'm going to include a sessionID from the client as an argument to each RPC call. I'd like my filter in doFilter to be able to pull off that argument and check if the user is logged in and see what

Question about SuggestBox.wrap

2009-06-10 Thread Ben
I have a text box insides a FlexTable and I am trying to use SuggestBox.wrap to wrap the text box into a SuggestBox. Code snippet is like this. . FlexTable ft = new FlexTable(); TextBox tb = new TextBox(); ft.setWidget(0,0,tb); MultiWordSuggestOracle oracle = new MultiWordSuggestOracle();

Re: Changing GWTs hosted mode browser.

2009-06-10 Thread Axel Kittenberger
Thanks for the link! This is how I did it: * checked out oophm branch, installed browser plugin from there, ignored the branch for the rest (now I see I simply could have used link from the guide) * checked out trunk/tools, build it (had to comment out something about svninfo, cause of error,

Using Frameset in GWT1.6

2009-06-10 Thread sajil
I have a requirement where I want to include a frameset in my Module.html file. But some how my onModuleLoad is not getting called when I load the page. Here is what I am including in my Module.html file and I do have calls to onLoad function in each of these HTML includes. frameset

Re: GWT - JSON - PHP

2009-06-10 Thread ANDRES BRUN
Thank you Ian, I could solved the problem, with your indications. Regards Andres On Wed, Jun 10, 2009 at 12:29 PM, Ian Bambury ianbamb...@gmail.com wrote: In the PHP, I do something like this: $result_array = array(); while($row = mysql_fetch_assoc($result)) {

chronoscope

2009-06-10 Thread Peter Kirklewski
Hi there Did anyone of you used the chronoscope ? I can't find a proper tutorial on it. Reagrds Peter --~--~-~--~~~---~--~~ 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: Application out of Date error

2009-06-10 Thread Fred Sauer
I'd recommending reading Ray Cromwell's blog. He goes into detail about the options you have. Fred 2009/6/10 savioseb savio...@gmail.com What if you want to keep the object detachable? On May 12, 10:59 pm, Fred Sauer fre...@google.com wrote: 2009/5/12 Miguel Méndez mmen...@google.com

Is it possible to call the GWT Service outside the entry point?

2009-06-10 Thread retha pasalli
Hi everybody... I want to know whether I can call the AsyncCallback outside the entry point. I have tried to create a class named UserServiceCall to call all service to retrieve and insert/edit/delete User data. The class contain the code to call the service (AsyncCallback object with

how to read http requests sent by google web toolkit

2009-06-10 Thread chitgoks
hi i am logging in to a site that uses gwt. when i check the requests sent, they are gibberish, like com.gwt.classname instead of query string parameters. is there a program that can read what query string parameters are sent and what the action url is?

Re: $doc.selection is undefined in GWT

2009-06-10 Thread bhomass
found the answer. FF uses $wnd.getSelection().getRangeAt(0) thanks for all the help. --~--~-~--~~~---~--~~ 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-contrib] Re: Moving PagingScrollTable Friends to Trunk

2009-06-10 Thread dflorey
Hi, I'd like to support this effort and would be glad if some of my changes would make it into trunk: - filters - column types for most frequently used column types (numbers,dates,text) including proper filtering, editing and sorting capabilities - simplified table generation ( see

[gwt-contrib] Re: Moving PagingScrollTable Friends to Trunk

2009-06-10 Thread Bruce Johnson
I'll be the bad guy and try to lower expectations: whatever we end up doing, it has to be fast. We've seen some *horrible* usability problems with fancy tables -- even at a small number of rows -- and so don't be surprised if we have to pare back features and reduce API flexibility to ensure that

[gwt-contrib] Re: Moving PagingScrollTable Friends to Trunk

2009-06-10 Thread John LaBanca
@jay - I got side tracked with other tasks, but I'll pick up the PagingScrollTable effort within a couple of weeks. The main goal when we transfer the PagingScrollTable to GWT trunk is to separate the concept of scrolling (with three distinct tables) from the rest of the code. That way, we can

[gwt-contrib] Re: i18n support for concrete default locale

2009-06-10 Thread Freeland Abbott
Yes, he and I already discussed it. I was initially trying to avoid needing a new XML tag when the existing one was such a near fit, but the legacy linker support issues convinced me we needed it. On Tue, Jun 9, 2009 at 5:37 PM, Bruce Johnson br...@google.com wrote: I like what jat said.

[gwt-contrib] Re: Moving PagingScrollTable Friends to Trunk

2009-06-10 Thread Isaac Truett
Re: Bruce's point about expectations and features vs. performance. Has there been (or should we start) discussion for the public record of different facets/features of tables, their impact on performance, and their possible class structure? What I'm thinking of specifically is bulk rendering vs.

[gwt-contrib] Puts the htmlbody/head//html cruft back into the compiled output (c.f. issue 3738)

2009-06-10 Thread scottb
LGTM http://gwt-code-reviews.appspot.com/34834 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Changing JsArrayT extends JavaScriptObject to JsArrayT

2009-06-10 Thread Lex Spoon
On Tue, Jun 9, 2009 at 11:03 AM, Stefan Hausteinhaust...@google.com wrote: On Tue, Jun 9, 2009 at 3:50 PM, Lex Spoon sp...@google.com wrote: On Mon, Jun 8, 2009 at 7:22 PM, Bruce Johnsonbr...@google.com wrote: Please also look at the compiled JS. I think the less restrictive bound will

[gwt-contrib] Re: Changing JsArrayT extends JavaScriptObject to JsArrayT

2009-06-10 Thread Lex Spoon
Bah, mis-send. What I was typing was: I though the point was to get rid of JRE collections?  Anyway, the collection in question is used as a queue.  I would hate to see its performance get worse when there' ...when there's a known, straightforward alternative, and when that alternative

[gwt-contrib] Re: Puts the htmlbody/head//html cruft back into the compiled output (c.f. issue 3738)

2009-06-10 Thread jgw
Reviewers: scottb, Lex, Message: On 2009/06/10 17:40:23, scottb wrote: LGTM Committed as r5532. Please review this at http://gwt-code-reviews.appspot.com/34834 Affected files: M dev/core/src/com/google/gwt/core/linker/IFrameLinker.java Index:

[gwt-contrib] [google-web-toolkit commit] r5532 - Fixes missing head element in the script frame on Safari 3 (issue 3738).

2009-06-10 Thread codesite-noreply
Author: j...@google.com Date: Wed Jun 10 10:49:08 2009 New Revision: 5532 Modified: trunk/dev/core/src/com/google/gwt/core/linker/IFrameLinker.java Log: Fixes missing head element in the script frame on Safari 3 (issue 3738). Review: http://gwt-code-reviews.appspot.com/34834 Modified:

[gwt-contrib] [google-web-toolkit commit] r5533 - Merge trunk r5532 into the 6/2 snapshot branch.

2009-06-10 Thread codesite-noreply
Author: j...@google.com Date: Wed Jun 10 12:10:45 2009 New Revision: 5533 Modified: branches/snapshot-2009.06.02-r5498/branch-info.txt branches/snapshot-2009.06.02-r5498/dev/core/src/com/google/gwt/core/linker/IFrameLinker.java Log: Merge trunk r5532 into the 6/2 snapshot branch.

[gwt-contrib] Re: More if-statement optimizations in JsStaticEval

2009-06-10 Thread scottb
LGTM. Want to point out that we can optimize some of these even better in cases where the nested code is an expression statement. http://gwt-code-reviews.appspot.com/33845/diff/1/2 File dev/core/test/com/google/gwt/dev/js/JsStaticEvalTest.java (right):

[gwt-contrib] fix a crash in code the JDT considers dead

2009-06-10 Thread spoon
Reviewers: scottb, Description: GenerateJavaAST can crash when trying to convert code the JDT compiler considers dead, because in such a case the JDT will leave ill-formed code in the tree. This patch covers one such case: if a block of code contains an if(true) that contains a throw, the JDT

[gwt-contrib] Re: fix a crash in code the JDT considers dead

2009-06-10 Thread scottb
LGTM, but could we handle if (false) also? It can only make our optimizations better. http://gwt-code-reviews.appspot.com/34835/diff/1/3 File dev/core/src/com/google/gwt/dev/jjs/ast/JIfStatement.java (right): http://gwt-code-reviews.appspot.com/34835/diff/1/3#newcode64 Line 64: if (thenStmt

[gwt-contrib] Re: More if-statement optimizations in JsStaticEval

2009-06-10 Thread Matt Mastracci
SGTM. I'll start a new review with the remainder of the changes. On 10-Jun-09, at 2:16 PM, Scott Blum wrote: I thought I'd go ahead and commit what you have so far, if you don't object? On Wed, Jun 10, 2009 at 4:12 PM, mmastrac.altern...@gmail.com wrote: I'll update the patch with this

[gwt-contrib] [google-web-toolkit commit] r5534 - Creating new branch for crawlability work.

2009-06-10 Thread codesite-noreply
Author: kpro...@google.com Date: Wed Jun 10 13:52:50 2009 New Revision: 5534 Added: branches/crawlability/ - copied from r5533, /trunk/ Log: Creating new branch for crawlability work. --~--~-~--~~~---~--~~

[gwt-contrib] Re: fix a crash in code the JDT considers dead

2009-06-10 Thread spoon
Sure, will do. http://gwt-code-reviews.appspot.com/34835 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] [google-web-toolkit commit] r5535 - Guard DOMImplIE6.hasAttribute(name) against returning undefined, which IE8 apparently can...

2009-06-10 Thread codesite-noreply
Author: fabb...@google.com Date: Wed Jun 10 14:19:15 2009 New Revision: 5535 Modified: trunk/user/src/com/google/gwt/dom/client/DOMImplIE6.java Log: Guard DOMImplIE6.hasAttribute(name) against returning undefined, which IE8 apparently can do. Review by: jgw, jlabanca Modified:

[gwt-contrib] [google-web-toolkit commit] r5537 - Ant rework for speed:

2009-06-10 Thread codesite-noreply
Author: fabb...@google.com Date: Wed Jun 10 14:39:00 2009 New Revision: 5537 Added: trunk/build-tools/ant-gwt/src/com/google/gwt/ant/taskdefs/LatestTimeJar.java trunk/user/test_i18n_bar/ trunk/user/test_i18n_bar/com/ trunk/user/test_i18n_bar/com/google/

[gwt-contrib] ant improvements, round 1

2009-06-10 Thread Freeland Abbott
As of r5537, my no-change ant build takes 1:55 instead of 19:43, and there's still some easy work to do, albeit with obviously diminishing returns Most of that difference is due to a rather annoying timestamp consideration with directory entries in jars; my patch introduces a new Ant task,

[gwt-contrib] Re: ant improvements, round 1

2009-06-10 Thread Scott Blum
w00t!! On Wed, Jun 10, 2009 at 5:47 PM, Freeland Abbott fabb...@google.com wrote: As of r5537, my no-change ant build takes 1:55 instead of 19:43, and there's still some easy work to do, albeit with obviously diminishing returns Most of that difference is due to a rather annoying timestamp

  1   2   >