Very urgent GWT deployment on Godaddy shared hosting. Very urgent

2009-07-01 Thread sajil
I am trying to deploy a GWT project to GoDaddy shared hosting with tomcat 5.0.27. The apps work fine on the hosted Jetty server and also on my local Tomcat. I get the issue when I deploy it on the Shared Tomcat env. I have spend more than 2 weeks now to find a solution and totally frustrated out

opacity filter in ie6

2009-07-01 Thread bradr
I have a calendar component that I am building: souce @ http://code.google.com/p/gwt-cal demo @ http://google.latest.gwt-web-calendar.appspot.com/ I am having problems with opacity and ie6, using the filter:alpha (opacity=x). If you view the above demo in IE6 you will see that opacity is not

pressing tab key some times goes out of modal window

2009-07-01 Thread pepgrifell
hi there, I have a modal window with some fields. After pressing tab key some times, it goes out of modal window and focus it's placed in url. If I keep pressing tab key, I can go to the main application and do other things (for example, put the focus in another button, press the return key and

Re: How to load a url in a panel?

2009-07-01 Thread Sowjanya Yerramneni
Hi Waf, Thanks for your response. I have made this change and now I could see the error which says Resource not found: com.myPack.FirstGridApp.nocache.js; (could a file be missing from the public path or a servlet tag misconfigured in module com.myPack.LoginSearch.gwt.xml ?) LoginSearch is my

Re: GWT-generated Webpage fails to display on IE

2009-07-01 Thread snikrot
I tried both solutions, with no result. I'm testing it on both IE7 and IE8. Thought it fails to run on both. GREP -rn undefined grep -rn undefined * verenweb/B4235FD66736D1D8EBE34C5FC05A7C85.cache.html:1770: wnd.__gwt_initWindowCloseHandler = undefined;

Re: Page navigations in GWT

2009-07-01 Thread Sowjanya Yerramneni
I didnt know we can use a jsp page. The EntryPointClassName.html is your default right? If we have to give a jsp as the first page and then call the onmodule load class and all the gw stuff what all should we follow. Especially in terms of configurations and all. Please guide. On Wed, Jun 24,

Re: Page navigations in GWT

2009-07-01 Thread Sowjanya Yerramneni
Also how do you make the login user persist throughout the session. Like in MVC architecture we have request.getRemoteuser and all How do we use cookies in gwt to maintain user sessions? On Wed, Jul 1, 2009 at 2:07 PM, Sowjanya Yerramneni y.sowja...@gmail.comwrote: I didnt know we can use a

Re: Excel and GWT

