Re: data interchange speed

2009-08-05 Thread brett.wooldridge
I'm pretty sure JSON is going to be faster because of the unmarshalling speed on the client. There is nothing to prevent mixing the models a bit. XML sent to the server (probably most efficient for Java to demarshal using stax), and JSON sent in response to the client. On the server, custom

Re: GWT and IE 8

2009-08-05 Thread Roland
Thanks a lot, it worked On Jul 31, 4:54 pm, jhulford jhulf...@gmail.com wrote: We have the exact same situation.  All you really need to do is create a property provider override for the user.agent property in yourGWT module xml file.  All I did was grab the user agent detection script from

Re: data interchange speed

2009-08-05 Thread cw teoh
how about google protocol buffer compared with json? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe

Re: Installer for Deploying GWT Applications

2009-08-05 Thread brett.wooldridge
After looking at his site, it appears they (want to) sell a shrink- wrap server that the customer does indeed install (like a JBoss enterprise server-based product or some such. If you're looking for something that customers can test drive, I suggest looking at something like VMWare Player and

Re: Widget not rendered completely when its appended to DOM dynamically.

2009-08-05 Thread andrej
Your HorizontalPanel was not added to a parent widget, so Widget.onAttach() was not called. This is where event handlers are setup. You could hack your panel to call Widget.onAttach(), but there's probably a cleaner ways to do this. Can't you use RootPanel.get (parentId).add(panel) to add your

Re: GWT + light streamer = integration problems

2009-08-05 Thread mnenchev
Hi, all. I resolved my PushPage is not defined error, just with adding $wnd like this var pushpage = new $wnd.PushPage() but i'm getting Error: Permission denied to get property Window.PushPage because of the same origin policy. Amy idea how to fix this? regards.

problem with history in hosted mode

2009-08-05 Thread Jeremiah Moses
Hey, I am having a strange problem with history i use the value change handler and had the problme wiht both 1.64 and now with 1.7. the problem is this error that comes in hosted mode and on internet explorer [INFO] Unable to initialize the history subsystem; did you include the history frame

Re: integrate GWT into SVN

2009-08-05 Thread Tobe
Now, I have a SVN project with PHP where I want to integrate GWT. Therefore the src and war folders shall be located in the trunk folder. What do I have to change in the project-name.gwt.xml (or somewhere else) that GWT can find the Entry-Point to compile it in Eclipse? On Jul 22, 12:54 pm,

GWT 1.7 - Avoid serializable objects

2009-08-05 Thread Algian
Hi, Does anyone know how I can avoid serializable objects being compiled in GWT 1.7. I don't have any RPC calls that use serializable objects so I'm wondering if anything gets compiled as serializable - if the answer is no then I guess there is no need to avoid building serializable objects. If

Replace entry point class depending on html file(page)

2009-08-05 Thread Ice13ill
Hello, I'm trying to use the tag replace-with in .gwt.xml in my GWT project to replace the entrypoint class depending on the html page. I was wondering if there is a way of finding out (in the .gwt.xml file with the property name for example ) what html page is being loaded. Any advices ?

Re: logging/debugging issue with oophm and gwt 1.7

2009-08-05 Thread denis56
Thank's for the suggestion Jason, It did eventually lead me to the solution. Apart from having messed up my ant config (used property value instead of location), I discovered that one needs to compile the project using trunk jars only (gwt-dev-*.jar, gwt-user.jar), in order to be able to use

Re: GWT + light streamer = integration problems

2009-08-05 Thread mariyan nenchev
Hi, i resolved this as well. I just added this: inherits name=com.google.gwt.core.Core/ add-linker name=xs / Regards. On Wed, Aug 5, 2009 at 11:51 AM, mnenchev nenchev.mari...@gmail.com wrote: Hi, all. I resolved my PushPage is not defined error, just with adding $wnd like this var

HashMap bottleneck problem in IE

2009-08-05 Thread Estelito D. Reyes III
Hi, We are using Gwt 1.5.3 at the moment and cannot upgrade to the latest version in the soonest possible time, and we are having some problems with using Hashmaps in our application specially in browsing in IE. (In firefox it is running ok) The HashMaps we're using has String as key value and

Re: gwtSetup is not executed

2009-08-05 Thread Daniel Wellman
No worries, sometimes it just takes another pair of eyes to catch the problem! Dan On Aug 4, 4:27 pm, Art art...@gmail.com wrote: Thanks Daniel for pointing out. It was stupid careless simple mistake. Feel shame to bother everyone. Sorry. --~--~-~--~~~---~--~~

Re: Widget not rendered completely when its appended to DOM dynamically.

2009-08-05 Thread shyam.v...@gmail.com
I tried to do it through RootPanel.get() but I got the error which says A widget that has an existing parent widget may not be added to the detach list. Could not get around this error till now.. let me know if you have a way to get around this... On Aug 5, 2:44 am, andrej gab...@gmail.com

Getting reference to Widget from contained Element's id

2009-08-05 Thread Steve C
If I have the id of an Element that I got using Widget.getElement (then I called setId on that), can I later use the id to get the Element and back up to its Widget? I'm using JSNI with library code that wants the id of an element to control. I'm passing the id into a JSNI function, but also

Re: Widget not rendered completely when its appended to DOM dynamically.

2009-08-05 Thread Isaac Truett
Shyam, As andrej said, you should be using add/remove methods on panels instead of appendChild/removeChild directly on the DOM. It is possible to use the DOM directly, but it's only rarely necessary. - Isaac On Wed, Aug 5, 2009 at 7:39 AM, shyam.v...@gmail.comshyam.v...@gmail.com wrote: I

Testing a library

2009-08-05 Thread Jason.Sadler
Hello everybody, I have a library built with GWT that I need to test thoroughly, and preferably via automated testing. For many components of it I can use unit testing easily enough but some parts use remote HTTP requests. I'm fairly inexperienced with formal testing in general - does anyone

Using exterrnal class in GWT and No source is available error

2009-08-05 Thread Steve C
I'd like to use some external libraries in GWT for the server code, but get the error mentioned above. I took a look at the page at http://code.google.com/intl/fr/webtoolkit/articles/using_gwt_with_hibernate.html, which seems to do just that, and even downloaded the code zip file. But, I haven't

GWT Deep Copy method

2009-08-05 Thread Nathan Wells
Does GWT have a Deep Copy method somewhere? or is there a best practice on how to implement one? I'm thinking I might come up with a static utilities class and do it that way, but I don't want to duplicate efforts... I see that the JRE emulation reference includes the clonable interface, but

Re: PopupPanel setAnimationType() is package-private

2009-08-05 Thread Nathan Wells
Issue 3922 reported: http://code.google.com/p/google-web-toolkit/issues/detail?id=3922 On Aug 4, 11:59 am, Sumit Chandel sumitchan...@google.com wrote: Hi Nathan, Making setAnimationType(AnimationType type) publicly accessible sounds reasonable to me. I couldn't find any issues in the Issue

Re: java.io.NotSerializableException for gwt portlets - wps 6.1

2009-08-05 Thread Jason Morris
This complaint is coming from WebSphere, not GWT. By implementing IsSerializable you've said this object may be serialized by GWT, but you haven't implemented normal java.io.Serializable to make it serializable by WebSphere. When session replication is turned on, any object in the session is

Re: oophm with the lastest eclipse plugin on Mac

2009-08-05 Thread Miguel Méndez
Yes, web app launch configurations using OOPHM on OSX are broken right now. We are still adding the -XstartOnFirstThread flag which is not compatible with OOPHM. I created the following issue 3923http://code.google.com/p/google-web-toolkit/issues/detail?id=3923to track it. On Wed, Aug 5, 2009

XMLParser return carriage

2009-08-05 Thread Nickelnext
Hi all I have some small problems with XML data in my Gwt project. Let's get started: 1) When i get back data from a requestBuilder that reads a config.xml file, (code inside onResponseReceived of sendRequest) document = XMLParser.parse(response.getText()); succ = true;

Re: Quick fix for broken hosted mode with Snow Leopard 10A380 on x86_64

2009-08-05 Thread kugutsumen
On Aug 3, 1:27 pm, brett.wooldridge brett.wooldri...@gmail.com wrote: Jesus Christ, you're considering hacking the Java6 binaries? The 32bit 1.6 JRE is just a separate JRE directory and I also needed it for others java applications that didn't work with 64bit 1.6.  Before I got anywhere near

Re: Quick fix for broken hosted mode with Snow Leopard 10A380 on x86_64

2009-08-05 Thread kugutsumen
Oh you're using 10.5.7. I had no problem on my Leopard machine. I might bug you later about getting OOPHM to work though. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: XMLParser return carriage

2009-08-05 Thread Christian Goudreau
Put your text between CDATA element and you'll be allright. Label only accept plain text and no html. You should use HTML widget or a widget that have sethtml instead Ex JAVA code for CDATA : Element productDescription = xml.createElement(*PRODUCTDESCRIPTIONTAG*); Text productDescriptionText

Re: GWT Deep Copy method

2009-08-05 Thread Christian Goudreau
Anyway, clone method is only a shallow copy. I'm interrested in clean deep copy too ! Christian On Wed, Aug 5, 2009 at 9:54 AM, Nathan Wells nwwe...@gmail.com wrote: Does GWT have a Deep Copy method somewhere? or is there a best practice on how to implement one? I'm thinking I might come up

GWT compiler call from Ant causes Argument list too long error

2009-08-05 Thread ijonas
Hi, I've got a GWT project that I'm upgrading from 1.5.3. to 1.6.4 and after adjusting my Ant build task as follows target name=compile-gwt depends=compile description=GWT compile to JavaScript unless=skip.gwt java failonerror=true fork=true

Performance

2009-08-05 Thread Andy
Hi all I'm currently developing a rich widget which requires some intensive animation. This widget contains a list of spaces. What I want to know is, is it more efficient and can I get better performance by using a standard array (and managing it locally) or by using GWTs ArrayList? How does

GWT hosted in JSF page doesn't work in Google Chrome

2009-08-05 Thread Virgo47
Hello everybody We have a project mixing JBoss Seam with GWT and we couldn't find why it doesn't work in Google Chrome. The exception thrown there is: Uncaught TypeError: Object #a Document has no method 'write' It is on the third line here: function computeScriptBase(){ var thisScript,

Re: JNSI Problem Challenge

2009-08-05 Thread Bigous
Hi Luciano, Jeff is correct. The script that runs inside the HTML runs before the script inside your EntryPoint class. You can check this setting up a timeOut to call a function inside the html... I changed your code to see how it works... ... After the including GWT script... script

Looking for feedback and contributors for GTW-based project

2009-08-05 Thread Roman Kuzmin
Hello all, Recently we released Softaria Desktop Manager. It is a solution similar to Windows Explorer or Gnome desktop in Linux. Except, it works in web-browser and written in GWT. Web Desktop Manager allows running GWT widgets in draggable and resizable windows organized in so-called desktops

No source code is available for ...

2009-08-05 Thread ent...@googlemail.com
I am abit tied of this error messages . I understand that i need something inherit :) . but how to understand what should i inherit what xml file and where can i find this info ? for example for [ERROR] Line 6: No source code is available for type com.google.gwt.core.ext.Generator; did you

