Re: Direct call a RemoteServiceServlet

2008-12-09 Thread Arul
Hi Gregor, I would like to thank you for your reply. I understood your answers regarding changing of presentation layer concepts. But my client asked me to replace only presentation (Web Tier) and I suggested GWT. I wanted to confirm the possibility of doing it. I am doing research on that.

Re: GWTShell and facelet.

2008-12-09 Thread olivier FRESSE
Hmm no, I have a script/script tag. I'm still digging :-) O. 2008/12/9 Sumit Chandel [EMAIL PROTECTED] Hi Olivier, Can you double-check to make sure that you're not using an empty script tag to reference your GWT bootstrap script? I..e, script src=com.google.app.MyModule.nocache.js /

Re: Annoying issue, integrating with Hibernate

2008-12-09 Thread Martin Trummer
you should take a look at: http://noon.gilead.free.fr/gilead (formerly known as hibernate4gwt) On Dec 7, 10:54 am, LoneWolf [EMAIL PROTECTED] wrote: Hey, Our application is using Hibernate 3 as the persistence mechanism, and of course we have one-to-many relationship. The problem is when

Re: Toggle text color in timer

2008-12-09 Thread ArunDhaJ
Hi All, Thanks for the support for solving this problem... I've created my own Label to make it blink... Thought it might help, I have shared it... http://www.arundhaj.com/2008/12/gwt-blinking-label.html Regards ArunDhaJ --~--~-~--~~~---~--~~ You received this

Re: Error executing RPC call after updating to GWT 1.5.3

2008-12-09 Thread Danny Goovaerts
I've experienced the same problem. Be sure to use the 1.5.3 version of the gwt-servlet.jar in your Tomcat deployment. This fixed the problem for me. Danny a_martinez schreef: Hi, I developed an application with several services. After updating from GWT 1.5.2 to 1.5.3 the RPC calls to the

GWT compiler bug - javascript != java when method exists both on interface and superclass