2009-07-01 Thread Leon
One more way to read Excel sheet is to use jXLS library (http:// jxls.sf.net). In this case you just need to write an XML which maps Excel data to Java beans as explained in here http://jxls.sourceforge.net/reference/reader.html . On Jun 30, 8:41 am, garshita grshtgu...@gmail.com wrote: Hi,

Re: GWT architecture MVP/EventBus (mentioned at Google I/O)

2009-07-01 Thread Miroslav Genov
Using of http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/client/ui/HasWidgets.htmlis a better idea. If HasWidgets interface is used then you can use the presenter in a simple unit test without the extension of GWTTestCase cause the Widget is provided to the

Re: GWT-generated Webpage fails to display on IE

2009-07-01 Thread waf
Hi Which line is IE reporting the error now and what do you have on this line and in the neiberhood? -- waf --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: gwtjsonrpc

2009-07-01 Thread Gert
On Jul 1, 3:55 am, Shawn Pearce s...@google.com wrote: On Tue, Jun 30, 2009 at 18:49, asianCoolzsecond.co...@gmail.com wrote: i came across this projecthttp://android.git.kernel.org/?p=tools/gwtjsonrpc.git . is this just for android or i can use with any app using gwt?  any overview

Re: GWT-generated Webpage fails to display on IE

2009-07-01 Thread snikrot
By now it's returning the error on: Line: 39 Char: 7 -Line - frameWnd.gwtOnLoad(onLoadErrorFunc, 'verenweb', base); function maybeStartModule(){ if (scriptsDone loadDone) { var iframe = $doc_0.getElementById('verenweb'); var frameWnd =

GWT Training

2009-07-01 Thread radcortez
Does anyone know where i can find advanced GWT Training, thats focus mainly on Architecture designs and Performance. I could use an instructor here in my facilities to help my team with those issues. Regards Roberto Cortez --~--~-~--~~~---~--~~ You received this

Re: GWT architecture MVP/EventBus (mentioned at Google I/O)

2009-07-01 Thread Gert
I'm only making guesses here as well... but perhaps either: interface Display { HasFocusHandlers getEntryFocus(); HasBlurHandlers getEntryBlur(); } or something like: interface FocusableTextEntry extends HasValueString, HasFocusHandlers, HasBlurHandlers {} interface Display {

Re: integrate GWT into existing project

2009-07-01 Thread Tobe
One other questions refering to the GWT plugin for Eclipse. How can I integrate GWT into my existing PHP project (PDT) so that I can run it together with GWT like a normal GWT project - e.g. clicking Run to start the shell and the page in hosted mode? On Jun 27, 11:14 pm, Ian Bambury

Re: Problem using junitCreator

2009-07-01 Thread Chris
Thanks Isaac, much appreciated. Just to clarify (for anyone searching for this in the future!), what I had to do was: 1. From the top-level directory (i.e., the one containing the src and war directories), do: junitCreator -junit /Applications/eclipse/plugins/

Re: IE Performance Problems

2009-07-01 Thread David
Have you looked at the incubator tables ? These use bulk rendering techniques to make the rendering as fast as possible. IE6/7 are ofcourse the slowest browsers in existence. On Tue, Jun 30, 2009 at 9:18 PM, John Lonerganjohn.loner...@gmail.com wrote: I am using the SmartGwt grid and stuffing

Re: GWT-generated Webpage fails to display on IE

2009-07-01 Thread waf
Are you sure you are looking at the right file, ie. that the error occures in the bootstrap code and not in you module? This is from the verenweb.nocache.js which is pretty generic. I would rather expect the problem in appropriate hash.cache.html file. -- waf

Re: integrate GWT into existing project

2009-07-01 Thread Ian Bambury
I can't advise on the plugin as I don't use it, but the way I do GWT/PHP development is to set up a lightweight web server (I use Abyss) and point the document root at the project's war directory (using different ports you can run as many of these setups as you want) Then you can run the GWT app

Re: Eclipse plugin for Eclipse 3.5 (Galileo)

2009-07-01 Thread David
Just out of curiosity: What are the main drivers to move to Galileo? We are also working on a large GWT application and are currently standardized on Ganymede. Are there new features really worth the switch ? David On Tue, Jun 30, 2009 at 4:44 PM, Vanvandil...@gmail.com wrote: The sooner the

Re: integrate GWT into existing project

2009-07-01 Thread Savio Grossi
Tobe, maybe this helps: http://code.google.com/intl/pt-BR/events/io/sessions/ProgressivelyEnhanceAjaxApps.html Savio On Sat, Jun 27, 2009 at 9:31 AM, Tobe tobias.jungnic...@googlemail.comwrote: Hello, I have an existing project based on PHP and want to use GWT permit some JavaScript

Re: Eclipse plugin for Eclipse 3.5 (Galileo)

2009-07-01 Thread Thomas Matthijs
On Wed, Jul 1, 2009 at 13:56, Daviddavid.no...@gmail.com wrote: Just out of curiosity: What are the main drivers to move to Galileo? We are also working on a large GWT application and are currently standardized on Ganymede. Are there new features really worth the switch ? David But it's

Re: GWT-generated Webpage fails to display on IE

2009-07-01 Thread Ian Bambury
The simplest answer is to run the project with IE as the hosted mode browser and then you'll see where it fails in the Java. Ian http://examples.roughian.com 2009/7/1 waf wlod...@gmail.com Are you sure you are looking at the right file, ie. that the error occures in the bootstrap code and

Compiler java.lang.StackOverflowError

2009-07-01 Thread hezjing
Hi I know this is not a new problem, and I resolved this problem the 1st time by setting -Xss1024k. Now it comes back again, but the problem still exist after I increased the stack size to -Xss8M, -Xss16M or -Xss64M. I would like to try out the patch described in the comment 21 of

Re: Problem with Firefox CSS rendering

2009-07-01 Thread Brian Blain
You might try using color: blue !important; There are also 2 cursor styles which I'm unsure if that might cause problems or if it only reads the first. On Jul 1, 12:19 am, Kevvy choi.br...@gmail.com wrote: I have a label which i want to look like a link. So i Altered the CSS so it displays

Re: Problem with Firefox CSS rendering

2009-07-01 Thread Ian Bambury
Capital 'L' in 'gwt-Label' Ian http://examples.roughian.com 2009/7/1 Brian Blain bbla...@gmail.com You might try using color: blue !important; There are also 2 cursor styles which I'm unsure if that might cause problems or if it only reads the first. On Jul 1, 12:19 am, Kevvy

Re: opacity filter in ie6

2009-07-01 Thread Joe Cole
Firstly, wow that looks amazing! Great work! I've run into this before and this solved it for me: http://joseph.randomnetworks.com/archives/2006/08/16/css-opacity-in-internet-explorer-ie/ Are you planning on selling this as a component? Just wondering as I saw it was gpl. Joe On Jul 1, 6:21 

Re: JUnit Tutorial

2009-07-01 Thread Michael Vogt
Hello all. As a refresher, I tried to follow the unit testing tutorial from http://code.google.com/intl/zh-CN/webtoolkit/tutorials/1.6/JUnit.html. All works well until I try to run the unit test. It fails with 'Class not found com.google.gwt.sample.stockwatcher.client.StockWatcherTest' I

Re: Blocked request without GWT permutation header

2009-07-01 Thread Sebastien
Hi, Same problem for me with my application ! My application works fine in compiled mode. But in debug mode (hosted) with OOPHM it throws the exception on the server side. The use of OOPHM is required under linux (with 64bit processor) because the hosted mode (with Mozilla 1.7...) crashes every

GWT Eclipse Hosted Mode Problem

2009-07-01 Thread Joseph Arceneaux
The way I understand the GWT source arrangement paradigm, I have arranged my code like so: com.foo.project.Data.java - shared client/server code com.foo.project.client.Project.java - client code. com.foo.project.server.ServerSide.java - server code. When editing, Project.java can refer to

JSON Servlet Example (StockWatcher)

2009-07-01 Thread SteveDE
I am having a lot of trouble trying to get the StockWatcher using JSON application to work when deploying it to Tomcat. I have spent two days trying to get it two work without much luck. Please help. Error: HTTP Status 404 - /stockwatcher/stockPrices The requested resource

Re: Blocked request without GWT permutation header

2009-07-01 Thread posztos
you need to use the trunk version of gwt-user.jar to build the sample project. Greg On Jun 20, 9:38 am, Kriván Bálint bal...@krivan.info wrote: Hi! I've just built the trunk version of GWT and I've tried OOPHM reading this HOWTO:http://code.google.com/p/google-web-toolkit/wiki/UsingOOPHM

Auto Menu System using GWT

2009-07-01 Thread Donald W. Long
Hi all, I have created an Auto Menu system that the menu is loaded from the server and build for you on the client. I used this to get a good understanding of GWT. If anyone wishes to see the code or use it feel free. I have put together a web page, not completed but something anyway that

Re: GWT module needs to be (re)compiled

2009-07-01 Thread Markus88
On 26 Jun., 10:38, strindberg jesper.holmb...@gmail.com wrote: I'm having some problems getting Gwt 1.6.4 to run on my Tomcat 5.5, using the codehouse maven-gwt-plugin 1.1. I can run my project fine in hosted mode (from Eclipse), but when I build a war and deploy it (using the maven plugin),

Garbage collection in GWT

2009-07-01 Thread sudhakar
I need one clarification in Gwt garbage collection. If I have a Panel, containing more than one buttons and I add a ClickListener to each Button, do I really have to remove that ClickListenner from the each Button before removing the Panel? (ie. panel.clear()) Regards, Sudhakar. J

Garbage collection in GWT

2009-07-01 Thread sudhakar
I need one small clarification in Garbage collection. If I have a Panel, containing a button and I add a ClickListener to that Button, do I really have to remove that ClickListenner from the Button before removing the Panel (panel.clear())? my doubt is clear() method clear all children with

WindowClosingHandler

2009-07-01 Thread NeMeSiS
Hi all, I have a problem because the WindowCloseListener is deprecated und one should use the WindowClosingHandler. How is it used? How can I stop the closing of the window or at least do some actions before it closes? TIA, NeMeSiS --~--~-~--~~~---~--~~ You

Re: Excel and GWT

2009-07-01 Thread steve.pe...@makotoconsultinggroup.com
On Jun 30, 12:41 am, garshita grshtgu...@gmail.com wrote: Hi, I need to read data from my excel sheet and display it using GWT dynamically...I am very new to the topic. Can u suugest me a base so tht i can proceed... ? I have used POI (http://poi.apache.org) with great success to read and

Re: GWT apps suddenly working on Windows Vista machine

2009-07-01 Thread kiwi
I had the same problem with Vista and IE7/8. Clearing the IE-browser history/cookies worked for me. On 26 Jun., 21:27, sunblaze sunbl...@gmail.com wrote: I experienced the same thing but onWindows7. I found the following in their

Regarding Google Web Toolkit deployment

2009-07-01 Thread avinash
what are the various option for GWT Application deployment.. we have created a simple Application for creating a tree and frames. As this application is used internally we cant host it on google server is there any other way we can deploy and use it.. Thanks, Avinash.

Re: Excel and GWT

2009-07-01 Thread Frank Argueta
Are you using xlsql in your project? On Jun 30, 10:29 pm, Rakesh rake...@gmail.com wrote: use jdbc on the server side to select and insert data into your excel spread sheet. If you are using MS, try the ODBC-JDBC method. Or check this project:https://xlsql.dev.java.net/ On Jun 30, 12:41 am,

Re: JUnit Tutorial

2009-07-01 Thread Chris
Hi Michael I had similar problems setting up JUnit tests just yesterday, received a useful reply, and wrote up a solution. The error I reported is not the same as your one (though I did come across it while trying to figure out how to use junitCreator), but I think you'll find my solution

Excluding methods from GWT modules

2009-07-01 Thread Pandaman
I have a class that I want to include in a GWT module. Unfortunately, it has a method that has functionality unsupported by GWT (it uses Class.isInstance in case you're curious). I do not use this method in my GWT application, but other non-GWT apps use this method, so I cannot simply remove it.

Re: GWT1.6 Eclipse Version: 3.4.2 [Debugging Issue]

2009-07-01 Thread Farinha
Just tried it with update 12, out of curiosity. And still nothing. Getting quite frustrated here. No idea what might be the problem. And it's so weird no one else has the same problem. Can it be that the problem is caused by Windows 7, and I am the only moron who has it installed? On Jun 30,

Re: GWT1.6 Eclipse Version: 3.4.2 [Debugging Issue]

2009-07-01 Thread Isaac Truett
Farinha, Are you sure you're having the same problem as the original poster? That problem, which is caused by a bug in 1.6.0_14, is that execution doesn't stop at breakpoints when debugging. As I understand from your first post in the thread your static HTML appears, but your entrypoint never

Re: GWT1.6 Eclipse Version: 3.4.2 [Debugging Issue]

2009-07-01 Thread Farinha
Hhmm, Now that you put it that way, that's also one way to look at it. It's true that breakpoints don't work. But it's also true that nothing even shows up in Hosted Mode. Only the static content. It's the same as here, where I had already posted:

Re: Excluding methods from GWT modules

2009-07-01 Thread Paul Robinson
No. It's all or nothing. Pandaman wrote: I have a class that I want to include in a GWT module. Unfortunately, it has a method that has functionality unsupported by GWT (it uses Class.isInstance in case you're curious). I do not use this method in my GWT application, but other non-GWT apps

Re: GWT1.6 Eclipse Version: 3.4.2 [Debugging Issue]

2009-07-01 Thread Isaac Truett
Can you get known-good sample apps, or a simple Hello World app, to run properly in hosted mode? If so, do breakpoints work in them? On Wed, Jul 1, 2009 at 3:07 PM, Farinhafari...@gmail.com wrote: Hhmm, Now that you put it that way, that's also one way to look at it. It's true that

Re: GWT1.6 Eclipse Version: 3.4.2 [Debugging Issue]

2009-07-01 Thread Farinha
Well, I had been testing it with the auto-generated sample that gets created with the New - Web Application But I didn't recreate it when I installed the new version. Just did that, and it's now working. A clean new web application is now working in Hosted Mode. And the debugger seems to be

Re: Eclipse plugin for Eclipse 3.5 (Galileo)

2009-07-01 Thread David
Yes that is always a good reason! On Wed, Jul 1, 2009 at 2:30 PM, Thomas Matthijsthomas.matth...@gmail.com wrote: On Wed, Jul 1, 2009 at 13:56, Daviddavid.no...@gmail.com wrote: Just out of curiosity: What are the main drivers to move to Galileo? We are also working on a large GWT

Re: opacity filter in ie6

2009-07-01 Thread bradr
thanks Joe for the tip, i tried adding zoom:1 to almost every element but still no luck. I have pinpointed that the page initially renders correctly in IE6 with opacity by inserting a break point. I can see that all the items get placed on the screen and have 66% opacity. So now I just need to

Re: Calling GWT servlet from an outside container

2009-07-01 Thread jkim
Hey Enea, Thanks i will look into this :) Regards, jkim On Jun 27, 3:15 am, Enea eneager...@gmail.com wrote: Hi ;) myabe you can find this interesting: http://code.google.com/p/google-web-toolkit-incubator/wiki/ServerPushFAQ it's not exactly what you mean, but you can adapt it to your

