Re: Character encoding issue with my gadget

2009-07-09 Thread hjo1620
Have you tried this ? * Take a backup copy of your entire workspace. * WindowPreferencesGeneralWorkspaceText file encodingOther: UTF-8 /hw --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Problem in Window.open(url, name, features)

2009-07-09 Thread Raul
Hello all, I have a problem with the Window function Window.open(url, name, features) I have few PDF files in my hard drive say in (C:/Information), My Server path is C:/Tomcat_Home; I have a PDF file named C:/Information/contacts.pdf When I tried to open this PDF in a new

MVC and JUnit - how to handle handlers?

2009-07-09 Thread corpios
I'm designing an application following the MVC pattern. Each view have its own controller and model. The view know about the model and the controller. The controller know about the model. The Observer pattern is used to handle the model - view relation. The model notifies the view about changes

Re: need to dynamically set a java field of a known name

2009-07-09 Thread David Goodenough
You can do it in real java, but as reflection is not supported in GWT it would not work in GWT. In real java you would say:- Test test = new Test(); Test.getClass().getField(value).set(test,some value); Note that if value is a private or protected field then you need to use getDeclaredField

Encounter an invalid stream header

2009-07-09 Thread n...@oj
Hi folks, I'm working on a small application which tend to communicate with a foreign webserver to generate specific contents. A RPC is used when the user fire the event by clicking on a button. Java.net is used with URL et URLConnection. Tipically I write a serialized string to the

Re: How do you fire Change Events?

2009-07-09 Thread Thomas Broyer
On 8 juil, 22:56, dk dean.kar...@gmail.com wrote: Hi, I am back with more Handler questions.  This is currently the most opaque GWT topic for me. I am building a Composite widget that will have at least a Grid and a Button.  The Grid will act a little like a ListBox in that one or more

Re: mousePressed

2009-07-09 Thread Thomas Broyer
On 8 juil, 19:39, Memo Sanchez guillermo.sanch...@gmail.com wrote: Thank you, it worked, this is what I did, in case someone is interested: I'd rather do: buttonright_arrow.addMouseListener(new MouseListener()       {          boolean       flag  = false;          private Timer timer =

Change date with FABridge

2009-07-09 Thread Lena
I am working with GWT and trying to add a flex application in the web. I am using gwt2swf.jar and gwt-fabridget.jar. My flex app has a chart using the DateTimeAxis class. I was trying to change the min and max date but setProperty doesn't accept Date. Does anyone know how can I use a Date? This

Change date with FABridge

2009-07-09 Thread Lena
I am working with GWT and trying to add a flex application in the web. I am using gwt2swf.jar and gwt-fabridget.jar. My flex app has a chart using the DateTimeAxis class. I was trying to change the min and max date but setProperty doesn't accept Date. Does anyone know how can I use a Date? This

Re: MVC and JUnit - how to handle handlers?

2009-07-09 Thread Miroslav Genov
You could create a mock view which is listening for such events. For example: class MockAddressView implements AddressView, HasValueChangeHandlers... { .. } and in your test: testUpdateUserDataNotifiesViewThatUserDataHasBeenUpdated() { HandlerManager

Change date with FABridge

2009-07-09 Thread Lena
I am working with GWT and trying to add a flex application in the web. I am using gwt2swf.jar and gwt-fabridget.jar. My flex app has a chart using a DateTimeAxis on an axis. I was trying to change the min and max date but setProperty doesn't accept Date. Does anyone know how can I use a Date?

Re: Problem in Window.open(url, name, features)

2009-07-09 Thread alex.d
Nothing strange at all - you can't just read local files from your browser. Put your file in the server's public folder (where your html and other files are) and get it with http://localhost:/bla/bla/file.pdf (or smth. similar ;) On 9 Jul., 09:34, Raul raahoo...@gmail.com wrote: Hello all,

Re: Character encoding issue with my gadget

2009-07-09 Thread Andre Leger
Thanks Paulo and HW for the reply. I already have the Eclipse workspace setup to use UTF-8. Any other ideas out there? Andre On Thu, Jul 9, 2009 at 3:15 AM, hjo1620 hjo1...@gmail.com wrote: Have you tried this ? * Take a backup copy of your entire workspace. *

[Ask] How to Run GWT App in Hosted Mode by Using Netbeans 6.5?

2009-07-09 Thread Leonardo Carreira
Hello All :).. i have a simple problem.. How to run GWT App in Hosted Mode by Using Netbeans6.5?.. I have Created Web application.. and i added GWT plugins too.. then i have created GWT EntryPoint class.. How to run that GWT EntryPoint Class in Hosted Mode?... Thanks in advance.. :)

Re: How to download a file in IE8?

2009-07-09 Thread Rafael
alex.d, I am having same problem but with a csv file. I think it's that IE8 fails to recoginize the type (MIME type) of the file, so it reloads the page rather than ask the user to save as... I asked same question in another post. please ignore. Surprisingly, i can server the file to IE8 in

Re: GWT 2 Theme

2009-07-09 Thread Kango_V
Inner designer? That made me laugh hehe. I'm all for open source. In fact that's all I use. But we have many projects to do and not a designer in our sordid bunch :) I'm just looking at the themes which ExtGWT and SmartGWT come with and feel that if GWT came with a really nice theme, it's

Re: How to Run GWT App in Hosted Mode by Using Netbeans 6.5?

2009-07-09 Thread Leonardo Carreira
@XiaoR Hii Xiao.. Thanks for your reply.. :) Yap iam quite new to GWT,, :( Thanks for your suggestion... Okay.. maybe i'll use Eclipse for develop GWT app.. Thanks in advance.. :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Re: Google plugin for Eclipse 3.5 Galileo

2009-07-09 Thread Steven Jay Cohen
Is there a URL where we can check on the status of the plugin? Is there a beta test for the plugin? That would be a lot more efficient than people randomly asking here in the forums. Steven On Jul 7, 10:02 am, Miguel Méndez mmen...@google.com wrote: We are working on the release as we

Re: GWT architecture MVP/EventBus (mentioned at Google I/O)

2009-07-09 Thread Arthur Kalmenson
The HandlerManager is indeed new in GWT 1.6, that might be why. If you wrap your own you can always add new functionality, that might also be why. Thanks for the link to the MVZ project, it'll be good to see some example implementations of the concepts. -- Arthur Kalmenson On Thu, Jul 2, 2009

[Ask] How to send Post/Get Method by Using GWT?..

2009-07-09 Thread Leonardo Carreira
Hi Friends.. :) How to send POST/GET Method using GWT?.. assume that i have simple login application.. User has filled the data which required.. Then how to send POST method (like HTML method) in GWT?.. especially when user clicked the Login Button.. Sorry maybe this is quite basic question..

Re: How to send Post/Get Method by Using GWT?..

2009-07-09 Thread Leonardo Carreira
Sorry i forgot.. What i mean is.. i want to send POST Method to any Servlet.. and then Servlet get All data which already sent by use request.getParameter().. Then the user do save data or etc.. Thanks in advance.. :) --~--~-~--~~~---~--~~ You received this

Re: Large graphs

2009-07-09 Thread Piotr Kirklewski
Have you already try AnnotatedTimeLine Chart from the Google visualization package ? Regards Peter wicher wrote: Hello I'm looking for something that will allow me to efficiently draw graphs with large number of nodes and edges. Nodes and edges should be editable and movable objects.

Re: [Ask] How to Run GWT App in Hosted Mode by Using Netbeans 6.5?

2009-07-09 Thread 任胜韦
I have the same question. It seems easier to run the hosted mode using eclipse rather than using netbeans --XiaoR On Thu, Jul 9, 2009 at 6:32 AM, Leonardo Carreira leonardo.carre...@yahoo.com.sg wrote: Hello All :).. i have a simple problem.. How to run GWT App in Hosted Mode by Using

Re: How to send Post/Get Method by Using GWT?..

2009-07-09 Thread Hasan Turksoy
use FormPanel... add your widgets into it... then call FormPanel.submit(); method inside onClick method of your button.. Hasan... On Thu, Jul 9, 2009 at 5:09 PM, Leonardo Carreira leonardo.carre...@yahoo.com.sg wrote: Sorry i forgot.. What i mean is.. i want to send POST Method to any

Re: Display tables of database in tree fashion

2009-07-09 Thread Rahul Mukhedkar
any suggestions anyone? On Jul 7, 1:43 pm, Rahul coolrahul18...@gmail.com wrote: Hi, I would like to display the tables on my UI in a tree fashion. The tables should open to show the columns names. Also I would like to have drag and drop of the column name to a blank text field. Does

