Eclipse plugin cannot be installed

2011-10-27 Thread Magnus
Hi, the installation of the eclipse plugin fails for me. I downloaded the latest eclipse version (indigo, 3.7) and added the following update site: http://dl.google.com/eclipse/plugin/3.7 When selecting all packages and starting the installation, I get the following message: The operation

Re: problems with loading stuff/bootstrapping onModuleLoad triggered by an event

2011-10-27 Thread tanteanni
i made an (nearly)minimal example showing this problem. it is a simple sandbox app where i made some experiments with RequestFactory and Activities and Places (no DI, no Gin). The crux is now, that onModuleLoad is starting an AppManager.start(). The AppManager shows only wait until data is

widget selector must write in css file?

2011-10-27 Thread wahaha
does gwt-MyWidget liked selector must write in a independent css file? if write in ui.xml,it does not work,so we must use cssResource. -- 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: problems with loading stuff/bootstrapping onModuleLoad triggered by an event

2011-10-27 Thread Thomas Broyer
I think that's because the code now runs from within an event, so handlers addition/removal is done after the event is processed; but handleCurrentHistory() fires events synchronously, so the event handlers are not yet registered. As a workaround, defer continueStart() a bit more so it

Re: Popup windows printing

2011-10-27 Thread Fabricio Pizzichillo
I found this thread, maybe can help you. http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/eea48bafbe8eed63?pli=1 regards 2011/10/27 Mike Dee mdichiapp...@gmail.com It seems easy to popup a new window, but I'm not sure how to stick the HTML into it. If Window.open would

Re: problems with loading stuff/bootstrapping onModuleLoad triggered by an event

2011-10-27 Thread tanteanni
that was my first guess but i debugged into ActivityManager's- register event code. all activity managers are instatiated and have themselve registered on placechange events before the deferred handleCurrentHistory() occurs. Or the other way around: if i do not defer the start all is working

Re: Eclipse plugin cannot be installed

2011-10-27 Thread Magnus
I found out that there must be a conflict with a previous installation (helios). Could it be that there are entries in the Windows registry? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: Handling authorization exception from server to client

2011-10-27 Thread André Salvati
So, wasn't it supposed to enter the code bellow on AbstractRequestContext? Is not it a general failure?? Maybe this is an issue with RequestFactory... if (response.getGeneralFailure() != null) { ServerFailureMessage failure = response.getGeneralFailure(); ServerFailure fail =

Webdriver and GWT Devmode

2011-10-27 Thread Magno Machado
Is anyone here using Webdriver to drive GWT apps in devmode? I can use it to drive the compiled app, but it's impratical to recompile the whole app everytime I want to run the tests during development, so I wanted to use it on devmode on my machine when I'm developing a new feature, and run them

Re: problems with loading stuff/bootstrapping onModuleLoad triggered by an event

2011-10-27 Thread Thomas Broyer
What I meant is that, assuming you're using a SimpleEventBus, the PlaceChangeRequestHandler-s and PlaceChangeHandler-s are in the deferredDeltas list, they're not yet fully registered:

how to get speedtracer to work with eclipse/tptp

2011-10-27 Thread tanteanni
some weeks ago i tried speed tracer in chrome for my gwt app (eclipse/maven). but only sseing the javascript/html side of the coin doesn't really help. now i installed TPTP for Eclipse (my idea was i just click profile as MyWebApp) but i found profile as speedtracer. So clicked it and set up

Re: Handling authorization exception from server to client