Re: GWT architecture MVP/EventBus (mentioned at Google I/O)

2009-07-01 Thread Daniel Jue
(BTW- Thanks for the corrections on my previous email.) I'm looking on slide 47, with this code: public void execute(final UpdateContact update, final AsyncCallbackGetContactsResponse cb) { realService.execute(update, new AsyncCallbackUpdateContactResponse() {

Re: Problem with Firefox CSS rendering

2009-07-01 Thread Kevvy
lol, yeh that was my problem, changed it to a capital and it now works like a charm =) On Jul 1, 11:04 pm, Ian Bambury ianbamb...@gmail.com wrote: Capital 'L' in 'gwt-Label' Ian http://examples.roughian.com 2009/7/1 Brian Blain bbla...@gmail.com You might try using color: blue

ListBox concatenates it's content again when refreshing the page.

2009-07-01 Thread Ibrahim A. Mohamed
Hello, I'm building a web application that has a ListBox included, the content of the listbox is driven from an RPC, which gets listbox's content from the database. Each time I refresh the page, RPC result is re-added to the end of the listbox. I tried listBoxVariableName.clear(); - with more

GWT eclipse plugin fix req

2009-07-01 Thread george9
When working in maximized mode (press Ctrl+M in an editor), then after saving a file, the DataNucleus Enhancement Console pops up each time a file is saved. This is pretty annoying, and should be easy to fix. Please? --~--~-~--~~~---~--~~ You received this message

interactive map

2009-07-01 Thread mitche...@gmail.com
Hey guys, I am trying to create an interactive map interface... not unlike Google Maps, but needing FAR fewer features, and it is a map of an indoor facility, making Google Maps API rather silly. I would like to be able to display an image (the Map itself) and have the user click on a location

Re: GWT eclipse plugin fix req

2009-07-01 Thread Isaac Truett
It's already in the issue tracker, marked FixedNotReleased: http://code.google.com/p/google-web-toolkit/issues/detail?id=3645 Sources close to the plugin say a new release is expected in a matter of weeks. On Wed, Jul 1, 2009 at 2:28 PM, george9juraj.vi...@gmail.com wrote: When working in

Re: Compiler java.lang.StackOverflowError

2009-07-01 Thread hezjing
Hi I temporary avoid this StackOverflowError by compiling the project to only one browser, --- module.xml --- set-property name=user.agent value=ie6 / with my current VM arguments set to -Xss64M and -Xmx512M. I probably have to compile to the different browsers one by one. Really, I have no

[gwt-contrib] Trunk does not compile ?

2009-07-01 Thread Sebastien
Hi, I am trying to compile the trunk from scratch. I following instructions from the web site but the compilation fails (see log below). Could you help me ? Where is my mistake ? My env: - linux kernel: 2.6.28-11-generic #42-Ubuntu SMP Fri Apr 17 01:57:59 UTC 2009 i686 GNU/Linux - Java: Java