Re: How to send Post/Get Method by Using GWT?..

2009-07-09 Thread Leonardo Carreira
@Hasan... Thanks for your reply Hasan.. :) Sorry for the really basic question.. i am quite new in developing AJAX by GWT application.. :( Thanks in advance.. :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: FF 3.5 + GWT 1.5.3 + Large App (script/stack errors)

2009-07-09 Thread Fulvius
I have same problem... First of all, I like so much gxt components. to help you: gxt must calculate in javascript every component resize (look this in firebug), and this components have so many listeners and many hierarchy. In some cases, I prefer build my own components using just gwt

IE 8 Image Bundle Issue

2009-07-09 Thread Charlie M
Hi All, I have a strage problem thats apeared with IE 8. Basically I have a discolusre panel with a customer header. The header has a Grid on it with one row. The left most item is the standard disclosure triangle Image. I have mirrored the standard discloure panel header widget as much as

Re: Large graphs

2009-07-09 Thread wicher
Graphs not charts :) http://en.wikipedia.org/wiki/Graph_(mathematics) but thanks On 9 Lip, 05:23, Paulo Coutinho pa...@prsolucoes.com wrote: I have problems with large graphs on php, the generated image is too big, so, searching, i discovered some flash charts, that you can set a large data

Re: need to dynamically set a java field of a known name

2009-07-09 Thread george9
Hi David, having worked 10 years in Java I know how to use reflection:) Sorry it was not obvious from my post - I was just inquiring whether there's a GWT method that could be used in client code - some method that escaped my search. Anyway, I've solved this problem yesterday by writing a

Oracle WebCenter Interaction

2009-07-09 Thread David Parry
Has anyone successfully integrate a Remote Portlet that uses GWT in WebCenter Interaction? If yes any thoughts on how to get started what tweaks are needed? If no is there any future plans for GWT to run in WebCenter Interaction? The problem i see is with the Proxy of the url and the

Internet Explorer 8 and DialogBox display error

2009-07-09 Thread Stefan Sigvardsson
Seems like Microsoft has done it again... When trying to display a DialogBox (with .center() ) everything works fine in all browsers (including IE6-7), except for IE8. The error message i get is in Swedish (Har inte implementerats), but it should translate to Not implemented. With a reference

Re: Problem in Window.open(url, name, features)

2009-07-09 Thread David Parry
Try setting the ContentType in the response to application/pdf David On Jul 9, 8:08 am, alex.d alex.dukhov...@googlemail.com wrote: Nothing strange at all - you can't just read local files from your browser. Put your file in the server's public folder (where your html and other files are)

Re: When use inherit on xml?

2009-07-09 Thread Ivan Chappel
Please stop spamming this group by firing away questions without thinking twice or reading the GWT documentation. RTFM. On Jul 8, 11:15 pm, Paulo Coutinho pa...@prsolucoes.com wrote: Hi ppl, I want know when i have to use the inherit on [APP].gwt.xml ? -- Atenciosamente, Paulo Coutinho.

Re: How to send Post/Get Method by Using GWT?..

