Re: Best practices for inlining build (revision) number into GWT App?

2013-06-13 Thread Frank Hossfeld
Hi Honza, your implementation sounds intresting. Can you provide more informations about your solution? Thanks Frank Am Mittwoch, 12. Juni 2013 09:50:41 UTC+2 schrieb Honza Rames: I have a XML file that stores various information about my build and is updated by a Linker which increments

Re: ScrollPanel.scrollToBottom has no effect

2013-06-13 Thread adanzer901
Hy, I have the same Problem. I tried the solution of Paul Robinson, but nevertheless, nothing happens. Where is my mistake? Here is my code: public static ScrollPanel scrollPanel; // ... private void loadInputFunctions() { input.addKeyDownHandler(new KeyDownHandler() {

scrollpanel.scrollToBottom() doesn't work...

2013-06-13 Thread adanzer901
Hy, I have the same Problem. I found a solution with Scheduler. ... but it doesn't work. Where is my mistake? Here is my code: public static ScrollPanel scrollPanel; // ... private void loadInputFunctions() { input.addKeyDownHandler(new KeyDownHandler() { @Override

get the month integer value by passing month name as a inout

2013-06-13 Thread Shashank Beerla
Hi all, this particular logic in java returns the logic what I am asking for but GWT does not support java util package of calender. Can someone help me converting this logic with GWT util package Calendar cal = Calendar.getInstance(); cal.setTime(new SimpleDateFormat(MMM).parse(July));int

Re: Export Pie Chart to Excel

2013-06-13 Thread Siddharthan Ilangovan
Thanks all. Have done with the help of apache POI. On Thursday, June 6, 2013 5:18:24 PM UTC-4, Joseph Lust wrote: POI has the limited ability to do this if you can create a standard template pie chart for it to start from. http://poi.apache.org/spreadsheet/limitations.html Sincerely,

Re: ScrollPanel.scrollToBottom has no effect

2013-06-13 Thread adanzer901
Hy, I have the same problem with the Scrollpanel. I tried the solution of Paul Robinson, but nevertheless nothing happens. Here's my code: public static ScrollPanel scrollPanel; // ... private void loadInputFunctions() { input.addKeyDownHandler(new KeyDownHandler() {

RequestFactory/EntityProxy basic architecture/design question