[gwt-contrib] Re: HelpRequired : GWT-Incubator: GlassPanel changes

2009-07-01 Thread John LaBanca
There is a code review out to move GlassPanel to GWT trunk: http://gwt-code-reviews.appspot.com/39806/show http://gwt-code-reviews.appspot.com/39806/showNot sure if it will go through exactly as is, but this should help you isolate the code you need. If you are using GWT trunk, you can just click

[gwt-contrib] Re: Trunk does not compile ?

2009-07-01 Thread Sebastien
Hi, I compiled with success by commenting the lines 230-231 in the ./ common.ant.xml Ant file. Indeed the call to svinfo task failed (I do not know why). Now, it works ! Regards, Seb On 1 juil, 09:28, Sebastien chassa...@gmail.com wrote: Hi, I am trying to compile the trunk from scratch. I

[gwt-contrib] Re: Trunk does not compile ?

2009-07-01 Thread Freeland Abbott
Yep. It'll be looking for English-language regexp matching. Rather than commenting out the lines, you may be able to win by defining gwt.svnrev and gwt.svnrev.file in a local.ant.properties file at the top level... although it looks like that might not work, we can easily modify the svninfo task

[gwt-contrib] [google-web-toolkit commit] r5655 - Fix sort order.

2009-07-01 Thread codesite-noreply
Author: j...@google.com Date: Wed Jul 1 08:34:11 2009 New Revision: 5655 Modified: changes/jat/ihm/user/super/com/google/gwt/emul/java/util/Date.java Log: Fix sort order. Modified: changes/jat/ihm/user/super/com/google/gwt/emul/java/util/Date.java

[gwt-contrib] [google-web-toolkit commit] r5653 - Merging trunk r5627 into this branch.

2009-07-01 Thread codesite-noreply
Author: j...@google.com Date: Wed Jul 1 06:29:01 2009 New Revision: 5653 Modified: branches/snapshot-2009.06.02-r5498/user/src/com/google/gwt/dom/client/DOMImplMozilla.java branches/snapshot-2009.06.02-r5498/user/src/com/google/gwt/user/client/impl/DOMImplStandard.java Log: Merging

[gwt-contrib] Re: HelpRequired : GWT-Incubator: GlassPanel changes

2009-07-01 Thread Freeland Abbott
On Wed, Jun 24, 2009 at 7:34 AM, Surya master...@gmail.com wrote: Hi , I am fairly new to GWT and my requirement needs a glasspanel to be used. But due to the heavy size of incubator.jar file i would like to Heavy size in what sense? You're aware that only the classes you touch will be in

[gwt-contrib] [google-web-toolkit commit] r5656 - Add ASM visitor tests.

2009-07-01 Thread codesite-noreply
Author: j...@google.com Date: Wed Jul 1 08:34:40 2009 New Revision: 5656 Added: changes/jat/ihm/dev/core/test/com/google/gwt/dev/javac/asm/CollectReferencesVisitorTest.java Modified: changes/jat/ihm/dev/core/src/com/google/gwt/dev/javac/asm/CollectClassData.java

[gwt-contrib] [google-web-toolkit commit] r5652 - Modifies WebAppCreator to allow creating crawl-enabled projects.

2009-07-01 Thread codesite-noreply
Author: kpro...@google.com Date: Wed Jul 1 06:11:31 2009 New Revision: 5652 Added: branches/crawlability/user/src/com/google/gwt/user/tools/.classpathcrawlablesrc branches/crawlability/user/src/com/google/gwt/user/tools/.projectcrawlablesrc

[gwt-contrib] [google-web-toolkit commit] r5654 - Updating branch-info.

2009-07-01 Thread codesite-noreply
Author: j...@google.com Date: Wed Jul 1 06:29:26 2009 New Revision: 5654 Modified: branches/snapshot-2009.06.02-r5498/branch-info.txt Log: Updating branch-info. Modified: branches/snapshot-2009.06.02-r5498/branch-info.txt