2009-07-09 Thread Leonardo Carreira
Hi All.. sorry i found new Problem.. :( i have created an application by used FormPanel.. but i couldn't any Widget which displayed.. :( here is my code : [code] public class MainEntryPoint implements EntryPoint { public void onModuleLoad() { final FormPanel formPanel=new FormPanel();

How to get GWT site indexed?

2009-07-09 Thread Dalla
Hi I´m wondering if someone has a tip or two to give about SEO when it comes to GWT apps. I have a very basic site at http://date-time.appspot.com/ which has not even been indexed. Considering it´s a very simple site I wouldn´t expect it to be very high on the rankings, but I should be able to

Re: Google plugin for Eclipse 3.5 Galileo

2009-07-09 Thread Steven Jay Cohen
Thanks for the quick reply. Just found something interesting: http://download6.yoxos.com/archivecreator/download/eclipse-macosx-cocoa-x86-09040ae18b97dc909a0fdda1ed.tar.gz Seems that Yoxos is distributing an eclipse 3.5 build with the Google Eclipse Plugin installed, and its working. If you'd

Re: Google plugin for Eclipse 3.5 Galileo

2009-07-09 Thread Rajeev Dayal
Hey Steven, Thanks for pointing this out! We tried out the distribution that you sent, and it seems that the plugin sort of works. The New Web Application Wizard and GWT Compile dialogs do not work. Neither does JSNI refactoring. This makes sense, as these are exactly the problems that we're

Re: FireFox 3.5

2009-07-09 Thread Algian
Does anyone know how I can modify the GWT package to include these two classes? Unless the release dates for GWT 1.6.5 are close. Does anyone know what the planned date is? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: How to get GWT site indexed?

2009-07-09 Thread Axel Kittenberger
Provide some content in a noscript tag. On Jul 9, 5:35 pm, Dalla dalla_man...@hotmail.com wrote: Hi I´m wondering if someone has a tip or two to give about SEO when it comes to GWT apps. I have a very basic site athttp://date-time.appspot.com/which has not even been indexed. Considering

calling javascript methods of a js file

2009-07-09 Thread Peterman
Hi to all I'm trying to call a javascript methods from my gwt application to a js file included in my project, but I always have the same error: the method x can't be founded (or something similar). I have tried to put the js file in my public directory and linked it from my html file

Re: calling javascript methods of a js file

2009-07-09 Thread Ian Bambury
GWT runs in an Iframe and therefore your script is in the parent. You can use parent.window and parent.document but GWT sets up $doc and $wnd which will work even if the GWT structure changes. Ian http://examples.roughian.com 2009/7/9 Peterman pserr...@gmail.com Hi to all I'm trying to

Re: Google plugin for Eclipse 3.5 Galileo

2009-07-09 Thread Steven Jay Cohen
Rajeev, That makes sense. And, again, thanks for getting back to me so fast. Do you know if there is any plan to synchronize Google Eclipse Plugin releases to the Eclipse Release Train? It would be amazing if in the future, the release of Eclipse 3.6 were to perfectly coincide with the release

Regarding Eclipse Modeling Framework Project

2009-07-09 Thread Ragoth thilo
I am working with EMF project. I am having XSD file. From this schema file i need to generate java file. I think to create the java file, Eclipse will use some plug-in. Any one have knowledge in this. Can any one help me what kind of plug-in and how to use this tool in eclipse. Thanks Regards,

Problem getting rid of scrollbars.....

2009-07-09 Thread shaselai
I basically have something setup like this: HtmlPage with iFrame calling on my GWT page: iframe src =FOO.html width=100% height=500px frameborder=0 marginheight=0 marginwidth=0 scrolling=no overflow:hidden/ iframe The GWT(FOO.html) that is in the iFrame has: script language='javascript'

File Upload error 404

2009-07-09 Thread ghita
Hello, I'm a newbie to gwt, I have a simple application that I use to upload file to server, but keeps giving the following error. I read that it may be because of the mapping of the servlet, here is my web.xml. any suggestions? h1HTTP Status 404 - /upload_0.2/UploadFileServlet/h1 hr size=1

Re: File Upload error 404

2009-07-09 Thread Hasan Turksoy
set the url-pattern as url-pattern /upload_0.2/UploadFileServlet/url-pattern Hasan... On Thu, Jul 9, 2009 at 7:11 PM, ghita ghita.benkir...@gmail.com wrote: Hello, I'm a newbie to gwt, I have a simple application that I use to upload file to server, but keeps giving the following error. I

Re: How do you fire Change Events?

2009-07-09 Thread Dean Karres
Thanks Thomas, I just went and looked at ValueChangeListener. I wonder if it would work better for me? I had not considered it before your note. There is a sort-of value being changed. I am collecting the selected row data in a JSONArray. The Button will be enabled if there is data in the

Re: How do you fire Change Events?

2009-07-09 Thread Dean Karres
Just found this link which looks really good for ValueChangeListeners http://lemnik.wordpress.com/2009/03/12/using-event-handlers-in-gwt-16/ -- Dean Karres --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google

Re: Display tables of database in tree fashion

2009-07-09 Thread Chad
Rahul, That should be relatively simple to do. Use RPC for your client-server communication. On the server side, query your database for table names and send a ListString back to the client. Iterate the list, adding each item to the root of the tree and give each a child node with the text of

Strange Compile Warning

2009-07-09 Thread markmac
Hi all, I seem to be getting this weird compilation warning when I compile my Gwt app: [java] Locking assertion failure. Backtrace: [java] #0 /usr/lib/libxcb-xlib.so.0 [0x7fc83bdff97c] [java] #1 /usr/lib/libxcb-xlib.so.0(xcb_xlib_unlock+0x24) [0x7fc83bdffa84] [java] #2

GWT jrobbi problem in web mode

2009-07-09 Thread bhumij
I am using jrobin library to create server side graph. I imported jrobin.jar and it is working properly in hosted mode.. however when i deploy application on tomcat it is giving me an error. I am unable to create an instance of any class.. please clarify the issue.

Re: Is there a way to add a mouselistener to a treeitem that has these properties?

2009-07-09 Thread Marcelo Emanoel B. Diniz
Have you tried to wrapp the treeitem and then add the mouse listener to the wrapper? it should work like you want :) On Jul 9, 3:32 pm, ProtoLD protosh...@gmail.com wrote: Is there any response on this?  Working as intended...somehow?  Even though it doesn't work? On Jul 8, 4:03 pm, ProtoLD

