Re: GWT Distrubted Compiler Project

2010-07-28 Thread Dobes Vandermeer
to email service, there are several free ones out there. Cheers, Dobes On Tue, Jul 27, 2010 at 3:36 PM, charlie charlie.f...@gmail.com wrote: Is there a way to 'follow' this project on google code ? On Tue, Jul 27, 2010 at 5:30 PM, Gal Dolber gal.dol...@gmail.com wrote: Love your idea... even

Re: GWT Distrubted Compiler Project

2010-07-28 Thread Dobes Vandermeer
Thanks, Jim! I had found those before. On Tue, Jul 27, 2010 at 3:35 PM, Jim Douglas jdoug...@basis.com wrote: You might be interested in these references, Dobes: http://code.google.com/p/google-web-toolkit/wiki/DistributedBuilds http://development.lombardi.com/?p=993 http

Re: GWT Distrubted Compiler Project

2010-07-28 Thread Dobes Vandermeer
OK let me know. Currently the system basically works (you can run a distributed build) but it could probably use some help in terms of just trying it out and finding the kinks. Cheers, Dobes On Tue, Jul 27, 2010 at 3:30 PM, Gal Dolber gal.dol...@gmail.com wrote: Love your idea... even

GWT Distrubted Compiler Project

2010-07-27 Thread Dobes
Hi, I've been working on a distributed compiler project, to speed up compile times by distributing the work across many machines. Useful for those times when the compiler takes a long time and you have a lot of permutations. Since its a bit of a side-project I'm hoping some other will jump on

Re: GWT Distrubted Compiler Project

2010-07-27 Thread Dobes
The google code project for this is at http://code.google.com/p/gwt-distcc/ On Jul 27, 3:05 pm, Dobes dob...@gmail.com wrote: Hi, I've been working on a distributed compiler project, to speed up compile times by distributing the work across many machines.  Useful for those times when

Serving the GWT files from a CDN?

2009-11-17 Thread Dobes
linker might be? Thanks, Dobes -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr

Re: Localization workflow?

2009-08-18 Thread Dobes Vandermeer
On Tue, Aug 18, 2009 at 6:04 AM, Thomas Broyer t.bro...@gmail.com wrote: On 18 août, 06:38, Dobes dob...@gmail.com wrote: What tools are people using for localization? For example, currently I've defined all my strings using @DefaultValue (...) for my Constants interface instead

Re: Localization workflow?

2009-08-18 Thread Dobes Vandermeer
I also found this handy site http://99translations.com where you can upload the properties file from GWT and they have a system for tracking changes etc.. no need to hack up any scripts for using Excel! On Aug 18, 6:04 am, Thomas Broyer t.bro...@gmail.com wrote: On 18 août, 06:38, Dobes dob

Re: GWT Deployment on Web Hosting Sites

2009-08-13 Thread Dobes Vandermeer
GWT runs fine, it's just javascript. However, if you want to use the RPC/Servlets system, you'll need Java hosting on the server-side, like tomcat, glassfish, etc.. Relatively few hosts provide this. There are some PHP libraries out there to implement the server-side part of RPC using PHP

Re: Change PRETTY or OBFUSCATED on a per-browser basis

2009-06-06 Thread Dobes Vandermeer
On Jun 5, 3:43 pm, Thomas Broyer t.bro...@gmail.com wrote: On 5 juin, 22:27, Dobes dob...@gmail.com wrote: Is there any clever way to set the PRETTY or OBFUSCATED javascript output depending on the browser? Any ideas? 1. Compile once in PRETTY and once in OBFUSCATED 2. Run both

Change PRETTY or OBFUSCATED on a per-browser basis

2009-06-05 Thread Dobes
Is there any clever way to set the PRETTY or OBFUSCATED javascript output depending on the browser? This may seem strange at first, but here's the reason: 1. In Firefox, I get nice stack traces with PRETTY turned on 2. In Safari 4, large GWT apps like mine don't load due to a bug in their

Incremental Decoding of RPC responses?

2009-04-23 Thread Dobes
Sometimes I'm sending a pretty large array from the server and I think it may be locking up the browser for a while (maybe up to a second) and in some cases causing a dialog to pop up saying a script on this page is running slowly, do you want to kill it? Is there a good way to measure the time