Best practice for several html pages

2009-08-05 Thread Insano
I am currently developing a tool using Spring Security and and have two pages. One for the login and the other one for the actual tool. Both pages are built with GWT. What would be the best practice here? Would a module per page make sense? Or a simple module with two entry entry point classes?

Eclipse plugin: Run As - Web Application

2009-08-05 Thread pgraham
Hi all, I'm having some problems running my gwt projects in hosted mode using the Run As - Web Application option from within eclipse. For starters, I'm running eclipse 3.5 with the maven plugin as well as the google plugin. The first problem I have is the following exception: Exception in

Re: Modelling framework

2009-08-05 Thread tall dave
is it still possible to download the non-Pro/EE version of SmartGWT? the page at: http://www.smartclient.com/smartgwt/download.jsp isn't working. On Aug 4, 9:16 pm, ckendrick charles.kendr...@gmail.com wrote: We do give you the ability get in and override any part of the generated SQL as a

cant resize images from imagebundle

2009-08-05 Thread ben fenster
using setSize or setPixelSize methods doesnt work on images from imagebundle is there any way to do such operation on image from imagebundle ? plz help --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google

JSNI and globally defined variables in external javascript

2009-08-05 Thread charlie
I'm trying to wrap soundmanager2 ( http://www.schillmania.com/projects/soundmanager2/ ) , and in their main javascript file at the bottom they instantiate a new SoundManager object called soundManager. I have this code snippet: public class SoundManager2 { public static native void