Re: Frame.setURL in IE6/7 always cause's refresh of contents? (even if just the #token changed)

2009-07-09 Thread Paulo Coutinho
I have the same problem e post the same problem in the list, when u chage the frame url on non-ie browser, it work, but on IE it dont work. 2009/7/10 Jerome jerome...@gmail.com: Hi , I am running in to a problem when I try to load a URL in a frame, URL which is also a GWT application but

[gwt-contrib] Re: r5672 - Implement RPC for JDO persistent objects.

2009-07-09 Thread bruno
Hello Dan, A plugin mechanism would be very useful for Hibernate, OpenJPA, EclipseLink and Spring support, that represent a non neglictable part of our current server technologies ;-) The point is : how to allow third party libraries to add their own data serializer ? Is in your mind a GWT

[gwt-contrib] [google-web-toolkit commit] r5695 - Rolling back c5694, due to test failure:

2009-07-09 Thread codesite-noreply
Author: rj...@google.com Date: Thu Jul 9 05:48:51 2009 New Revision: 5695 Modified: trunk/user/src/com/google/gwt/user/client/ui/HTMLPanel.java trunk/user/test/com/google/gwt/user/client/ui/HTMLPanelTest.java Log: Rolling back c5694, due to test failure:

[gwt-contrib] Re: Incubator API - Date/Time Handling

2009-07-09 Thread Joel Webber
Anyone know what the status of the incubator TimePicker is? I haven't looked in a while. On Thu, Jul 9, 2009 at 10:59 AM, Paul Siml s...@simlsystems.com wrote: Hi, I am looking for some information on the TimePicker in the incubator. Reading tacking issues I found a time picker but there

[gwt-contrib] [google-web-toolkit commit] r5696 - Deprecating the travesty known as HistoryImpl.setUpdateHashOnIE6(). It's no

2009-07-09 Thread codesite-noreply
Author: j...@google.com Date: Thu Jul 9 09:10:32 2009 New Revision: 5696 Modified: trunk/user/src/com/google/gwt/user/client/impl/HistoryImpl.java trunk/user/src/com/google/gwt/user/client/impl/HistoryImplIE6.java Log: Deprecating the travesty known as HistoryImpl.setUpdateHashOnIE6().

[gwt-contrib] TBR: r5696 (deprecating HistoryImpl.setUpdateHashOnIE6())

2009-07-09 Thread Joel Webber
http://code.google.com/p/google-web-toolkit/source/detail?r=5696 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] [google-web-toolkit commit] r5697 - Merging /trunk c5691, c5696 into this branch.

2009-07-09 Thread codesite-noreply
Author: j...@google.com Date: Thu Jul 9 09:25:41 2009 New Revision: 5697 Modified: branches/snapshot-2009.07.07-r5687/dev/core/src/com/google/gwt/core/ext/linker/impl/hosted.html branches/snapshot-2009.07.07-r5687/dev/core/src/com/google/gwt/core/linker/IFrameTemplate.js

[gwt-contrib] [google-web-toolkit commit] r5698 - Updating branch-info.txt.

2009-07-09 Thread codesite-noreply
Author: j...@google.com Date: Thu Jul 9 09:26:14 2009 New Revision: 5698 Modified: branches/snapshot-2009.07.07-r5687/branch-info.txt Log: Updating branch-info.txt. Modified: branches/snapshot-2009.07.07-r5687/branch-info.txt

[gwt-contrib] [google-web-toolkit commit] r5699 - Merging /trunk c5691, c5696 into this branch.

