Re: Improve Productivity Using GWT?

2015-02-07 Thread Fabien DUMAY
Well, if you must not use any third lib, you should use the UiBinding as much 
as possible. 
By using the HTMLPanel, you should not have to implement a lot of widget, you 
can add bootstrap classes on html tags.

Good luck

 Le 7 févr. 2015 à 08:15, Mohammed sameen@gmail.com a écrit :
 
 @Fabien
 Thanks fabien for your support..
Have some constraints we should not use any third party library 
 like(gwtbootstrap3,pwt)..The approach which are using is looking good (GWT 
 with bootstrap css internally) but its taking lot of time to build the 
 component..Is there any other way to get responsiveness  in GWT widget..
 
 Hi, 
 
 If you are looking only for a pre-built widget library based on bootstrap, 
 you can use gwtbootstrap3 https://github.com/gwtbootstrap3/gwtbootstrap3 
 https://github.com/gwtbootstrap3/gwtbootstrap3. 
 In an other side, if you are looking for a full framework that raise your 
 productivity you try PWT http://pwt.putnami.org 
 http://www.google.com/url?q=http%3A%2F%2Fpwt.putnami.orgsa=Dsntz=1usg=AFQjCNG2nGrjB9KG31Gg8ThLk5cK7Kx06g
  
 
 Let me know if you need some help on PWT, I can help you to start. 
 
 Regards.focusing on building the Product.Is there any way how we can improve 
 the productivity using GWT?Any suggestion?
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 Google Web Toolkit group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to google-web-toolkit+unsubscr...@googlegroups.com 
 mailto:google-web-toolkit+unsubscr...@googlegroups.com.
 To post to this group, send email to google-web-toolkit@googlegroups.com 
 mailto:google-web-toolkit@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-web-toolkit 
 http://groups.google.com/group/google-web-toolkit.
 For more options, visit https://groups.google.com/d/optout 
 https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


[gwt-contrib] What constitutes an acceptable emulated String.format implementation?

2015-02-07 Thread Benjamin DeLillo


For an implementation to be accepted would it have to conform to the entire 
Java Formater spec? 
http://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html

Would an implementation lacking the Date/Time conversions be acceptable?

Would an implementation that wraps sprintf.js be acceptable (if the licensing 
is compatible)? https://github.com/alexei/sprintf.js


What about a minimal positional substitution implementation and nothing more?

-- 
You received this message because you are subscribed to the Google Groups GWT 
Contributors group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/bc6afdc0-eb87-4815-b076-6db912f8f94c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: I need java.util.Collections synchronized classes.

2015-02-07 Thread Benjamin DeLillo
You place it wherever you want in your source tree, usually at src/emul or 
src/super I think. So you'd have src/emul/java/util/Collections.java

Then add
super-source path=path/relative/to/your.gwt.xml/

to your gwt.xml file.

Someone else can help fill in the details I've missed, I'm a little fuzzy 
on the specifics of how the path gets resolved or the canonical location 
for the super-source directory, but that's the idea.


On Friday, February 6, 2015 at 5:20:55 PM UTC-5, eho...@usdataworks.com 
wrote:

  
 I found an emu directory with a Collections implementation.  Problem is 
 that Collections.java file has a java.util package.  I can't put that in 
 my source tree.  It will collide with the real implementation.


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Japanese Imperial Calendar support

2015-02-07 Thread levier
Hi,

I had logged 
issue https://code.google.com/p/google-web-toolkit/issues/detail?id=8993 
but there's no reaction on it.
Does anyone want to discuss this with me?


A small intro:
the Japanese Calendar has eras loosely based on the name of an Emperor. 
Most likely, a new Era will begin soon when the current Emperor dies. Then 
the current year becomes 1 again. Days and months are the same as the 
Gregorian Calendar. When you write the year, you also add the Era name. 
Gregorian year 2015 equals Heisei 27. It's a little fuzzy in literature 
what the day before 1/1/Heisei 1 is.

What's important to note (for software applications too) is that only some 
dates on official documents are written in this Imperial format. Other 
dates follow the western Gregorian Calendar format.
So in software, it's not OK to just detect that we're in Japan, and then 
let's use the Imperial Calendar format everywhere. End users use a mix of 
calendars.



But what does GWT still require to offer this solution?
I'd have a stab at it myself, but I don't have Linux which sounds required 
to actually contribute to GWT.
Is it just as easy as running the CLDR generators to import the ja_JP_JP 
Locale?
Do we need the whole solution found in  Java 6 by creating a new 
java.util.JapaneseImperialCalendar (1800 lines of code)?



*** I know https://groups.google.com/forum/#!forum/gwt-jp exists, but my 
Japanese conversational level is rather unexisting and I didn't want to 
post this there in English. But I assume lots of Japanese users would 
benefit from it.



If anyone can help out, I'd be very thankful :

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GSS: Variable inside CSS 3 calc procudes compile error

2015-02-07 Thread Christian Walczyk
Created a new issue

https://code.google.com/p/google-web-toolkit/issues/detail?id=9118

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Singular (Angular for crossplatform) talk at GWT.create

2015-02-07 Thread Daniel Kurka
Hi all,

here is me talking about Singular at GWT.create: 
http://gwtcreate.com/videos/index.html#singular

-Daniel

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Singular (Angular for crossplatform) talk at GWT.create

2015-02-07 Thread Brian Pedersen
Looks amazing.

When can we get our hands on Singular?

/Brian


Den lørdag den 7. februar 2015 kl. 14.25.57 UTC+1 skrev Daniel Kurka:

 Hi all,

 here is me talking about Singular at GWT.create: 
 http://gwtcreate.com/videos/index.html#singular

 -Daniel


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


[WARN] Detected warnings related to 'javax.validation.Validator'.

2015-02-07 Thread Ankur Gupta
Hi,

I am trying to get rid of warnings generated in my GWT project during the 
compilation phase. Following is the warning that I get:

[INFO] Compiling module com.polyspot.admin.webapp.AdminWebApp
[INFO]Ignored 15 units with compilation errors in first pass.
[INFO] Compile with -strict or with -logLevel set to TRACE or DEBUG to see 
all errors.
[INFO]Computing all possible rebind results for 
'com.google.gwt.useragent.client.UserAgentAsserter'
[INFO]   Rebinding com.google.gwt.useragent.client.UserAgentAsserter
[INFO]  Checking rule generate-with class=
'com.google.gwt.validation.rebind.ValidatorGenerator'/
[INFO] [WARN] Detected warnings related to 
'javax.validation.Validator'.   Are validation-api-version.jar and 
validation-api-version-sources.jar on the classpath?
[INFO] Specify -logLevel DEBUG to see all errors.
[INFO] [WARN] Unknown type 'javax.validation.Validator' 
specified in deferred binding rule


I have the validation-api-version.jar and 
validation-api-version-sources.jar in my classpath. 

Does anyone has any idea on how to get rid of this warning?

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Singular (Angular for crossplatform) talk at GWT.create

2015-02-07 Thread Mohammed
@Daniel..
Awesome...in which version of GWT its going to be include(in which 
release)..

On Saturday, February 7, 2015 at 6:55:57 PM UTC+5:30, Daniel Kurka wrote:

 Hi all,

 here is me talking about Singular at GWT.create: 
 http://gwtcreate.com/videos/index.html#singular

 -Daniel


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: window namespace in super-dev-mode

2015-02-07 Thread Klemens Schrage
Hello,

sorry for reactivating this but the mentioned commit didn't solve this 
issue although it acts in the same area.

Should I file a bug or am I missing something?

Best regards
Klemens Schrage

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.