Re: MVP vs PureMVC

2011-04-08 Thread Rodolphe Gomes
I am talking about http://puremvc.org/ (NOT the concept MVC). There is a sample : http://trac.puremvc.org/Demo_Java_MultiCore_GWT_EmployeeAdmin I have used it during one year on RCP (Eclipse plugin) and it is wonderfull. So I wonder if it is not better than MVP, wich is young and just a way to

Re: GWT 2.2 CellTable dragging column widths with mouse ...

2011-04-08 Thread Musicman75
@Sky Nice idea to include resizing on mouse dragging. Any implementation available? I checked out the ScrollTable from incubator, but it's too slow (rendering with more than 10 rows is impossible). The resizing functionallity from the Scrolltable implemented together with CellTable would be

For UIBinder,how to react event when creating UI based on HTML?

2011-04-08 Thread Alex Luya
sinkEvents() and onBrowserEvent() only work for Widget,so How can I get UIObject react event? -- 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

Re: code snippet

2011-04-08 Thread Jens
Eclipse code templates can help if you configure custom templates. You find them under Preferences - Java - Editor - Templates -- 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: development/production mode - different paths to same file?

2011-04-08 Thread Magnus
Sorry, its ptl. I made a mistake in my posting. Magnus On Apr 8, 7:19 am, A. Stevko andy.ste...@gmail.com wrote: Is it ptl or portal ? On Thu, Apr 7, 2011 at 8:53 PM, Magnus alpineblas...@googlemail.com wrote: Hello, in my webProject myProject is a directory war/portal which

RequestFactory, Hibernate and versioned data

2011-04-08 Thread Bappy
Hi there, Since going from 2.1 to 2.2 RequestFactory has stopped transferring my Hibernate generated objects back to the client. The first error was this: com.google.gwt.requestfactory.server.UnexpectedException: The domain type Foo_$$_javassist_45 cannot be sent to the client I managed to fix

Re: code snippet

2011-04-08 Thread maticpetek
I'm using CodeBox for Mac (available in Mac App Store). Because it has code formatting and it does not shrink your sample sometimes, like Evernote. Regards, Matic -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: For UIBinder,how to react event when creating UI based on HTML?

2011-04-08 Thread Gal Dolber
The difference between Widget and UiObject is that a Widget can handle events and a UiObject can't On Fri, Apr 8, 2011 at 4:28 AM, Alex Luya alexander.l...@gmail.com wrote: sinkEvents() and onBrowserEvent() only work for Widget,so How can I get UIObject react event? -- You received this

RequestFactory Hibernate One to many mapping datatype

2011-04-08 Thread mfiandesio
Hi to all, I am trying to retrieve an object with Hibernate User which has a one- to-many relationship with a Role object. This is mapped as a CollectionRole roles but requestfactory validation complains if the proxy interface has the method CollectionRoleProxy getRoles as the data type is not

Re: development/production mode - different paths to same file?

2011-04-08 Thread Ed
I have run into this when changing deployments from dev at localhost and a standalone jetty instance. Standalone Jetty URL and web.xml https://ajax.abc.com:443/HR/cyberobjects/CyberObjects.html url-pattern/cyberobjects/CyberObjects.html/url-pattern Dev mode url and web.xml

Am I over using layout panels?

2011-04-08 Thread Terry Bachard
Hi, The GWT docs specify thet the layout panels should be used to define overall application layout; but when looking at the mail example, there's DockLayoutPanels within DockLayoutPanels , etc. Personally, on my project, I have DockLayoutPanels (or SplitLayoutPanels) embedded 5 or 6 deep in some

Is validation on client side enough or do I need both?

2011-04-08 Thread Stephan T
The scenario: I have a form where you can create a new person by entering name in a textbox and click a button. When the user clicks the button I grab the value from the textbox and sets it on the Person object. The Person object validates the value and makes sure the name on the object only

Re: Is validation on client side enough or do I need both?

2011-04-08 Thread nino ekambi
Server validation is allways a good thing no matter which scenario. Dont trust what s coming from the client. Best, Alain 2011/4/8 Stephan T stephan.tern...@gmail.com The scenario: I have a form where you can create a new person by entering name in a textbox and click a button. When the

Cell widgets selection and EventTranslators