2008-12-09 Thread Simon Vogensen
Hi I have been hunting a bug that only showed itself when my app was running in the browser. The problem was that the GWT 1.5.2 compiler produced javascript code that didnt match the java code. My situation was the following: I have the class structure showed below: interface I { void

Re: How to share work between Java developers and HTML/CSS designers?

2008-12-09 Thread Nizam
We are in the process of buying a couple of Instantiations GWT Designer licenses. The WYSIWYG capability in their tool is not very flexible, though. We were not able to create any useful screens using the WYSIWYG feature alone. Had to do a lot of manual tweaking. On Dec 5, 9:16 am, rakesh wagh

Re: How to share work between Java developers and HTML/CSS designers?

2008-12-09 Thread Nizam
After I started this thread, a new article has come up on the GWT blog which talks about how the folks at studyblue.com approached the styling issue. Here is the link to the post: http://googlewebtoolkit.blogspot.com/2008/12/gwt-no-need-to-shortchange-your-style.html On Dec 6, 10:02 am, Chii

Re: Left or Right arrow Key press doesn't work for Textbox inside a TreeItem in GWT 1.5

2008-12-09 Thread Ravi
Fixed it with the following:- public void onKeyDown(Widget sender, char keyCode, int arg2) { if ((keyCode == KEY_LEFT || keyCode == KEY_RIGHT ) (sender instanceof TextBox)) { DOM.eventCancelBubble(DOM.eventGetCurrentEvent(), true); } } On Dec 8, 5:25 pm, Ravi [EMAIL

TestBox inside CheckBox's text

2008-12-09 Thread Danny Schimke
I want to use a TextBox inside the CheckBox- label. For example: *[X]* Save in *TextBox* minutes I can do it by using the toString()- method on TextBox, but it is behaving incorrectly: - Firefox (un)checks the CheckBox by clicking into the TextBox - The TextBox- Object is not the TextBox which

Re: dao and GWT

2008-12-09 Thread Arthur Kalmenson
You'll be better off asking on the GXT mailing list. This mailing list is specific to GWT. GWT is very different from GXT. -- Arthur Kalmenson On Sun, Dec 7, 2008 at 9:45 PM, rizla [EMAIL PROTECTED] wrote: up :( On 3 Dic, 13:46, rizla [EMAIL PROTECTED] wrote: many thanks for the

Re: Disabling lazy loading

2008-12-09 Thread Arthur Kalmenson
You're going to have to provide a little bit more detail then that if you would like your question answered. What widgets are you using? How are you using them? -- Arthur Kalmenson On Mon, Dec 8, 2008 at 12:51 AM, sarav [EMAIL PROTECTED] wrote: How can I disable lazy loading and force

Re: Standard/Simple GWT CSS?

2008-12-09 Thread Arthur Kalmenson
Hello David and tomato, I highly recommend you stay as far away from Ext-GWT, SmartGWT and GWT-ext as you can. Gregor said it best, while they might look shiny, they are as slow as molasses and a huge PITA to work with. Once you start using them, you fall into their overly complex and

Re: Standard/Simple GWT CSS?

2008-12-09 Thread David Hoffer
Hi Arther, Your comments are well taken. Since I have heard this before we have used pure GWT. However, at this point however, I do think GWT missed it a bit here because most Java programmers do not know CSS, at least not well, and you cannot use GWT without knowing CSS. This fact, I think

Re: How to share work between Java developers and HTML/CSS designers?

2008-12-09 Thread olivier FRESSE
I fully agree with this way of working. We've been able to work with web designer with a very similar way of working. Our GWT components are very simple, and all the style is managed by CSS. I think that it's really important to keep in mind that GWT is not a Swing API in disguise :-) 2008/12/9

Sizing

2008-12-09 Thread dadom...@googlemail.com
Hi, have a problem with my CSS sizing of my GWT Elements. A Very Short Example: *CSS* .codingArea{ width:100%; height:100%; background-color:red; } now i have a DialogBox with a fix Size, where i add 2 Widgets, (ListBox and Textarea) now the Textarea should use all Space: *GWT*

Re: Charting capabilities under GWT

2008-12-09 Thread Lonifasiko
Hi Joe, Wow! AmCharts looks awesome, I'll take a deep look to these Flash controls. Is it easy to integrate them under GWT application? Thanks and regards. -- Miguel Blog: http://lonifasiko.blogspot.com On 5 dic, 12:16, Joe Cole [EMAIL PROTECTED] wrote: Hi Miguel, We have successfully

Re: Annoying issue, integrating with Hibernate

2008-12-09 Thread Greg
Sorry for the inaccurate info about Hibernate4Gwt, it's been a while since I looked at it. I would agree that depending on how you use Hibernate, the quick solution may or may not work for you. While my objects are not always fully populated on the server, the serialization process forces them

How to change tab widget in TabPanel?

2008-12-09 Thread dhoffer
How can I modify the tab widget in a TabPanel? I don't see any set methods for Widgets or tab Widgets. Do I have to remove the existing Widget just to re-add the same Widget with a different tab widget? What kind of screen flash/update will this cause? This seems like a major oversight in the

Re: How to change tab widget in TabPanel?

2008-12-09 Thread David Hoffer
It looks like I might be able to change the tab via setTabHTML on the TabBar. There is no way to get and modify the same component that was placed in the tab bar but I might be able to set its HTML to the same effect. -Dave On Tue, Dec 9, 2008 at 8:44 AM, dhoffer [EMAIL PROTECTED] wrote: How

Re: Charting capabilities under GWT

2008-12-09 Thread Srini Marreddy
I suggest to take a look at Google charts api. It is very fast simple and no flash plugin required . GWT integration is very easy.( Set the chart url to the Image object). http://code.google.com/apis/chart/ Regards, Srini On Dec 9, 9:34 am, Lonifasiko [EMAIL PROTECTED] wrote: Hi Joe, Wow!

Server Side Byte Code Obfuscation

2008-12-09 Thread Allahbaksh
Hi, We are distributing an application. We want to obfuscate the server side code to the client so that they should not reverse engineer the code. Is it works fine? What will happend to servlets? Whether they work fine? Regards, Allahbaksh --~--~-~--~~~---~--~~

Re: Server Side Byte Code Obfuscation

2008-12-09 Thread Shawn Pearce
This is an issue for your obfuscation vendor, not GWT. My guess is it will probably work, the existing Java obfuscators I have seen usually do the right thing. But Java is so dynamic with annotations and reflection it can be really hard to obfuscate it and still have something that actually

Re: Server Side Byte Code Obfuscation

2008-12-09 Thread Rob Coops
On Tue, Dec 9, 2008 at 5:17 PM, Allahbaksh [EMAIL PROTECTED] wrote: Hi, We are distributing an application. We want to obfuscate the server side code to the client so that they should not reverse engineer the code. Is it works fine? What will happend to servlets? Whether they work fine?

Re: TestBox inside CheckBox's text

2008-12-09 Thread rakesh wagh
Create a Composite widget with a checkbox and textbox inside it. On Dec 9, 5:45 am, Danny Schimke [EMAIL PROTECTED] wrote: I want to use a TextBox inside the CheckBox- label. For example: *[X]* Save in *TextBox* minutes I can do it by using the toString()- method on TextBox, but it is

Capabilities of GWT interfacing with Java applets

2008-12-09 Thread Alfred S
Hello All, I'm interested in using GWT for a project, but I have some questions. I'm working on a proof of concept to try to answer them on my own, but I thought it couldn't hurt to ask the group as well. The client-side requirements for this project include two Java applets. These applets

Servlet autostart / load-on-startup

2008-12-09 Thread Pierre Lavignotte
Hi all, I've added a basic HttpServlet in my GWT application. No problem with that, except that I want that servlet to start on the application start-up. So I've added the load-on-startup1/load-on-startup to my servlet declaration in web.xml but it has no effect in hosted mode. However, it

Re: How to have a layered panel?

2008-12-09 Thread Petrus Pelser
The component in the incubator is called a GlassPanel and it works really well. Though I did have some issues with the blur event in IE, but I could easily fix it by catching and ignoring the onBlur() call. Suri wrote: Hi Rakesh, Isaac Litty Thanks for the replies. Since I'm currently

ScrollTable and DockPanel: ScrollTable expands CENTER panel to hide SOUTH

2008-12-09 Thread dduck
Hi all, I am trying to do something relatively simple: I want to create a simple, three-pane email-like item browser interface. For that I'm using a DockPanel to host the components, namely queries, result list and single item viewer. The queries go in the WEST panel, the result list goes in the

PopupPanel over pdf bug in Firefox

2008-12-09 Thread ka1n
I have a PopupPanel that is supposed to appear above a Frame (e.g. iframe). It normally works, but if the iframe contains a pdf (or presumably, anything the uses a plugin...flash, java, etc) then the PopupPanel gets buried. I can fix it in DHTML by using an iframe shim, but it is turning out to

Can't solve warnings

2008-12-09 Thread MMM
Hi, first of all sorry for my English and sorry if I wrote this post in wrong place. I have a problem. I wrote this code: ... Vector vector = new Vector(); HashMap map = new HashMap(); ... This code has these warnings: Vector is a raw type. References to

Re: Servlet autostart / load-on-startup

2008-12-09 Thread gregor
Hi Pierre, Funnily enough I've just met a similar problem - a start up serlvet that fires up a number of server resources, but I cannot start it in hosted mode because you can't doctor the embedded Tomcat web.xml. I hacked around this by sticking an init() in one of my early call servlets that

Re: Suggestions with code design

2008-12-09 Thread Rohan Redkar
Everyone, Thank you very much for the inputs. On Mon, Dec 8, 2008 at 3:42 PM, Thomas Broyer [EMAIL PROTECTED] wrote: On 7 déc, 05:54, Rohan Redkar [EMAIL PROTECTED] wrote: Hi everyone, My application requires the user to select a bunch of images from his system. Then I need to do

Java Developer Opportunity in Atlanta using GWT!

2008-12-09 Thread Janna
Hi Everyone! Thanks for taking the time to read this post! A cutting-edge technology company in the hospitality industry is searching for a Java developer who has experience with Google Web Toolkit. Please see more information below. If you or someone you know if interested in this

Re: GWTShell and facelet.

2008-12-09 Thread acc
Hi Olivier, The hosted mode embedded Tomcat server isn't configured with a JSF servlet out of the box, and hence wouldn't be able to handle the *.faces mapping. Are you using hosted mode with the embedded Tomcat server, or with your own server using the -noserver option? If it's the former, you

Re: Standard/Simple GWT CSS?

2008-12-09 Thread gregor
Hi Jeremy, I can't speak for Arthur, but I also interject occasionally on the Ext issue (usually with the rider that I tried MyGWT for only a short while and walked away from it after I realized what was going on). The reason is simply this: many people just post links on this group to Ext

Re: Can't solve warnings

2008-12-09 Thread Isaac Truett
Either upgrade to GWT 1.5 (which does support Java 1.5 syntax) or downgrade to Java 1.4. On Tue, Dec 9, 2008 at 6:59 AM, MMM [EMAIL PROTECTED] wrote: Hi, first of all sorry for my English and sorry if I wrote this post in wrong place. I have a problem. I wrote this code: ...

Re: How to change tab widget in TabPanel?

2008-12-09 Thread gregor
Hi David, You cannot easily get at the widget you used for a tab header. TabBar.getTabHTML() doesn't work if you loaded a widget into a tab header. I am not sure why this is, i.e. why this is so difficult in the case of TabPanel. A solution is to accept that if you need more than CSS to drive

Re: Standard/Simple GWT CSS?

2008-12-09 Thread Jeremy Cohen
Hi gregor,I agree with your post and we have also stopped use of the extJS family of products. Fortunately it was still a proof-of-concept phase. We had to make a different technology choice due to timelines and various technical and strategic reasons. However I really like GWT and the fact that

GWT 1.5.3 with Eclipse

2008-12-09 Thread pgoovaerts
Hi, After a session at Devoxx, Antwerp, i got interested in GWT. I'm using Eclipse-IDE for java and web programming, so i'm searching for an eclipse-plug-in to test GWT with this current IDE. Who can give my a link for such? Any good starting points? Manuals / turorials? thanks.

why DOM.eventGetCurrentEvent().getButton() always returns 1 during MouseMove on FireFox?

2008-12-09 Thread yilativs
Hello, Does anybody know why DOM.eventGetCurrentEvent().getButton() always returns 1 during MouseMove on FireFox. Works fine on IE. Regards Vitaliy --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Re: PagingScrollTable + how to sort locally

2008-12-09 Thread pohl
On Dec 5, 8:38 am, Suri [EMAIL PROTECTED] wrote: Hi Pohl, Thanks for the idea. I figured there could be a way around it maybe, but from what I read about the gen2PagingScrollTablefrom the incubator's synopsis, it seemed like they mentioned the sorting can be done locally as well

Re: Capabilities of GWT interfacing with Java applets

2008-12-09 Thread Alfred S
The information looks to be all there! I was able to successfully experiment a bit with it. Thanks! ~Alfred On Dec 9, 12:45 pm, Shawn Pearce [EMAIL PROTECTED] wrote: To answer your question, yes. Look at JSNI and JavaScriptObject in the GWT documentation:

Re: How to change tab widget in TabPanel?

2008-12-09 Thread David Hoffer
Yeah, extending TabPanel seems like a good way to go as I have dynamic tab content. -Dave On Tue, Dec 9, 2008 at 1:43 PM, gregor [EMAIL PROTECTED] wrote: Hi David, You cannot easily get at the widget you used for a tab header. TabBar.getTabHTML() doesn't work if you loaded a widget into a

Re: GWT 1.5.3 with Eclipse

2008-12-09 Thread Reinier Zwitserloot
You don't really need a plugin. The getting started guide (it's right there on the main GWT website) shows how to run the projectCreator/applicationCreator scripts. These already generate the .project file that eclipse needs (make sure you follow the 'I have eclipse' part of the getting started

Re: GWT 1.5.3 with Eclipse

2008-12-09 Thread [EMAIL PROTECTED]
Check out Instantiations GWT Designer www.instantiations.com An excellent product and a great value. If $60USD is too much, check out http://code.google.com/p/cypal-studio/ Cypal Studio does a lot of work for you, but is missing the visual development tools that GWT Designer has. For

Re: XML and SOP

2008-12-09 Thread Ryan
Thanks for the clear explanation and the direction. I have started implementing the situation in the manner you described (I think), but am running into another problem. The procedure below is the server side of a GWT RPC. The line Method method = RequestBuilder.GET; raises the

Advise for reimplementing a Struts JSP application in GWT

2008-12-09 Thread sunitkatkar
Hello, I have dabbled with GWT and understand how to build UIs and use the Ajax features and RPC mechanism. I seek advise from you about the following How should I go about if I were to reimplement an existing Struts, JSP and handwritten Ajax web application in GWT? The current application has

Re: XML and SOP

2008-12-09 Thread Ryan
Nevermind - I discovered that I can make the request the java.net.HttpURLConnection class... Thanks again for the help... On Dec 9, 4:09 pm, Ryan [EMAIL PROTECTED] wrote: Thanks for the clear explanation and the direction. I have started implementing the situation in the manner you described

Re: PopupPanel over pdf bug in Firefox

2008-12-09 Thread MrEiki
Hi, i've had the same problem with another toolkit. After some research i got to the conclusion that this was due to how the browser (adobe plugin) renders the pdf. Changing the z-index does not work. One way to work around this is simply to let add a listener to the pdf containing element, and

How to put focus on a cell of an editable grid if a particular even occurs

2008-12-09 Thread chhavi
I have an editable grid. I want to put focus on it if an even occurs. Please suggest something. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: GWT 1.5.3 with Eclipse

2008-12-09 Thread paul s
with the maven archetype you can import a project in two steps... = http://gwt-maven.googlecode.com/svn/docs/maven-googlewebtoolkit2-plugin/archetype.html = mvn archetype:create -DarchetypeGroupId=com.totsp.gwt \ -DarchetypeArtifactId=maven-googlewebtoolkit2-archetype \

Re: Native GWT Compiler

2008-12-09 Thread Alex Epshteyn
Does anyone know the answer to this question asked by Dobes: I checked out the trunk and I'm running thecompilerfrom it, but I'm not seeing any performance boost and only one CPU core is being used. Is there a command-line switch to turn on multiple threads? That's why I was reluctant

Re: Multithreaded GWT Compiler

2008-12-09 Thread Alex Epshteyn
(Just changing the title of this thread to match actual discussion subject). On Dec 10, 2:50 am, Alex Epshteyn [EMAIL PROTECTED] wrote: Does anyone know the answer to this question asked by Dobes: I checked out the trunk and I'm running thecompilerfrom it, but I'm not seeing any

[gwt-contrib] Re: getAbsoluteLeft/Top() returns incorrect value in IE when zoomed in

2008-12-09 Thread t . broyer
How about using the screen.deviceXDPI and related properties? See: - http://msdn.microsoft.com/en-us/library/cc849094(VS.85).aspx#DetectViaJava - http://msdn.microsoft.com/en-us/library/ms537625(VS.85).aspx - http://msdn.microsoft.com/en-us/library/ms533721(VS.85).aspx Something like

[gwt-contrib] Re: Why is Timer#schedule(0) bad?

2008-12-09 Thread Thomas Broyer
On 9 déc, 07:16, Kelly Norton [EMAIL PROTECTED] wrote: Chrome: 4ms (fairly recent change) Safari (mac): 10ms Safari (win): 15ms Firefox: 15ms (or 10ms if flash is running) IE: 15ms Opera: I have no clue. So, that's just a really long way of saying that there is no danger in allowing 0

[gwt-contrib] Re: getAbsoluteLeft/Top() returns incorrect value in IE when zoomed in

2008-12-09 Thread Thomas Broyer
On 8 déc, 21:58, [EMAIL PROTECTED] wrote: The DOCTYPE actually makes a difference.  The following DOCTYPE (default in AppHtml.htmlsrc) works fine: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN However, adding the loose.dtd makes body.parentElement return the same size as

[gwt-contrib] Re: getAbsoluteLeft/Top() returns incorrect value in IE when zoomed in

2008-12-09 Thread Emily Crutcher
On Tue, Dec 9, 2008 at 12:42 AM, John LaBanca [EMAIL PROTECTED] wrote: Internet Explorer now works the same as Firefox. That is, with real zoom, absolute positions do not change even though the widget appears further from the left or top. I was going to put that info in the review request,

[gwt-contrib] Re: Tweaks to API checker

2008-12-09 Thread Emily Crutcher
Committed as 4274. On Mon, Dec 8, 2008 at 8:25 PM, Amit Manjhi [EMAIL PROTECTED] wrote: LGTM On Mon, Dec 8, 2008 at 6:40 PM, [EMAIL PROTECTED] wrote: Reviewers: amitmanjhi, Description: Amit, This patch changes the gwt build.xml file to use value rather then location when defining

[gwt-contrib] [google-web-toolkit commit] r4275 - in releases/1.6/user: src/com/google/gwt/user/client/ui test/com/google/gwt/user/client/ui

2008-12-09 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Dec 9 06:31:36 2008 New Revision: 4275 Modified: releases/1.6/user/src/com/google/gwt/user/client/ui/Tree.java releases/1.6/user/test/com/google/gwt/user/client/ui/TreeTest.java Log: Removing deprecated setImageBase method from tree. Modified:

[gwt-contrib] Re: getAbsoluteLeft/Top() returns incorrect value in IE when zoomed in

2008-12-09 Thread jlabanca
committed as r4276 $wnd.screen.deviceXDPI / $wnd.screen.logicalXDPI didn't seem to work (they returned the same value even when zoomed in). Reading through the MSDN docs, it looks deviceXDPI changes when you change your screen resolution, not when you zoom in.

[gwt-contrib] review: build.xml fix on my r4271

2008-12-09 Thread Freeland Abbott
Another patch-review for you, sorry: I'm actually a bit surprised that the prior built, which it did, but I just got a local build error complaining about tarfileset occurring inside a zip for the windows build... dangers of too much cut-n-paste. Patch in-line, as it's so short: Index:

[gwt-contrib] Fix for listenerwrapper, remove listener

2008-12-09 Thread ecc
Reviewers: jlabanca, Description: John, Could you review this fix for the assertion error that happens in some circumstances when you remove Window listeners? Also included are two new test cases to ensure we don't have a regression on this issue. As a side note, I think this situation is

[gwt-contrib] [google-web-toolkit commit] r4274 - in releases/1.6: . tools/api-checker/config

2008-12-09 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Dec 9 06:27:26 2008 New Revision: 4274 Modified: releases/1.6/build.xml releases/1.6/tools/api-checker/config/gwt15_16userApi.conf Log: Updating api-checker config. Modified: releases/1.6/build.xml

[gwt-contrib] [google-web-toolkit commit] r4278 - releases/1.6/eclipse

2008-12-09 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Dec 9 07:43:57 2008 New Revision: 4278 Modified: releases/1.6/eclipse/README.txt Log: Forgot to commit the updated eclipse/README.txt when I was removing references to projectCreator. Modified: releases/1.6/eclipse/README.txt

[gwt-contrib] [google-web-toolkit commit] r4279 - releases/1.6/user/test/com/google/gwt/user/client/ui

2008-12-09 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Dec 9 08:28:08 2008 New Revision: 4279 Modified: releases/1.6/user/test/com/google/gwt/user/client/ui/TreeTest.java Log: Removing test that should have been removed with last commit. TBA:jlabanca Modified:

[gwt-contrib] [google-web-toolkit commit] r4277 - releases/1.6/reference/code-museum/src/com/google/gwt/museum/public

2008-12-09 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Dec 9 07:24:19 2008 New Revision: 4277 Modified: releases/1.6/reference/code-museum/src/com/google/gwt/museum/public/SingleIssue.html Log: I accidentally changed the doc type of SingleIssue.html before submitting r4276. The doctype should have been

[gwt-contrib] [google-web-toolkit commit] r4276 - in releases/1.6: reference/code-museum/src/com/google/gwt/museum/client/defaultmuseum ref...

2008-12-09 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Dec 9 07:17:36 2008 New Revision: 4276 Added: releases/1.6/reference/code-museum/src/com/google/gwt/museum/client/defaultmuseum/Issue3172.java Modified:

[gwt-contrib] Re: Fix for listenerwrapper, remove listener

2008-12-09 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/603 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] [google-web-toolkit commit] r4280 - wiki

