Re: Starting a new thread result in AccessControlException

2009-11-13 Thread Martin Trummer
that is not related to GWT it depends on what webserver/servicecontainer your application is running on e.g. Google App Engine won't let you create new threads On 12 Nov., 10:42, y y...@cs.washington.edu wrote: When I try to start a new thread in a servlet, I get:

Re: Flex Table - Remove rows

2009-11-13 Thread Paul Robinson
After you remove row number 0, what was row 1 becomes the new row 0 etc because everything shifts up one row. The way you've set up your loop, what starts off as row 1 will never be removed - second time through the loop you remove row 1, but that is the row that started off as row 2. Also, don't

Re: UI Layout and Alignments

2009-11-13 Thread Paul Robinson
HorizontalPanel and VerticalPanel are also table-based widgets, but tend to produce more tables than FlexTable because they lend themselves to being nested. FlowPanel (a div), HTMLPanel or the new GWT 2 UIBinder are the preferred ways of doing things, although you do need more html/css

Re: Announcing the Google Plugin for Eclipse 1.1.0

2009-11-13 Thread misterln2
the changes happened from rev 6641 to 6642 a bunch of registerHandler(..) statements got removed i just tried it: copying those statements back to the current DevModeBase.java was sufficient to compile the trunk -- You received this message because you are subscribed to the Google Groups

Re: Error when running ant hosted on OS X 10.6

2009-11-13 Thread bmalkow
On 12 Lis, 18:25, Kyle Hayes kyle.ha...@disney.com wrote: Heh, you're right this is really ugly. However, it may be worth a try, but not on my work code ;-) I use it only on development enviroment. To production I use original GWT. Someone else thinks similar to me

Re: Unknown argument: -style

2009-11-13 Thread doboloh
ok i understand, thanks my friend... i was hoping to get that source to make development faster (when creating new projects), anyways,... thanks gwt... PS by the way do you wave wave sandbox invites? i would like to test it though... On Nov 12, 11:43 pm, Rajeev Dayal rda...@google.com wrote:

Re: GWT Hosted Mode crashing after Snow Leopard 10.6.2 Update

2009-11-13 Thread JK
Thanks for the jar! It works here as well. On Nov 12, 1:35 pm, Daniel Kurka kurka.dan...@googlemail.com wrote: I found a very UGLY solution to my problem (which enables me to continue working). I replaced in LowLevelSaf.java public static native void gcUnprotect(int, int); to public static

Re: UI Layout and Alignments

2009-11-13 Thread Thomas Broyer
On Nov 13, 11:07 am, Paul Robinson ukcue...@gmail.com wrote: HorizontalPanel and VerticalPanel are also table-based widgets, but tend to produce more tables than FlexTable because they lend themselves to being nested. FlowPanel (a div), HTMLPanel or the new GWT 2 UIBinder are the preferred

Re: Why Not Bypass The Middle Man

2009-11-13 Thread Célio
It seems that Google is embracing the 'revolution': http://dev.chromium.org/spdy SPDY solves the protocol problem. Soon we will see a replacement coming for HTML/JavaScript. Cheers! On 23 set, 10:02, Célio ccid...@gmail.com wrote: On 23 set, 01:24, lusus l...@fishbytedesign.com wrote:

Re: Flex Table - Remove rows

2009-11-13 Thread Jonas
Thank you so much Paul, it worked 5 star. Best regards João Lopes On 13 Nov, 09:59, Paul Robinson ukcue...@gmail.com wrote: After you remove row number 0, what was row 1 becomes the new row 0 etc because everything shifts up one row. The way you've set up your loop, what starts off as row 1

Re: Flex Table - Remove rows

2009-11-13 Thread Jonas
Thank you so much Paul, it worked 5 stars. Best Regards João Lopes On 13 Nov, 09:59, Paul Robinson ukcue...@gmail.com wrote: After you remove row number 0, what was row 1 becomes the new row 0 etc because everything shifts up one row. The way you've set up your loop, what starts off as row

two browser windows

2009-11-13 Thread chris_wesdorp
Hi, is it possible to control a second browser window via GWT? With javascript this is rather easy defining methods in the window or document and then call those? For GWT I asume I need to follow this approach and write a wrapper class to call the native functions. But what if I want to put

Major memory leak with RPC, Internet Explorer and GWT 2.0 (MS1 MS2)