Re: Localization - is GWT localization worth it? Can we have juse a single permutation please?

2009-04-23 Thread Dobes Vandermeer
parallelizable operation, so add the localWorkers option to your project if you have more than 1 cpu - i.e. (-localWorkers 4). 2009/4/23 Dobes dob...@gmail.com I think it would be a lot better for my purposes to have a single permutation and just have GWT.create() instantiate the right

Re: How much slower is PRETTY mode?

2009-04-19 Thread Dobes Vandermeer
that it should be the same performance in terms of execution. You're download times will probably suffer - I wouldn't be surprised if the code bloats by 2-3x if not more. On Fri, Apr 17, 2009 at 11:40 PM, Dobes dob...@gmail.com wrote: I'm considering deploying a version in PRETTY mode since

Re: How much slower is PRETTY mode?

2009-04-19 Thread Dobes Vandermeer
, Apr 17, 2009 at 11:40 PM, Dobes dob...@gmail.com wrote: I'm considering deploying a version in PRETTY mode since it may solve a Safari 4 issue I'm having and it would also allow me to interpret the stack traces produced by Firefox a lot better. However, I'm wondering what experiences

Re: How much slower is PRETTY mode?

2009-04-19 Thread Dobes Vandermeer
restart to get the real numbers (plus just about everything looks like it has a memory leak with Firebug on)) John On Apr 19, 10:20 am, Dobes Vandermeer dob...@gmail.com wrote: Okay, that's helpful. Maybe it's worth slowing down the downloads for a while to get some better insight

Re: Does GWT 1.6 break in Safari 4?

2009-04-19 Thread Dobes Vandermeer
jason.essing...@gmail.comwrote: In Safari 4 I get a javascript error: SyntaxError: Expression too deep Not sure what that is about, but maybe you can compile with -pretty and step into it with webinspector? -jason On Apr 17, 2009, at 9:39 PM, Dobes Vandermeer wrote: I just tried

Re: Does GWT 1.6 break in Safari 4?

2009-04-17 Thread Dobes Vandermeer
and 1.6.4) with Safari 4, and haven't   noticed any issues. -jason On Apr 16, 2009, at 5:42 PM, Dobes wrote: A customer of ours reported that last week (before we uploaded a new version based on GWT 1.6) he could use our app in Safari 4 beta, but this week the app never finishes

How much slower is PRETTY mode?

2009-04-17 Thread Dobes
is it? Thanks in advance, Dobes --~--~-~--~~~---~--~~ 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 from this group, send email

When GWT doesn't load, can I show an error ?

2009-04-16 Thread Dobes
thing is going on. Has anyone written any js code for this already? Something that waited until the browser thought that all the scripts were done loading, and if the GWT globals weren't present, pop an alert() or edit the DOM? Thanks, Dobes

Does GWT 1.6 break in Safari 4?

2009-04-16 Thread Dobes
A customer of ours reported that last week (before we uploaded a new version based on GWT 1.6) he could use our app in Safari 4 beta, but this week the app never finishes loading. Has anyone else noticed problems showing up with Safari 4 beta in GWT 1.6 that were not there in GWT 1.5 ?

My GWT Project - Clarity Accounting

2009-04-02 Thread Dobes
The GWT Blog recently asked for some sample projects - here's ours: Clarity Accounting, a great-looking online accounting application for small businesses to stay on top of their business and get the reports they need to file their taxes. http://www.clarityaccounting.com

Why not use applets?

2009-03-29 Thread Dobes
Recently while cursing the slowness of GWT compilation, the slowness in the browser, and the lack of Java 6 features, it occurred to me that if GWT had simply been built on top of the Java Applet technology it could really overcome these limitations. Does anyone know why GWT wouldn't be much

Re: Why not use applets?

2009-03-29 Thread Dobes Vandermeer
After some more research it looks like the java plugin isn't as popular as I thought, only 50%-80% penetration, whereas javascript is supported in all browsers, and flash has 80%-99% penetration. Thus, applets are not cool ... oh well. On Mar 29, 3:17 pm, Dobes dob...@gmail.com wrote: Recently