2008-12-09 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Dec 9 10:14:21 2008 New Revision: 4280 Modified: wiki/WAR_Design_1_6.wiki Log: Removed the whole module-session idea due to it creating too many issues. Modified: wiki/WAR_Design_1_6.wiki

[gwt-contrib] Re: Basic rough-cut of 1.6 WAR support

2008-12-09 Thread Lex Spoon
On Fri, Dec 5, 2008 at 12:28 PM, BobV [EMAIL PROTECTED] wrote: - Several classes in user/test/.../server/rpc do not compile against Jetty given the difference in the servlet API in Jetty versus Tomcat. This is problematic when using an Eclipse project structure that isn't hamstrung by linked

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

2008-12-09 Thread codesite-noreply
Comment by danigb: great!! i really like this! For more information: http://code.google.com/p/google-web-toolkit/wiki/WAR_Design_1_6 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

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

2008-12-09 Thread codesite-noreply
Comment by danigb: this looks amazing! go ahead! For more information: http://code.google.com/p/google-web-toolkit/wiki/DesignOOPHM --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Warning message in IE6 when using NamedFrame on SSL-secured web-site

2008-12-09 Thread jlabanca
Reviewers: ecc, Description: Description: The iframe created in a NamedFrame does not have a src, so it throws a mixed content warning in IE6 on an SSL-secured website. Fix: Setting the source to javascript:'' fixes the problem, and we've used the same trick on all other