2013-06-13 Thread Rich Martin
Hi GWT Gurus, I have a pretty fundamental question about how to design the server-side of my system using RequestFactory. I'm sure I'm missing something pretty obvious, so I apologize in advance for the stupidity of the question. I have a server side entity (using Objectify for

Failure to send xml POST request in GWT

2013-06-13 Thread Daniel
Hello guys, I am trying to send xml in POST request in GWT, but no responses or success, see my code below: RequestBuilder builder = new RequestBuilder(RequestBuilder.POST, URL.encode(url)); logger.log(Level.INFO, Building payload+builder.toString()); try {

Re: get the month integer value by passing month name as a inout

2013-06-13 Thread Frank Hossfeld
HI, take a look at the DateTimeFormat class. Am Donnerstag, 13. Juni 2013 05:15:52 UTC+2 schrieb Shashank Beerla: Hi all, this particular logic in java returns the logic what I am asking for but GWT does not support java util package of calender. Can someone help me converting this logic

CodeMirror and GWT.

2013-06-13 Thread Håvard Moås
Hey guys. I've gotten a task to make a Textarea syntax highlighted and to have the autofill method implemented. My Textarea will consist of XML markup and I am using gwt and smartgwt. So, what I have done so far is to look into [url]http://codemirror.net/demo/xmlcomplete.html[/url] source

Re: unwanted .junit_symbolMaps in war compiled by GWT

2013-06-13 Thread anilvanama84
Thanks. If I delete this folder .junit_symbolMaps from war. Can i safely run GWT Test cases. Is there any harm. ? Please let me know. On Friday, June 7, 2013 7:03:37 PM UTC+5:30, Thomas Broyer wrote: On Friday, June 7, 2013 3:15:56 PM UTC+2, anilva...@gmail.com wrote: Hi Everyone,

Re: Failure to send xml POST request in GWT

2013-06-13 Thread Daniel
I have noted also, even firebug does not register the POST request I made, it just load loaded the post domain. On Thursday, June 13, 2013 12:30:55 PM UTC+3, Daniel wrote: Hello guys, I am trying to send xml in POST request in GWT, but no responses or success, see my code below:

Re: unwanted .junit_symbolMaps in war compiled by GWT

2013-06-13 Thread Thomas Broyer
On Thursday, June 13, 2013 11:58:42 AM UTC+2, anilva...@gmail.com wrote: Thanks. If I delete this folder .junit_symbolMaps from war. Can i safely run GWT Test cases. Is there any harm. ? Please let me know. These files are *created* by running GWTTestCases (generally; they can also be

Re: Code splittingmysteries

2013-06-13 Thread James Horsley
FYI I updated http://code.google.com/p/google-web-toolkit/issues/detail?id=7874 with some of my findings. I haven't found a workaround other than reverting to GWT 2.5.0 and am not sure I can dedicate any more time to this right now so will just revert I guess :( On 12 June 2013 19:34, Ed

Re: Failure to send xml POST request in GWT

2013-06-13 Thread Alfredo Quiroga
Notorious SOP issue at hand perhaps? Sent from my iPhone On Jun 13, 2013, at 6:11 AM, Daniel rudan...@gmail.com wrote: I have noted also, even firebug does not register the POST request I made, it just load loaded the post domain. On Thursday, June 13, 2013 12:30:55 PM UTC+3, Daniel

RequestFactory Issue 6115

2013-06-13 Thread Nermin
Hello group, Is the issue 6115 Fixed in GWT 2.5 or not?? http://code.google.com/p/google-web-toolkit/issues/detail?id=6115 My problem is that on a entity with recursive relation the ancestors are not loaded when calling with(ancestors). Here is my code: @Entity public class *JobCategory *{

Re: RequestFactory Issue 6115

2013-06-13 Thread Thomas Broyer
On Thursday, June 13, 2013 2:57:02 PM UTC+2, Nermin wrote: Hello group, Is the issue 6115 Fixed in GWT 2.5 or not?? http://code.google.com/p/google-web-toolkit/issues/detail?id=6115 My problem is that on a entity with recursive relation the ancestors are not loaded when calling

Re: RequestFactory Issue 6115

2013-06-13 Thread Nermin
Hello Thomas, yes the caller gets called, but the subcategories HashSet is empty??? The select findAllJobCategories() returns entities with populated ancestors. However, when getSubCategories() method gets called, all ancestors are empty. Any idea what could be the reason? Is there an working

Re: Failure to send xml POST request in GWT

2013-06-13 Thread Daniel
Hi Alfredo; Still not sure what is the issue, but when i try to remove the port and send my POST request to the IP only, the request goes out, but with a port it does not , does WTP have issues with port? Regards, Daniel. On Thursday, June 13, 2013 3:43:30 PM UTC+3, Alfredo Quiroga-Villamil

Re: Failure to send xml POST request in GWT

2013-06-13 Thread Daniel
yes true, seemed SOP is the problem https://developers.google.com/web-toolkit/doc/latest/FAQ_Server#What_is_the_Same_Origin_Policy,_and_how_does_it_affect_GWT Regards, Daniel. On Thursday, June 13, 2013 3:43:30 PM UTC+3, Alfredo Quiroga-Villamil wrote: Notorious SOP issue at hand perhaps?

upgrading Client application in GWT version 2.1.0 to GWT version 2.3.0

2013-06-13 Thread Lovish Sharma
I am upgrading my application that is designed in GWT version 2.1.0. and the upgrade version will 2.3.0. Please tell me what kind of changes i have to do for upgrade. and i am also using GWT maven plugin. -- You received this message because you are subscribed to the Google Groups Google Web

Re: Best practices for inlining build (revision) number into GWT App?

2013-06-13 Thread Honza Rames
Hi Frank, I have a XML (version.xml) document in my war directory: ?xml version=1.0 encoding=UTF-8? !DOCTYPE version [!ATTLIST build id ID #IMPLIED] version build id=build76/build !-- Another data if you need it -- /version A linker that increments the build number after the link process

Re: Best practices for inlining build (revision) number into GWT App?

2013-06-13 Thread Timothy Spear
Honza, Nice solution. My old solution using shell scripts and ant was a lot simpler. -- A java class object with just static variables, BUILD_DATE, BUILD_NUMBER…. -- In shell scrips I would pull the date and last revision number from subversion. Then using a simple echo command I would build a

GWT-RPC: loose vs. tight coupling

2013-06-13 Thread Shaun Tarves
I know it has been mentioned that GWT-RPC code should be tightly coupled (i.e., use ArrayList vs. List), but is that true for both the RemoteService interface and the Async interface? Or rather, is the performance gain only from using it in the RemoteService and server-side implementation of

Re: GWT-RPC: loose vs. tight coupling

2013-06-13 Thread Jens
Its not so much about performance its more about the resulting code size of your final JS. If you use List in your interface that extends RemoteService (or any DTO that is used with GWT-RPC) the GWT-RPC code generator can not know which concrete types the server side may return. Thus it has to

Re: upgrading Client application in GWT version 2.1.0 to GWT version 2.3.0

2013-06-13 Thread Jim Douglas
It's impossible to answer such a broad question, but I wouldn't anticipate any major issues. Upgrade your development copy of GWT, rebuild your application, and chase down any build errors that pop up. But if you're putting in the effort to upgrade your version of GWT, you really should use the

Uibinder inheriting and extending css classes (not just sharing them), best method?

2013-06-13 Thread GWTter
Hi all, I have a Css resource that I would like to have inherited in other uibinders and be able to have these binders extend the css classes if need be. For example: Let's say I have .myTestClass{ ...properties...} in MyCss.css which is setup as a CssResource syntactically. Then I have

How to play audio from the jar?

2013-06-13 Thread Magnus
Hi, I would like to play audio in the browser and I found this: com.google.gwt.media.client.Audio This class requires to set the audio source by calling: setSrc (String url); However, I have all my resources in the class path and I usually access them as an InputStream by calling

Re: [gwt-contrib] Issue 8083, needs some input from GWT team

2013-06-13 Thread David
Hi, The lazy parsing would only happen during deserialisation in the client. I think it is safe to assume that a BigInteger created through toString on the server will not result in a parse exception in the client code - or are there known incompatibilities ? I don't want that the regular

Re: [gwt-contrib] Issue 8083, needs some input from GWT team

2013-06-13 Thread David
Forgot to mention this code-snippet I found in the BigInteger class: /** * The magnitude of this big integer. This array is in little endian order and * each digit is a 32-bit unsigned integer. For example: {@code 13} is * represented as [ 13 ] {@code -13} is represented as [ 13 ]

[gwt-contrib] Change in gwt[master]: Adds Timer#isRunning().

2013-06-13 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: Adds Timer#isRunning(). .. Patch Set 2: (1 comment) File user/src/com/google/gwt/user/client/Timer.java

Re: [gwt-contrib] Issue 8083, needs some input from GWT team

2013-06-13 Thread Thomas Broyer
On Thursday, June 13, 2013 9:18:23 AM UTC+2, stuckagain wrote: Forgot to mention this code-snippet I found in the BigInteger class: /** * The magnitude of this big integer. This array is in little endian order and * each digit is a 32-bit unsigned integer. For example:

[gwt-contrib] Change in gwt[master]: adding compare for several number types

2013-06-13 Thread Daniel Kurka
Hello John A. Tamplin, Thomas Broyer, Leeroy Jenkins, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3180 to look at the new patch set (#12). Change subject: adding compare for several number types

[gwt-contrib] Change in gwt[master]: adding compare for several number types

2013-06-13 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: adding compare for several number types .. Patch Set 12: Updated Patch to deal with normal numbers first, but I don't think this ends up being more readable.

[gwt-contrib] Change in gwt[master]: Add show relative to Element in PopupPanel

2013-06-13 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: Add show relative to Element in PopupPanel .. Patch Set 2: (2 comments) File

[gwt-contrib] Change in gwt[master]: Add show relative to Element in PopupPanel

2013-06-13 Thread Daniel Kurka
Hello Leeroy Jenkins, Thomas Broyer, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3340 to look at the new patch set (#3). Change subject: Add show relative to Element in PopupPanel

[gwt-contrib] Change in gwt[master]: Add static is(...) to complement as as(...).

2013-06-13 Thread Thomas Broyer
Hello Goktug Gokdogan, I'd like you to reexamine a rebased change. Please visit https://gwt-review.googlesource.com/2976 to look at the new rebased patch set (#4). Change subject: Add static is(...) to complement as as(...).

[gwt-contrib] Change in gwt[master]: Fix support for Document.{get,set}ScrollLeft() in RTL for sa...

2013-06-13 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Fix support for Document.{get,set}ScrollLeft() in RTL for safari and ie9. .. Patch Set 2: Code-Review+1 (1 comment)

[gwt-contrib] Change in gwt[master]: Failing tests for java.util.Objects

2013-06-13 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Failing tests for java.util.Objects .. Patch Set 1: Code-Review+2 (1 comment) File

[gwt-contrib] Change in gwt[master]: Emulate java.util.Objects

2013-06-13 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Emulate java.util.Objects .. Patch Set 9: @Andrey: thanks; but no need to create a new issue here, it's the continuity of the original issue (and fixing

[gwt-contrib] Change in gwt[master]: Failing tests for java.util.Objects

2013-06-13 Thread Thomas Broyer
Thomas Broyer has submitted this change and it was merged. Change subject: Failing tests for java.util.Objects .. Failing tests for java.util.Objects Fixes issue 8193 Change-Id: I394c80559ce4e872826f832f0aca24fcd0e156ba ---

[gwt-contrib] Change in gwt[master]: Failing tests for java.util.Objects

2013-06-13 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Failing tests for java.util.Objects .. Patch Set 1: Now let's see if it indeed fixes the build ;-) -- To view, visit https://gwt-review.googlesource.com/3400

[gwt-contrib] Change in gwt[master]: Change DOM access in HTMLTable for IE

2013-06-13 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: Change DOM access in HTMLTable for IE .. Patch Set 2: (2 comments) File

[gwt-contrib] Change in gwt[master]: Change DOM access in HTMLTable for IE

2013-06-13 Thread Daniel Kurka
Hello Leeroy Jenkins, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3212 to look at the new patch set (#3). Change subject: Change DOM access in HTMLTable for IE .. Change DOM

[gwt-contrib] Change in gwt[master]: Change DOM access in HTMLTable for IE

2013-06-13 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Change DOM access in HTMLTable for IE .. Patch Set 3: Code-Review+1 According to the MDN, using 'children' in all browsers would work. The problem is that

[gwt-contrib] Change in gwt[master]: Change DOM access in HTMLTable for IE

2013-06-13 Thread Daniel Kurka
Hello Thomas Broyer, Leeroy Jenkins, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3212 to look at the new patch set (#4). Change subject: Change DOM access in HTMLTable for IE ..

[gwt-contrib] Change in gwt[master]: Change DOM access in HTMLTable for IE

2013-06-13 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Change DOM access in HTMLTable for IE .. Patch Set 4: Code-Review+1 (1 comment) File

[gwt-contrib] Change in gwt[master]: Change DOM access in HTMLTable for IE

2013-06-13 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: Change DOM access in HTMLTable for IE .. Patch Set 4: I am about to test behavior on IE10 and see if it leaks as well. If it does not we can simply leave it

[gwt-contrib] Change in gwt[master]: Add drawImage(VideoElement, …) overloads

2013-06-13 Thread Thomas Broyer
Thomas Broyer has uploaded a new change for review. https://gwt-review.googlesource.com/3421 Change subject: Add drawImage(VideoElement, …) overloads .. Add drawImage(VideoElement, …) overloads Bug: issue 8192 Change-Id:

[gwt-contrib] Change in gwt[master]: Change DOM access in HTMLTable for IE

2013-06-13 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: Change DOM access in HTMLTable for IE .. Patch Set 4: So IE10 leaks as well without the workaround. Sending out a repro to MS, but I think we have to deal with

[gwt-contrib] Change in gwt[master]: Add drawImage(VideoElement, …) overloads

2013-06-13 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: Add drawImage(VideoElement, …) overloads .. Patch Set 1: Code-Review+2 -- To view, visit https://gwt-review.googlesource.com/3421 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: Use JSON.parse() instead of eval() to deserialize rpc callba...

2013-06-13 Thread Leif Åstrand
Leif Åstrand has posted comments on this change. Change subject: Use JSON.parse() instead of eval() to deserialize rpc callback payload .. Patch Set 11: Code-Review-1 This patch does not work as it stands for a couple of

[gwt-contrib] Change in gwt[master]: Make Element.hasTagName(...) case-insensitive.

2013-06-13 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Make Element.hasTagName(...) case-insensitive. .. Patch Set 7: Code-Review+2 @Matthew: any idea why Jenkins doesn't pick it up? -- To view, visit

[gwt-contrib] Change in gwt[master]: Fix support for Document.{get,set}ScrollLeft() in RTL for sa...

2013-06-13 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Fix support for Document.{get,set}ScrollLeft() in RTL for safari and ie9. .. Patch Set 2: (1 comment)

[gwt-contrib] Change in gwt[master]: Make Element.hasTagName(...) case-insensitive.

2013-06-13 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Make Element.hasTagName(...) case-insensitive. .. Patch Set 7: Hoorays! -- To view, visit https://gwt-review.googlesource.com/2975 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: Make Element.hasTagName(...) case-insensitive.

2013-06-13 Thread Thomas Broyer
Thomas Broyer has submitted this change and it was merged. Change subject: Make Element.hasTagName(...) case-insensitive. .. Make Element.hasTagName(...) case-insensitive. Helpful because the various Element TAG constants are

[gwt-contrib] Change in gwt[master]: Fix support for Document.{get,set}ScrollLeft() in RTL for sa...

2013-06-13 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Fix support for Document.{get,set}ScrollLeft() in RTL for safari and ie9. .. Patch Set 2: (1 comment)

[gwt-contrib] Change in gwt[master]: Change DOM access in HTMLTable for IE

2013-06-13 Thread Daniel Kurka
Hello Thomas Broyer, Leeroy Jenkins, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3212 to look at the new patch set (#5). Change subject: Change DOM access in HTMLTable for IE ..

[gwt-contrib] Change in gwt[master]: Change DOM access in HTMLTable for IE

2013-06-13 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: Change DOM access in HTMLTable for IE .. Patch Set 4: (1 comment) File

[gwt-contrib] Change in gwt[master]: Adding a DOM clear method to RootPanel

2013-06-13 Thread Daniel Kurka
Hello Matthew Dempsky, Leeroy Jenkins, Brian Slesinsky, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/2512 to look at the new patch set (#5). Change subject: Adding a DOM clear method to RootPanel

[gwt-contrib] Change in gwt[master]: Adding a DOM clear method to RootPanel

2013-06-13 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: Adding a DOM clear method to RootPanel .. Patch Set 4: (1 comment) File

[gwt-contrib] Change in gwt[master]: Adding a DOM clear method to RootPanel

2013-06-13 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: Adding a DOM clear method to RootPanel .. Patch Set 5: I would like to see this get landed or abandoned. I think having it would have a small value, but if

[gwt-contrib] Change in gwt[master]: Adding a DOM clear method to RootPanel

2013-06-13 Thread Daniel Kurka
Hello Matthew Dempsky, Leeroy Jenkins, Brian Slesinsky, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/2512 to look at the new patch set (#6). Change subject: Adding a DOM clear method to RootPanel

[gwt-contrib] Change in gwt[master]: Failing tests for java.util.Objects

2013-06-13 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Failing tests for java.util.Objects .. Patch Set 1: (1 comment) Thanks for submitting and getting the build green (or blue) again! :)

[gwt-contrib] Change in gwt[master]: Emulate java.util.Objects

2013-06-13 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Emulate java.util.Objects .. Patch Set 9: Gerrit is a bit different than Google practices internally, because internally only the CL author can actually

[gwt-contrib] Change in gwt[master]: adding compare for several number types

2013-06-13 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: adding compare for several number types .. Patch Set 12: Code-Review+2 The intent wasn't to make it more readable, but to give a slight performance

Re: [gwt-contrib] Issue 8083, needs some input from GWT team

2013-06-13 Thread John A. Tamplin
On Thu, Jun 13, 2013 at 3:18 AM, David david.no...@gmail.com wrote: Forgot to mention this code-snippet I found in the BigInteger class: /** * The magnitude of this big integer. This array is in little endian order and * each digit is a 32-bit unsigned integer. For example: {@code

Re: [gwt-contrib] Issue 8083, needs some input from GWT team

2013-06-13 Thread John A. Tamplin
On Thu, Jun 13, 2013 at 3:14 AM, David david.no...@gmail.com wrote: The lazy parsing would only happen during deserialisation in the client. I think it is safe to assume that a BigInteger created through toString on the server will not result in a parse exception in the client code - or are

[gwt-contrib] Change in gwt[master]: Ensure clinits get called for JSO instance methods.

2013-06-13 Thread Colin Alworth
Hello Leeroy Jenkins, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3361 to look at the new patch set (#2). Change subject: Ensure clinits get called for JSO instance methods. ..

Re: [gwt-contrib] Issue 8083, needs some input from GWT team

2013-06-13 Thread David
John, Well, if I don't have support for this patch then I better stop working on it. I can understand that this is not seen as a priority for GWT. Worst case I just replace the BigInteger/BigDecimal class in the project itself, that is basically what I did right now. Oracle sequences can be

Re: [gwt-contrib] Issue 8083, needs some input from GWT team

2013-06-13 Thread Jens
I'm beginning to think such a change does not belong in GWT. In your example, wouldn't you be better served by only sending strings to the client rather than BigDecimals, if they client never does anything with them but send them back? Thats exactly what I thought too. If its just a

[gwt-contrib] Corp Textarea annoucement (google-web-toolkit-contributors@googlegroups.com)

2013-06-13 Thread Daniel Kurka (Google Drive)
I've shared an item with you: Corp Textarea annoucement https://docs.google.com/document/d/1uSFPO8tKsVvbs9RVOz9Mbyg-Llf_VABI-eoiWBfV_vs/edit?usp=sharing It's not an attachment -- it's stored online. To open this item, just click the link above. Hey Goktug, please let me know if this is a

[gwt-contrib] Change in gwt[master]: Add support for 'ImageResource' to @url substitution in css....

2013-06-13 Thread Goktug Gokdogan
Goktug Gokdogan has submitted this change and it was merged. Change subject: Add support for 'ImageResource' to @url substitution in css. Only 'DataResource' used to be supported. .. Add support for 'ImageResource' to @url

[gwt-contrib] Change in gwt[master]: Add support for 'ImageResource' to @url substitution in css....

2013-06-13 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Add support for 'ImageResource' to @url substitution in css. Only 'DataResource' used to be supported. .. Patch Set 2: Code-Review+2 -- To view, visit

Re: [gwt-contrib] Issue 8083, needs some input from GWT team

2013-06-13 Thread John A. Tamplin
On Thu, Jun 13, 2013 at 3:03 PM, David david.no...@gmail.com wrote: Well, if I don't have support for this patch then I better stop working on it. I can understand that this is not seen as a priority for GWT. Worst case I just replace the BigInteger/BigDecimal class in the project itself,

[gwt-contrib] Change in gwt[master]: Adding a DOM clear method to RootPanel

2013-06-13 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Adding a DOM clear method to RootPanel .. Patch Set 6: (1 comment) I still don't think it's necessary but I'm okay with a helper method if it's very

[gwt-contrib] Change in gwt[master]: Adding a DOM clear method to RootPanel

2013-06-13 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: Adding a DOM clear method to RootPanel .. Patch Set 6: With that rationale we should name it clearWidgetsAndDom? -- To view, visit

[gwt-contrib] Change in gwt[master]: adding compare for several number types

2013-06-13 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: adding compare for several number types .. Patch Set 12: (1 comment) The comparison functions are usually used in non linear algorithm like sorting so

Re: [gwt-contrib] Issue 8083, needs some input from GWT team

2013-06-13 Thread Brian Slesinsky
I agree; this seems like a workaround for one application that picked the wrong datatype. Maybe we should warn about BigDecimal being slow somewhere? If someone wants to do some performance tests of GWT-RPC serialization, publishing the results would be useful to the community. My recommendation

[gwt-contrib] Change in gwt[master]: adding compare for several number types

2013-06-13 Thread Daniel Kurka
Hello John A. Tamplin, Thomas Broyer, Leeroy Jenkins, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3180 to look at the new patch set (#13). Change subject: adding compare for several number types

[gwt-contrib] Change in gwt[master]: adding compare for several number types

2013-06-13 Thread Daniel Kurka
Hello John A. Tamplin, Thomas Broyer, Leeroy Jenkins, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3180 to look at the new patch set (#14). Change subject: adding compare for several number types

[gwt-contrib] Change in gwt[master]: adding compare for several number types

2013-06-13 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: adding compare for several number types .. Patch Set 14: Code-Review+2 -- To view, visit https://gwt-review.googlesource.com/3180 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: adding compare for several number types

2013-06-13 Thread Daniel Kurka
Daniel Kurka has submitted this change and it was merged. Change subject: adding compare for several number types .. adding compare for several number types -Byte.compare -Short.compare -Integer.compare -Long.compare

[gwt-contrib] Change in gwt[master]: Ensure clinits get called for JSO instance methods.

2013-06-13 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Ensure clinits get called for JSO instance methods. .. Patch Set 2: Code-Review+2 -- To view, visit https://gwt-review.googlesource.com/3361 To unsubscribe,

[gwt-contrib] Change in gwt[master]: Adding a DOM clear method to RootPanel

2013-06-13 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Adding a DOM clear method to RootPanel .. Patch Set 6: Admittedly it's a judgment call. I'm somewhat biased in favor of shorter names and somewhat against

[gwt-contrib] Change in gwt[master]: Use JSON.parse() instead of eval() to deserialize rpc callba...

2013-06-13 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Use JSON.parse() instead of eval() to deserialize rpc callback payload .. Patch Set 11: Sounds like we need more tests. Serialization code generally does

[gwt-contrib] Change in gwt[master]: Set display to none for table columns that should not be vis...

2013-06-13 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Set display to none for table columns that should not be visible. .. Patch Set 3: Aliseya, you very likely responded to my comments but I can't see them.

[gwt-contrib] Change in gwt[master]: Adding a DOM clear method to RootPanel

2013-06-13 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Adding a DOM clear method to RootPanel .. Patch Set 6: It is better to just call it clear so that people will need to read the javadoc instead of making

[gwt-contrib] Change in gwt[master]: Adding a DOM clear method to RootPanel

2013-06-13 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Adding a DOM clear method to RootPanel .. Patch Set 6: Code-Review+2 This is a pretty minor change, breakage is unlikely, and I don't think it matters too

[gwt-contrib] Change in gwt[master]: Set display to none for table columns that should not be vis...

2013-06-13 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Set display to none for table columns that should not be visible. .. Patch Set 1: (1 comment) File

[gwt-contrib] Change in gwt[master]: Adding a DOM clear method to RootPanel

2013-06-13 Thread Daniel Kurka
Daniel Kurka has submitted this change and it was merged. Change subject: Adding a DOM clear method to RootPanel .. Adding a DOM clear method to RootPanel By calling rootPanel.clear(true) the user can clear widgets AND DOM

[gwt-contrib] Change in gwt[master]: Set display to none for table columns that should not be vis...

2013-06-13 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Set display to none for table columns that should not be visible. .. Patch Set 3: Code-Review+2 Ok, I (or him) might have misinterpreted what is going on.

[gwt-contrib] Change in gwt[master]: Set display to none for table columns that should not be vis...

2013-06-13 Thread Goktug Gokdogan
Goktug Gokdogan has submitted this change and it was merged. Change subject: Set display to none for table columns that should not be visible. .. Set display to none for table columns that should not be visible. Change-Id:

[gwt-contrib] Change in gwt[master]: Adds Timer#isRunning().

2013-06-13 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Adds Timer#isRunning(). .. Patch Set 2: (1 comment) File user/src/com/google/gwt/user/client/Timer.java

Re: [gwt-contrib] Work to do for bug 3042

2013-06-13 Thread Manuel Carrasco Moñino
In my opinion, having the tool-bar in gwt makes perfectly sense, RichTextArea is almost unusable without a bar in any project. It's plenty of gwt projects which have copied and pasted the code from the showcase. I think that you should face this issue in some steps: 1.- Listen to GWT contributors