Setup a toString() method for each object for debugging purposes?

2009-02-23 Thread Dobes
In FireFox if there's an error while running in the browser, GWT can print the javascript stack trace. Unfortunately, all the objects (except arrays and numbers) are printed as [object Object]. Apparently it would be possible to override the toString() method of the javascript native objects and

Wiki rendering in GWT

2009-01-01 Thread Dobes
I'd like to do some client-side wiki rendering in GWT. I've seen a javascript wiki processor, but googling for GWT wiki turns up a million unrelated pages since every GWT project has a wiki on google code. Any Java implementation out there would use java's regular expression system which is not

Re: Who's Using GWT?

2008-12-28 Thread Dobes
We're using it to develop online accounting software: http://www.clarityaccounting.com/demo?utm_source=gwt-group On Dec 11, 5:39 pm, Sumit Chandel sumitchan...@google.com wrote: Hello everyone, We've recently updated the GWT homepage to include a page displaying a non-exhaustive list of

Re: Trouble Integrating single component page into existing j2ee application

2008-11-12 Thread Dobes
This is a common problem for new GWT users - it's important to realize that GWT code can only use classes which are part of GWT modules. Any code outside of that, or which it doesn't have any source code for, will cause this error. You'll just have to work around it like the rest of us - it can

Re: Dynamic UI in GWT

2008-11-12 Thread Dobes
You could probably invent your own system, but it might be a fairly advanced task. If you really need seperate compilation between the modules then you'll have to first create your own inter-module communication system using javascript and JSNI, maybe a simple publish- subscribe system would

Re: How can I find address of the server?

2008-11-12 Thread Dobes
Use GWT.getHostPageBaseURL() or GWT.getModuleBaseURL() to find the URL you came from. Simple string manipulations should get you everything else you need. Another option is Window.Location which tells you the current host, port, etc.. And ... read the manuals? This information isn't that hard

Re: Date comparison not working

2008-11-12 Thread Dobes
Read the Date documentation - the numbers you are passing in for cutOffDate are not being treated how you expect them to. For example, the year value is relative to 1900, so the actual year of your cutOffDate is 3901. The month is zero-relative so you're specifying July, which you probably were

Interpreting stack traces from Firefox

2008-11-12 Thread Dobes
When I get an unhandled exception in firefox, it's nice enough to give me a stack trace, which is great. What would be greater is a way to get some clues as to what method that stack trace could be referring to. In this case I figured it out based on the number and type of the parameters, but I

Re: How to fix the size of ListBox

2008-11-10 Thread Dobes
Two thoughts: 1. If you set the height in em it might adapt the font your users are using, this could be better than px but it will depend on the situation 2. Otherwise, for each language you want to support you'll have to use a different height. Create a subclass of Constants and put the

Re: Payment systems

2008-11-10 Thread Dobes
If you look at some example PayPal doante buttons you can probably figure out how to change the amount in them. The rest is just about generating a new URL for them to click on and sticking that inside a GWT object. You might find it easiest just to use a provided paypal widget - they actually

Announcing Kiyaa! a new GWT library

