Re: good gwt mysql hosting

2014-09-23 Thread .tet.suo.mei.ster.
just look around for a root-server ( self managed ) wich starts around 10-20eurobugs. put a debian on it, install sun-java and tomcat7 and enjoy. there is no magic within. if you need some managed one, tell. 2014-09-22 12:12 GMT+02:00 anna amat : > > Can anyone suggest me a good hosting that

Re: GWT with Maven and Spring

2014-09-23 Thread Dilan A
On Monday, 22 September 2014 21:29:29 UTC+10, Thomas Broyer wrote: > > > On Monday, September 22, 2014 12:32:50 PM UTC+2, Dilan A wrote: >> >> >> >> On Monday, 22 September 2014 01:07:47 UTC+10, Thomas Broyer wrote: >>> >>> The default scope in Maven is "compile", there's no scope named >>> "def

Re: GWT with Maven and Spring

2014-09-23 Thread Dilan A
On Monday, 22 September 2014 21:29:29 UTC+10, Thomas Broyer wrote: > > > On Monday, September 22, 2014 12:32:50 PM UTC+2, Dilan A wrote: >> >> >> >> On Monday, 22 September 2014 01:07:47 UTC+10, Thomas Broyer wrote: >>> >>> The default scope in Maven is "compile", there's no scope named >>> "def

Re: gwt-maven-plugin 2.7.0-SNAPSHOT

2014-09-23 Thread Luca
I can't find Maven dependencies. Here https://oss.sonatype.org/content/repositories/google-snapshots/com/google/gwt/gwt-user/2.7.0-SNAPSHOT/ No jars or poms. What am I missing ? Il giorno martedì 16 settembre 2014 11:27:09 UTC+2, Thomas Broyer ha scritto: > > Fixed in master, and new snapshot

Re: gwt-maven-plugin 2.7.0-SNAPSHOT

2014-09-23 Thread Thomas Broyer
On Tue, Sep 23, 2014 at 11:12 AM, Luca wrote: > I can't find Maven dependencies. > > Here > > > https://oss.sonatype.org/content/repositories/google-snapshots/com/google/gwt/gwt-user/2.7.0-SNAPSHOT/ > > No jars or poms. > > What am I missing ? > Hmm, the maven-metadata.xml has been updated yester

Re: good gwt mysql hosting

2014-09-23 Thread Michael Joyner
I use Afterburst for unlimited bandwidth and dedicated ram allocation VPS with Tomcat myself (hosted in Germany). http://www.afterburst.com/unmetered-vps On 09/23/2014 03:12 AM, .tet.suo.mei.ster. wrote: just look around for a root-server ( self managed ) wich starts around 10-20eurobugs. put

Re: good gwt mysql hosting

2014-09-23 Thread Michael Joyner
I use Afterburst for unlimited bandwidth and dedicated ram allocation VPS with Tomcat myself (hosted in Germany). http://www.afterburst.com/unmetered-vps On 09/23/2014 03:12 AM, .tet.suo.mei.ster. wrote: just look around for a root-server ( self managed ) wich starts around 10-20eurobugs. put a

Re: good gwt mysql hosting

2014-09-23 Thread Michael Joyner
I use Afterburst for unlimited bandwidth and edicated ram allocation VPS with Tomcat myself. $15.00/month On 09/23/2014 03:12 AM, .tet.suo.mei.ster. wrote: just look around for a root-server ( self managed ) wich starts around 10-20eurobugs. put a debian on it, install sun-java and tomcat7 and e

Webfonts with ClientBundle, UiBinder

2014-09-23 Thread Thad Humphries
I'd like to try out webfonts with my app. I can use the *.woff file from Font Awesome (http://fontawesome.io/) by adding it to my WAR directory and a link to a modified version of their CSS in my module's welcome-file (I'd like to go with just *.woff, since it's small and works across browsers).

Re: Webfonts with ClientBundle, UiBinder

2014-09-23 Thread Jens
You need to define the font using @font-face. By default fontawesome.css contains @font-face { font-family: 'FontAwesome'; src: url('../fonts/fontawesome-webfont.eot?v=4.2.0'); src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../fonts/fontaweso

How to simply add more years into DatePicker in GWT and use the format to DD-MM-YYYY when a date was selected?

2014-09-23 Thread Tom
Look at this code, DateBox myDateBox=new DateBox(); myDateBox.getDatePicker().setYearAndMonthDropdownVisible(true); DateTimeFormat dateFormat = DateTimeFormat.getFormat("DD-MM-"); myDateBox.setFormat(new DateBox.DefaultFormat(dateFormat)); Ok, when I clicked on the DateBox the DatePicker g