2011-04-08 Thread Javier
I want to select a cell on mouse down event instead of click. This is how selection works in windows explorer (among others) and is very useful if for instance you want to start a drag operation inmediatelly after the mouse down. Creating a custom EventTranslator is great as it allows me to

gwt autocompile ;)

2011-04-08 Thread Diego Lovison
hello, I would like to develop an application that the adm of the system can modify the view, add rules, buttons, fields, and others ok I can create something like google contacts, when you can add fields to edit... but in google contacts I cannot edit the source code... for example:

Re: GWT 2.2 CellTable dragging column widths with mouse ...

2011-04-08 Thread Gal Dolber
why would you want to render 10 rows? :) On Fri, Apr 8, 2011 at 4:02 AM, Musicman75 stephan.beu...@googlemail.comwrote: @Sky Nice idea to include resizing on mouse dragging. Any implementation available? I checked out the ScrollTable from incubator, but it's too slow (rendering with

Re: Is validation on client side enough or do I need both?

2011-04-08 Thread Ben Imp
Never trust a client. -Ben On Apr 8, 6:52 am, Stephan T stephan.tern...@gmail.com wrote: The scenario: I have a form where you can create a new person by entering name in a textbox and click a button. When the user clicks the button I grab the value from the textbox and sets it on the Person

Re: GWT 2.2 CellTable dragging column widths with mouse ...

2011-04-08 Thread Diego Lovison
If you would like rende 1000 rows I suggest you use lazy render... you can find this in gxt and smartgwt On 8 abr, 09:23, Gal Dolber gal.dol...@gmail.com wrote: why would you want to render 10 rows? :) On Fri, Apr 8, 2011 at 4:02 AM, Musicman75 stephan.beu...@googlemail.comwrote:

Re: Cell widgets selection and EventTranslators

2011-04-08 Thread John LaBanca
It appears that you are correct. Can you create an issue to track this? Thanks, John LaBanca jlaba...@google.com On Fri, Apr 8, 2011 at 7:57 AM, Javier javierferre...@gmail.com wrote: I want to select a cell on mouse down event instead of click. This is how selection works in windows

why IsWidget is interface?

2011-04-08 Thread Diego Lovison
why the class IsWidget is interface and not an annotation? -- 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 to

Re: Is validation on client side enough or do I need both?

2011-04-08 Thread Diego Lovison
if is the same validation... I will create a shared class like FieldValidation on GwtExample On 8 abr, 10:17, Ben Imp benlee...@gmail.com wrote: Never trust a client. -Ben On Apr 8, 6:52 am, Stephan T stephan.tern...@gmail.com wrote: The scenario: I have a form where you can

Re: Is validation on client side enough or do I need both?

2011-04-08 Thread Diego Lovison
or http://code.google.com/p/google-web-toolkit/wiki/BeanValidation On 8 abr, 10:17, Ben Imp benlee...@gmail.com wrote: Never trust a client. -Ben On Apr 8, 6:52 am, Stephan T stephan.tern...@gmail.com wrote: The scenario: I have a form where you can create a new person by entering

Re: GWT 2.2 CellTable dragging column widths with mouse ...

2011-04-08 Thread Musicman75
I don't want to render 10 rows, that's why I use the celltable and it's paging functionality. To handle the whole datatable on client side (sorting, filtering, ..) without server calls every time. CellTable can handle a big amount of data, the only thing I miss is column resizing on mouse

Re: GWT 2.2 CellTable dragging column widths with mouse ...

2011-04-08 Thread Diego Lovison
you have 100... the time to order in database is more fast that you return 10 and sort on a client side... ;) On 8 abr, 10:30, Musicman75 stephan.beu...@googlemail.com wrote: I don't want to render 10 rows, that's why I use the celltable and it's paging functionality. To handle the

Re: Cell widgets selection and EventTranslators

2011-04-08 Thread Javier
Issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=6245 Thanks On 8 abr, 15:23, John LaBanca jlaba...@google.com wrote: It appears that you are correct.  Can you create an issue to track this? Thanks, John LaBanca jlaba...@google.com On Fri, Apr 8, 2011 at 7:57 AM, Javier

Re: development/production mode - different paths to same file?

2011-04-08 Thread Thomas Broyer
That's what the getContextPath() is for on the server-side, and getHostPageBaseURL can be used on the client-side to approximate this (appending a relative path from your host page). -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