Re: XMLParser return carriage

2009-08-05 Thread Roberto Mangano
Thanks for your help but I really don't understand well. Should I change every Label with HTML widget or, once i get the data like you said, can I simply put it in the Label.settext?? What is xml that you use? And should i for every node that i parse, create a CDATASection? Or is there the

GWT RPC

2009-08-05 Thread Pavel Byles
Has there been any further word on the GWT bug that requires the following workaround: http://fredsa.allen-sauer.com/2009/04/1st-look-at-app-engine-using-jdo.html? Has this been fixed in 1.7? -- -Pav --~--~-~--~~~---~--~~ You received this message because you are

Re: JSNI and globally defined variables in external javascript

2009-08-05 Thread Shawn Pearce
On Wed, Aug 5, 2009 at 08:48, charliecharlie.f...@gmail.com wrote: I'm trying to wrap soundmanager2 ...     public static native void playSound(String file)         /*-{             soundManager.createSound({               id: 'aSound',               url: 'file.mp3'            

Re: GWT compiler call from Ant causes Argument list too long error

2009-08-05 Thread ijonas
Nothing like answering your own posts... My mistake was in the classpath block off the java/ task The correct form is: target name=compile-gwt depends=compile description=GWT compile to JavaScript unless=skip.gwt java failonerror=true fork=true

Re: GWT RPC

2009-08-05 Thread Fred Sauer
Pavel, Some of the annoyances have been cleaned up. The latest plugin takes care of some of that. The biggest thing left is how to deal with detachable 'bytecode enhanced' classes so that they can be sent round trip server-client-server. This has been discussed at length on the GWT user +

Re: JSNI and globally defined variables in external javascript

2009-08-05 Thread charlie
Aha! Thank you. On Wed, Aug 5, 2009 at 11:09 AM, Shawn Pearce s...@google.com wrote: On Wed, Aug 5, 2009 at 08:48, charliecharlie.f...@gmail.com wrote: I'm trying to wrap soundmanager2 ... public static native void playSound(String file) /*-{

GWT Developer Position -- Bellevue, WA

2009-08-05 Thread g...@apptio.com
I am the lead UI engineer at Apptio (www.apptio.com http:// www.apptio.com ), a well-funded startup located in Bellevue, Washington. We’re a small RD team—8 developers—looking to add another UI developer. Our user interface is built 100% with GWT. We leverage existing widgets wherever possible,

error while installing google plugin for eclipse 3.5

2009-08-05 Thread dilip
i followed the instructions of google plugin from google article after some time it throws an error am finiding the difficulty --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

GWT - Can't get result widget to display

2009-08-05 Thread Krysgian
I can't seem to get my async callback to fire. I don't get it. What I'm trying to do is get information from a database, through a server side service (ToolServiceImpl, not shown here as I know it works) and then use the keys in the resulting HashMap to populate Tab Bars. When I execute it, my

Re: Eclipse plugin: Run As - Web Application

2009-08-05 Thread Keith Platfoot
Hi Philip, The Google Eclipse Plugin is not entirely compatible with Maven, so I suspect the interaction between the two plugins may be the source of your troubles. Is it possible to create another GWT project which does *not* use the Maven plugin, and see if you run into similar problems? Let

Re: XMLParser return carriage

2009-08-05 Thread Nickelnext
Hello. I tried your way but sure I miss something because it does not work. My application is: - config.xml file contentText here text here. text here. text here. /content contentOther text here text here. text here. /content and gwt code HTML contHTML = new

Re: XMLParser return carriage

2009-08-05 Thread Christian Goudreau
You don't have to do it for every node, only those where there is formatted text with html tags or carriage return. Simple raw text don't need to be put between CDATA. In fact, only productDescription of my app got CDATA section, every other one is between simple tag like yours. When you want to

Re: XMLParser return carriage

2009-08-05 Thread Christian Goudreau
Hummm forgot something, anyone correct me if i'm wrong but, if you want to do a list of content, you should write your xml like this : content contentDescription![CDATA[Text here text here. text here. text here.]]/contentDescription /content ... And then my methods will work, because I'm reading

Re: RichTextToolbar Question

2009-08-05 Thread mdwarne
Hi, Making the toolbar standard would be great. I am using the demo version in one of my projects. I have a small enhancement request however. Would it be possible for the link button/ dialog box to allow specifing a target for the URL. My application will allow admin users to post an HTML

Re: GWT RPC

2009-08-05 Thread Pavel Byles
Ok, this is great news. I will try this w/o your workaround and hope for the best. On Wed, Aug 5, 2009 at 12:21 PM, Fred Sauer fre...@google.com wrote: Pavel, Some of the annoyances have been cleaned up. The latest plugin takes care of some of that. The biggest thing left is how to deal

Re: Eclipse plugin: Run As - Web Application

2009-08-05 Thread Philip Graham
Hi Keith, I've copied one of my projects and stripped it down to the bare minimum, removed it's pom file, imported it as a normal Java project and set it up to use GWT. When I try and run I get a similar error: Exception in thread main java.lang.UnsatisfiedLinkError: Can't load library:

Re: GWT RPC

2009-08-05 Thread Fred Sauer
Let me know how it goes with the latest plugin and GWT 1.7.0. Just to be clear, JDO enhanced classes still won't pass round trip, even if they are in detached state. For that you still need to transfer some sort of DTO between client and server. However, if you just want to take a JDO class and

Re: Profiling memory usage for large gwt application

2009-08-05 Thread ankuur
hi Actully we have built the code from the gwt trunk.so the breaking of code is not done manuallyit is one of the feature of gwt 2.0. Its true that only our application is running on the browser and the memory has reached upto 700MB.and out codebase really huge with lots of

Re: java.io.NotSerializableException for gwt portlets - wps 6.1

2009-08-05 Thread kss
Thanks for the quick reply. I now understand the issue. So in the gwt client side code we are using the getThreadLocalRequest().getSession() to put objects in HttpSession. But i guess those objects are gwt serializable but not java.io.serializable. Any ideas on how to resolve this ? On Aug 5,

Menu sample

2009-08-05 Thread Rado
Can somebody point me to some GWT Menu/MenuItem sample on the net compiled with PRETTY to see plain javascript please? I need to see how does it's menu work in javascript. I wanted to download GWT source but I couldn't find it in single file. Thank you.

Adding resize listener/handler to VerticalPanel

2009-08-05 Thread Pandaman
How do I add a listener/handler to a VerticalPanel such that it is triggered when the VerticalPanel changes in size? I've basically tried the following: VerticalPanel myPanel = new VerticalPanel(); //... code to add child widgets that may change the size of the parent vertical panel ...

Re: GWT RPC

2009-08-05 Thread Michael Welter
FYI, I loaded-up Bruno Marchesson's ( http://noon.gilead.free.fr/gilead/ ) adapter4appengine-1.0M2.jar, changed one line in my server-side module, and I'm now able to perform normal CRUD operations on instrumented Java objects using GWT. Even though this is a milestone release for community

Re: Google plugin demands an -AsyncAsync version of a service interface [Solved]

2009-08-05 Thread Robnauticus-
Hello I am having a similar issue. The new version of the Eclipse plugin throws an error because I have a base interface that all of my remote service interfaces are based from. It wants me to create an async version of my base interface. Is there a way to prevent this from throwing an error

Re: Google plugin demands an -AsyncAsync version of a service interface [Solved]

2009-08-05 Thread Tim McCormack
On Aug 5, 7:47 pm, Robnauticus- robnauti...@gmail.com wrote: Hello I am having a similar issue.  The new version of the Eclipse plugin throws an error because I have a base interface that all of my remote service interfaces are based from.  It wants me to create an async version of my base

Can't set vertical size of TabPanel

2009-08-05 Thread Joseph Arceneaux
Creating a generic TabPanel with corresponding CSS as follows: .tabPanel { width: 1100px; height: 700px; } results in correctly setting the width, but not the height. Tweaking the values in Firebug yields similar results, I can change the height just fine, but not the width. I've also noticed

HTMLPanel sizing

2009-08-05 Thread Senn
I have site where I generate HTML on the fly and want to display it in a panel with the following setup: AbsolutePanel panel = new AbsolutePanel(); ... HTMLPanel htmlPanel = new HTMLPanel(customHTML); panel.add(htmlPanel, 0, 0); panel.setHeight(htmlPanel.getOffsetHeight() + px);

Save as dialog box

2009-08-05 Thread Charlie
Hello Right now I'm using Window.open function in order for the user to download files from my web-app but this leads to the internet exploer do the block bar and when you enable it , it refreshes the page is there any way to avoid this? I searched around but couldn't find anything that works.

Tab Panel Dynamic Content .

2009-08-05 Thread Guess What
I am using EXT GWT . I have two isues. 1. I want to load the contents inside a Tab Panel Dynamically , when the tab is being clicked i wanted to go to the server and getch data . Can anyone show me some sample .I have attached my piece of code . (ripped from examples) 2. The code below

multiple pages, single module, different urls

2009-08-05 Thread davis
Hi, I've read the posts here: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/7ea87cb9ffa30954/7e951b48eca06f4a?lnk=gstq=login#7e951b48eca06f4a and here:

Re: Google plugin demands an -AsyncAsync version of a service interface [Solved]

2009-08-05 Thread Robnauticus-
My abstract class provides nothing currently for its descendants. I was going to leave it there for expansion later on. I will try switching it back should I need that...Maybe a few versions from now. Thanks Tim! On Aug 5, 4:56 pm, Tim McCormack ti...@ccs.neu.edu wrote: On Aug 5, 7:47 

Home Page is Loading very slow in GWT

2009-08-05 Thread JavaTech
Hello All- I am using GWT 1.5.3 More over home page loading is very slow. I checked with all things fine . When ever home page load the Genreated cache.html size is around 4MB is loaded. is this reason home page is loading is very low? if possible let us know reducing cache.html when

[gwt-contrib] Re: UIBinder

2009-08-05 Thread brett.wooldridge
You made my week! On Aug 4, 10:42 pm, Ray Ryan rj...@google.com wrote: How does today strike you? It's headed into gwt trunk, and will be part of the 2.0 release. On Tuesday, August 4, 2009, brett.wooldridge brett.wooldri...@gmail.com wrote: Ping.  This not this month any more, it's

[gwt-contrib] Re: Hello UiBinder

2009-08-05 Thread brett.wooldridge
Just a question, and a comment. First the comment. Thank you for getting this up into the repo, in whatever state. Second, it was commented that Adwords and a few other projects have vetted this over the past year. How does this jibe with the deficiencies outlined? For example, not being able

[gwt-contrib] Re: FastTreeItem Selection problem

2009-08-05 Thread Gabriel Guerrero
Hi Joel, Thanks for the response I created the issue, here is the link http://code.google.com/p/google-web-toolkit-incubator/issues/detail?id=297 Cheers Gabriel On Jul 31, 2:09 pm, Joel Webber j...@google.com wrote: Gabriel, If you could enter an issue for this and cc' me on it, that would

[gwt-contrib] Re: TBR: checkstyle fix for Layout patch

2009-08-05 Thread Joel Webber
Whoops, thanks Ray. On Tue, Aug 4, 2009 at 6:49 PM, Ray Ryan rj...@google.com wrote: http://code.google.com/p/google-web-toolkit/source/detail?r=5878 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Initial implementation of layout system, along with the first two layout widgets.

2009-08-05 Thread Sami Jaber
We considered doing something like this originally, and I think it's the right approach for Swing/SWT. However, when you have to implement these layouts in (...) impossible to change a panel's layout after it's constructed, because it forces you to reconstruct the entire DOM. I understand,

[gwt-contrib] [google-web-toolkit] r5881 committed - Add Linux x86 FF3 libraries.

2009-08-05 Thread codesite-noreply
Revision: 5881 Author: j...@google.com Date: Wed Aug 5 06:36:35 2009 Log: Add Linux x86 FF3 libraries. http://code.google.com/p/google-web-toolkit/source/detail?r=5881 Added: /plugin-sdks/gecko-sdks/gecko-1.9.0/Linux_x86-gcc3/lib/libmozjs.so

[gwt-contrib] Re: Initial implementation of layout system, along with the first two layout widgets.

2009-08-05 Thread Joel Webber
On Wed, Aug 5, 2009 at 8:32 AM, Sami Jaber sami.ja...@gmail.com wrote: We considered doing something like this originally, and I think it's the right approach for Swing/SWT. However, when you have to implement these layouts in (...) impossible to change a panel's layout after it's

[gwt-contrib] Minor tweaks in response to post-TBR review.

2009-08-05 Thread jgw
Reviewers: jlabanca, Please review this at http://gwt-code-reviews.appspot.com/55804 Affected files: M user/javadoc/com/google/gwt/examples/LayoutPanelExample.java M user/src/com/google/gwt/layout/client/Layout.java M user/src/com/google/gwt/layout/client/LayoutImpl.java

[gwt-contrib] Re: Initial implementation of layout system, along with the first two layout widgets.

2009-08-05 Thread jgw
Since this was committed TBR last night, I've added all the changes discussed here to http://gwt-code-reviews.appspot.com/55804 http://gwt-code-reviews.appspot.com/51830/diff/2003/2004 File user/javadoc/com/google/gwt/examples/LayoutPanelExample.java (right):

[gwt-contrib] Re: Minor tweaks in response to post-TBR review.

2009-08-05 Thread jlabanca
LGTM Just change onAttached/onDetached to onAttach/onDetach. http://gwt-code-reviews.appspot.com/55804/diff/1/6 File user/src/com/google/gwt/layout/client/Layout.java (right): http://gwt-code-reviews.appspot.com/55804/diff/1/6#newcode495 Line 495: public void onAttached() { Should be

[gwt-contrib] Re: Minor tweaks in response to post-TBR review.

2009-08-05 Thread jgw
Committed at r5882. http://gwt-code-reviews.appspot.com/55804/diff/1/6 File user/src/com/google/gwt/layout/client/Layout.java (right): http://gwt-code-reviews.appspot.com/55804/diff/1/6#newcode495 Line 495: public void onAttached() { On 2009/08/05 14:34:34, jlabanca wrote: Should be

[gwt-contrib] [google-web-toolkit] r5882 committed - Minor tweaks to Layout code in response to post-TBR review....

2009-08-05 Thread codesite-noreply
Revision: 5882 Author: j...@google.com Date: Wed Aug 5 07:51:26 2009 Log: Minor tweaks to Layout code in response to post-TBR review. Review: http://gwt-code-reviews.appspot.com/55804 http://code.google.com/p/google-web-toolkit/source/detail?r=5882 Modified:

[gwt-contrib] [google-web-toolkit] r5883 committed - Fixing missing Layout module include.

2009-08-05 Thread codesite-noreply
Revision: 5883 Author: j...@google.com Date: Wed Aug 5 08:05:56 2009 Log: Fixing missing Layout module include. http://code.google.com/p/google-web-toolkit/source/detail?r=5883 Modified: /trunk/user/src/com/google/gwt/user/User.gwt.xml === ---

[gwt-contrib] changes to OOPHM plugins to support protocol changes

2009-08-05 Thread jat
Reviewers: bobv, Description: This is the native-code portion of the changes to the OOPHM wire protocol and initialization sequence. The common code and XPCOM changes have been tested, the IE and WebKit changes have not so there may be obvious errors there (especially since I am not familiar

[gwt-contrib] Re: UIBinder

2009-08-05 Thread Bruce Johnson
We're shooting for a milestone drop in a few weeks, and we're planning for an RC by the end of the quarter. But, you know how predicting dates goes... On 8/4/09, Claudemir Todo Bom claude...@gmail.com wrote: is there an ETA for 2.0? On Aug 4, 10:42 am, Ray Ryan rj...@google.com wrote: How

[gwt-contrib] [google-web-toolkit] r5885 committed - Edited wiki page through web user interface.

2009-08-05 Thread codesite-noreply
Revision: 5885 Author: rj...@google.com Date: Wed Aug 5 12:08:19 2009 Log: Edited wiki page through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=5885 Modified: /wiki/UsingOOPHM.wiki === --- /wiki/UsingOOPHM.wiki Thu

[gwt-contrib] [google-web-toolkit] r5887 committed - This patch adds emma code coverage statistics to the output of an ant ...

2009-08-05 Thread codesite-noreply
Revision: 5887 Author: jlaba...@google.com Date: Wed Aug 5 12:55:36 2009 Log: This patch adds emma code coverage statistics to the output of an ant test when emma.enabled is set. Patch by: jlabanca Review by: fabbott http://code.google.com/p/google-web-toolkit/source/detail?r=5887

[gwt-contrib] Re: Initial implementation of layout system, along with the first two layout widgets.

2009-08-05 Thread Sami Jaber
AFAICT, what's happening here is that the layout works properly in the sense that the tables inside the various LayoutPanels are in fact laid out as requested. The problem is that children nested *inside* table cells don't take up the entire cell in standards mode, even if their width/height

[gwt-contrib] [google-web-toolkit] r5888 committed - Turn on batching mode for disableClassMetaData and draftCompile, now t...

2009-08-05 Thread codesite-noreply
Revision: 5888 Author: amitman...@google.com Date: Wed Aug 5 15:18:29 2009 Log: Turn on batching mode for disableClassMetaData and draftCompile, now that John has increased the timeout limit for slow-script-warnings Patch by: amitmanjhi

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

2009-08-05 Thread codesite-noreply
Comment by m...@oizo.biz: I need opera plugin too For more information: http://code.google.com/p/google-web-toolkit/wiki/UsingOOPHM --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Gecko SDKs for Mac

2009-08-05 Thread Sam Gross
Hi John, I'm glad to see the Gecko SDKs landed in SVN. Here are three sets of changes so that the plugin can be built for Firefox 2.0, 3.0, and 3.5 on the Mac. (1) Here's a patch that adds gecko-1.9.1 for Mac and libxpcomglue_s.a for gecko-1.8 and gecko-1.9.0. I also included some files that

[gwt-contrib] [google-web-toolkit] r5889 committed - I had added these dependencies to get htmlunit working. However, we ha...

2009-08-05 Thread codesite-noreply
Revision: 5889 Author: amitman...@google.com Date: Wed Aug 5 17:30:52 2009 Log: I had added these dependencies to get htmlunit working. However, we have more recent versions of these libraries in the tools dir and upgrading to them is not breaking htmlunit. The xercesImpl-2.8.1 jar was also

[gwt-contrib] [google-web-toolkit] r5890 committed - Updates the htmlunit dependencies and restores the test.web.htmlunit t...

2009-08-05 Thread codesite-noreply
Revision: 5890 Author: amitman...@google.com Date: Wed Aug 5 17:37:05 2009 Log: Updates the htmlunit dependencies and restores the test.web.htmlunit test target. Patch by: amitmanjhi Review by: rjrjr http://code.google.com/p/google-web-toolkit/source/detail?r=5890 Modified:

[gwt-contrib] Re: Gecko SDKs for Mac

2009-08-05 Thread John Tamplin
On Wed, Aug 5, 2009 at 7:58 PM, Sam Gross colesb...@gmail.com wrote: (1) Here's a patch that adds gecko-1.9.1 for Mac and libxpcomglue_s.a for gecko-1.8 and gecko-1.9.0. I also included some files that are needed for the executable_path in gecko 1.9.0.

[gwt-contrib] Re: Gecko SDKs for Mac

2009-08-05 Thread John Tamplin
On Wed, Aug 5, 2009 at 7:58 PM, Sam Gross colesb...@gmail.com wrote: A gecko-sdks/gecko-1.9.1/Darwin-gcc3/bin/xpidl This file appears to be just i386 (at least according to the Linux file command) -- does it need to be a universal binary or do we need to provide a way of running an

[gwt-contrib] [google-web-toolkit] r5891 committed - Updates the eclipse .classpath files for gwt-user project to match the...

2009-08-05 Thread codesite-noreply
Revision: 5891 Author: amitman...@google.com Date: Wed Aug 5 18:16:14 2009 Log: Updates the eclipse .classpath files for gwt-user project to match the tools/xerces update (c5889). Patch by: amitmanjhi http://code.google.com/p/google-web-toolkit/source/detail?r=5891 Modified:

[gwt-contrib] [google-web-toolkit] r5897 committed - Rolling back tools and trunk r5889 through 5892 due to ...

2009-08-05 Thread codesite-noreply
Revision: 5897 Author: rj...@google.com Date: Wed Aug 5 20:57:41 2009 Log: Rolling back tools and trunk r5889 through 5892 due to build break http://code.google.com/p/google-web-toolkit/source/detail?r=5897 Added: /tools/lib/xerces/serializer-2.7.1.jar

[gwt-contrib] [google-web-toolkit] r5900 committed - branch-info.txt for snapshot-2009.08.04-r5888

2009-08-05 Thread codesite-noreply
Revision: 5900 Author: rj...@google.com Date: Wed Aug 5 21:32:01 2009 Log: branch-info.txt for snapshot-2009.08.04-r5888 http://code.google.com/p/google-web-toolkit/source/detail?r=5900 Added: /branches/snapshot-2009.08.04-r5888/branch-info.txt === ---

[gwt-contrib] Re: Gecko SDKs for Mac

2009-08-05 Thread Sam Gross
I agree with jsautocfg64.h, but the others look platform-independent. Do having them there cause problems for the Mac build? In gecko-1.9.1: The prcpucfg.h file differs between platforms. The version in gecko-1.9.1/include causes problems for the mac build. D