Re: MarkerManager - any news?

2009-01-13 Thread lajue...@googlemail.com
http://code.google.com/p/gwt-google-apis/issues/detail?id=231 On 6 Jan., 21:46, Sumit Chandel sumitchan...@google.com wrote: Hi lajuette, Due to the fact that the MarkerManager has been deprecated in the Google Maps API proper, we have similarly deprecated and discontinued support for the

Re: GWT for SOA development

2009-01-13 Thread Paranoid Android
Thank you gregor!. You' ve been very clear. On Jan 12, 7:05 pm, gregor greg.power...@googlemail.com wrote: in line comments On Jan 12, 4:58 pm, Paranoid Android paranoid.fa...@gmail.com wrote: Thank you. I'm looking at SOA because the variouse features of the social application

Re: Refreshing the Page

2009-01-13 Thread Litty Preeth
What is ur logic for showing the login page? Is it tht the onmoduleload is showing the login page? I think may be you should check for a valid session before showing the login page... On Mon, Jan 12, 2009 at 3:43 PM, Sandy sandeep.singh2...@gmail.com wrote: Hi, I am creating a web portal, I

Re: KeyboardListener help

2009-01-13 Thread Litty Preeth
Hi Alfred, May be you can the sink the key events in the DialogBox and then handle it in the onBowserEvent method. Like: *class* KeyHandlingDialogBox *extends* DialogBox { *public* KeyHandlingDialogBox() { *super*(); sinkEvents(Event.*KEYEVENTS*); }

Re: Recommended GWT Maven plugin

2009-01-13 Thread Miles T.
These two plugins are going to merge into the codehaus (http:// groups.google.com/group/Google-Web-Toolkit-Contributors/browse_thread/ thread/72cf8810759c7c3/00ad11d0f4a88d58), so if you start, I recommend you to use the codehaus one. On Jan 13, 8:29 am, olivier FRESSE olivier.fre...@gmail.com

Re: How to use GWT RPC in OpenSocial

2009-01-13 Thread Eric Ayers
The problem is that the Gadget RPC is weird for the POST situation. To resolve this, add a doPost() method in your servlet that delegates to doGet(). On Tue, Jan 13, 2009 at 12:10 AM, falcon_whiz sultan.yas...@gmail.comwrote: Hi Eric, I tried the GadgetRPC sample but its returning with the

Re: Time from for desktop shortcut added to gears api's

2009-01-13 Thread Eric Ayers
The code is waiting in the wings in the trunk of the gwt-google-apis repository, but it hasn't been released. You can checkout the build with subversion and build your own .jar file if you like.

Re: Recommended GWT Maven plugin

2009-01-13 Thread Joshua Partogi
Thanks for this news Miles. I'll be looking into this. :-) Cheers. On Jan 13, 8:42 pm, Miles T. dupont.nico...@gmail.com wrote: These two plugins are going to merge into the codehaus (http:// groups.google.com/group/Google-Web-Toolkit-Contributors/browse_thread/

Need Help: GWT + ShowHTMLDialog()

2009-01-13 Thread DanielC
I'm trying to use ShowHTMLDialog (IE's rendering engine located in MSHTML.DLL) to display a simple HTML dialog within an application that I'm developing. When I try to load a barebones GWT application (e.g. StockWatcher) via ShowHTMLDialog, I get a blank screen. However, when I view the same

Help me!!

2009-01-13 Thread frankCostello
I made a simple application to test Gwt-Ext but give me error.. the error is this : [ERROR] Unable to load module entry point class gwt.client.Application (see associated exception for details) com.google.gwt.core.client.JavaScriptException: (TypeError): Undefined value line: 119 sourceURL:

Re: Need Help: GWT + ShowHTMLDialog()

2009-01-13 Thread DanielC
Just to add a bit more detail. GWT 1.5.3, Windows. Also, my application's onModuleLoad() is not being called (confirmed by adding a window.alert()), so the culprit must be something to do with the initialization/bootstrap logic, but I'm quite new to GWT, so I'm a lost when it comes to the nitty

Re: Really need help to get iframe current url and web page DOM (overcoming same origin policy)

2009-01-13 Thread Thomas Broyer
On 12 jan, 14:18, style...@gmail.com wrote: - Does anyone have any workable solution to overcome this issue? No matter how complicated it is, please share with me, really don't wish to give up my project. Hopefully no (that would be a security breach) - Is there any alternative to iframe

RESTful URL with GWT

2009-01-13 Thread Joshua Partogi
Dear all, Is it possible to have RESTful URL with GWT? I tried to find docs about setting RESTful URL with GWT but can not find it. Can anyone lead me to this? Thanks in advance -- Not by might nor by power, but by His Spirit. Read my blog: http://joshuajava.wordpress.com/ Follow me on

Re: GWT File prase

2009-01-13 Thread Adam T
you can't access local filesystem with JavaScript, therefore you can't do it with GWT. You could try a signed Java Applet - search this forum for when this has been asked before. //Adam On 13 Jan, 02:50, Mark marksyl1...@gmail.com wrote: I want to make an file tree using gwt to prase the

Re: Who's Using GWT?

2009-01-13 Thread Rockster
Hi, Website: http://www.qafe.com Tagline: Building Enterprise Applications Made Easy Status: beta, http://demo.qafe.com is live ! Summary: QAFE is a framework to easily create Enterprise Applications with all requirements that are needed in these environments. It's fully declarative except

Re: History and Tab panels

2009-01-13 Thread jake H
I m not sure if i understood u completely. In the meanwhile i tried using hyperlinks to see if it could work, with no success though. tpanel.add(new HTML(test),new Hyperlink(test,0)); subpanel.add(new HTML(testsub),new Hyperlink (testsub,10)); subpanel.add(new

Re: GWT and Business Intelligence.

2009-01-13 Thread Kevin Tarn
Vanilla seems to be blocked for download. Kevin On Tue, Jan 13, 2009 at 6:57 PM, Thomas Broyer t.bro...@gmail.com wrote: On 12 jan, 21:32, Miroslav Genov wrote: Hello , I have a question regarding using of GWT for the creation of a intranet system for business intelligence. Is GWT

Re: GWT integrated with JSF

2009-01-13 Thread Raghunath
hi olivier,willi nice discussion .. I'm also exploring seam and gwt .. I do have enough exp in both the areas , but integration is little bit tricky it seems, In seam examples remoting/gwt a simple example to demonstrate seam + jsf . Im my point of view .. 1) Seam components can be well

Re: How to use GWT RPC in OpenSocial

2009-01-13 Thread falcon_whiz
Hi Eric, I was using the same servlets as provided in the GadgetRPC sample. Moreover I checked on the web today steps for deploying a GWT application in an opensocial container. I have created some opensocial applications earlier but they were written in pure javascript on the client side,

Re: GWT for SOA development

2009-01-13 Thread Paranoid Android
Interesting..that's what I was also talking about. The possibility to invoke web services directly from a GWT interface to develop self contained UI gadget in some ways like portlets.. Is this a completely wrong idea or can be useful? On Jan 13, 1:31 pm, Gabor Szokoli szoc...@gmail.com wrote:

Re: How to use GWT RPC in OpenSocial

2009-01-13 Thread Eric Ayers
There are 2 samples included in the gwt-gadgets.jar file that use network requests: one is HelloGadgets and the other is called GadgetRPC. I am sorry but I confused a few issues in the last post. Does the 'GET Cached' example of the HelloGadgets sample work for you? If so, then you've gotten

Re: Help me!!

2009-01-13 Thread Ian Bambury
You might like to try a GWT-Ext group. This group is for GWT. You also might like to use a subject that means something. Ian --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: RESTful URL with GWT

2009-01-13 Thread jake H
If u mean , if u can implement REST in GWT the answer is yes. otherwise about playing with the urls and getting data , i m not sure exactly but with some javascript u can parse the desire data i think. --~--~-~--~~~---~--~~ You received this message because you are

Re: Refreshing the Page

2009-01-13 Thread jake H
From your problem , i can guess that u have make the whole application using one entrypoint file. So when u refresh your page, it just load back what u select as main. If u want to play through your application u should use History(). --~--~-~--~~~---~--~~ You

Re: GWT for SOA development

2009-01-13 Thread gregor
Yes, you can theoretically invoke web services exposed on your server directly from GWT client using the GWT HttpRequestBuilder. In practice this is almost certainly an unfavourable option because SOAP is a bloated over complicated XML based data exchange mechanism by comparison to REST, JSON,

Re: GWT for SOA development

2009-01-13 Thread Paranoid Android
Thank you for the tip.. I've looked around the Web for days and I'm gaining a clearer view about technologies and possible architectural solution for my requirements. I'm especially doubtful about the possible integration of techonlogies like GWT on the GUI and an ESB like servicemix. ESB seems

HTML to String does not respond to events

2009-01-13 Thread Michel
Hi, In the header of a DialogBox I want to put an image that when is clicked, the Dialog is closed. My code is the following one: final Image closeWindowImg = new Image(); closeWindowImg.setSize(13pt, 13pt); closeWindowImg.addClickListener(new ClickListener() { public void onClick(final

Re: GWT for SOA development

2009-01-13 Thread logicpeters
Your authentication would be better handled outside of GWT (i.e; SSO or form-based login). But for the application itself, that approach sounds reasonable. By putting the SOAP client in a servlet, you have access to a wide range of libraries that you can use to interact with the SOAP services,

Re: HTML to String does not respond to events

2009-01-13 Thread olivier FRESSE
when you add the html code, you loose all the JScript generated by GWT to manage the click listener. So the behavior is normal. For the solution I'm not sure to understand what you're trying to do :-) Maybe a composite with a top panel playing the header role and a center one to manage added

Re: UI Binder

2009-01-13 Thread Arthur Kalmenson
Johan, The reason the GWT team has not release the UI Binder stuff (AFAIK) is because UI binder is being donated by another project inside Google. They need to clean up before releasing it. I'm personally thankful that the internal project decided to donate their code and I think everyone needs

Re: Ibatis + GWT: No source code is available for type com.ibatis.dao.client.DaoManager; did you forget to inherit a required module?

2009-01-13 Thread Arthur Kalmenson
Check out the paging scroll table in the incubator: http://code.google.com/docreader/#p=google-web-toolkit-incubators=google-web-toolkit-incubatort=PagingScrollTable -- Arthur Kalmenson On Mon, Jan 12, 2009 at 6:16 AM, heru heru.pray...@gmail.com wrote: hi all, i'm having problem to

Re: I'm going with Seam and GWT......wish me luck..

2009-01-13 Thread mikedshaf...@gmail.com
Good luck...I've dabbled with Seam and it (very cursory day and half of poking around) seemed more tied to JSF than I was willing to dive into myself. So I'm curious to hear about how hooking GWT up to it goes... Later, Shaffer On Jan 12, 3:46 pm, dannydog vgp...@gmail.com wrote: I've been

Images vanishing in IE...any ideas?

2009-01-13 Thread darkflame
I'm making my own dynamic-loading map thing here; http://www.darkflame.co.uk/panalstreamer/panelstreamer.html Its coded in GWT using nothing but absolute panels and images. It works fine in proper browsers, but in IE the images dont reload after they have been loaded once. You can test this by

Re: java.io.Serializable

2009-01-13 Thread Arthur Kalmenson
Hi Sumit, I'm not using any third party libraries. I basically followed this blog post: http://blog.digitalascent.com/2007/11/gwt-rpc-with-spring-2x_12.html with a minor modification of making GwtRcpEndPointHandlerAdapter implement ServletContextAware and not replacing '.' with '/'. I found that

Re: GWT for SOA development

2009-01-13 Thread Paranoid Android
Great! Thank you. On Jan 13, 3:57 pm, logicpeters logicpet...@gmail.com wrote: Your authentication would be better handled outside of GWT (i.e; SSO or form-based login).  But for the application itself, that approach sounds reasonable.  By putting the SOAP client in a servlet, you have

Re: Multiple web pages how-to

2009-01-13 Thread A Friend Of Yours
Try this code // Make it a field private final SimplePanel container = new SimplePanel(); ... // A function here void setContent(Widget content) { if(container.getWidget() != null) container.remove(container.getWidget()); container.setWidget(content); } ... // In

Re: ThreadLocal support

2009-01-13 Thread Ian Petersen
On Wed, Jan 14, 2009 at 3:28 AM, Thomas Broyer t.bro...@gmail.com wrote: On 9 jan, 20:11, Ian Petersen ispet...@gmail.com wrote: Threading will not be supported in GWT for a long time to come simply because the majors browsers won't support threaded Javascript for a long time to come. Well,

Re: Multiple web pages how-to

2009-01-13 Thread Melissa Sinclair Stevens
Can i use multiple RootPanel's in my web app..? i read somewhere that this is discouraged. I know that having multiple GWT modules on the same host page is discouraged as being inefficient because it prevents the GWT compiler from optimizing as well as it could. See this discussion:

Re: GWT for SOA development

2009-01-13 Thread Paranoid Android
Great! Thank you. On Jan 13, 3:57 pm, logicpeters logicpet...@gmail.com wrote: Your authentication would be better handled outside of GWT (i.e; SSO or form-based login).  But for the application itself, that approach sounds reasonable.  By putting the SOAP client in a servlet, you have

Re: java.sql.Date.valueOf(2009-01-08) throws IlegalArgumentException

2009-01-13 Thread wouter
Yes, have the same problem. Your explanation corresponds to what I see. How do you solve it ? I intended to suppress the leading zeros. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

source code for third party library in client?

2009-01-13 Thread sgn...@gmail.com
Hi all, maybe this question is stupid and has a very simple answer, but I could not find it. I create a Gwt client module, and In particular I create Widget subclasses containing objects from my personal library, which in turn are built using third party libraries. While building I get the

Re: XMLParser error Property name is invalid

2009-01-13 Thread mr . alex . hill
Hi, Is there a problem with my post or does it just take a while to make it onto the board? Many thanks, Alex On 13 Jan 2009 09:01, alex mr.alex.h...@googlemail.com wrote: Hi, I was having a problem with client side xml parsing getting the below error. I tried running the SimpleXML

jbpm -gwt integration

2009-01-13 Thread abi
Hi, I am trying to integrate jbpm with GWT. Basically I am trying to call JBPM services(GWT-rpc) from GWT client. Not sure, how to proceed with. Does anybody throw some light on this? Redirecting me to some link would also help me for understanding.Thanks in advance. Abi

Please help with gwt MenuItem CSS define

2009-01-13 Thread gwt-user
I need to change the menu item into different colors (both front background) when mouse over and the item is selected. So I defined the following in my css: .gwt-MenuBar-vertical .gwt-MenuItem { color: yellow; background: blue; } .gwt-MenuBar-vertical .gwt-MenuItem-selected { color: black;

two trees on one page.

2009-01-13 Thread Jill Singer
when I have two trees on one page- even if they are in different verticalpanels (which I know are just columns in a table), when I select an item on the first; the second tree disappears. this behavior occurs in hosted mode and in ie, but not in firefox (and I need to make it work in ie; and

XMLParser error Property name is invalid

2009-01-13 Thread alex
Hi, I was having a problem with client side xml parsing getting the below error. I tried running the SimpleXML sample and got exactly the same error. I'm running this on Windows XP. Any ideas? Cheers, Alex = [ERROR] Uncaught

GWT Layout Editor

2009-01-13 Thread loreii
Hi all, someone have tried a nice graphical plugin for GWTForm editing in eclipse? Cheers Lore --~--~-~--~~~---~--~~ 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: Images vanishing in IE...any ideas?

2009-01-13 Thread todd.sei...@gmail.com
I have never sen this behavior. Is it possible that what we are seeing is the old image widget with no image and that the new widget isn't being used at all? Perhaps you can share some of the code which add/removes the images. On Jan 13, 10:16 am, darkflame darkfl...@gmail.com wrote: I'm

Re: RESTful URL with GWT

2009-01-13 Thread Harald Pehl
Take a look at the RESTlet project: http://www.restlet.org/. They have also a GWT extension: http://wiki.restlet.org/docs_1.1/13-restlet/144-restlet.html I'm using it for my current project and found it very usefl! Greetings Harald On 13 Jan., 12:38, Joshua Partogi joshua.j...@gmail.com wrote:

Re: Images vanishing in IE...any ideas?

2009-01-13 Thread darkflame
Interesting idea, but I dont think so, because it still wouldnt explain why the image has vanished. You can zoom out if you like anyway, and actualy see the images being removed. The rectangle acts as a marker for the loading range. Codes rather a mess, but the image loading bit is trival

Re: java.sql.Date.valueOf(2009-01-08) throws IlegalArgumentException

2009-01-13 Thread Ian Petersen
On Thu, Jan 8, 2009 at 12:21 PM, Shawn Pearce s...@google.com wrote: Has anyone else noticed that java.sql.Date and java.sql.Timestamp throw IAE if given a date like today, 2009-01-08? Near as I can tell from the emul source, this is due to Number.__decodeNumberString deciding that a string

Strange problem - adding a GWT JS file to a page after page has loaded in a browser extension

2009-01-13 Thread peterk
Hey all, I'm experimenting with developing firefox extensions, and along the way I ran into a weird issue when trying to insert a gwt javascript file into a page loaded by the browser. That is, after the page has loaded, I want to add: script type=text/javascript language=javascript

Adding packages to GWT

2009-01-13 Thread ProtoLD
I know this a common question, but I've tried the answers I found without avail. I have a tree structure like so: -com.mycompany -public MyApplication.html MyApplication.gwt.xml -com.mycompany.client MyApp.java -com.mycompany.gui TableLayout.java I tried this: module inherits

Re: Adding packages to GWT

2009-01-13 Thread Isaac Truett
Modules have a default source path, which behaves sort of like a default constructor. When you specify a new source path, it removes the default one (like a default constructor). You need to specify your gui path and also redeclare the default, which was superseded by yours: source path=gui /

Re: Adding packages to GWT

2009-01-13 Thread ProtoLD
AHA! Thank you so much, it was the overwriting part that I didn't quite get. I didn't know I had to redefine my entry class path as well. On Jan 13, 1:02 pm, Isaac Truett itru...@gmail.com wrote: Modules have a default source path, which behaves sort of like a default constructor. When you

Re: Adding and Image to a Panel will not working for firefox and chrome

2009-01-13 Thread hermis
Works great! Thanks Adam :) On Jan 13, 11:44 am, Adam T adam.t...@gmail.com wrote: you need to set the size of the AbsolutePanel. //Adam On 13 Jan, 02:48, tr.x ermis.h...@gmail.com wrote: Hello guys, The following code does not seem to work on FF and Chrome, however works without

Re: Hosted Mode Configuration Question

2009-01-13 Thread sjn...@gmail.com
I'll look into the the -noserver option since hosted tomcat is going away. In GWT 1.5.3 copying the web.xml file from the tomcat server to the GWT's application directory: tomcat/webapss/ROOT/WEB-INF/ worked really well. On Jan 9, 12:58 pm, Sumit Chandel sumitchan...@google.com wrote: Hello

Re: History and Tab panels

2009-01-13 Thread newlis
Thats an intresting post. I have tried in the past to do something similar with no success. Anyone can help? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

exchange data between pages

2009-01-13 Thread newlis
Hello I m making a two level application. By this i mean that i have made a separate login application and in another folder i have made my main application. Till now the user just login , the server check if he could or not and redirect him in the main application. But now i have to get some

Re: How to enable enter key for a button

2009-01-13 Thread newlis
hello i have tried also without success. Any other solutions? --~--~-~--~~~---~--~~ 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

Problem with file upload

2009-01-13 Thread Daniele B
I've a problem with my photogallery application. Application work like this: On textbox enter a album name. On FileUpload widget, select image to upload on server. When user click on album widget, program send a GWT-RPC call to a servlet which send back string array of images URL. But when I

Gwt application deployment

2009-01-13 Thread jredick
Hi, first of all i am sorry if this is a stupid question :) I am pretty new on using gwt. I write a simple application that sends and take data from mysql database. But when it comes to deploy my application, i can't manage to do it. Actually i deployed it, but there is a problem on RPC or

encodedRequest cannot be empty

2009-01-13 Thread Jason Brome
Hi, We've been recently experiencing a series of the 'encodeRequest' exceptions in our environment. I have included a typical stack trace below. The majority of RPC requests from browsers are getting through without issue, but we do see these from time-to-time, with corresponding 'Call failed

Re: History and Tab panels

2009-01-13 Thread Ian Bambury
The only way I know to do it is to split the token with some character and use the sections to drill down. I use the tilde ('~') because it is one of the few that is valid, isn't generally used for anything else, and doesn't get turned into '%67' so it looks OK in the address box. For example

Redirecting during RPC call

2009-01-13 Thread sim123
I have a login servlet, which do the login and redirect to GWT module. Now during every server call (update, add etc) I want to check if user's session is still valid. All server calls except login are RPC. I have servlet filter to check session's validity. I am trying to redirect from filter if

Re: java.io.Serializable

2009-01-13 Thread danox
I'm doing almost the exact same thing as Arthur and having the exact same problem. I'd prefer not to implement IsSerializable as my model is used in various places and I really don't want too tie it to GWT. I'm using spring MVC in the same way (with similar modifications) and the serialisation

Re: exchange data between pages

2009-01-13 Thread Litty Preeth
Cant you store the username to the HttpSession ? - Litty Preeth On Wed, Jan 14, 2009 at 5:25 AM, newlis hrd...@yahoo.com wrote: Hello I m making a two level application. By this i mean that i have made a separate login application and in another folder i have made my main application.

Re: How to enable enter key for a button

2009-01-13 Thread Litty Preeth
What have you tried? Because what David told abt the keyboard listener should work. And about the setting focus, you might need to put the setFocus inside a DefferedCommand; like: DeferredCommand.addCommand(new Command() { public void execute() {

Re: Gwt application deployment

2009-01-13 Thread Litty Preeth
If you hav to make jdbc entries in web.xml depends on your implementation. What is the error you are getting? - Litty Preeth On Wed, Jan 14, 2009 at 5:30 AM, jredick jared...@gmail.com wrote: Hi, first of all i am sorry if this is a stupid question :) I am pretty new on using gwt. I write a

Changing the css file at runtime

2009-01-13 Thread Kamlesh
Hi, I have different css files in my application say user1.css, user2.css and so on corresponding to each user. My requirement is that when a particular user logs in the system (consider the LMS application) I have to apply the css corresponding to that user. How can I achieve this requirement

[gwt-contrib] Re: C:\GWT_source\common.ant.xml:209: cannot launch command svn info

2009-01-13 Thread Eric Ayers
FWIW, I use the cygwin version of svn on windows. Works just like Unix! Of course, Tortoise is a great graphical client for Windows. On Tue, Jan 13, 2009 at 9:03 AM, gregor greg.power...@googlemail.comwrote: Yes, that's what I eventually did. I chose the CollabNet svn command line client

[gwt-contrib] Re: Call for critical 1.6 bugs

2009-01-13 Thread Arthur Kalmenson
Hello Olivier, Does this run GWTTestCases or is it possible to have it run GWTTestSuites? Running each GWTTestCase individually is very slow. -- Arthur Kalmenson On Sun, Jan 11, 2009 at 10:03 AM, Olivier Modica omod...@gmail.com wrote: Ray et al., You may be interested to know that at

[gwt-contrib] SuggestBox bag of changes

2009-01-13 Thread ecc
Reviewers: jlabanca, Description: This set of changes pulls in work done in gwt-incubator on the now defunct SuggestBoxOverride, it addresses issues 2598, 2739,2888. Also has the following features: Adds ability to create default list of suggestions. Opens the MultiWordSuggestOracle up

[gwt-contrib] Re: Do 0-timeout deferred commands need to wait for a timer tick?

2009-01-13 Thread Lex Spoon
On Mon, Jan 12, 2009 at 2:13 PM, Kelly Norton knor...@google.com wrote: We actually have it, it's called DeferredCommand. Unfortunately, we let its implementation get too gangled up with another feature called IncrementalCommand and use of DeferredCommand now generates way too much code. Many

[gwt-contrib] Re: RR: Implementation of SingleJsoImpl

2009-01-13 Thread Scott Blum
Sure, is there a design doc for this so that I know what I'm looking at? On Mon, Jan 12, 2009 at 9:14 PM, BobV b...@google.com wrote: The first round of coding is done. Follow-up from http://groups.google.com/group/Google-Web-Toolkit-Contributors/browse_thread/thread/5e180695145892d5

[gwt-contrib] Re: RR: Implementation of SingleJsoImpl

2009-01-13 Thread BobV
On Tue, Jan 13, 2009 at 10:41 AM, Scott Blum sco...@google.com wrote: Sure, is there a design doc for this so that I know what I'm looking at? Not at present, it's pretty much as we discussed. Methods on SingleJsoImpl are renamed so that JSO$ can unambiguously implement them as trampoline

[gwt-contrib] Re: C:\GWT_source\common.ant.xml:209: cannot launch command svn info

2009-01-13 Thread Scott Blum
Freeland, I believe there is a Java SVN frontend that will gracefully degrade through: 1) Your installed svn libraries through JNI 2) Command line svn 3) SvnKit Would that make this option less repulsive? On Mon, Jan 12, 2009 at 11:00 PM, Freeland Abbott gwt.team.fabb...@gmail.com wrote: I've

[gwt-contrib] Re: C:\GWT_source\common.ant.xml:209: cannot launch command svn info

2009-01-13 Thread Freeland Abbott
Repulsive is a strong word, but yes, I like it better as more able to avoid mismatches in an otherwise functional development environment. But they'd still be possible, so would we eventually be having the same discussion anyway? (In particular, I think knorton has said he edits common.xml to

[gwt-contrib] Re: Why do DateBox.Format.parse() and format() need DateBox?

2009-01-13 Thread Ray Ryan
DateFormat isn't just a parser, nor even mainly a parser. It lets you customize the display of your datebox in response to bad input. And because we pass DateBox in as a parameter, your DateFormat can be a shared flyweight. rjrjr On Tue, Jan 13, 2009 at 8:08 AM, dflorey daniel.flo...@gmail.com

[gwt-contrib] Re: Why do DateBox.Format.parse() and format() need DateBox?

2009-01-13 Thread dflorey
Seems to be a matter of taste ;-) If parse() and format() should be capable of sophisticated error handling (like triggering a popup to show the error or whatever) I'd prefer to simply implement them as protected methods in DateBox + passing DateTimeFormat to cstr instead of Format interface and

[gwt-contrib] Re: C:\GWT_source\common.ant.xml:209: cannot launch command svn info

2009-01-13 Thread steve
Use the tigris (apache 2.0 / apache 2.2) binaries - they don't actually require (or contain) apache ... http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91 Get the zip (last download link on the page) and add the bin folder to your path. S

[gwt-contrib] Bug? Cannot unsink ONMOUSEWHEEL event on Firefox

2009-01-13 Thread Yann
Hi, This is my first post on the GWT forums, so I wanted to start with thanking Google and all of the contributors for this great tool! It's very impressive and very pleasant to use. To prevent usage of the mousewheel on a sub area of an application, I have been calling these two lines:

[gwt-contrib] Re: Why do DateBox.Format.parse() and format() need DateBox?

2009-01-13 Thread Emily Crutcher
Daniel, You have some good points and what you are describing is almost exactly the date box we initially had in gwt-incubator. We ran into a few significant problems that made us change to the current design: 1. DateTimeFormat represents a very sophisticated API, it was difficult

[gwt-contrib] Re: Why do DateBox.Format.parse() and format() need DateBox?

2009-01-13 Thread dflorey
I know this is nitpicking, but some comments inline On Jan 13, 6:53 pm, Emily Crutcher e...@google.com wrote: Daniel,      You have some good points and what you are describing is almost exactly the date box we initially had in gwt-incubator.  We ran into a few significant problems  that

[gwt-contrib] Re: Why do DateBox.Format.parse() and format() need DateBox?

2009-01-13 Thread Emily Crutcher
1. DateTimeFormat represents a very sophisticated API, it was difficult for users to replace the formatting/parsing of dates because, to do so they needed to understand the internals of the date time format class. Try extending DateTimeFormat rather then using the predefined

[gwt-contrib] Re: Why do DateBox.Format.parse() and format() need DateBox?

2009-01-13 Thread Emily Crutcher
There is an effort planned for next quarter to create the global date binding/error handling/etc. solution. The problem is that is that we wanted to introduce a usable date box this release, not next, so we created the interface that would be least likely to clash with a global solution. On Tue,

[gwt-contrib] PopupPanel -- RollDown animation

2009-01-13 Thread ecc
Reviewers: jlabanca, Description: For SuggestBox and DropDownListBox, porting the RollDown animation class from incubator. Testing in the suggest box visual test. Please review this at http://gwt-code-reviews.appspot.com/2004 Affected files:

[gwt-contrib] [google-web-toolkit commit] r4442 - releases/1.6/user/src/com/google/gwt/user/tools

2009-01-13 Thread codesite-noreply
Author: sco...@google.com Date: Tue Jan 13 11:58:49 2009 New Revision: 4442 Modified: releases/1.6/user/src/com/google/gwt/user/tools/.classpathsrc releases/1.6/user/src/com/google/gwt/user/tools/ApplicationCreator.java

[gwt-contrib] [google-web-toolkit commit] r4440 - releases/1.6/samples

2009-01-13 Thread codesite-noreply
Author: sco...@google.com Date: Tue Jan 13 10:38:39 2009 New Revision: 4440 Modified: releases/1.6/samples/common.ant.xml Log: Build fix: updated samples build for war style. Modified: releases/1.6/samples/common.ant.xml

[gwt-contrib] [google-web-toolkit commit] r4441 - in releases/1.6/distro-source: linux mac windows

2009-01-13 Thread codesite-noreply
Author: sco...@google.com Date: Tue Jan 13 11:16:35 2009 New Revision: 4441 Modified: releases/1.6/distro-source/linux/build.xml releases/1.6/distro-source/mac/build.xml releases/1.6/distro-source/windows/build.xml Log: Fix samples packaging. Modified:

[gwt-contrib] Re: RR: Anonymous class mappings

2009-01-13 Thread John Tamplin
On Mon, Jan 12, 2009 at 11:01 PM, Amit Manjhi amitman...@google.com wrote: Please review the attached patch that builds and uses an anonymous class mapping to deal with the compiler differences. I made all the changes you suggested. In addition, I added another (necessary) condition that the

[gwt-contrib] Re: Do 0-timeout deferred commands need to wait for a timer tick?

2009-01-13 Thread Bruce Johnson
DeferredCommand really is, and always has been, meant to be exactly the same thing as invokeLater(). I do agree with Kelly that the implementation became heavyweight by being intertwined with IncrementalCommand, and that we should undo it. (It seemed like a good idea at the time...) @Lex: Do you

[gwt-contrib] Re: Do 0-timeout deferred commands need to wait for a timer tick?

2009-01-13 Thread Ray Cromwell
Lex said Every place in GWT that installs a global event handler should also call runInvokeLaterCommands. In addition, there could be a periodic timer that calls runInvokeLaterCommands, to catch any cases that were missed I'd be careful with this. It sounds like you want a GWT-maintained event

[gwt-contrib] [google-web-toolkit commit] r4444 - releases/1.6/samples

2009-01-13 Thread codesite-noreply
Author: sco...@google.com Date: Tue Jan 13 15:30:49 2009 New Revision: Modified: releases/1.6/samples/common.ant.xml Log: Updated samples build to use WebAppCreator. Modified: releases/1.6/samples/common.ant.xml

[gwt-contrib] Re: RR: slimmed down SOYC + dependencies written to file

2009-01-13 Thread Katharina Probst
Hi Lex, would you take another pass at the updated patch? Here are the main changes: 1. The patch has a cleaner implementation of dependency recording by adding a DependencyRecorder interface and its implementation. This is now called from both JavaToJavaScriptCompiler and from