[gwt-contrib] SOYC generates more dependency trees

2009-07-01 Thread spoon
Reviewers: kathrin, Description: Currently, SOYC shows dependency information for a whole-program dependency trace. This patch additionally shows the various dependency graphs used by the code splitter to decide what code goes into what fragment. The display of this information can use work.

[gwt-contrib] Comment on UsingOOPHM in google-web-toolkit

2009-07-01 Thread codesite-noreply
Comment by Dominik.J.Steiner: Hi, did anyone find a workaround for Eclipse and Mac OSX and how to remove the -XstartOnFirstThread from the classpath when launching from within eclipse? For more information: http://code.google.com/p/google-web-toolkit/wiki/UsingOOPHM

[gwt-contrib] Re: derpc review: hosted-mode user code, rebind, and related tests

2009-07-01 Thread John Tamplin
On Wed, Jul 1, 2009 at 2:59 PM, Bob Vawter robertvaw...@google.com wrote: append: where is quoting the RPC_SEPARATOR_CHAR handled if it is contained within the string? That's unnecessary, since the length of the string is known. The following separator character is just there to ensure

[gwt-contrib] Comment on UsingOOPHM in google-web-toolkit

2009-07-01 Thread codesite-noreply
Comment by Dominik.J.Steiner: Actually, I just added the gwt-dev-oophm.jar to the start of the eclipse launch config, didn't fiddle with the -XstartOnFirstThread nor the swt classes and started the launch config. No swing window came up, but then from firefox conecting to

[gwt-contrib] [google-web-toolkit commit] r5658 - Fixes issue #3700, avoids unnecessary copy of resources with up-to-date timestamps.

2009-07-01 Thread codesite-noreply
Author: sco...@google.com Date: Wed Jul 1 12:24:55 2009 New Revision: 5658 Modified: trunk/dev/core/src/com/google/gwt/core/ext/linker/impl/StandardLinkerContext.java Log: Fixes issue #3700, avoids unnecessary copy of resources with up-to-date timestamps. Review by: jgw Modified:

[gwt-contrib] [google-web-toolkit commit] r5657 - Fixes issue #3700, avoids unnecessary copy of resources with up-to-date timestamps.

2009-07-01 Thread codesite-noreply
Author: sco...@google.com Date: Wed Jul 1 12:16:27 2009 New Revision: 5657 Modified: releases/1.6/dev/core/src/com/google/gwt/core/ext/linker/impl/StandardLinkerContext.java Log: Fixes issue #3700, avoids unnecessary copy of resources with up-to-date timestamps. Review by: jgw

[gwt-contrib] Re: IE8 disappearing history

2009-07-01 Thread Amir Kashani
Joel, The 1.6 release branch does not exhibit the problem; it works fine. The next thing I'll try is copying the IFrame linker changes over to the 1.6 branch and see if that's enough to cause the problem. Unless you have another suggestion? - Amir On Jun 30, 5:32 am, Joel Webber

[gwt-contrib] NewParenthesisRemovalOptimization

2009-07-01 Thread cromwellian
Reviewers: scottb, Description: This patch removes trailing parenthesis from Javascript 'new' operators if there are no constructor arguments. new Foo() - new Foo Please review this at http://gwt-code-reviews.appspot.com/49804 Affected files:

[gwt-contrib] Re: NewParenthesisRemovalOptimization

2009-07-01 Thread Ray Cromwell
Compiling the Mail application removes ~860 bytes off the smallest permutation, compiling Showcase removes about 1.6k off the largest permutation. -Ray On Wed, Jul 1, 2009 at 4:50 PM, cromwell...@gmail.com wrote: Reviewers: scottb, Description: This patch removes trailing parenthesis from

[gwt-contrib] Re: NewParenthesisRemovalOptimization

2009-07-01 Thread Scott Blum
LGTM, but only if you fix the darn for-each using Object var! On Wed, Jul 1, 2009 at 7:50 PM, cromwell...@gmail.com wrote: Reviewers: scottb, Description: This patch removes trailing parenthesis from Javascript 'new' operators if there are no constructor arguments. new Foo() - new Foo