2009-07-09 Thread codesite-noreply
Author: j...@google.com Date: Thu Jul 9 09:30:45 2009 New Revision: 5699 Modified: branches/snapshot-2009.06.16-r5570/dev/core/src/com/google/gwt/core/ext/linker/impl/hosted.html branches/snapshot-2009.06.16-r5570/dev/core/src/com/google/gwt/core/linker/IFrameTemplate.js

[gwt-contrib] [google-web-toolkit commit] r5700 - Updating branch-info.txt.

2009-07-09 Thread codesite-noreply
Author: j...@google.com Date: Thu Jul 9 09:31:05 2009 New Revision: 5700 Modified: branches/snapshot-2009.06.16-r5570/branch-info.txt Log: Updating branch-info.txt. Modified: branches/snapshot-2009.06.16-r5570/branch-info.txt

[gwt-contrib] [google-web-toolkit commit] r5703 - Edited wiki page through web user interface.

2009-07-09 Thread codesite-noreply
Author: rj...@google.com Date: Thu Jul 9 14:48:14 2009 New Revision: 5703 Modified: wiki/UsingOOPHM.wiki Log: Edited wiki page through web user interface. Modified: wiki/UsingOOPHM.wiki == --- wiki/UsingOOPHM.wiki

[gwt-contrib] [google-web-toolkit commit] r5704 - Created wiki page through web user interface.

2009-07-09 Thread codesite-noreply
Author: rj...@google.com Date: Thu Jul 9 14:50:22 2009 New Revision: 5704 Added: wiki/OophmForMacBasedGwtContributors.wiki Log: Created wiki page through web user interface. Added: wiki/OophmForMacBasedGwtContributors.wiki

[gwt-contrib] [google-web-toolkit commit] r5705 - Edited wiki page through web user interface.

2009-07-09 Thread codesite-noreply
Author: rj...@google.com Date: Thu Jul 9 14:51:09 2009 New Revision: 5705 Modified: wiki/OophmForMacBasedGwtContributors.wiki Log: Edited wiki page through web user interface. Modified: wiki/OophmForMacBasedGwtContributors.wiki

[gwt-contrib] [google-web-toolkit commit] r5706 - Edited wiki page through web user interface.

2009-07-09 Thread codesite-noreply
Author: rj...@google.com Date: Thu Jul 9 17:56:01 2009 New Revision: 5706 Modified: wiki/OophmForMacBasedGwtContributors.wiki Log: Edited wiki page through web user interface. Modified: wiki/OophmForMacBasedGwtContributors.wiki

[gwt-contrib] [google-web-toolkit commit] r5707 - Edited wiki page through web user interface.

2009-07-09 Thread codesite-noreply
Author: rj...@google.com Date: Thu Jul 9 17:56:41 2009 New Revision: 5707 Modified: wiki/UsingOOPHM.wiki Log: Edited wiki page through web user interface. Modified: wiki/UsingOOPHM.wiki == --- wiki/UsingOOPHM.wiki

[gwt-contrib] [google-web-toolkit commit] r5708 - Create a branch for HTMLUnit integration for testing.

2009-07-09 Thread codesite-noreply
Author: j...@google.com Date: Thu Jul 9 18:22:19 2009 New Revision: 5708 Added: branches/htmlunit/ - copied from r5707, /trunk/ Log: Create a branch for HTMLUnit integration for testing. --~--~-~--~~~---~--~~

[gwt-contrib] [google-web-toolkit commit] r5709 - Initial work on getting HTMLUnit integrated into JUnitShell.

2009-07-09 Thread codesite-noreply
Author: j...@google.com Date: Thu Jul 9 18:23:27 2009 New Revision: 5709 Added: branches/htmlunit/user/src/com/google/gwt/junit/RunStyleHtmlUnit.java (contents, props changed) branches/htmlunit/user/src/com/google/gwt/junit/RunStyleHtmlUnitHosted.java (contents, props changed)

[gwt-contrib] [google-web-toolkit commit] r5710 - Fixed to run the right runstyle/thread, refactoring.

2009-07-09 Thread codesite-noreply
Author: j...@google.com Date: Thu Jul 9 19:17:11 2009 New Revision: 5710 Added: branches/htmlunit/user/src/com/google/gwt/junit/HostedModePluginObject.java (contents, props changed) Modified: branches/htmlunit/user/src/com/google/gwt/junit/RunStyleHtmlUnit.java Log: Fixed to run