2011-10-27 Thread Thomas Broyer
No, it's not a general failure, it's only a failure for one invocation. Look at few lines down in AbstractRequestContext: SetThrowable causes = null; for (int i = 0, j = invocations.size(); i j; i++) { try { if (response.getStatusCodes().get(i)) {

Re: problems with loading stuff/bootstrapping onModuleLoad triggered by an event

2011-10-27 Thread tanteanni
at the moment the whole continueStart is deferred at the end of this continueStart handleCurrentHistory() is called, after instantiating activity mappers and managers. Before that (on construction time of AppManager) EventBus and PlaceController are instantiated. you could look in the code i

Re: Click Events not getting attached

2011-10-27 Thread Akash Gupta
don't cast them into elements, use them as widgets, do not deal with elements at all. On Thu, Oct 27, 2011 at 12:00 AM, gangurg gangurg gang...@gmail.com wrote: How to use them as Widgets ? On Wed, Oct 26, 2011 at 10:04 AM, Akash Gupta akash.b...@gmail.comwrote: ya use them as widgets

Re: Click Events not getting attached

2011-10-27 Thread Akash Gupta
instead of MyPanel p = new MyPanel (contentHtmlPanel.getElement()); do it MyPanel p = new MyPanel (contentHtmlPanel); and have a constructor accordingly. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: SplitLayoutPanel and Widgets using UiBinder

2011-10-27 Thread Freddie Jefferson
Patrick, I got it. Thanks a bunch. Regards, SigmaBlu On Wed, Oct 26, 2011 at 5:04 PM, Patrick Julien pjul...@gmail.com wrote: OK, so use a SimplePanel or whatever you need in the west area and assign to that -- You received this message because you are subscribed to the Google Groups

SecurityException: Invalid signature file digest for Manifest main attributes Error with 2.4.0 2.3.0

2011-10-27 Thread Brzhk
Hello, I'm trying to compile my projet using ther gwt-maven-plugin and i fall on this error : [INFO][ERROR] Unexpected internal compiler error [INFO] java.lang.ExceptionInInitializerError [INFO] at com.google.gwt.user.rebind.rpc.ProxyCreator.create(ProxyCreator.java:269) [INFO] at

Re: Eclipse plugin cannot be installed

2011-10-27 Thread Magnus
Thanks, I managed it by first installing/upgrading some eclipse packages... Don't know why, but it works now... -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

gwt-servlet.jar wrong after GWT update

2011-10-27 Thread Magnus
Hi, after installing a new eclipse 3.7 and installing the GWT plugin, my project has a GWT error: The file war\WEB-INF\lib\gwt-servlet.jar has a different size than GWT SDK library gwt-servlet.jar; perhaps it is a different version? I had this before, but I do not remember what to do. What's

Capture ctr-z(undo) and ctr-y(redo) within GWT application

2011-10-27 Thread Ahmed
Hello, I have been writing a web application based on GWT 2.3 and along with it I have written my own undo and redo functions. When the user presses ctr-z or ctr-y the undoes or redoes the last changes. Is their a way to effectively detect the ctr-z and ctr-y keypress events that occur anywhere

Maven + Eclipse + RequestFactory validation tool: Duplicate class error

2011-10-27 Thread Tiago Rinck Caveden
Hello all, I migrated to GWT 2.4.0 and one of the first errors I got concerned the RequestFactory validation tool that needed to be run before launching the server. As I'm using Maven, I followed the instructions available here:

Odd IncompatibleRemoteServiceException

2011-10-27 Thread darkling
We've been building this application for several months no problems until now. We haven't upgraded any jars but we did upgrade the Eclipse GWT plugin the other day. Since then the application works ok in normal mode but when I try to debug it in hosted mode it fails with the following exception:

Re: Maven + Eclipse + RequestFactory validation tool: Duplicate class error

2011-10-27 Thread Patrick Julien
only include generated-sources/apt in your maven build using build-helper-maven-plugin !-- Google Plugin for Eclipse (GPE) won't see the source generated above by requestfactory-apt unless it is exposed as an additional source dir -- plugin

Re: gwt-servlet.jar wrong after GWT update

2011-10-27 Thread Patrick Julien
just squash the gwt-servlet.jar found in your project with the one found in your gwt installation -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: Popup windows printing

2011-10-27 Thread Jeffrey Chimene
On 10/26/2011 9:02 PM, Mike Dee wrote: It seems easy to popup a new window, but I'm not sure how to stick the HTML into it. That's the purpose of the _target attribute in the form element. If Window.open would return a reference to the window, I could see a way to do it. Create a JSNI

Trouble accessing Javascript function in JSNI

2011-10-27 Thread laredotornado
Hi, I'm using GWT 2.4. I've included this on my main module page ... script type=text/javascript src=js/tabber.js/script script type=text/javascript src=js/sortable.js/script /head The file js/tabber.js defines a function, tabberAutomatic. However, when this Java method is

Re: Odd IncompatibleRemoteServiceException

2011-10-27 Thread Jens
An IncompatibleRemoteServiceException is thrown when you have an old gwt-servlet.jar in your WEB-INF/lib folder. Your client speaks version 7 while your server only understands (and expects) version 5. Just copy the correct GWT 2.1 gwt-servlet.jar into your WEB-INF/lib folder. Regarding your

Re: Trouble accessing Javascript function in JSNI

2011-10-27 Thread Alain Ekambi
Try $wnd.tabberAutomatic(tabberOptions); and $wnd.sortables_init(); 2011/10/27 laredotornado laredotorn...@zipmail.com Hi, I'm using GWT 2.4. I've included this on my main module page ... script type=text/javascript src=js/tabber.js/script script type=text/javascript

Re: Maven + Eclipse + RequestFactory validation tool: Duplicate class error

2011-10-27 Thread Tiago
Ha, amazing! Thank you Patrick for the fast and precise answer! Shouldn't that doc page I linked in the OP be updated? Best regards, Tiago. On Oct 27, 3:43 pm, Patrick Julien pjul...@gmail.com wrote: only include generated-sources/apt in your maven build using build-helper-maven-plugin !--

Re: problems with loading stuff/bootstrapping onModuleLoad triggered by an event

2011-10-27 Thread Thomas Broyer
As I said: handleCurrentHistory() is called from within onAdminUnitSelected, i.e. an event dispatch. Delay it (either just handleCurrentHistory() or the whole continueStart()) with Scheduler#scheduleFinally to make it execute *outside* the event dispatching, so that the place change handlers

Re: Maven + Eclipse + RequestFactory validation tool: Duplicate class error

2011-10-27 Thread Patrick Julien
Probably, you're always free to write a ticket to the gwt team -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/GunUBGXUIW8J. To post to this

Re: Maven + Eclipse + RequestFactory validation tool: Duplicate class error

2011-10-27 Thread Thomas Broyer
If maven-compiler-plugin executes the validation tool, then you don't need to call it explicitly using the exec-maven-plugin. You'd have to configure Eclipse manually though. Or you could disable annotation processing in the maven-compiler-plugin and run the ValidationTool using the

Re: Odd IncompatibleRemoteServiceException

2011-10-27 Thread darkling
It does have to regenerate it. Our build system actually deletes it everytime it runs but the hosted.html file actually has a modified date of February. I'm not sure how that's possible, it must be being copied from somewhere by GWT On Oct 27, 10:13 am, Jens jens.nehlme...@gmail.com wrote: An

Re: Odd IncompatibleRemoteServiceException

2011-10-27 Thread darkling
I tried grabbing gwt-servlet.jar and that did fix the second issue, assuming I manually change the verison number in hosted.html I can run the program in hosted mode. But when I regenerate hosted.html it always puts 2.0 If anyone can give me any suggestions that would be great Thanks for all the

Two GWT scripts in one page.

2011-10-27 Thread Luis Montes
So I've gotten GWT to make a cross domain script with the xsiframe linker and it works ok. However one problem: In my local GWT app i'm developing, I'm doing something like this: script type=text/javascript language=javascript src= http://otherhost.com/xsapp/xsapp.nocache.js;/script script

Re: Two GWT scripts in one page.

2011-10-27 Thread Thomas Broyer
You can use several GWT modules in the same HTML page, but then the DevMode applies for all of them. (at least I'm not aware of a way to filter the modules it'd apply to) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: Two GWT scripts in one page.

2011-10-27 Thread Luis Montes
That's the problem. I still need to use dev mode. There really should be some configuration for this. On Thu, Oct 27, 2011 at 9:23 AM, Thomas Broyer t.bro...@gmail.com wrote: You can use several GWT modules in the same HTML page, but then the DevMode applies for all of them. (at least I'm

Overriding web.xml in Google Plugin for Eclipse's Jetty

2011-10-27 Thread dotsha
I have some context/servlet init parameters defined in my app's web.xml, that set default behaviour for my application. When deployed to production, these can be overridden on a per-installation basis by editing the tomcat context XML file. I would like to do a similar thing during development,

Re: GWT Developer Plugin for Firefox 7

2011-10-27 Thread morteza adi
Thanks Joel ! it worked for me very well ! Truly yours, Morteza Adi On Wed, Oct 26, 2011 at 6:41 PM, Joel glatap...@gmail.com wrote: Thank you very much :-) On Oct 25, 5:14 pm, Alan Leung acle...@google.com wrote: Sometimes this week. It seems to be pretty stable. -Alan

Google Eclipse plugin Archive

2011-10-27 Thread NRJ
Hi, This page -http://code.google.com/eclipse/docs/install-from-zip.html gives the latest plugin for Eclipse. The latest plugin has GWT 2.4 I want the archive of the GWT 2.2 plugin for jdk 1.5 compatibility. Please give a download link for the same. Thanks -- You received this message because

Initial download size

2011-10-27 Thread Morteza Adi
I'm using GXT/GWT in a project. with help of code splitting i could reduce initial download size to 2232796 bytes. However i think it is still too big for initial download. after inspecting compile reports i found that there are some classes /packages in jre and gwtlang like

Re: Chrome 15, GWT DMP Plugin crashes

2011-10-27 Thread pjspychala
Yeah, i can deploy fine and it works without the development plugin in all browsers. The IE dev plugin works fine too. -Paul On Oct 26, 1:47 pm, savilak savi...@gmail.com wrote: We have the same issue with Chrome 16.0.912.12 dev-m. In case we deploy the app or use IE in debug mode  the app

Re: Odd IncompatibleRemoteServiceException

2011-10-27 Thread darkling
Can anyone tell me what jar or property makes the client want version number 7? I'd much rather revert the client to the correct version we support than try to update the server right before a release Thanks On Oct 27, 11:33 am, darkling darkling...@aol.com wrote: I tried grabbing

Re: Odd IncompatibleRemoteServiceException

2011-10-27 Thread Jens
Just make sure you use gwt-user.jar and gwt-servlet.jar (and gwt-dev.jar) of the same GWT version. I think you should also use the gwt-maven-plugin with the same version as your GWT jars. I dont think that you can change the GWT-RPC version manually. -- You received this message because you

Regarding HTTPClient Request

2011-10-27 Thread karun
Hi , Is it possible for class which extends RemoteServiceServlet to accept and serve the GET request sent by com.google.gwt.http.client.RequestBuilder from client, since the RemoteServiceServlet also inherit public void doGet(HttpServletRequest req, HttpServletResponse resp) method Thanks

Re: Popup windows printing

2011-10-27 Thread Mike Dee
I say that. It is from back in 2007. The later messages indicate users had problems with it. Don't know if it is supported either. On Oct 27, 3:03 am, Fabricio Pizzichillo fpizzichi...@gmail.com wrote: I found this thread, maybe can help

Re: Popup windows printing

2011-10-27 Thread Mike Dee
Did that. Seems to work. Have to figure out CSS issues. Experimenting now with using separate module. On Oct 27, 6:55 am, Jeffrey Chimene jchim...@gmail.com wrote: On 10/26/2011 9:02 PM, Mike Dee wrote: It seems easy topopupa new window, but I'm not sure how to stick the HTML into it.

CSS1Compat Error

2011-10-27 Thread Bill Morrison
Greetings, In my GWT application I have set it to standards mode (!doctype html) in the main html file. However, at run time I keep receiving this message : 12:20:17.905 [INFO] [marabou] Your *.gwt.xml module configuration prohibits the use of the current doucment rendering mode

Re: how create project from pom??

2011-10-27 Thread cri
You are correct. I was referring to the combination of eclipse/gwt/ maven. And from what I gather, the version of m2e updated for Indigo has caused all kinds of breakage of existing maven plugins (when used with Indigo). Personally, I'm to the point of believing that you are better off without

GWT 2.4 MVP tutorial

2011-10-27 Thread Crystal
Greetings, My apologies if this has already been ask. I am looking for a GWT 2.4 MVP tutorial. I found the Contacts tutorial, but that is not even close to the structure that gets produced when I make a new MVP project with GWT 2.4 in Eclipse. The activities and places seems to be about

GWT RemoteService eclipse wizard does not generate Async Service class

2011-10-27 Thread David Lee
I am new to GWT. I installed the Eclipse plugins and got a sample project to work using the New Web Application Project ( the one with Greeting Service). Works great. Now I experimented with adding my own service. I used the GWT Remote Service wizard to create as new Remote Service. It created

How can i pass an array through a runnable interface ?

2011-10-27 Thread Laurent Pierre
Hi Chaps, I'm doing a succesful call to a servlet which is returning a String array. Array's datas should be used to display a pie chart. What is the best way to pass these datas to createtable() in order to fill the data table ? Did tried a couple of ideas but i had some error messages like

Re: GWT 2.4 MVP tutorial

2011-10-27 Thread Andrea Boscolo
http://code.google.com/webtoolkit/doc/latest/DevGuideMvpActivitiesAndPlaces.html It explains how activities and places can be used in a MVP way. It references a helloworld sample, but in the mid of the doc there's also a link to another and more complete sample (mobilewebapp) that takes in

Re: Editor not flush values of subeditors

2011-10-27 Thread Cristian Rinaldi
The error is when I declare an interface instead of a particular class implementation. By example: @UiField(provided = true) AddressView address; //Interface (not a concrete class) Note that into file ui.xml the inclusion of widget also is a interface by example: l:AddressView

Re: Editor not flush values of subeditors

2011-10-27 Thread Christian Goudreau
What is AddressView is extending? On Thu, Oct 27, 2011 at 6:25 PM, Cristian Rinaldi csrina...@gmail.comwrote: The error is when I declare an interface instead of a particular class implementation. By example: @UiField(provided = true) AddressView address; //Interface (not a concrete

Re: Editor not flush values of subeditors

2011-10-27 Thread Thomas Broyer
If AddressView is neither an Editor nor an IsEditor, that's the expected behavior, as I told you before. The generator for the EditorDriver can only looks at the declared type of the fields and declared return types of the methods, if AddressView is not an editor, then the field will smply be

Re: Editor not flush values of subeditors

2011-10-27 Thread Cristian Rinaldi
Hello Christian: AddressView extends View and EditorAddressProxy See below: public interface AddressView extends View, EditorAddressProxy{ public interface Presenter extends MutablePresenterAddressView{ } } -- You received this message because you are subscribed to the Google Groups

Re: Editor not flush values of subeditors

2011-10-27 Thread Thomas Broyer
Similarly, if AddressView has no subeditors (zero-arg methods with an Editor/IsEditor return type), it's basically useless. Keep in mind that the generator looks at your classes, not the actual instances: it runs at compile-time to generate code. -- You received this message because you are

Re: jquery?

2011-10-27 Thread Andrei
I wrote complex apps in both JQuery and GWT. My experience boils down to two key points: (1) 2-3,000 lines of code or less, you can do it much faster in JQuery than GWT, and the resulting JavaScript will be much smaller. More code - go with GWT. (2) If you plan to use widgets like DataGrid or

Re: Editor not flush values of subeditors

2011-10-27 Thread Cristian Rinaldi
Thanks thomas, I see it clearly now. It's a shame, I wanted the container interface does not depend on the particular implementation of Address. If this changes, I just wanted to change the bind in GIN. Thanks.! -- You received this message because you are subscribed to the Google

Re: GWT advantages

2011-10-27 Thread shakilsiraj
One more thing to worry about is cross browser compatibility with JSF. At my work we have two large projects, one in GWT and the other in JSF. With the JSF project we are forcing ie9+ to use 1e8 compatibility mode as it is very complex to upgrade the JSF code we have to the new JSF frameworks.

Re: jquery?

2011-10-27 Thread Roger Studner
There are many (many) jQuery based live grid implementations. They are far easier to style, implement and customize than CellTable A massive strength of GWT, is the ability to model your domain objects on the client. Sure, you can do this in javascript using Backbone and other techniques, but

how defined a AbsolutePanel in ui.xml?

2011-10-27 Thread wahaha
g:AbsolutePanel g:at g:Label text=1/g:Label /g:at /g:AbsolutePanel i fond these code on the internet,but it is wrong in my computer. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: Popup windows printing

2011-10-27 Thread Mike Dee
I really don't like the idea of popping up a new window and then feeding it HTML. In this case it works nicely because the main page has HTML in it and the popup simply shows the same HTML but without the UI. However, I can think of situations where there is a celltable with data and I want to

Re: how create project from pom??

2011-10-27 Thread Juan Pablo Gardella
I don't use m2eclipse plugin in eclipse. I do *mvn eclipse:eclipse *and import the project in eclipse and works fine. The one thing that I must *do by hand *in eclipse is enable GWT project nature. To do this, in project properties, in google category option Google Web Toolkit press *Apply.* * *

[gwt-contrib] AdditionalTypeProviderDelegate uses internal names (issue1583803)

2011-10-27 Thread stephen . haberman
Reviewers: cromwellian, Message: This is a small clean up from the less name mangling patch that is just fixing a variable name to be internalName instead of binaryName. I have another patch or two coming that is the same thing; pulling peripheral, no-functionality-changes out of the name

[gwt-contrib] Add various docs, minor variable renames (issue1578807)

2011-10-27 Thread stephen . haberman
Reviewers: cromwellian, Message: No functionality changes, just adding docs, usually to explicitly state whether its internal/binary/source names being used, or a few renames to make which internal/etc. names are being used more explicit. Please review this at

[gwt-contrib] Ignore qualified refs with generics (issue1578808)

2011-10-27 Thread stephen . haberman
Reviewers: scottb, http://gwt-code-reviews.appspot.com/1578808/diff/1/dev/core/src/com/google/gwt/dev/javac/CompilationStateBuilder.java File dev/core/src/com/google/gwt/dev/javac/CompilationStateBuilder.java (right):

[gwt-contrib] Re: Make form event getTypes public. (issue1582803)

2011-10-27 Thread t . broyer
LGTM (as a side note, I always wondered why these events are not in com.google.gwt.event.dom; I believe we could add them there and have the existing ones extend the new ones) Oh, and BTW, rjrjr is no longer a Googler; I wonder who to assign this CL to; jgw? jlabanca? fredsa?

[gwt-contrib] Re: r10697 is back! It was falsely accused last time. Fingers crossed: (issue1578806)

2011-10-27 Thread rchandia
Submitted as r10726 http://gwt-code-reviews.appspot.com/1578806/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Mofifying HasDataPresenter to be more resilient to state changes while it is resolving state cha... (issue1583804)

2011-10-27 Thread jlabanca
Reviewers: dcavalcanti_google.com, Description: Mofifying HasDataPresenter to be more resilient to state changes while it is resolving state changes. For example, if user code triggers a SelectionChangeEvent while selection is being resolved, we can handle that. Review by:

[gwt-contrib] Re: Mofifying HasDataPresenter to be more resilient to state changes while it is resolving state cha... (issue1583804)

2011-10-27 Thread jlabanca
committed as r10728 http://gwt-code-reviews.appspot.com/1583804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Reroll of r10726 (issue1578809)

2011-10-27 Thread rchandia
Reviewers: rdayal, Description: Reroll of r10726 *** Original change description *** Change default of UiBinder.useLazyWidgetBuilders to true, in preparation for deleting the old code. Review by: rda...@google.com Please review this at http://gwt-code-reviews.appspot.com/1578809/ Affected

Re: [gwt-contrib] Re: Make form event getTypes public. (issue1582803)

2011-10-27 Thread Stephen Haberman
Sadly, Ray has left! :-( You can definitely still assign reviews to whomever you think is most appropriate, but add me to the review if you're not getting a response, and I'll make sure it gets some attention. That's great, thanks, Rajeev. I have a few that have been pending; might send

Re: [gwt-contrib] Announce: GwtQuery 1.1.0

2011-10-27 Thread Ray Cromwell
Awesome job Manuel, taking this project from a proof of concept to a rock solid library! -Ray On Wed, Oct 26, 2011 at 10:38 AM, Manuel Carrasco Moñino man...@apache.org wrote: The GQuery team is proud to announce the version 1.1.0 of the library. We have been working hard in order to fix