Re: Images in server folder (store and access)

2010-02-12 Thread Abdullah Shaikh
I guess you need to generate the images in war/images - Abdullah On Thu, Feb 11, 2010 at 10:27 PM, K. K. Forest ralf.bie...@gmail.comwrote: To extend on this, when generating an image (I am operating in hosted mode) it puts it into MyEclipseProject/images, but when running the service (in

ClientBundle; Best Practices

2010-02-12 Thread Johan Rydberg
While planning a new Application I'm trying to figure out how to best design it to get the most out of the whole ClientBundle thing. But I'm trying to figure out how to use the bundles in ways that they (1) were intended to be and (2) that fit my needs; * Is the goal to have a single Resource

valantine images

2010-02-12 Thread riya
Feel free to download any of the images. Just right click and Save As... VALENTINE'S DAY. IMAGES, BACKGROUND, BORDERS ... You can select among 200+ images. .. http://www.adbrite.com/mb/commerce/purchase_form.php?opid=1003278afsid=1

Using external styles with UiBinder error

2010-02-12 Thread shahid
I started using the UiBinder for various forms in my application. I have created a UiStyles.css (with a CssResource interface called Css) under the main client package and would like to use that in all packages across the application. The problem is I am using a sprite in the stylesheet for a

Re: GWT UIBinder - unrecognized text in g:VerticalPanel

2010-02-12 Thread Blessed Geek
I have a rather complete explanation here. http://h2g2java.blessedgeek.com/2010/02/tutorial-gwt-rpc-stub-modified-with.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

Re: SOP in GWT 2.0

2010-02-12 Thread Lothrien
GWT.getModuleBaseURL() - in Hosted Mode http://localhost:/ModuleName - in Compiled Version file://C:/PathToEclipseWorkspace/ModuleName/WAR/ On 10 Feb., 15:29, lhoracek lhora...@softeu.com wrote: Did you tried to see what URL/URI the browser requests before that SOP Exception? Im going

File upload problem

2010-02-12 Thread Ice13ill
I'm trying to upload a file using GWT + GAE. I want to store the file as a BLOB, but i can't get there because i can't make the request: my code is: final FormPanel form = new FormPanel(); form.setAction(/ebas/fileservice); form.setEncoding(FormPanel.ENCODING_MULTIPART);

Re: Getting error $doc.getBoxObjectFor is not a function in Firefox 3.6

2010-02-12 Thread Nathan Williams
Resolved this in GWT 1.4 (we're version locked due to WAS 6.0) by modifying the com/google/gwt/user/client/impl/DOMImplMozilla.java file in gwt-user.jar. I assume a similar strategy would work in later versions of GWT. Replace the implementations of the getAbsoluteLeft and getAbsoluteTop methods

Re: Need help with Table!!!!

2010-02-12 Thread muhannad nasser
i have build what u r looking for... a grid with header, scrolling, grid Title and pagination use VerticalPanel, add inside it Horizontal Panel for the title and anything else u want. then add a scrollPanel which will contain the grid... for the grid. add a class and extend

Re: File upload problem

2010-02-12 Thread Ice13ill
ok... so... i found it works with a HttpServlet and i fond a way to get the input stream using some jars from apache (http:// code.google.com/appengine/kb/java.html#fileforms). Should i understand that i can't use a RemoteServiceServlet (GWT) ? or should i change method to METHOD_GET (does that

Re: GWT in Dev-Mode works only on IE6

2010-02-12 Thread SokoleOko
Ok! I've got it! I had problems because I had 3 different versions of gwt.xml - one for tests, one for production and one for common use. Dev-mode tried to load them all, and in one version of .gwt.xml there was only ie6 in user.agent. So my FF was able to work correctly just after I started my

Re: Local events dispatch/handling. Don't wanna go through the EventBus...

2010-02-12 Thread Brian Reilly
I don't see any reason why the TabPresenter can't listen for events on the main event bus. People talk about not wanting to crowd the event bus. I'm not sure what they mean by this, though I can think of three things: 1. Volume of events 2. Diversity of event types 3. Number of registered event

GWT Gears WorkerPool

2010-02-12 Thread ruchir jha
I am using the GWT Gears WorkerPool API. I am trying to figure out if there is a way to call methods implemented in Java from the worker's java script implementation ? I am not sure if this is a duplicate post. If it is, apologies and please delete it. Ruchir. -- You received this message

GWT Resize of div's

2010-02-12 Thread Vladi S
HI, I'm currently facing the following problem and hope someone can help me out : e.g. ..div id=content div id=widget /div /div div id=footer /div ... i insert the GWT app i create not into the body but into a div id=widget. The problem is that as the

Re: Source code availability to the GWT Compiler

2010-02-12 Thread Richard Allen
We also use the Maven sources JAR approach. The .class and .java do NOT have to be in the same JAR file. The GWT compiler will just need the sources JAR on the classpath, which you can accomplish via Maven dependency management, as you have stated. The only problem I found using the Maven

Re: How to invoke GWT entry point from external java script

2010-02-12 Thread Eric Blanchette
String referral = Window.Location.getParameter(referral); On Feb 11, 10:26 am, ramesh chiluverirame...@gmail.com wrote:  Hai All,   I am new to GWT. i am facing problem to call my GWT entry point class from out side script.  Can any one explain ,how can i invoke my GWT application from

Re: How to invoke GWT entry point from external java script

2010-02-12 Thread Eric Blanchette
String referral = Window.Location.getParameter(referral); On Feb 11, 10:26 am, ramesh chiluverirame...@gmail.com wrote:  Hai All,   I am new to GWT. i am facing problem to call my GWT entry point class from out side script.  Can any one explain ,how can i invoke my GWT application from

Calling Java code from within Gears WorkerPool worker

2010-02-12 Thread RJ
Hi, Is it possible to call a java method from the Gears WorkerPool's worker's java script code ? Ruchir. -- 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 Plugin on Firefox 3.6 (linux) not working

2010-02-12 Thread 10wattmindtrip
Distro: Arch Linux Same problem as vali. Any word on Chrome/Chromium support? Cheers On Feb 3, 8:34 am, vali valentin.kol...@googlemail.com wrote: Hello I hope i'm right here with my problem. If not, please inform me and i'm sorry about that.  When i read that the new GWT-plugin update

GWT 2.0.1 + Low Level API of GAE

2010-02-12 Thread vbjain
Can anyone provides me the well understandable example of use of low level API with GWT 2.0.1? I have one grid in which there will be three columns and 2 rows. Coulmns : Field Name, Field Type, Field Type Row1: Id, String, 100 Row2: fName, int, 10 I want to pass this values to datastore and

Generalpath

2010-02-12 Thread S Eldibany
I have an AWT application that draws some products using lines and arcs, fills, etc (java2d stuff) and creates a GeneralPath that ultimately gets drawn in the Swing JPanel (presentation layer). If the UI of the application is all written in GWT (instead of swing, and use GWT RPC for communication

GWT Generator sourse 5

2010-02-12 Thread den bardadym
I write a generator for my JPA entities for convinient using of gwt- ext Record. But my entities use annotations and generator tell me: could not parse error message: com\huskon\rria\office\entity \User.java(com\huskon\rria\office\entity:User.java):26: annotations are not supported in -source 1.3

Re: Local events dispatch/handling. Don't wanna go through the EventBus...

2010-02-12 Thread Chris Lercher
I also don't like the EventBus approach. In my opinion, it decouples exactly the wrong things: While it acts like something you can just throw events onto, and you don't have to care who will handle them, in the end you actually do care. So the coupling is invisible, but logically it's still

Re: GWT 2.0.0 JPEG errors with JAI and JAI-IMAGEIO

2010-02-12 Thread Richard Allen
I am having this exact same error with GWT 2.0.0. I upgraded to GWT 2.0.1 and it fixed the problem. However, I hear there is a regression with 2.0.1 and the developers are working on getting 2.0.2 out soon. The only issue I saw tagged for 2.0.2 is this one:

ScrollPanel (scrollbar) CSS

2010-02-12 Thread RPB
Hello, Does anyone know how to change the scrollpanel CSS (specifically I want to make the scrollbar a different colour). Any example CSS or tips would be much appreciated (it's not in the GWT showcase). Thanks -- You received this message because you are subscribed to the Google Groups

Re: ScrollPanel (scrollbar) CSS

2010-02-12 Thread Christian Goudreau
Simply copy the ScrollPanel css from the google css file. Change de gwt-ScrollPanel name to whatever you want, but only change the primary name. Then, you have to call setStylePrimaryName on your scrollbar. Finally, you change the css as you wish. Christian On Fri, Feb 12, 2010 at 11:38 AM,

Re: GWT 2.0.1 + Low Level API of GAE

2010-02-12 Thread andreas_b
Hi. GWT is not directly related to the GAE datastore, but I assume you mean that you want to be able to pass entities between client and server. This can be done both with JDO and detachable entities, or you should have a look at the objectify framework that wraps the low level api. JDO stuff:

Re: ScrollPanel (scrollbar) CSS

2010-02-12 Thread RPB
Thanks for the suggestion, but ScrollPanel doesn't exist in standard.css (or if i've missed it, could you please post the google css here?) I've been trying a couple of things. The most successful is the below which works on IE but not Firefox or Chrome. Any other ideas? . .scroll{

Re: How to place url link in gwt Label

2010-02-12 Thread Thomas Broyer
On Feb 11, 4:48 pm, philippe philippe.vonc...@gmail.com wrote: Normally, Anchor is used to internal link.http://myapp/#myAnchor You're confusing Anchor with Hyperlink (or InlineHyperlink) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: ScrollPanel (scrollbar) CSS

2010-02-12 Thread Christian Goudreau
It's simply because there's no style in standard .css. Anyway a scroll panel is simply a div with overflow set to scroll. It's not css standard to be able to customize it... I didn't pay attention to what widget you wanted to customize, I simply explained how we customize a widget in general.

Blog/ Email TextArea like widget

2010-02-12 Thread Ahmad Bdair
Hello, Is there a widget that provides a similar functionality to what text area in emails / blog / forums provides? Where the user can write text, change its color, bold..etc Ahmad. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: How to place url link in gwt Label

2010-02-12 Thread Christian Goudreau
Anyway : g:HTMLPanel blablabla your text g:InlineHyperlinkYour link/g:InlineHyperlink blabalbla your text /g:HTMLPanel On Fri, Feb 12, 2010 at 12:06 PM, Thomas Broyer t.bro...@gmail.com wrote: On Feb 11, 4:48 pm, philippe philippe.vonc...@gmail.com wrote: Normally, Anchor is used to

Re: binding of event handlers

2010-02-12 Thread Thomas Broyer
On Feb 10, 6:57 pm, alfonz19 alfon...@gmail.com wrote: Hi, this is shown as an example of binding event handler. public class MyFoo extends Composite {   @UiField Button button;   public MyFoo() {     initWidget(button);   }   @UiHandler(button)   void handleClick(ClickEvent e) {    

Re: Understanding RequestBilder und SOP Problem

2010-02-12 Thread Thomas Broyer
On Feb 11, 3:16 pm, nino jazzmatad...@googlemail.com wrote: Well this code is working inside of the non-application sandboy :  function HCall(){                         xmlhttp = new XMLHttpRequest();                         xmlhttp.open(GET, http://localhost:/pdmdesktop/host;,

Integrating a simple GWT app with an existing java web app

2010-02-12 Thread Greg
I have been trying hard for a few days to get this working and seem to be stuck still at the same place. This is a very simple java web app that has only a few jsp's and some servlet's. The GWT app has no rpc's at this point and has some client code which is accessing a rest resource, I have this

UiBinder exceptions

2010-02-12 Thread davidroe
I have recently started to use UiBinder as a way to define the UI. I have previously defined my UI using either just Java code to build panels and widgets or by (ab)using setInnerHTML. I have never come across runtime exceptions when creating widgets until using UiBinder. My UI will now throw

Re: Integrating a simple GWT app with an existing java web app

2010-02-12 Thread Greg
Ok for sure not the best way to start off my posting in the GWT forum. I didn't realize there was actually a google-compile option in the eclipse context menu and thought that running the app would result in a recompile. Actually doing what the popup suggested has resulted in my trivial page

Re: Facebook

2010-02-12 Thread Jeff Schnitzer
Yes, I have. You can play with it: http://www.mobca.st/ There are two sides to a facebook webapp, the client and the server. On the GWT side you will not be using facebook-java-api or any other java http-based client. You will use the facebook connect library through JSNI. The new api library

Firefox ONPASTE: Get the text to be pasted?

2010-02-12 Thread Jim Douglas
I'm in the process of implementing a text control from Swing (JFormattedTextField) to GWT. One of the requirements is that when the user pastes in a block of text, I can't just let the default action occur; I have to filter the text through a mask. Given that requirement, I need to be able to

[ANN] Objectify-Appengine 2.0, easily use GWT with the GAE datastore

2010-02-12 Thread Jeff Schnitzer
A couple days ago the Objectify team released version 2.0 of Objectify-Appengine, a mid-level open-source data persistence tier for Google App Engine. It's a comfortable level of abstraction somewhere between JDO's too complicated and the Low-Level API's too simple, allowing you to easily put(),

Re: Using external styles with UiBinder error

2010-02-12 Thread Chris Ramsdale
Why not reference your styles from a CssResource that itself is wrapped in a ClientBundle? Something like: *Resources.java* public interface Resources extends ClientBundle { public static final Resources INSTANCE = GWT.create(Resources.class); @Source(UiStyles.css) public MyUiStyles

Re: Generalpath

2010-02-12 Thread dolcra...@gmail.com
You would need to look at the graphics solutions for GWT (svg/canvas/ vml/flash). As there is no native (nonFlash/plugin) corssbrowser methods you would need to either look at a gwt library or wrap an existing javascript solution for graphics. But I would instead inspect your ui, because a lot

Re: [ANN] Objectify-Appengine 2.0, easily use GWT with the GAE datastore

2010-02-12 Thread Roger Studner
Begs the question (and I don't have time, sadly, to try it). GWT 2.0 + ObjectifyWithGWT + (Gaelyk or Grails) That would be an insanely awesome stack. Roger On Feb 12, 2010, at 2:54 PM, Jeff Schnitzer wrote: A couple days ago the Objectify team released version 2.0 of Objectify-Appengine,

Sneak preview of my first Facebook app

2010-02-12 Thread Robert Uomini
Hey, everyone, For those of you who are on Facebook, get a sneak preview of my upcoming new Web app, What Do We Have In Common?, before the official launch this Sunday. The URL is https://www.chiaramail.com/WhatDoWeHaveInCommon/WDWHIChome.html . The app enables you to find out what you have in

Re: [ANN] Objectify-Appengine 2.0, easily use GWT with the GAE datastore

2010-02-12 Thread Duong BaTien
Hi Jeff: Thanks for posting in GWT group as well. I start to test part of our application to Objectify and like its new @Embedded. I may have more feedbacks to your team soon. @Embedded is an excellent way to build JSON data transport and JsonpRequestBuilder is already in GWT 2.0 - probably in

Hyperlink cause scroll

2010-02-12 Thread Aladdin
I have a Hyperlink in my application inside TreeItem and this cause the page to scroll sometimes. I can't figure out why it happens and when ! Anyone with the same problem . the problem only in FF and not in IE ! -- You received this message because you are subscribed to the Google Groups

Building GWT apps that support adjustable font sizes

2010-02-12 Thread googelybear
Hi, I need to build an app that also works well (meaning: looks acceptable and is still usable) with different font sizes. Eg. a user with impaired vision might increase the default font size of the browser to make web pages easier readable for him. For me as a developer this means removing as

Re: Building GWT apps that support adjustable font sizes

2010-02-12 Thread Thomas Broyer
On 13 fév, 01:30, googelybear googelyb...@gmail.com wrote: Hi, I need to build an app that also works well (meaning: looks acceptable and is still usable) with different font sizes. Eg. a user with impaired vision might increase the default font size of the browser to make web pages easier

Re: username/password when using GAE

2010-02-12 Thread John V Denley
really no responses on this one? On Feb 11, 11:19 pm, John V Denley johnvden...@googlemail.com wrote: There are plenty of (fairly indepth technical) conversations on here about the use of passwords and how to send the data/password to the server. It very much seems a consensus that unless

RPC with ArrayList, another hapless Ray Ryan groupie reaches out for help

2010-02-12 Thread Michael Dausmann
Hi Trying to build out the Ray Ryan best practices sample in GWT 2.0 , having trouble with the action(command)/response objects, containing array list instances. This is Ray's sample package com.play.client; import java.util.ArrayList; public class GetDetails implements

Re: Getting error $doc.getBoxObjectFor is not a function in Firefox 3.6

2010-02-12 Thread Lee Chuen Yang, Jeremy
It worked. Thanks Nathan! On Fri, Feb 12, 2010 at 10:10 PM, Nathan Williams nlwil...@gmail.comwrote: Resolved this in GWT 1.4 (we're version locked due to WAS 6.0) by modifying the com/google/gwt/user/client/impl/DOMImplMozilla.java file in gwt-user.jar. I assume a similar strategy would

Re: DialogBox broken in Firefox 3.6

2010-02-12 Thread JY
I've tested the solution found here:- http://groups.google.com/group/google-web-toolkit/browse_thread/thread/88a8437754345092?hl=en It works! On Feb 12, 2:19 am, JY chueny...@gmail.com wrote: I've found the source of the problem. This is due to getboxobjectfor() method getting removed in

[gwt-contrib] GWT 2.0.2

2010-02-12 Thread stuckagain
Hi, Any idea when there will be a GWT 2.0.2 ? The 2.0.1 contains a few issues that stops us from migrating (already reported and fixed), the 2.0 contains issues that were fixed in 2.0.1 ... so we must migrate. building our own version is not immediatly possible. David --

Re: [gwt-contrib] Re: Add the ability to change the default HandlerManager of a Widget

2010-02-12 Thread Nathan Wells
Thinking outload... What about allowing ctors to take a HM. The other ctors use the default implementation. If you dont care for a HM then use the ctors without HM in the parameter list. That way The problem with this is that you then have to add HM to the ctor for every extension of

[gwt-contrib] Re: Add the ability to change the default HandlerManager of a Widget

2010-02-12 Thread Sven Brunken
Updated the patch to only add a createHandlerManager which gets called by ensureHandlers. On 12 Feb., 04:22, John LaBanca jlaba...@google.com wrote: Alright, lets go with createHandlerManager() for now.  Thanks for all the feedback. @sven - Would you like to update the patch by reverting

Re: [gwt-contrib] GWT 2.0.2

2010-02-12 Thread Miguel Méndez
We should have the 2.0.2 release out by end of day today or Monday at the latest. On Fri, Feb 12, 2010 at 3:40 AM, stuckagain david.no...@gmail.com wrote: Hi, Any idea when there will be a GWT 2.0.2 ? The 2.0.1 contains a few issues that stops us from migrating (already reported and fixed),

[gwt-contrib] Re: RFC: sharded linking

2010-02-12 Thread Alex Moffat
Where can I read a description of what -XshardPrecompile, or see the code for it, it sounds very useful to me personally? It's not in 2.0.0 as far as I can see. My concerns about the sharded linking proposal came from what I understood the original flow to be from my looking at it and from the

[gwt-contrib] [google-web-toolkit] r7556 committed - Unselect the MenuItem in the top level MenuBar when auto-hiding a chil...

2010-02-12 Thread codesite-noreply
Revision: 7556 Author: jlaba...@google.com Date: Thu Feb 11 05:01:40 2010 Log: Unselect the MenuItem in the top level MenuBar when auto-hiding a child MenuBar. http://gwt-code-reviews.appspot.com/141804 Issue: 2458 http://code.google.com/p/google-web-toolkit/source/detail?r=7556 Modified:

[gwt-contrib] [google-web-toolkit] r7559 committed - Updated the release notes for GWT 2.0.2.

2010-02-12 Thread codesite-noreply
Revision: 7559 Author: mmen...@google.com Date: Thu Feb 11 07:22:23 2010 Log: Updated the release notes for GWT 2.0.2. http://code.google.com/p/google-web-toolkit/source/detail?r=7559 Modified: /trunk/distro-source/core/src/release_notes.html === ---

[gwt-contrib] [google-web-toolkit] r7560 committed - Add a favorites table

2010-02-12 Thread codesite-noreply
Revision: 7560 Author: gwt.mirror...@gmail.com Date: Fri Feb 12 08:00:20 2010 Log: Add a favorites table http://code.google.com/p/google-web-toolkit/source/detail?r=7560 Modified: /trunk/bikeshed/src/com/google/gwt/sample/datawidgets/client/DataBackedWidgets.java

[gwt-contrib] [google-web-toolkit] r7561 committed - Makes HandlerManager execute all event handlers even if one throws an...

2010-02-12 Thread codesite-noreply
Revision: 7561 Author: phopk...@google.com Date: Thu Feb 11 10:21:52 2010 Log: Makes HandlerManager execute all event handlers even if one throws an exception. Wraps thrown exceptions in an UmbrellaException (which is factored out of AttachDetachException).

[gwt-contrib] [google-web-toolkit] r7562 committed - tr...@7530,7559 was merged into this branch...

2010-02-12 Thread codesite-noreply
Revision: 7562 Author: jlaba...@google.com Date: Fri Feb 12 08:15:34 2010 Log: tr...@7530,7559 was merged into this branch Updates release notes for 2.0.2. svn merge -c7530,7559 --ignore-ancestry https://google-web-toolkit.googlecode.com/svn/trunk

[gwt-contrib] [google-web-toolkit] r7563 committed - Adding an option to buy or sell stock the datawidgets sample.

2010-02-12 Thread codesite-noreply
Revision: 7563 Author: gwt.mirror...@gmail.com Date: Fri Feb 12 08:17:37 2010 Log: Adding an option to buy or sell stock the datawidgets sample. http://code.google.com/p/google-web-toolkit/source/detail?r=7563 Added:

[gwt-contrib] [google-web-toolkit] r7564 committed - Upgrade WebKit's DOM library to use textContent instead of falling bac...

2010-02-12 Thread codesite-noreply
Revision: 7564 Author: knor...@google.com Date: Thu Feb 11 17:33:08 2010 Log: Upgrade WebKit's DOM library to use textContent instead of falling back to the slow versions of setInnerText and getInnerText. Review by: jgw http://gwt-code-reviews.appspot.com/141808/show

[gwt-contrib] Re: PopupPanel.setVisible does not affect glass

2010-02-12 Thread t . broyer
Your tests don't check that the iframe shim attached to the glass element in IE6/7 is hidden/shown. http://gwt-code-reviews.appspot.com/143809/diff/1/3 File user/src/com/google/gwt/user/client/ui/PopupPanel.java (right): http://gwt-code-reviews.appspot.com/143809/diff/1/3#newcode927 Line 927:

[gwt-contrib] [google-web-toolkit] r7565 committed - Abstracting out PlayerStatus to a separate class and adding the concep...

2010-02-12 Thread codesite-noreply
Revision: 7565 Author: jlaba...@google.com Date: Fri Feb 12 05:38:22 2010 Log: Abstracting out PlayerStatus to a separate class and adding the concept of cash. Also adds GWT checkstyle to the project and cleans up checkstyle errors.

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

2010-02-12 Thread codesite-noreply
Revision: 7566 Author: jlaba...@google.com Date: Fri Feb 12 09:42:27 2010 Log: Edited wiki page through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=7566 Modified: /wiki/DataBackedWidgetsDesign.wiki === ---

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

2010-02-12 Thread codesite-noreply
Revision: 7567 Author: jlaba...@google.com Date: Fri Feb 12 09:53:47 2010 Log: Edited wiki page through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=7567 Modified: /wiki/DataBackedWidgetsDesign.wiki === ---

[gwt-contrib] SameParameterValueOptimizer should ignore methods called from native code.

2010-02-12 Thread mike . aizatsky
Reviewers: Lex, Message: Lex, Please review. Description: SameParameterValueOptimizer should ignore methods called from native code. Please review this at http://gwt-code-reviews.appspot.com/141812 Affected files: M

[gwt-contrib] Re: SameParameterValueOptimizer should ignore methods called from native code.

2010-02-12 Thread spoon
LGTM http://gwt-code-reviews.appspot.com/141812 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] RFC: sharded linking

2010-02-12 Thread Matt Mastracci
On 2010-02-12, at 1:15 PM, Ray Cromwell wrote: On Thu, Feb 11, 2010 at 4:43 PM, Scott Blum sco...@google.com wrote: - I dislike the whole transition period followed by having to forcibly update all linkers, unless there's a really compelling reason to do so. In general, I'd agree, but the

[gwt-contrib] conditional linkers and the primary.linker property

2010-02-12 Thread spoon
Reviewers: robertvawter, Description: This patch adds a way that deferred bindings can be differ depending on the choice of primary linker. This general functionality is necessary to get runAsync working for the cross-site linker, because doing so requires compiler rewrites that do not apply to

[gwt-contrib] Re: GFlow cleanup

2010-02-12 Thread spoon
I can't review the changes right this moment, but I have added this patch to the gflow branch for convenience. http://gwt-code-reviews.appspot.com/143812 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: RFC: sharded linking

2010-02-12 Thread Lex Spoon
On Fri, Feb 12, 2010 at 9:50 AM, Alex Moffat alex.mof...@gmail.com wrote: Where can I read a description of what -XshardPrecompile, or see the code for it, it sounds very useful to me personally? -XshardPrecompile is an experiment that everyone wants to change, so it seems unlikely to be

Re: [gwt-contrib] Re: RFC: sharded linking

2010-02-12 Thread Lex Spoon
On Thu, Feb 11, 2010 at 8:58 PM, Brendan Kenny bcke...@gmail.com wrote: If this is indeed the direction to go in (and I'm a big fan of the goals as well), it's probably also worth making a more formal definition for won't step on each other's toes. As a use case, I'm working on a PRE linker

Re: [gwt-contrib] RFC: sharded linking

2010-02-12 Thread Lex Spoon
On Thu, Feb 11, 2010 at 7:43 PM, Scott Blum sco...@google.com wrote: I have a few comments, but first I wanted to raise the point that I'm not sure why we're having this argument about maximally sharded Precompiles at all. For one thing, it's already implemented, and optional, via