TextBox KeyPressEvent doesn't function in Firefox 4

2011-04-08 Thread Gabriel
Eg. txtPwd.addKeyPressHandler(new KeyPressHandler() { @Override public void onKeyPress(KeyPressEvent event) { if (event.getCharCode() == KeyCodes.KEY_ENTER) { btnLogin.click();

Re: TextBox KeyPressEvent doesn't function in Firefox 4

2011-04-08 Thread Nicolas Antoniazzi
As a workaround, you can use event.getNativeEvent().getKeyCode() == KeyCodes.KEY_ENTER 2011/4/8 Gabriel volpegabr...@gmail.com Eg. txtPwd.addKeyPressHandler(new KeyPressHandler() { @Override public void onKeyPress(KeyPressEvent event) {

Anyone in Rome to catch up?

2011-04-08 Thread George Georgovassilis
Hi all, I'll be until Monday in Rome - if anybody wants to catch up for an espresso or to, please drop me a line. Best, G. -- 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: RPC in onWindowClosing() problem

2011-04-08 Thread George Georgovassilis
Hello Ania, This might be a browser related behavior - if the window is closed, all activities related with it are cancelled. It might be best if you tried an alternative aproach: instead of having the browser explicitly signing the user out of your application (which is what you are trying to

Re: TextBox KeyPressEvent doesn't function in Firefox 4

2011-04-08 Thread Gabriel Volpe
Thanks Nicolas, that's work! 2011/4/8 Nicolas Antoniazzi nicolas.antonia...@gmail.com As a workaround, you can use event.getNativeEvent().getKeyCode() == KeyCodes.KEY_ENTER 2011/4/8 Gabriel volpegabr...@gmail.com Eg. txtPwd.addKeyPressHandler(new KeyPressHandler() {

Automatic browser language detection

2011-04-08 Thread stintorero
Hi, I am using GWT 2.2.0 and firefox 4.0. I would like my web app detect automatically the client property locale from Edit Preferences Languages. I have seem some solutions in GWT 2.3.0-M1 using set-configuration- property name=locale.useragent value=Y/ in the .gwt.xml file, but this detects

CellTable : can't do both Selection and Edit on lines ?

2011-04-08 Thread Thierry
Hi ! I'm using GWT 2.2. I tried to have a celltable where I can both select lines and modify them. I added a SingleSectionModel to the celltable. It works. But as soon as I click on a DatePickerCell on any line, the selection stops working. To check if I did something wrong, I executed the

Eclipse Plugin 2.2.1, GWT 1.5.2, Wont Run

2011-04-08 Thread aisling
Hi all New installation of Open Suse 11.3 with Eclipse Version: Helios Release Build id: 20100617-1415. I installed the GWT plugin manually from a downloaded zip (com.google.gdt.eclipse.suite.e36.update.site_2.2.1.v201103311225.zip). The new plugin works fine with GWT 2.1 which we use for our

java.lang.AssertionError after upgrading from gwt 1.5.2 to gwt 1.6.4 (when run in hosted mode)

2011-04-08 Thread scono1986
After upgrading from gwt 1.5.2 to gwt 1.6.4, I run my application in hosted mode, it occurs the following errors: == Error 1 == [ERROR] Uncaught exception escaped java.lang.AssertionError: A widget that has an existing parent widget may not be added to the detach list at

Question about compilation

2011-04-08 Thread Rafa
Hi, im trying to put a new image in the directory of images (gwt/images) of my project. The problem is, when i compile, the compiler delete my new image. I think is a problem about cache, but im not sure. Can i solve the problem? Thank you all ;) -- You received this message because you are

Re: development/production mode - different paths to same file?

2011-04-08 Thread Ed
cool thanks for the info. On Fri, Apr 8, 2011 at 9:41 AM, Thomas Broyer t.bro...@gmail.com wrote: That's what the getContextPath() is for on the server-side, and getHostPageBaseURL can be used on the client-side to approximate this (appending a relative path from your host page). -- You

Re: why IsWidget is interface?

2011-04-08 Thread Jens
To decouple actual widget implementations so we can provide fake widgets to methods during testing. Its primary use case is not to be a marker interface for widgets. JavaDoc of IsWidget: *Extended by view interfaces that are likely to be implemented by Widgets. Provides access to that widget,

How can I intercept various event on cells ?

2011-04-08 Thread Thierry
Hi ! I'm still attempting to extend the cells standard behaviour, like I used to do in Swing years ago. Maybe the similarities are decepting ? I tried overiding the onBrowserEvent on a TextColumn. Nothing fired I tried overiding the onBrowserEvent on a Cell in a Column : no better result. What

Re: How can I intercept various event on cells ?

2011-04-08 Thread Thomas Broyer
onBrowserEvent is only called for those event types returned by getConsumedEventshttp://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/cell/client/Cell.html#getConsumedEvents() -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: RequestFactory, Hibernate and versioned data

2011-04-08 Thread Bappy
I stopped using hbm.xml files and used annotations instead, all is well now. On Apr 8, 10:39 am, Bappy richard.a.s...@googlemail.com wrote: Hi there, Since going from 2.1 to 2.2 RequestFactory has stopped transferring my Hibernate generated objects back to the client. The first error was

How do I apply styles??? Strange lack of expected behaviour...

2011-04-08 Thread Terry Bachard
Hi, I have a CSS file and CssResource. I define styles like .gwt-DatePicker, or .dateBoxPopup, in my CSS file, which I can see are applied to the GWT compeonents, but they are never used. I am adding the styles to my CssResource file, for example: String datePicker(); String

Re: How do I apply styles??? Strange lack of expected behaviour...

2011-04-08 Thread Jeff Larsen
you're going to need to make those styles marked as @External or @NotStrict on the CssResource inside the client bundle. Then you also have to do ClientBundle#CssResource()#ensureInjected() somewhere that is guaranteed to be called before you need it, to actually have those styles injected

Re: RPC in onWindowClosing() problem

2011-04-08 Thread Ania
Thanks a lot! I kept onwindowclosing for some database deletions,but definitely i'm gonna do this keep alive mechanism for logging out. -- 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 autocompile ;)

2011-04-08 Thread Chris Conroy
On Fri, Apr 8, 2011 at 8:23 AM, Diego Lovison diegolovi...@gmail.comwrote: hello, I would like to develop an application that the adm of the system can modify the view, add rules, buttons, fields, and others I have no idea what an 'adm' is. ok I can create something like google

Re: How can I intercept various event on cells ?

2011-04-08 Thread Thierry
thanks a lot ! On 8 avr, 18:24, Thomas Broyer t.bro...@gmail.com wrote: onBrowserEvent is only called for those event types returned by getConsumedEventshttp://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/googl...() -- You received this message because you are subscribed to the

Re: gwt autocompile ;)

2011-04-08 Thread Diego Lovison
I have no idea what an 'adm' is. adm = administrator Can be the people that is responsible of the application in the organization.. (IT resource) Organization is whom buy my software.. Why would an application 'like Google contacts' require more source code for more users? No For example:

HTML 5 Audio onComplete Listener

2011-04-08 Thread stymie
I am using the new features of the HTML 5 audio available in gwt 2.2. Is there any way for an onComplete Listener for the audio.Right now I am using a timer and checking if the currentTime = to the duration and then firing my own complete listener. I thought there should be something built in

Re: GWT Mobile invite you to develop mobile apps with GWT

2011-04-08 Thread Tonte Pouncil
Will the GWT Mobile project use Maven to build? Thanks. Tonté Pouncil From: Dennis Z Jiang jiangzhi...@gmail.com To: Google Web Toolkit google-web-toolkit@googlegroups.com Sent: Fri, April 8, 2011 12:03:31 AM Subject: GWT Mobile invite you to develop mobile

Re: GWT Developper plugin without internet connection

2011-04-08 Thread Juan Pablo Gardella
The web browser plugin install when you need. Check that the url have append gwt.codesvr=127.0.0.7:9997http://www.google.com/url?sa=Dq=http://localhost:/Green_door.html%3Fgwt.codesvr%3D192.168.1.100:9997 See here

Re: Tutorial: Using the HTML5 Canvas Element with the Google Web Toolkit (GWT)

2011-04-08 Thread trout
Thanks for the links/demos. Could you possibly post some code of how you would manipulate items you draw on the canvas? I would like to be able to draw a box then be able to click on it and move it around etc... I can't seem to understand how you track the items in the canvas. Thanks! --

Re: Tutorial: Using the HTML5 Canvas Element with the Google Web Toolkit (GWT)

2011-04-08 Thread Thomas Broyer
You don't! It's bitmap painting, not vectors, not SVG. -- 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 to

mouseover is fired twice within the scope of the same cell

2011-04-08 Thread Christian Goudreau
Here's a little snippet of the code: if (click.equals(event.getType())) { onEnterKeyDown(context, parent, value, event, valueUpdater); } else if (mouseover.equals(event.getType())) { onMouseOver(context.getIndex(), event); } else if (mouseout.equals(event.getType())) {

Re: mouseover is fired twice within the scope of the same cell

2011-04-08 Thread Christian Goudreau
Ok no, it's not because of the text... it's fired the first time when the cell is white... then a second time when the cell is turning blue. On Fri, Apr 8, 2011 at 7:33 PM, Christian Goudreau goudreau.christ...@gmail.com wrote: Here's a little snippet of the code: if

Re: mouseover is fired twice within the scope of the same cell

2011-04-08 Thread Christian Goudreau
It's not even for that... lol Anyway, even with a deffered it happen. On Fri, Apr 8, 2011 at 7:35 PM, Christian Goudreau goudreau.christ...@gmail.com wrote: Ok no, it's not because of the text... it's fired the first time when the cell is white... then a second time when the cell is turning

Re: CellTree question about varying cell composition

2011-04-08 Thread tomInNewEngland
Is there a way to persuade people to answer questions here? Or even to suggest possibilities? Searching allows me to find lots of questions like this about CellTree, but I can't find any answers. Help? Someone? Thank you. On Apr 2, 11:52 pm, tomInNewEngland tsgou...@gmail.com wrote: Hi All:

InlineLabel doesn't display a subsequent blank space in IE (but does otherwise.)

2011-04-08 Thread dindeman
The following simple structure in UiBinder produces different results in IE than in other browsers: pg:InlineLabel text='Hello'/ world!/p When debugging the bound widget I find in IE: HTML: DIVPSPAN class=gwt-InlineLabelHello/SPANworld!/P/DIV Display: Helloworld! in Firefox: HTML: divpspan

[gwt-contrib] Handle SafeHtml as return type in ui:text (issue1409802)

2011-04-08 Thread sbrubaker
Reviewers: rjrjr, Description: Handle SafeHtml as return type in ui:text Review by: rj...@google.com Please review this at http://gwt-code-reviews.appspot.com/1409802/ Affected files: M user/src/com/google/gwt/uibinder/elementparsers/ComputedAttributeInterpreter.java M

[gwt-contrib] Changes the eclipse formatter to put a space between [] and { in an (issue1411801)

2011-04-08 Thread zundel
Reviewers: jat, Description: Changes the eclipse formatter to put a space between [] and { in an array initializer. Please review this at http://gwt-code-reviews.appspot.com/1411801/ Affected files: M eclipse/settings/code-style/gwt-format.xml Index:

[gwt-contrib] Re: Changes the eclipse formatter to put a space between [] and { in an (issue1411801)

2011-04-08 Thread zundel
I broke out this change from another issue, as it should be totally non-controversial. http://gwt-code-reviews.appspot.com/1411801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixes to cldr eclipse projects in GWT. (issue1410802)

2011-04-08 Thread zundel
Broke this out from issue 1402803 should be a non-controversial change. http://gwt-code-reviews.appspot.com/1410802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Fixes to cldr eclipse projects in GWT. (issue1410802)

2011-04-08 Thread zundel
Reviewers: jat, Description: Fixes to cldr eclipse projects in GWT. Please review this at http://gwt-code-reviews.appspot.com/1410802/ Affected files: M eclipse/external/cldr-tools/.classpath M eclipse/tools/cldr-import/.classpath Index: eclipse/external/cldr-tools/.classpath

[gwt-contrib] Re: Changes the eclipse formatter to put a space between [] and { in an (issue1411801)

2011-04-08 Thread John Tamplin
LGTM -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixes to cldr eclipse projects in GWT. (issue1410802)

2011-04-08 Thread John Tamplin
LGTM -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r9965 committed - Fixes to cldr eclipse projects in GWT....

2011-04-08 Thread codesite-noreply
Revision: 9965 Author: zun...@google.com Date: Fri Apr 8 07:51:16 2011 Log: Fixes to cldr eclipse projects in GWT. Review at http://gwt-code-reviews.appspot.com/1410802 Review by: j...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=9965 Modified:

[gwt-contrib] [google-web-toolkit] r9966 committed - Changes the eclipse formatter to put a space between [] and { in an...

2011-04-08 Thread codesite-noreply
Revision: 9966 Author: zun...@google.com Date: Fri Apr 8 07:53:12 2011 Log: Changes the eclipse formatter to put a space between [] and { in an array initializer. Review at http://gwt-code-reviews.appspot.com/1411801 Review by: j...@google.com

[gwt-contrib] Re: Reindented pom.xml files (issue1410801)

2011-04-08 Thread drfibonacci
LGTM http://gwt-code-reviews.appspot.com/1410801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Handle SafeHtml as return type in ui:text (issue1409802)

2011-04-08 Thread sbrubaker
http://gwt-code-reviews.appspot.com/1409802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] removes extra source path entry from GWT datetimefmtcreator eclipse project (issue1406803)

2011-04-08 Thread zundel
Reviewers: pdr, jat, Description: removes extra source path entry from GWT datetimefmtcreator eclipse project Please review this at http://gwt-code-reviews.appspot.com/1406803/ Affected files: M eclipse/tools/datetimefmtcreator/.classpath Index: eclipse/tools/datetimefmtcreator/.classpath

[gwt-contrib] [google-web-toolkit] r9967 committed - Reindented pom.xml files...

2011-04-08 Thread codesite-noreply
Revision: 9967 Author: rchan...@google.com Date: Fri Apr 8 08:46:11 2011 Log: Reindented pom.xml files Review at http://gwt-code-reviews.appspot.com/1410801 Review by: drfibona...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=9967 Modified:

[gwt-contrib] Re: Auto-formats the GWT tools projects (excluding api-checker covered in (issue1402803)

2011-04-08 Thread zundel
I merged up, so rietveld thinks that every file changed, but in fact, there are no changes other than the removal of several files not related to the autoformat. http://gwt-code-reviews.appspot.com/1402803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Fixed pom.xml produced by WebAppCreator. Issue 4878 and Issue 6196. (issue1407804)

2011-04-08 Thread rchandia
Reviewers: drfibonacci, Description: Fixed pom.xml produced by WebAppCreator. Issue 4878 and Issue 6196. Please review this at http://gwt-code-reviews.appspot.com/1407804/ Affected files: M user/src/com/google/gwt/user/tools/templates/maven/pom.xmlsrc Index:

[gwt-contrib] [google-web-toolkit] r9968 committed - Some small refactors to Css Resource Generation...

2011-04-08 Thread codesite-noreply
Revision: 9968 Author: unn...@google.com Date: Fri Apr 8 11:20:03 2011 Log: Some small refactors to Css Resource Generation Review at http://gwt-code-reviews.appspot.com/1406802 http://code.google.com/p/google-web-toolkit/source/detail?r=9968 Deleted:

[gwt-contrib] Re: Fixed pom.xml produced by WebAppCreator. Issue 4878 and Issue 6196. (issue1407804)

2011-04-08 Thread drfibonacci
see note re: gwt-maven-plugin version http://gwt-code-reviews.appspot.com/1407804/diff/1/user/src/com/google/gwt/user/tools/templates/maven/pom.xmlsrc File user/src/com/google/gwt/user/tools/templates/maven/pom.xmlsrc (right):

[gwt-contrib] Re: Fixed pom.xml produced by WebAppCreator. Issue 4878 and Issue 6196. (issue1407804)

2011-04-08 Thread drfibonacci
LGTM w/ caveat: gwt-user.jar and gwt-dev.jar show up in target/www/WEB-INF/lib but shouldn't. This is a result of copyWebapp copying everything, including provided jars. Try gwt-maven-plugin 2.2.0-1 or specifically add gwt-user into the clean section. http://gwt-code-reviews.appspot.com/1407804/

[gwt-contrib] [google-web-toolkit] r9969 committed - Some small refactors to Css Resource Generation...

2011-04-08 Thread codesite-noreply
Revision: 9969 Author: unn...@google.com Date: Fri Apr 8 13:24:59 2011 Log: Some small refactors to Css Resource Generation Review at http://gwt-code-reviews.appspot.com/1406802 Review by: sce...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=9969 Added: