Re: How to center application in webpage

2010-12-08 Thread suersh babu
Try using horizontal or vertical panel instead of absolute panel On Wed, Dec 8, 2010 at 10:57 AM, stymie jamesty...@gmail.com wrote: I have a root panel with an absolute panel in it that both are 480px wide.I created the following rule in the css file and have applied it to both the root

Re: issue with RequestFactory not finding a ValidatorFactory

2010-12-08 Thread ali
Thanks to both of you. Yes, the class file was in gwt-servlet-deps.jar which is not deployed by the plugin! This is a bad bug there. hope they fix it. On Dec 5, 1:34 pm, Thomas Broyer t.bro...@gmail.com wrote: On 5 déc, 06:13, ali a.akhava...@gmail.com wrote: I am using JDO with

Transactions in Request Factory

2010-12-08 Thread ali
I have operations in my client that can impact multiple entities. Now using Requst Factory, the only way seem to be doing one at a time which causes one RPC to the server. Also, transactions can't be done this way neither. So what is the solution ? Do everything on the server using a static

Re: SOP Problem with GWT 2.0.4

2010-12-08 Thread Thomas Broyer
On 7 déc, 11:44, julio antongiuli...@gmail.com wrote: Hi, I have a simple callback to a remote server like this: RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, url);                 try {                         builder.sendRequest(null, new RequestCallback() {          

Re: what Mock framework do you recommend ?

2010-12-08 Thread Thomas Broyer
On 7 déc, 16:32, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: On Tue, Dec 7, 2010 at 2:18 PM, Christian Goudreau goudreau.christ...@gmail.com wrote: I read the article proposed by Didier and Mockito is even easier than those +1 Mockito is great... +1 (I've been using

Re: RequestFactory EntityProxyChange events

2010-12-08 Thread ali
Hi PJ, Can you share the solution if you have found one ? I am working on the same problem space Thanks Ali -- 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

Re: gwt 2.1, xml. Document.getElementById() returns null

2010-12-08 Thread Thomas Broyer
On 7 déc, 01:28, Roman Makurin dro...@gmail.com wrote: Hi All! I need to handle xml on client side, so Im using following scheme: Document xml = XMLParser.parse(xmlStr); Element el = xml.getElementById(id1); at this point getElementById() returns null, but im 100% sure that element

Re: Get all events

2010-12-08 Thread MAM
Still searching, any help? Thanks On 2 déc, 12:00, MAM mersni.am...@gmail.com wrote: thank you for the reply, but that's not what I want, actually I want to do the same thing like in gwt designer :by clicking on the widget we haveallthe possibleeventsto be added and  those already present. i

Re: RPC in separate module

2010-12-08 Thread Metronome / Basic
Thanks for your help , I think that it must be something like that so I tried servlet servlet-nameuserServlet/servlet-name servlet-classmetro.app.tmupack.server.MyModServiceImpl/servlet-class /servlet servlet-mapping servlet-nameuserServlet/servlet-name

Re: RPC in separate module

2010-12-08 Thread Andreas Horst
Well, yes. But that's not what I meant. These are the servlet declarations in the DEPLOYMENT descriptor (aka web.xml). What I meant is you could declare the servlet in the MODULE descriptor (aka mymodule.gwt.xml) of your inherited module. A servlet declaration in a module descriptor looks like

Re: webappcreator with -maven and Eclipse: output directories don't match

2010-12-08 Thread Rocky
I have found a workaround on StackOverflow. Go here and take a look at GWT issue report, and star it please! http://code.google.com/p/google-web-toolkit/issues/detail?id=4853 On 7 дец, 18:09, Rocky rocky...@gmail.com wrote: I have very similar configuration and I get the same error. Have

Re: webappcreator with -maven and Eclipse: output directories don't match

2010-12-08 Thread Rocky
I have found a workaround on StackOverflow. Go take a look at GWT issue report, and star it please! http://code.google.com/p/google-web-toolkit/issues/detail?id=4853 Rade On 7 дец, 18:09, Rocky rocky...@gmail.com wrote: I have very similar configuration and I get the same error. Have you

Re: RequestFactory: Obfuscate traffic/Elide type names

2010-12-08 Thread Thomas Broyer
On 7 déc, 15:30, Chris Lercher cl_for_mail...@gmx.net wrote: Hi, with GWT RPC, it's possible to elide/obfuscate the type names from the network traffic, by adding:    inherits name=com.google.gwt.user.RemoteServiceObfuscateTypeNames/ to the .gwt.xml file. (This effectively sets the

Re: SOP Problem with GWT 2.0.4

2010-12-08 Thread julio
Hi Thomas thanks for your reply. The xs linker only allows you to load the GWT app (*.nocache.js et al.) from a different origin than the HTML host page. This is because the default linker (std, or IFrameLinker) uses an iframe to load the *.cache.html and then hits the SOP when trying to

Re: SOP Problem with GWT 2.0.4

2010-12-08 Thread bananos
Julio, you can try using JSONP, if your external CGI page is capable of returning valid JSON data. If it's not your case, the only possible way is to write server-side code at your backend, and serve data from your own host On Dec 8, 3:22 pm, julio antongiuli...@gmail.com wrote: Hi Thomas thanks

RequestFactory persist new object and return the id

2010-12-08 Thread poe
Hi, is there a simple way to get the objects id after calling the persist method? EmployeeProxy employee = ...request.create(EmployeeProxy.class); ...request.persist().using(employee); ...persistRequest.fire(...) { onSuccess(Void response) { // can i somehow get the id from the

Re: GWT Designer / TabLayoutPanel Woes

2010-12-08 Thread Eric Clayberg
I tried that and it worked fine for me. It would be helpful to see a test case (both the file you are editing and the HTML file). On Dec 7, 12:59 pm, cri chuck.irvine...@gmail.com wrote: I'm new to GWT Designer, so I'm probably making a basic mistake of some sort. When using GWT Designer to

Re: How to install GWT Designer

2010-12-08 Thread Marcello Nuccio
It should be like it: http://mac.softpedia.com/progScreenshots/Eclipse-SDK-Screenshot-8571.html As in most Mac OSX apps the menu is on top of the screen, NOT of the window. On 3 Dic, 19:31, Basi Lambanog restyc...@gmail.com wrote: Thank you for your reply. I'm new to Eclipse (though not to

Re: How to install GWT Designer

2010-12-08 Thread Boris Lenzinger
Check this : http://code.google.com/webtoolkit/tools/download-gwtdesigner.html This page contains the URLs to supply for installing a new soft under Eclipse from a site. To install a software with this method, check this : http://www.eclipse.org/modeling/emf/updates The example is for eclipse

Re: RequestFactory: Obfuscate traffic/Elide type names

2010-12-08 Thread Chris Lercher
Ok, thanks - opened an enhancement request: http://code.google.com/p/google-web-toolkit/issues/detail?id=5729 On Dec 8, 12:47 pm, Thomas Broyer t.bro...@gmail.com wrote: On 7 déc, 15:30, Chris Lercher cl_for_mail...@gmx.net wrote: Hi, with GWT RPC, it's possible to elide/obfuscate the

How to add multiple markers out of Array

2010-12-08 Thread Jan
Hi Everybody, For my actual GWT Project, i need to add markers on my map. The number of markers depends, it could be 0-3 of them. I get the datas for the markers out of my database and in an array. Now i created a method, witch has a for loop in it. In the for loop, i create the marker and add it

Re: Request.cancel doesn't work for me!

2010-12-08 Thread jhulford
You can have the initial RPC request kick off a sub-process (new thread, pass a message to another process, etc..) and then return some sort of id to your client that uniquely identifies the particular process the user initiated. The client can then emulate the blocking w/ a dialog or something

Re: SuggestBox

2010-12-08 Thread Jon Vaughan
Hm have added a VCH to clear the other loaded stuff. VCH fires before the Suggestion picked. On Dec 6, 5:32 pm, Jon Vaughan jsvaug...@gmail.com wrote: I have a suggest box the user selects something from it, causing other things to load in the page they then go back to the suggest box and

Re: SOP Problem with GWT 2.0.4

2010-12-08 Thread Lukasz
JSONP is a quite straight forward solution for the SOP problem and thanks to the JsonpRequestBuilder nicely supported in GWT 2.1. But as already mentioned the CGI service needs to be able to respond with valid JSON data. Below some code example: StringBuilder url = new

Re: add gwt to existing Java project

2010-12-08 Thread salk31
I'd suggest using the app creator http://code.google.com/webtoolkit/gettingstarted.html to create a blank project for you. It also builds with ant... You can then get a feel for how it works and merge them together... The ant compile works nicely but you need a bit of care getting class paths

Passing information back to main page from Window()

2010-12-08 Thread Ross McKinnon
Hi there, Quick question: On my main page of my App i have a number of tabs that contain a grid of data on each tab. A feature I am trying to implement is a search facility that returns the results by dynamically adding a new tab containing the results. The search facility is contained in a

Dynamically Instantiation

2010-12-08 Thread Gaurav Vaish
Hi, I have a peculiar situation in my application. I need to instantiate a class given its name. The name is determined dnyamically. In JavaScript, it's easy to do... --- var ctorFn = window[className]; //assuming that the className does not have any dots var instance =

ListEditor is there a way to edit a generic type?

2010-12-08 Thread DaveC
Hi, What I'm trying to do is pass ListEditor a list of generic types e.g. an AbstractAnimal type but what the list gets might be a Bird type, a Fish type, Mammal... etc... The problem is that that my Bird type has a property wingSpan which the Fish type does not.. they might also share a

Re: Plugin Upgrade Woes

2010-12-08 Thread Evan Ruff
Rajeev, Apparently, Eclipse upgraded my Android plugin at the same time. The new Android plugin had an error in it that was the source of a lot of those errors. I have upgraded the Android plugin and still get the same errors. Thanks, E -- You received this message because you are

Re: GWT JavaDoc failures KeyPress v. KeyDown

2010-12-08 Thread DaveC
@Greg I felt the need to reply on the topic of what GWT is/does... What (Java) devs think GWT is/does... *** Removes the need for them to understand ANY front end web technologies (e.g. HTML, Javascript, DOM, CSS + xbrowser differences) *** All of our Java developers (where I work) have found

Announcing Chrome Developer Plugin support for Mac and Linux

2010-12-08 Thread Peter Ondruska
http://googlewebtoolkit.blogspot.com/2010/12/announcing-chrome-developer-plugin.html -- 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,

Re: AXIS2 WITH ECLIPSE AND GWT PLUGIN

2010-12-08 Thread bond
Any ideas?? Thanks! On 3 Dic, 15:14, bond daniele.re...@gmail.com wrote: Hi, thanks for your reply. I created an Tomcat 6.20 server but how I can add it to my project? I remember you that my project is a GWT Web Application Project created with Gwt Plugin for Eclipse. Can you send me a

Re: Does SimplePager have to be subclassed in order for the last page button to work?

2010-12-08 Thread Benju
Try this... SimplePager pager = new SimplePager(SimplePager.TextLocation.RIGHT, GWT.SimplePager.Resourcescreate(SimplePager.Resources.class), false, 0, true); On Nov 3, 5:48 pm, Jeff Schwartz jefftschwa...@gmail.com wrote: I am using a SimplePager but the last page button is never enabled. I

How To Extend Entities For Use In RequestFactory

2010-12-08 Thread Daniel Simons
I have several entities which are automatically generated using hibernate tools. I would like to make use of RequestFactory by extending these entities, but am running into a number of issues in doing so. It seems that the current design of RequestFactory requires that all DAO methods be defined

IE7 and ALIGN_JUSTIFY

2010-12-08 Thread Greg Dougherty
I'm working on a new app using GWT 2.1. If I create a HorizontalPanel, and set the horizontal alignment to ALIGN_JUSTIFY, then when I try to add anything to that panel, I get the following exception. This only happens in IE, and I have to actually try to added something to the panel (creating

Re: get plugin failed to connect to hosted mode server on .... error with Chrome GWT developer plugin but works fine with Firefox

2010-12-08 Thread Chris Conroy
Are you still seeing this issue? The Chrome plugin was recently updated. If you go to chrome://extensions what version do you see for the GWT developer plugin? (1.0.9274 is the latest). If you don't have the latest for whatever reason, grab it from gwt.google.com/missing-plugin. On Mon, Dec 6,

Fire a button click event programmatically

2010-12-08 Thread zhong
Hi, Is there a way to fire a button click event programmatically? Many thanks, Zhong -- 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,

Re: Fire a button click event programmatically

2010-12-08 Thread Nick Newman
Might be simpler and clearer to have the button click event call a method, and simply call that method directly. Nick On Wed, Dec 8, 2010 at 4:27 PM, zhong zhongl...@gmail.com wrote: Hi, Is there a way to fire a button click event programmatically? Many thanks, Zhong -- You received

HTMPanel error in 2.1.0: (TypeError): this.removeChild is not a function (bug?)

2010-12-08 Thread Ed
I get the following error when adding a widget that is a child of a HTMLPanel is removed from his parent: (TypeError): this.removeChild is not a function The full error is listed below. What I do (gwt 2.1.0): Create a HTMLPanel from a string and then iterate through all elements and add

Re: AXIS2 WITH ECLIPSE AND GWT PLUGIN

2010-12-08 Thread Filipe Sousa
On Wednesday, December 8, 2010 6:49:14 PM UTC, bond wrote:Any ideas?? Convert your project to a web project. Select menu Project | Properties | Project Facets and enable Dynamic Web Module -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

How to use CellTable's LoadingState?

2010-12-08 Thread Hilco Wijbenga
Hi all, CellTable (or, really, HasDataPresenter) has a loading state which displays a nice image indicating that processing is going on. Unfortunately, everything related to loading state seems to be (package) private. How can I set this loading state? Cheers, Hilco -- You received this

Re: Debug problem since GWT 2.1.0, gwt-maven-plugin 2.1.0, Maven 3.0

2010-12-08 Thread Geoffrey Wiseman
On Dec 2, 3:53 pm, Geoffrey Wiseman geoffrey.wise...@gmail.com wrote: I'm guessing this is caused by this filed issue?http://code.google.com/p/google-web-toolkit/issues/detail?id=4853 Repeating what I said there on that issue: Near as I can tell, these INDEX.LIST are in gwt-servlet.jar and

Embedding Javascripts in GWT client code.

2010-12-08 Thread Jmu
I would like to embedd the below Javascript on GWT1.4 client side code. Anyways to acheive this? div id=lpButDivID-XXX/div script type=text/javascript charset=UTF-8 src=https:// server.iad.XX.net/hc/X/? cmd=mTagRepstatesite=25531345buttonID=1divID=l pButDivID- Xbt=1c=1/script

Using GWT for display data from OPC Server on a web page!!

2010-12-08 Thread amarasat
I have a question, can GWT be used to grab data from an OC Server and display it ona web page? Has any one used GWT for this purpose. I have seen so many Java implementations for OPC Clients and COM Servers online. Further after this can GWT be used to display data on web page. Is there any

EntryPoint Initialization Exception.

2010-12-08 Thread amarasat
I am trying to run the StockWatcherApplication. I am getting an EntryPoint Initialization Exception. The previous time i ran the application like amonth back it has worked fine. Below is the exception: EntryPoint initialization exception Exception while loading module

Getting Started: SpringSource Tool Suite

2010-12-08 Thread Peter Alexander
Hi. I'm trying to follow the 'Getting Started' procedure, as described in the Developer's Guide, for using SpringSource Tool Suite[1]. I'm at the point where it says: [quote] Now that you've created our app and launched it from the command line, you can import it into STS to start customizing

GWT and Internet Explorer

2010-12-08 Thread Marcelo L
I've developed an app using GWT and work with Firefox, Chrome and Safari, but not with Explorer, I can´t make Explorer to load the GWT script. Is there any configuration (of javascript) that I have to set on Explorer for running my app? Is there any rules to consider? -- You received this

How to reuse an editor of the parent class?

2010-12-08 Thread tleroy
Good evening everybody, I have a probleme to solve I have a main class : MainClass{ String name; String firstname; } 2 sub classes : ChildClass1 extends MainClass{ String anotherProperty1; } ChildClass2 extends MainClass{ String anotherProperty2; } I'd like an editor for

Re: How To Extend Entities For Use In RequestFactory

2010-12-08 Thread David Chandler
Daniel, Hang tight. GWT 2.1.1 has new Locator and ServiceLocator interfaces that will allow you to move all such methods out of entities into DAOs. See http://code.google.com/p/google-web-toolkit/issues/detail?id=5680 Also http://code.google.com/p/google-web-toolkit/wiki/RequestFactory_2_1_1

Strange bug: Uncaught TypeError: Cannot set property '__gwt_getProperty' of undefined

2010-12-08 Thread Najitaka
I haven't used GWT in a while so I was doing a one to two hour spike to see how far I could get on a project as a test. I get this strange bug when I add any element directly to my HTML page that has an ID with the same as the project name. I used the project name hangman with webAppCreator and

Re: Fire a button click event programmatically

2010-12-08 Thread Gaurav Vaish
Native javascript: btnElement.click() -- Happy Hacking, Gaurav Vaish http://www.mastergaurav.com On Dec 9, 4:42 am, Nick Newman nick.x.new...@gmail.com wrote: Might be simpler and clearer to have the button click event call a method, and simply call that method directly. Nick On Wed,

Re: Fire a button click event programmatically

2010-12-08 Thread Jim Douglas
The GWT Button Widget is actually an HTML button object; it exposes button.click(): http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/user/client/ui/Button.html#click() But GWT CustomButtons (PushButton/ToggleButton) are really styled DIVs, not HTML button objects, so the

How to make additional finder methods available from the generated domainRequest?

2010-12-08 Thread JosephLi
I have been trying to hack around to customize a GWT + Roo test project and so far from my very primitive customized gui, I can call the simple count, findById methods without problem. But I hit a road block when I try to implement some simple search function by addition a finder to the domain

Re: How to make additional finder methods available from the generated domainRequest?

2010-12-08 Thread JosephLi
Looks like someone just asked similar questions: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/827d22b8b12c2fbf Anyone knows another way before GWT 2.1.1? I am thinking I might just be missing some useful annotation that I don't know of to easily make the new finder

Re: Embedding Javascripts in GWT client code.

2010-12-08 Thread rjcarr
If the snippet has nothing to do with GWT just put it in your html page directly. On Dec 8, 12:23 pm, Jmu test0...@gmail.com wrote: I would like to embedd the below Javascript on GWT1.4 client side code. Anyways to acheive this? div id=lpButDivID-XXX/div script type=text/javascript

Re: GWT and Internet Explorer

2010-12-08 Thread rjcarr
The GWT will compile for IE by default so that shouldn't be your problem. If you open your page in IE and nothing is shown you likely have a javascript error. Your best bet is to run the app in devmode (using IE, of course) and see what errors are thrown. That should give you some direction as

Re: ListEditor is there a way to edit a generic type?

2010-12-08 Thread rjcarr
Is this a GWT question? It sounds like a generic polymorphism question. If the latter, you have two options. Either add wing span information to the parent type (Animal) or do explicit checks for Birds and then do a cast. Good luck! On Dec 8, 9:11 am, DaveC david.andrew.chap...@gmail.com

Re: Dynamically Instantiation

2010-12-08 Thread rjcarr
Have you looked at the create() method of the GWT class? On Dec 8, 9:03 am, Gaurav Vaish gaurav.va...@gmail.com wrote: Hi, I have a peculiar situation in my application. I need to instantiate a class given its name. The name is determined dnyamically. In JavaScript, it's easy to do...

Re: Passing information back to main page from Window()

2010-12-08 Thread rjcarr
I (and likely others) am not following what you mean here. What do you mean by Window()? Are you saying that your results are currently going to a new browser window but you want them to instead go into a tab of the current window? On Dec 8, 9:01 am, Ross McKinnon r.mckinno...@googlemail.com

Re: How to add multiple markers out of Array

2010-12-08 Thread rjcarr
I haven't looked too closely, but you are using an array of lists. Are you sure this is what you're intending? From your explanation it seems you'd need only a one dimensional data structure. On Dec 8, 7:10 am, Jan jan.widm...@gmx.ch wrote: Hi Everybody, For my actual GWT Project, i need to

[gwt-contrib] [google-web-toolkit] r9376 committed - Fixing a bug in IE6 where the styles on some Cell Widget items do not ...

2010-12-08 Thread codesite-noreply
Revision: 9376 Author: jlaba...@google.com Date: Wed Dec 8 02:27:55 2010 Log: Fixing a bug in IE6 where the styles on some Cell Widget items do not update, causing the items to disappear. Adding zoom:1 fixes the problem. Review at http://gwt-code-reviews.appspot.com/1193801 Review by:

[gwt-contrib] Re: Fixing a bug in IE6 where the styles on some Cell Widget items do not update, causing the items ... (issue1193801)

2010-12-08 Thread jlabanca
committed as r9376 http://gwt-code-reviews.appspot.com/1193801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r9377 committed - Cherry picking r9376 into release branch for issue #5722.

2010-12-08 Thread codesite-noreply
Revision: 9377 Author: jlaba...@google.com Date: Wed Dec 8 04:10:15 2010 Log: Cherry picking r9376 into release branch for issue #5722. http://code.google.com/p/google-web-toolkit/source/detail?r=9377 Modified: /releases/2.1/user/src/com/google/gwt/cell/client/IconCellDecorator.java

[gwt-contrib] Changing the behavior of CellBrowser so that the first child node of the next level in the tree ... (issue1198801)

2010-12-08 Thread jlabanca
Reviewers: sbrubaker, Description: Changing the behavior of CellBrowser so that the first child node of the next level in the tree is not immediately selected in the SelectionModel when its parent is selected. In general, we no longer select a value in a CellList or CellTable until the user

[gwt-contrib] Re: Changing the behavior of CellBrowser so that the first child node of the next level in the tree ... (issue1198801)

2010-12-08 Thread sbrubaker
LGTM http://gwt-code-reviews.appspot.com/1198801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Propagate WriteOperation.DELETE to EntityProxyChange handlers. (issue1199801)

2010-12-08 Thread bobv
Reviewers: rjrjr, rchandia, Description: Propagate WriteOperation.DELETE to EntityProxyChange handlers. Re-enable a disabled test. Patch by: bobv Review by: rjrjr Please review this at http://gwt-code-reviews.appspot.com/1199801/show Affected files: M

[gwt-contrib] Re: Propagate WriteOperation.DELETE to EntityProxyChange handlers. (issue1199801)

2010-12-08 Thread rjrjr
LGTM On 2010/12/08 17:39:21, bobv wrote: http://gwt-code-reviews.appspot.com/1199801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Propagate WriteOperation.DELETE to EntityProxyChange handlers. (issue1199801)

2010-12-08 Thread rjrjr
http://gwt-code-reviews.appspot.com/1199801/diff/1/2 File user/src/com/google/gwt/requestfactory/shared/impl/AbstractRequestContext.java (right): http://gwt-code-reviews.appspot.com/1199801/diff/1/2#newcode792 user/src/com/google/gwt/requestfactory/shared/impl/AbstractRequestContext.java:792:

Re: [gwt-contrib] Re: Breaking change proposed: future proofing Activity in 2.1.1

2010-12-08 Thread Ray Ryan
Basically we don't know exactly how we want to change the thing, but have a feeling something will be needed. Re: composition or delegation, it always happens, but I'm not sure that's a concrete issue yet. We could introduce an IsActivity interface, but I don't see anywhere in the current GWT code

Re: [gwt-contrib] Re: Breaking change proposed: future proofing Activity in 2.1.1

2010-12-08 Thread John Tamplin
On Wed, Dec 8, 2010 at 2:17 PM, Ray Ryan rj...@google.com wrote: Basically we don't know exactly how we want to change the thing, but have a feeling something will be needed. Re: composition or delegation, it always happens, but I'm not sure that's a concrete issue yet. We could introduce an

Re: [gwt-contrib] Re: Breaking change proposed: future proofing Activity in 2.1.1

2010-12-08 Thread Ray Ryan
I hope that doesn't come across as having ignored Neil, John et al. I do prefer using interface + abstract class, but I don't really believe that people actually read JavaDoc, and I'm certain we need to mess with this interface just a bit more. --

Re: [gwt-contrib] Re: Breaking change proposed: future proofing Activity in 2.1.1

2010-12-08 Thread Philippe Beaudoin
Just ran into an interesting little hack today. Basically, the interface includes a method: public void __do_not_implement_this_interface_extend_FooImpl_instead(); I'm far from convinced I like it, but it sure is right in your face in case you don't read javadocs! ;) Philippe On Wed, Dec 8,

[gwt-contrib] [google-web-toolkit] r9378 committed - Propagate WriteOperation.DELETE to EntityProxyChange handlers....

2010-12-08 Thread codesite-noreply
Revision: 9378 Author: gwt.mirror...@gmail.com Date: Wed Dec 8 08:24:06 2010 Log: Propagate WriteOperation.DELETE to EntityProxyChange handlers. Re-enable a disabled test. Patch by: bobv Review by: rjrjr Review at http://gwt-code-reviews.appspot.com/1199801

[gwt-contrib] [google-web-toolkit] r9379 committed - Integrate to GWT 2.1 branch....

2010-12-08 Thread codesite-noreply
Revision: 9379 Author: b...@google.com Date: Wed Dec 8 08:45:23 2010 Log: Integrate to GWT 2.1 branch. Propagate DELETE events to EntityProxyChange handlers. http://code.google.com/p/google-web-toolkit/source/detail?r=9379 Modified:

[gwt-contrib] Change Activity to an abstract class, to allow its api to evolve. (issue1200801)

2010-12-08 Thread rjrjr
Reviewers: robertvawter, Description: Change Activity to an abstract class, to allow its api to evolve. Gwt issue http://code.google.com/p/google-web-toolkit/issues/detail?id=5730 Please review this at http://gwt-code-reviews.appspot.com/1200801/show Affected files: M

[gwt-contrib] Disallow persisted entities with null version properties because it breaks RequestFactory update... (issue1201801)

2010-12-08 Thread bobv
Reviewers: rjrjr, Description: Disallow persisted entities with null version properties because it breaks RequestFactory update semantics. Patch by: bobv Review by: rjrjr Please review this at http://gwt-code-reviews.appspot.com/1201801/show Affected files: M

[gwt-contrib] [google-web-toolkit] r9380 committed - Fixes $entry() wrappers for EventTarget and subtypes, Timers, and prop...

2010-12-08 Thread codesite-noreply
Revision: 9380 Author: j...@google.com Date: Wed Dec 8 11:37:11 2010 Log: Fixes $entry() wrappers for EventTarget and subtypes, Timers, and properties of the form Element.onclick. Adds tests to confirm that this makes the UncaughtExceptionHandler fire properly.

[gwt-contrib] Re: Change Activity to an abstract class, to allow its api to evolve. (issue1200801)

2010-12-08 Thread rjrjr
http://gwt-code-reviews.appspot.com/1200801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Disallow persisted entities with null version properties because it breaks RequestFactory update... (issue1201801)

2010-12-08 Thread rjrjr
lgtm http://gwt-code-reviews.appspot.com/1201801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Change Activity to an abstract class, to allow its api to evolve. (issue1200801)

2010-12-08 Thread bobv
LGTM. Why is log4j.properties in this patch? http://gwt-code-reviews.appspot.com/1200801/diff/3001/4002 File samples/expenses/src/main/java/com/google/gwt/sample/expenses/client/ExpenseReportList.java (right): http://gwt-code-reviews.appspot.com/1200801/diff/3001/4002#newcode98

[gwt-contrib] Re: Change Activity to an abstract class, to allow its api to evolve. (issue1200801)

2010-12-08 Thread rjrjr
log4j thing is there because the lack of it causes an insane amount of console noise, and I keep forgetting to add it. http://gwt-code-reviews.appspot.com/1200801/diff/3001/4002 File samples/expenses/src/main/java/com/google/gwt/sample/expenses/client/ExpenseReportList.java (right):

[gwt-contrib] Re: Change Activity to an abstract class, to allow its api to evolve. (issue1200801)

2010-12-08 Thread rjrjr
http://gwt-code-reviews.appspot.com/1200801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Breaking change proposed: future proofing Activity in 2.1.1

2010-12-08 Thread Thomas Broyer
On Wednesday, December 8, 2010 8:22:39 PM UTC+1, John A. Tamplin wrote: On Wed, Dec 8, 2010 at 2:17 PM, Ray Ryan rj...@google.com wrote: Basically we don't know exactly how we want to change the thing, but have a feeling something will be needed. Re: composition or delegation, it always happens,

[gwt-contrib] Re: Guard against invalid dispIds in JavaDispatchImpl (issue1172801)

2010-12-08 Thread conroy
http://gwt-code-reviews.appspot.com/1172801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r9382 committed - Integrate r9381 into GWT 2.1 branch....

2010-12-08 Thread codesite-noreply
Revision: 9382 Author: b...@google.com Date: Wed Dec 8 12:52:04 2010 Log: Integrate r9381 into GWT 2.1 branch. Disallow persisted entities with null version properties because it breaks RequestFactory update semantics. http://code.google.com/p/google-web-toolkit/source/detail?r=9382

[gwt-contrib] [google-web-toolkit] r9383 committed - Edited wiki page RequestFactory_2_1_1 through web user interface.

2010-12-08 Thread codesite-noreply
Revision: 9383 Author: b...@google.com Date: Wed Dec 8 16:02:54 2010 Log: Edited wiki page RequestFactory_2_1_1 through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=9383 Modified: /wiki/RequestFactory_2_1_1.wiki === ---

[gwt-contrib] Bump version numbers in samples/expenses pom.xml pending release of 2.1.1. (issue1202801)

2010-12-08 Thread rjrjr
Reviewers: drfibonacci, Description: Bump version numbers in samples/expenses pom.xml pending release of 2.1.1. Please review this at http://gwt-code-reviews.appspot.com/1202801/show Affected files: M samples/expenses/pom.xml M

[gwt-contrib] Re: Bump version numbers in samples/expenses pom.xml pending release of 2.1.1. (issue1202801)

2010-12-08 Thread rjrjr
Whoops, ignore this. Includes other unsubmitted changes. On 2010/12/09 00:35:15, rjrjr wrote: http://gwt-code-reviews.appspot.com/1202801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Guard against invalid dispIds in JavaDispatchImpl (issue1172801)

2010-12-08 Thread jat
So what actually changed? It looks the same as patch set 1. http://gwt-code-reviews.appspot.com/1172801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r9384 committed - Change Activity to an abstract class, to allow its api to evolve....

2010-12-08 Thread codesite-noreply
Revision: 9384 Author: rj...@google.com Date: Wed Dec 8 13:58:54 2010 Log: Change Activity to an abstract class, to allow its api to evolve. Gwt issue http://code.google.com/p/google-web-toolkit/issues/detail?id=5730 Review at http://gwt-code-reviews.appspot.com/1200801 Review by:

[gwt-contrib] Re: Guard against invalid dispIds in JavaDispatchImpl (issue1172801)

2010-12-08 Thread scottb
LGTM http://gwt-code-reviews.appspot.com/1172801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r9385 committed - Cherry pick of r9384 into releases/2.1, make Actiivty an abstract clas...

2010-12-08 Thread codesite-noreply
Revision: 9385 Author: rj...@google.com Date: Wed Dec 8 14:18:19 2010 Log: Cherry pick of r9384 into releases/2.1, make Actiivty an abstract class http://code.google.com/p/google-web-toolkit/source/detail?r=9385 Added: /releases/2.1/samples/expenses/src/main/resources

[gwt-contrib] [google-web-toolkit] r9386 committed - Temporary rollback of r9384 (Change Activity to an abstract class) unt...

2010-12-08 Thread codesite-noreply
Revision: 9386 Author: rj...@google.com Date: Wed Dec 8 14:50:20 2010 Log: Temporary rollback of r9384 (Change Activity to an abstract class) until some internal clients catch up Original review at http://gwt-code-reviews.appspot.com/1200801

[gwt-contrib] I can't ant test com/google/common/annotations/GwtCompatible.class not found

2010-12-08 Thread Luis
Hi! I'm trying to execute the tests but I get this message: = ... ... ... -do: test: ant-gwt: compile: build: compile.emma.if.enabled: -compile.emma.if.enabled: compile.tests: test: [echo] Writing test results to /Users/Luis/Documents/workspace-

[gwt-contrib] Re: Isolates the portion of TypeOracleMediator that (issue1188802)

2010-12-08 Thread alexander . mitin
You cannot build the TypeOracle using the class bytes using the classpath only, because of the re-rooted resources which have no compiled classes near the source file. So, as part of the GWT Designer I implemented disk caching of the compiled CompilationUnits. The CU caught after compiling and