[gwt-contrib] Re: Warning message in IE6 when using NamedFrame on SSL-secured web-site

2008-12-09 Thread jlabanca
The diff didn't go through for DefaultMuseum.java. Here is that part of the patch: Index: reference/code-museum/src/com/google/gwt/museum/client/defaultmuseum/DefaultMuseum.java === ---

[gwt-contrib] Re: Warning message in IE6 when using NamedFrame on SSL-secured web-site

2008-12-09 Thread John LaBanca
Frames are used to load external sites, so the src is likely an actual URL, whereas NamedFrames are used locally and in FormPanels. While NamedFrames can be used for external sites and vice versa, that isn't the default use case. Also, people can change the URL of a NamedFrame via setUrl(), and

[gwt-contrib] Re: Warning message in IE6 when using NamedFrame on SSL-secured web-site

2008-12-09 Thread Emily Crutcher
Why is this a problem for NamedFrames but not Frames? Other then that, LGTM. On Tue, Dec 9, 2008 at 3:10 PM, [EMAIL PROTECTED] wrote: Reviewers: ecc, Description: Description: The iframe created in a NamedFrame does not have a src, so it throws a mixed content warning in IE6

[gwt-contrib] [google-web-toolkit commit] r4284 - wiki

2008-12-09 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Dec 9 12:58:53 2008 New Revision: 4284 Modified: wiki/GwtJavaApiCompatibilityChecker.wiki Log: Edited wiki page through web user interface. Modified: wiki/GwtJavaApiCompatibilityChecker.wiki

[gwt-contrib] [google-web-toolkit commit] r4286 - wiki

2008-12-09 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Dec 9 13:04:40 2008 New Revision: 4286 Modified: wiki/GwtJavaApiCompatibilityChecker.wiki Log: Edited wiki page through web user interface. Modified: wiki/GwtJavaApiCompatibilityChecker.wiki

[gwt-contrib] RR: Adding api-checker to selected packages in gwt-incubator

2008-12-09 Thread Emily Crutcher
In gwt-incubator, we want to be able to tag widgets/libaries alpha/beta/releaseCandidate. However, this implies an extra level of support for releaseCandidate libraries/widgets. Specifically, between each incubator drop, if we had to break the API, which we will occasionally need to do, we want

[gwt-contrib] [google-web-toolkit commit] r4282 - wiki

2008-12-09 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Dec 9 12:49:24 2008 New Revision: 4282 Modified: wiki/GwtJavaApiCompatibilityChecker.wiki Log: Edited wiki page through web user interface. Modified: wiki/GwtJavaApiCompatibilityChecker.wiki

[gwt-contrib] [google-web-toolkit commit] r4285 - wiki

2008-12-09 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Dec 9 13:02:03 2008 New Revision: 4285 Modified: wiki/GwtJavaApiCompatibilityChecker.wiki Log: Edited wiki page through web user interface. Modified: wiki/GwtJavaApiCompatibilityChecker.wiki

[gwt-contrib] [google-web-toolkit commit] r4283 - wiki

2008-12-09 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Dec 9 12:52:36 2008 New Revision: 4283 Modified: wiki/GwtJavaApiCompatibilityChecker.wiki Log: Edited wiki page through web user interface. Modified: wiki/GwtJavaApiCompatibilityChecker.wiki

[gwt-contrib] [google-web-toolkit commit] r4289 - wiki

2008-12-09 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Dec 9 13:13:01 2008 New Revision: 4289 Modified: wiki/GwtJavaApiCompatibilityChecker.wiki Log: Edited wiki page through web user interface. Modified: wiki/GwtJavaApiCompatibilityChecker.wiki

[gwt-contrib] Re: review: build.xml fix on my r4271

2008-12-09 Thread Amit Manjhi
LGTM. I had to make this change myself. (Apparently, this does not happen with ant 1.7+) On Tue, Dec 9, 2008 at 11:55 AM, Freeland Abbott [EMAIL PROTECTED] wrote: Another patch-review for you, sorry: I'm actually a bit surprised that the prior built, which it did, but I just got a local

[gwt-contrib] TabBar setTabText doesn't set word wrap false

2008-12-09 Thread jlabanca
Reviewers: ecc, Description: Description: TabBar.insertTab(text) adds a Label with wordWrap set to false. TabBar.setTabText(text) adds a Label without setting wordWrap (defaults to true). Also, there is no way to change wordWrap programatically on a tab. Fix:

[gwt-contrib] Allowing collapsible panel to have collapsed state programically controled

2008-12-09 Thread ecc
Reviewers: jlabanca, Description: Allows collapsible panel to have it state controlled via code. Please review this at http://gwt-code-reviews.appspot.com/809 Affected files: src-demo/com/google/gwt/widgetideas/demo/collapsiblepanel/client/CollapsiblePanelDemo.java

[gwt-contrib] Re: TabBar setTabText doesn't set word wrap false

2008-12-09 Thread ecc
The expansion of the tab interface looks great. Don't quite understand the change to the default word wrapping... http://gwt-code-reviews.appspot.com/604/diff/1/2 File user/src/com/google/gwt/user/client/ui/TabBar.java (right): http://gwt-code-reviews.appspot.com/604/diff/1/2#newcode488 Line

[gwt-contrib] Re: Basic rough-cut of 1.6 WAR support

2008-12-09 Thread Scott Blum
Yes, we need to implement this method in our implementations, but then not actually call the method anywhere ourselves. On Tue, Dec 9, 2008 at 1:33 PM, Lex Spoon [EMAIL PROTECTED] wrote: On Fri, Dec 5, 2008 at 12:28 PM, BobV [EMAIL PROTECTED] wrote: - Several classes in

[gwt-contrib] Re: TabBar setTabText doesn't set word wrap false

2008-12-09 Thread Emily Crutcher
Ah, I see, the normal add(String) already sets word-wrap to false. In that case LGTM. On Tue, Dec 9, 2008 at 6:05 PM, [EMAIL PROTECTED] wrote: insertTab(String text, boolean asHTML, int beforeIndex) already disabled wordWrap, and we want insertTab() and setTabText() to be consistent.

[gwt-contrib] Re: review: build.xml fix on my r4271

2008-12-09 Thread Freeland Abbott
Submitted; the ant dependency would explain why the builds succeeded On Tue, Dec 9, 2008 at 4:27 PM, Amit Manjhi [EMAIL PROTECTED] wrote: LGTM. I had to make this change myself. (Apparently, this does not happen with ant 1.7+) On Tue, Dec 9, 2008 at 11:55 AM, Freeland Abbott [EMAIL

[gwt-contrib] [google-web-toolkit commit] r4290 - releases/1.6/user/src/com/google/gwt/core/public

2008-12-09 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Dec 9 18:09:48 2008 New Revision: 4290 Removed: releases/1.6/user/src/com/google/gwt/core/public/ Log: Deleting history.html. Review by: jgw --~--~-~--~~~---~--~~

[gwt-contrib] Re: Need review for more 1.6 WAR changes

2008-12-09 Thread John Tamplin
On Tue, Dec 9, 2008 at 9:43 PM, Scott Blum [EMAIL PROTECTED] wrote: We deal with this problem now by asserting that hosted mode will generally not overwrite web mode artifacts unless they are newer. For the specific case of the selection script, we give the hosted mode generated selection

[gwt-contrib] Re: Need review for more 1.6 WAR changes

2008-12-09 Thread Scott Blum
On Tue, Dec 9, 2008 at 9:48 PM, John Tamplin [EMAIL PROTECTED] wrote: On Tue, Dec 9, 2008 at 9:43 PM, Scott Blum [EMAIL PROTECTED] wrote: We deal with this problem now by asserting that hosted mode will generally not overwrite web mode artifacts unless they are newer. For the specific case

[gwt-contrib] [google-web-toolkit commit] r4291 - releases/1.6/dev/core/src/com/google/gwt/dev

2008-12-09 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Dec 9 18:22:07 2008 New Revision: 4291 Modified: releases/1.6/dev/core/src/com/google/gwt/dev/Compiler.java Log: Type fix. Modified: releases/1.6/dev/core/src/com/google/gwt/dev/Compiler.java