2008-11-10 Thread Dobes
Kiyaa! is a GWT toolkit for better accessibility, styling, and more! It was created in the process of making small business accounting software that I needed to be easy to use, attractive, and to maintain. Here are some highlights: * XHTML Template System based on facelets (also an example for

Re: Announcing Kiyaa! a new GWT library

2008-11-10 Thread Dobes
Yeah ... I'll add documentation based on how much time and motivation I get, which partly depends on the interest I get in the application. I did add some documentation for the template system recently and I'll try and find a way to post the javadocs somewhere too. On Nov 10, 5:36 am, Johan

Math.rint broken in web mode ?

2008-10-30 Thread Dobes
It appears that Math.rint() is not working correctly inside the web browser. I ran the following test in hosted mode and in web mode: StringBuffer sb = new StringBuffer(); sb.append(4200 * 1.0825 = ).append(4200 * 1.0825).append('\n'); sb.append(4200 * 0.0825 = ).append(4200 *

Re: Math.rint broken in web mode ?

2008-10-30 Thread Dobes
Actually I took a second look and decided that Math.rint() is really the best rounding mode for my purposes ... I reported this bug in the GWT issue tracker, however. On Oct 30, 7:19 pm, Dobes [EMAIL PROTECTED] wrote: It appears that Math.rint() is not working correctly inside the web browser

NumberFormat currency format - number of decimal places based on currency code?

2008-10-30 Thread Dobes
of the currency code it is given? Thanks, Dobes --~--~-~--~~~---~--~~ 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 from this group

Re: Sharing the localization code between client and server

2008-09-23 Thread Dobes
It seems like it should be possible to implement a kind of server-side GWT.create() that generates an subclass using cglib or one of the other bytecode generators. Maybe it would only work for the Constants and Messages interfaces, and a minor selection of others, but it would be quite useful.

Re: Sharing the localization code between client and server

2008-09-21 Thread Dobes
21, 6:13 am, Lothar Kimmeringer [EMAIL PROTECTED] wrote: Dobes schrieb: I like the way GWT does it's localization and it would be great if I could use the same code in client AND server (especially, use it in my code that is shared between client and server).  Any idea how possible

Re: GWT Mosaic 0.1 Now Available

2008-09-20 Thread Dobes
Could you give a preview of what's cool about it? Seems like you have a bunch of new widgets, and some layout system. Anything else? On Sep 20, 2:57 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, After two release candidates and a lot of refactoring this is the first release of GWT

Re: parameters on main URL

2008-09-20 Thread Dobes
It's pretty easy, actually, just use Window.Location.getParameter(param). It returns a String. On Sep 20, 2:35 pm, xander [EMAIL PROTECTED] wrote: Hello to everybody I would like to know if I could do something like that http://localhost:/myAplicacion/MyAplication.html?param=code If

Re: javax.management support

2008-09-20 Thread Dobes
Hi Amod, You probably need to play around with GWT some more to figure out what it's all about, and what it can and cannot do. GWT only supports the classes and methods that are listed in its JRE emulation library page. To work around classes it does not support you'll have to move all the

Sharing the localization code between client and server

2008-09-20 Thread Dobes
I like the way GWT does it's localization and it would be great if I could use the same code in client AND server (especially, use it in my code that is shared between client and server). Any idea how possible this is? --~--~-~--~~~---~--~~ You received this

StatusCodeException accessing RPC on glassfish behind an apache SSL proxy for Firefox/Safari

2008-09-08 Thread Dobes
I've been seeing intermittent StatusCodeException errors with status 0. Originally I was having the IE6 SSL issue, but I fixed that using the SSL downgrade configuration for apache. Now the status code exceptions are coming from Safari and Firefox as well as IE. My GWT app comunicates with

Re: Best practice: Larger application design

2008-08-28 Thread Dobes
It might just make sense to not use GWT for this at all - use HTML and some kind of server-side templating language (JSP, Struts, Freemarker, a CMS of some sort) to create your site. GWT is really most appropriate for desktop-like AJAX applications, so unless the various pages are going to share

Re: GWT + Derby in eclipse - ClassNotFoundException

2008-08-28 Thread Dobes
Hi Oggy, Usually adding the jar file to the project isn't enough for a WAR file, you also have to copy it into WebContent/WEB-INF/lib. If that's not the issue, consult the mailing lists for Derby and/or your servlet container (tomcat, maybe?). Since GWT can't use Derby directly, you'll get

Re: Dialog Box wouldn't open in deployment mode

2008-08-28 Thread Dobes
Did you see whether the dialog showed up in the DOM, by using Firebug's DOM inspector? Maybe it's not positioned where you expect it to be. On Aug 28, 8:12 am, kojo [EMAIL PROTECTED] wrote: I have been developing an application using GWT for a while. A dialog box that belongs to a particular

Re: Richtext Area loses focus everytime i resize panel containing it.

2008-08-28 Thread Dobes
This might just be a bug in the particular browser ... have you tried other browsers? I've found that RichText Editors in web browsers are a bit flaky these days. On Aug 27, 7:22 pm, Priya [EMAIL PROTECTED] wrote: Hi all, I am facing a problem while using richtextarea in my application.