2009-11-13 Thread Rob
I've been trying out one of my existing apps with GWT 2.0 to see what advantages it has and have noticed a major memory leak when using RPC with Internet Explorer 8.0. Basically my application reads some values from a database and displays these in the browser every 1 second. I am seeing a memory

Re: Does code split real shrink the inital download?

2009-11-13 Thread Lúcio Camilo
Unfortunately, the RunAsync need more tests by the developer, and u have to do tests to make sure your code will work the way u want.. 2009/11/13 Edgenius dapeng...@edgenius.com Finally, I chop one class from my bloat code by code splitting function. The class is a dialog box, about 100 lines

Re: GWT: JUnit Google App Engine Tutorial assumes intelligence

2009-11-13 Thread chris_l
On Nov 13, 6:41 am, Rajeev Dayal rda...@google.com wrote: No problem, we value feedback! If a tutorial has rough spots, we want to know! There was one more little rough spot related to running the JUnit test: The test folder must be added manually as a source folder (this isn't done

Problem: FormPanel / FileUpload - special characters and german umlauts

2009-11-13 Thread GWT-Newbie
Hey there, using the FormPanel with the FileUpload widget, the strings from the TextBoxes and TextAreas of my FormPanel don't support some special characters and german umlauts. On the client-side everything is okay, but arriving at the server, the characters and umlauts (like ä ü ö) were

Re: GWT Hosted Mode crashing after Snow Leopard 10.6.2 Update

2009-11-13 Thread Olaf Steinicke
Daniel thanks a lot for the fast bug fix! Pretty ugly indeed, but as long as it works that shouldn't bother me. Hope the guys from Apple will soon Re-fix their Safari 4.0.4 fix... Cheers! If you run into the same problem you can download a fixed gwt-dev.jar from here:

Printing GWT Screen

2009-11-13 Thread manjeet...@gmail.com
I have developed a GWT page where I have TAB widget (with 2tabs) containing other child widgets. I would like to know is there any way by which I can provide user functionality so that in one click they can get the contents of both tabs printed on two pages separately. Any suggestion on this

Re: GWT Hosted Mode crashing after Snow Leopard 10.6.2 Update

2009-11-13 Thread Mark
Many thanks Daniel, this works for me. -mark On Nov 12, 12:35 pm, Daniel Kurka kurka.dan...@googlemail.com wrote: I found a very UGLY solution to my problem (which enables me to continue working). I replaced in LowLevelSaf.java public static native void gcUnprotect(int, int); to public

Re: Problem: FormPanel / FileUpload - special characters and german umlauts

2009-11-13 Thread Thomas Broyer
On Nov 13, 10:46 am, GWT-Newbie manuel.krann...@fun.de wrote: Hey there, using the FormPanel with the FileUpload widget, the strings from the TextBoxes and TextAreas of my FormPanel don't support some special characters and german umlauts. On the client-side everything is okay, but

Re: Limiting compilation to just for the hosted browser on windows

2009-11-13 Thread Yaakov
Sorry... Forgot one more fact... I am running it with -noserver mode, so I have to deploy it first to a real app server and then start up the hosted mode to point to the deployed app URL. So, I guess, my question was more general. How do I limit GWT compilation to only 1 user-agent? My

ANN: gwt-mapquest - a MapQuest wrapper for GWT

2009-11-13 Thread John Huss
I've started a project for wrapping the MapQuest API for use in GWT applications. There is already a lot done. So if you're interested in using MapQuest, check it out. Or if you'd like to get your feet wet with learning how to wrap an external Javascript API (or replace it with a native GWT

Re: GWT for Python when?

2009-11-13 Thread Kyle Hayes
I like this idea. I'm big fan of Python and would love to see this. On Nov 13, 7:30 am, Rodrigo Romero III rrom...@pinteractiva.com wrote: Features: - Python to JavaScript compiler - User interface API - related tools - Appengine SDK integration with a newer Django build and ability to

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-13 Thread jay
We've been shipping our product with PagingScrollTable for the past 4 months. We've been very happy with the widget. We've made a lot of changes around it to get more functionality and (in our opinion) better styling. We've not heard any complaints from our users about performance or anything

Re: Limiting compilation to just for the hosted browser on windows

2009-11-13 Thread Ian Bambury
If you point your web server's document root to the /war/ directory, you don't have to compile. You can always set up a lightweight web server running on a different port if you need your current one pointing where it is at the moment. Ian http://examples.roughian.com 2009/11/13 Yaakov

Re: Limiting compilation to just for the hosted browser on windows

2009-11-13 Thread Yaakov
I am using Glassfish 2.1 and also using maven, so this won't really work for me because of the way maven assembles the app.war, i.e., my war directory doesn't everything it needs to run the app... it gets assembled together by maven as there are dependencies on other projects, etc. So, how about

Re: two browser windows

2009-11-13 Thread Davis Ford
It's easy to create a second browser using a Hyperlink or Anchor with target = _new for example, but I think you are out of luck if you want them to communicate. I could be wrong here -- perhaps someone else can confirm. On Fri, Nov 13, 2009 at 7:56 AM, chris_wesdorp chriswesd...@gmail.comwrote:

Re: Very Simple FlexTable Question

2009-11-13 Thread Davis Ford
Yep - and as a result, you probably generate an ArrayIndexOutOfBoundsException when you dereference the last element past the array's length. GWT will show this exception in the hosted mode log status window, but in the view, you'll just see the first row, and not the second. On Fri, Nov 13,

Re: Very Simple FlexTable Question

2009-11-13 Thread Ian Bambury
The only thing wrong with the code is that the second loop skips the 'h1' element because you have int i=1 and not int i=0 Ian http://examples.roughian.com 2009/11/13 JAppetta jennifer.appe...@sas.com I know that I'm missing something basic here (possibly stressed out due to impending demo

Re: GWT Hosted Mode crashing after Snow Leopard 10.6.2 Update

2009-11-13 Thread Mike T
Ugly fix or not it worked for me. Thanks!!! On Nov 13, 9:23 am, Mark mark.butc...@gmail.com wrote: Many thanks Daniel, this works for me. -mark On Nov 12, 12:35 pm, Daniel Kurka kurka.dan...@googlemail.com wrote: I found a very UGLY solution to my problem (which enables me to continue

Re: GWT Hosted Mode crashing after Snow Leopard 10.6.2 Update

2009-11-13 Thread jtyrrell
Hey All, If you are having this issue and want to downgrade back to 4.0.3 I have added the files here, http://populationjim.com/2009/11/13/downgrade-safari-from-404-to-get-gwt-working/ Cheers, Jim On Nov 14, 2:26 am, eric73 e...@pentila.com wrote: Thanks a lot for your Jar Fix ! Why it so

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-13 Thread kavitha d
On 11/13/09, jay jay.gin...@gmail.com wrote: We've been shipping our product with PagingScrollTable for the past 4 months. We've been very happy with the widget. We've made a lot of changes around it to get more functionality and (in our opinion) better styling. We've not heard any

Re: Error when running ant hosted on OS X 10.6

2009-11-13 Thread Kyle Hayes
I installed your new jar and I'm still getting the following error: == hosted: [java] On Mac OS X, ensure that you have Safari 3 installed. [java] Exception in thread main java.lang.UnsatisfiedLinkError: Unable to load required native library 'gwt-ll'. Detailed error:

Re: GWT Hosted Mode crashing after Snow Leopard 10.6.2 Update

2009-11-13 Thread Stefan
Hey Daniel, thank's for your workaround, it works for me, too! However, I get some errors in the hosted mode browser about wrong method signatures in the classes DOMImplIE8.java and HistoryImplTimer.java of the jar file gwt-user.jar. :Stefan On 12 Nov., 12:35, Daniel Kurka

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-13 Thread Norman Maurer
We using the Table in hupa ( http://James.Apache.org/hupa) . It Works very well so far . We extend it to support drag-and-drop and refetching data After deletion to fill the page. Bye Norman 2009/11/13, kavitha d kavimanj...@gmail.com: On 11/13/09, jay jay.gin...@gmail.com wrote: We've been

Re: Very Simple FlexTable Question

2009-11-13 Thread Ian Bambury
No, because headerCount is set to the length of the array. You'll just skip the first element. Ian http://examples.roughian.com 2009/11/13 Davis Ford davisf...@zenoconsulting.biz Yep - and as a result, you probably generate an ArrayIndexOutOfBoundsException when you dereference the last

Re: Limiting compilation to just for the hosted browser on windows

2009-11-13 Thread Ian Bambury
2009/11/13 Yaakov yaakov.chai...@gmail.com So, how about my real question? Does anyone know the answer? Anyone who looks in the documentation does :-) You need to put something like define-property name=user.agent values=ie6 in your gwt.xml file Ian http://examples.roughian.com -- You

Re: GWT Hosted Mode crashing after Snow Leopard 10.6.2 Update

2009-11-13 Thread Casey
The downgrading doesn't work for me. I'm running Snow Leopard and when I try to select my hard drive for installation it says that I must have version 10.5.8 or newer installed. Any thoughts? On Nov 13, 10:36 am, jtyrrell james.t.tyrr...@gmail.com wrote: Hey All, If you are having this issue

GlassPanel seems to block dialog box close button focus

2009-11-13 Thread Open eSignForms
I have a DialogBox subclass that is used to popup an exception condition. When this popup occurs, I added code to use the GlassPanel to set to my RootPanel.get(glassPanel,0,0) and that works as expected. But I noted that when I did this, my dialog box no longer put the focus on the close button

Re: Limiting compilation to just for the hosted browser on windows

2009-11-13 Thread Yaakov
Oh... I thought that wasn't working because I forgot they are using a DTD and was specifying it in the wrong location.. BTW, it's set-property, not define-property... It's already defined in user package by GWT. Thanks for pointing me in the right direction though. Yaakov. On Nov 13, 12:12 pm,

Re: GWT for Python when?

2009-11-13 Thread charlie
Have you esen pyjamas http://pyjs.org/ ? On Fri, Nov 13, 2009 at 8:06 AM, Kyle Hayes kyle.ha...@disney.com wrote: I like this idea. I'm big fan of Python and would love to see this. On Nov 13, 7:30 am, Rodrigo Romero III rrom...@pinteractiva.com wrote: Features: - Python to JavaScript

Creating a module in GWT 1.7 - css file location

2009-11-13 Thread Steve C
In GWT 1.5, I would put the module css file in the public package. In 1.7 the preferred approach is to put it in the war directory. I haven't tested to see if the public package concept still works. If I wanted to have a project as a module, I could then jar the whole thing, and the project

GWT i18n - Dictionary message placeholders

2009-11-13 Thread Jon Vaughan
Hi all, Just a quick query - is it possible to do placeholder substitution with messages obtained from a Dictionary? i..e into something like: permissionDenied = Error {0}: User {1} Permission denied. I couldn't see anything obvious in the doc or forums; does a Dictionary link in any way to a

Re: how large of your GWT compiled code? My one is 850K

2009-11-13 Thread hazy1
Our code size, uncompressed is several megabytes. We compress and cache it (both on the client and on the server - cache the zipped file in memory). It is not much trouble after doing this. On Nov 12, 6:48 pm, Edgenius dapeng...@edgenius.com wrote: I am very excited for code split feature on

Re: two browser windows

2009-11-13 Thread Angel Marquez
Would you refer a site that does this with js. From what I understand you want to drag out a widget, say a text input field, and have a new window appear, similar to when you drag out a url tab in chrome. Then example would be able to input text into the primary window that would appear in the

Re: Limiting compilation to just for the hosted browser on windows

2009-11-13 Thread Open eSignForms
Where can I see a list of user.agent values I can choose from for set- property? I'd like to do IE8 (I believe it's ie8) and FF 3.5 for my base testing before building for a 6 combos that seem to be build by default. -- You received this message because you are subscribed to the Google Groups

Re: GWT: JUnit Google App Engine Tutorial assumes intelligence

2009-11-13 Thread Steve C
I'd like to generalize this whole discussion a bit - to my mind the entire JUnit testing scenario is one of the worst documented and described elements in GWT. Most of the examples out there are repackagings of the same simplistic ones that have been around for a few versions now. In addition to

Announcing: The gwt-rpc-annotation library

2009-11-13 Thread Chi H
Announcing the gwt-rpc-annotation library - http://code.google.com/p/gwt-rpc-annotation/ This library simplifies the development of GWT-RPC services through the use of a JSR-269 annotation processor. It is currently being used extensively at Solium Capital - http://www.solium.com - and we are

Re: Limiting compilation to just for the hosted browser on windows

2009-11-13 Thread Mat Gessel
Values are defined in com.google.gwt.user.UserAgent.gwt.xml in gwt-user.jar. The values for GWT 1.7.x are: ie6,ie8,gecko,gecko1_8,safari,opera gecko1_8 is Firefox 1.5 and later. ie6 is IE6 and IE7. As of GWT 1.6 you can set the user.agent to property to multiple comma-separated values. Note that

Re: Conflicts on Install GWT on Ganymede (3.5.1)

2009-11-13 Thread Ben
Eclipse Ganymede is 3.4 not 3.5 On Nov 12, 10:50 am, Rajeev Dayal rda...@google.com wrote: Which install of Eclipse are you using? What other plugins do you have installed? On Wed, Nov 11, 2009 at 9:59 AM, tobias tobias.girsch...@gmail.com wrote: Cannot complete the install because of a

Re: Creating a module in GWT 1.7 - css file location

2009-11-13 Thread Steve C
OK, I answered my own question, at least as far as item #1, with some help from http://code.google.com/webtoolkit/doc/1.6/DevGuideOrganizingProjects.html#DevGuideAutomaticResourceInclusion It seems that either approach will work. Having the css in the public package will result in it

Re: Limiting compilation to just for the hosted browser on windows

2009-11-13 Thread Yozons Support on Gmail
Thanks. I read they were defined in UserAgent.gwt.xml, but had no idea where that file was. I didn't think to look in the gwt-user.jar, and I wouldn't have guessed gecko1_8 at all for Firefox 3.5. Your info was perfect. I wish it was just that clear in the docs! -- You received this message

Re: Conflicts on Install GWT on Ganymede (3.5.1)

2009-11-13 Thread Roy Smith
There was particular release of Eclipse 3.4 (Gannmede) which was so badly busted that nothing would upgrade. The only solution was to downgrade and then upgrade, or reinstall. Obviously if the OP is running Ganymede, then installing 3.5 (Galileo) is the best option. iirc, workspaces are not

Re: how large of your GWT compiled code? My one is 850K

2009-11-13 Thread Dean S. Jones
850k is nothing, it's the size of many images or photo's, as hazy1 said, compression will reduce the size dramatically, ( I moved compression from the app server to my fronting Apache and it's much more efficient ) and you can also set the expires header on the GWT html/js to some future date ( a

Re: two browser windows

2009-11-13 Thread Roy Smith
GWT *is* Javascript, so if you can do it in JS, just write a GWT native method. Try Googling JSNI 2009/11/13 Angel Marquez angel.marq...@gmail.com Would you refer a site that does this with js. From what I understand you want to drag out a widget, say a text input field, and have a new

Re: two browser windows

2009-11-13 Thread Angel Marquez
Hey Roy, GWT *is* Javascript, Yes, I know this. so if you can do it in JS, just write a GWT native method. Understood Try Googling JSNI This makes sense. What I was refering to in Chris's post was this: With javascript this is rather easy defining methods in the window or document and

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

2009-11-13 Thread codesite-noreply
Revision: 6888 Author: jlaba...@google.com Date: Fri Nov 13 06:33:42 2009 Log: tr...@6852 was merged into this branch Make RunStyleSelenium more extensible. svn merge --ignore-ancestry -c6852 http://google-web-toolkit.googlecode.com/svn/trunk/ . Patch by: jlabanca

[gwt-contrib] Spam on GWT Contributors

2009-11-13 Thread Chris Ramsdale
All, Spam messages managed to make it through to the GWT Contributors group this morning. These messages have been removed and the user has been blocked. In a parallel effort we are looking into backend changes that will enhance our spam detection mechanisms. Our apologies for the unpleasant

[gwt-contrib] [google-web-toolkit] r6890 committed - Merge tr...@6889 into this branch...

2009-11-13 Thread codesite-noreply
Revision: 6890 Author: r...@google.com Date: Fri Nov 13 08:09:56 2009 Log: Merge tr...@6889 into this branch Fix Issue 4045: cannot start in Turkish locale svn merge --ignore-ancestry -c6889 https://google-web-toolkit.googlecode.com/svn/trunk/ .

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

2009-11-13 Thread codesite-noreply
Comment by keith.rogers79: I think theres a couple of errors in the Using an external resource with a UiBinder example, in the .ui.xml file: The image's resource attribute references {res.logoImage} rather than {res.widgetyImage} - what the image is called in the Resources clientbundle The

[gwt-contrib] Code Review Request: Updated hosted.html to be pretty

2009-11-13 Thread Bruce Johnson
Hi John (and Hi, contrib group!), I've been fighting to find just the right incantation to make the missing plugin flow go smoothly. I think it's pretty close now. http://gwt-code-reviews.appspot.com/102815 -- Bruce -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r6891 committed - Makes the missing plugin iframe take up the entire window for a reas...

2009-11-13 Thread codesite-noreply
Revision: 6891 Author: br...@google.com Date: Fri Nov 13 09:04:35 2009 Log: Makes the missing plugin iframe take up the entire window for a reasonably nice look that works across browsers. Change by: bruce Review by: jat http://code.google.com/p/google-web-toolkit/source/detail?r=6891

[gwt-contrib] Re: Code Review Request: Made missing plugin iframe prettier

2009-11-13 Thread John Tamplin
On Fri, Nov 13, 2009 at 12:03 PM, br...@google.com wrote: Thanks for the review. Reply below. http://gwt-code-reviews.appspot.com/102815/diff/1002/3 File hosted.html (right): http://gwt-code-reviews.appspot.com/102815/diff/1002/3#newcode35 Line 35: var iframeDiv =

[gwt-contrib] [google-web-toolkit] r6892 committed - Merges tr...@6891 into this branch to make missing plugin iframe pret...

2009-11-13 Thread codesite-noreply
Revision: 6892 Author: br...@google.com Date: Fri Nov 13 09:24:32 2009 Log: Merges tr...@6891 into this branch to make missing plugin iframe prettier in hosted.html and updated missing plugin url to point to appspot.com http://code.google.com/p/google-web-toolkit/source/detail?r=6892

[gwt-contrib] Re: Code Review Request: Made missing plugin iframe prettier

2009-11-13 Thread Bruce Johnson
Committed to tr...@6891 and merged to 2...@6892. On Fri, Nov 13, 2009 at 12:06 PM, John Tamplin j...@google.com wrote: On Fri, Nov 13, 2009 at 12:03 PM, br...@google.com wrote: Thanks for the review. Reply below. http://gwt-code-reviews.appspot.com/102815/diff/1002/3 File hosted.html

[gwt-contrib] Make Windows OOPHM Installer headless

2009-11-13 Thread jlabanca
Reviewers: cramsdale, Description: This patch removes the UI component from the Windows installer, updates the installation directory, and changes some of the terminology. There is still some work to ensure that the installer works for all versions of Windows, but this is a start. Testing:

[gwt-contrib] [google-web-toolkit] r6895 committed - Updating the Gwt Developer Plugin for IE to use the latest terminology...

2009-11-13 Thread codesite-noreply
Revision: 6895 Author: jlaba...@google.com Date: Fri Nov 13 10:52:40 2009 Log: Updating the Gwt Developer Plugin for IE to use the latest terminology, and be headless. Patch by: jlabanca Review by: cramsdale http://code.google.com/p/google-web-toolkit/source/detail?r=6895 Added:

[gwt-contrib] [google-web-toolkit] r6894 committed - Merged tr...@6893 to get gwt.codesvr instead of gwt.hosted, like t...

2009-11-13 Thread codesite-noreply
Revision: 6894 Author: br...@google.com Date: Fri Nov 13 10:35:54 2009 Log: Merged tr...@6893 to get gwt.codesvr instead of gwt.hosted, like this: svn merge --ignore-ancestry -c 6893 http://google-web-toolkit.googlecode.com/svn/trunk/ . Merge by: bruce

[gwt-contrib] [google-web-toolkit] r6893 committed - Updates the query param to the canonical gwt.codesvr instead of the ...

2009-11-13 Thread codesite-noreply
Revision: 6893 Author: br...@google.com Date: Fri Nov 13 10:26:21 2009 Log: Updates the query param to the canonical gwt.codesvr instead of the legacy gwt.hosted. Change by: bruce Review by: jat (desk) http://code.google.com/p/google-web-toolkit/source/detail?r=6893 Modified:

[gwt-contrib] Re: allow prefetching of runAsync code

2009-11-13 Thread bobv
LGTM http://gwt-code-reviews.appspot.com/102801 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r6896 committed - Update MissingPlugin app to include a license, and updating the IE URL...

2009-11-13 Thread codesite-noreply
Revision: 6896 Author: j...@google.com Date: Fri Nov 13 12:30:42 2009 Log: Update MissingPlugin app to include a license, and updating the IE URL. Patch by: jat Review by: bruce (desk) http://code.google.com/p/google-web-toolkit/source/detail?r=6896 Modified:

[gwt-contrib] [google-web-toolkit] r6897 committed - Merge trunk r6896 into this branch...

2009-11-13 Thread codesite-noreply
Revision: 6897 Author: j...@google.com Date: Fri Nov 13 12:34:04 2009 Log: Merge trunk r6896 into this branch Update MissingPlugin app with license and new IE download URL svn merge --ignore-ancestry -c6896 \ http://google-web-toolkit.googlecode.com/svn/trunk/ .

[gwt-contrib] Ensure server info from superclasses doesn't stomp on subclass info

2009-11-13 Thread rice
Reviewers: bobv, Description: This fixes external issue 3969 (http://code.google.com/p/google-web-toolkit/issues/detail?id=3969). When a class with superclasses was being serialized, the extra info for the superclass and the subclass were being stored in the same place using WeakMapping. The

[gwt-contrib] Re: Ensure server info from superclasses doesn't stomp on subclass info

2009-11-13 Thread rice
On 2009/11/13 22:01:40, Dan Rice wrote: Ignore the spurious import of Serializable, it's gone now. http://gwt-code-reviews.appspot.com/102817 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Ensure server info from superclasses doesn't stomp on subclass info

2009-11-13 Thread BobV
That's going to bake a lot of extra string constants into the JS. Can you find a way to avoid that? -- Bob Vawter Google Web Toolkit Team -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Development mode in Chrome content scripts (and other strange places)

2009-11-13 Thread Joel Webber
[Just so you know, people *are* actually reading email -- everyone's just very heads-down at the moment. I pinged Kelly recently to make sure he had read it and was actually planning on responding.] On Mon, Nov 9, 2009 at 10:06 PM, Matt Mastracci matt...@mastracci.comwrote: Hey all, We're

[gwt-contrib] [google-web-toolkit] r6898 committed - Fix generators being interleaved between threads, since most generator...

2009-11-13 Thread codesite-noreply
Revision: 6898 Author: j...@google.com Date: Fri Nov 13 15:37:33 2009 Log: Fix generators being interleaved between threads, since most generators are not thread-safe. Patch by: jat Review by: spoon (desk), scottb (TBR), bobv(TBR)

[gwt-contrib] [google-web-toolkit] r6899 committed - Merge trunk r6898 into this branch...

2009-11-13 Thread codesite-noreply
Revision: 6899 Author: j...@google.com Date: Fri Nov 13 15:41:02 2009 Log: Merge trunk r6898 into this branch Serialize generator runs. svn merge --ignore-ancestry -c6898 \ http://google-web-toolkit.googlecode.com/svn/trunk/ .

[gwt-contrib] [google-web-toolkit] r6900 committed - Update MissingPlugin app to include missing files, update build file t...

2009-11-13 Thread codesite-noreply
Revision: 6900 Author: j...@google.com Date: Fri Nov 13 16:38:10 2009 Log: Update MissingPlugin app to include missing files, update build file to fit in better with the rest of the ant build (not complete yet). Patch by: jat Review by: bruce (TBR)

[gwt-contrib] [google-web-toolkit] r6902 committed - Merge trunk r6900 into this branch...

2009-11-13 Thread codesite-noreply
Revision: 6902 Author: j...@google.com Date: Fri Nov 13 16:43:36 2009 Log: Merge trunk r6900 into this branch Add missing files from MissingPlugin, improve build.xml integration svn merge --ignore-ancestry -c6900 \ http://google-web-toolkit.googlecode.com/svn/trunk/ .

[gwt-contrib] Fix a nasty attribute parsing bug in UiBinder

2009-11-13 Thread rjrjr
Reviewers: jgw, Message: Review requested SVP Description: AttributeParsing was pretty much working by accident, and not at all for the deprecated urn:with mechanism. I'm not 100% certain there weren't non-deprecated paths that were broken too. Attribute parsing is still too complicated, but