rpc call

2012-03-18 Thread tong123123
as gwt has no java pattern class and so I want to use server validation, at 
first, my code is 
if (!validate()_{

}else{
  retrieveData();
}

the validate() method is only client side validation first, but now I need 
add rpc server validation test, so I think if the server validation rpc 
call is non-blocking, then maybe 
there is server validation error, but the client side code already run to 
the else part and run retrieveDate(), any method to ensure the validate() 
method is completed before retrieveData() is called?

-- 
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/-/pONxZAoV2PEJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: hibernate , getting data List from database problem

2012-03-18 Thread Alfredo Quiroga-Villamil
K, this is really a GWT forum, not hibernate but I will try to give you
some guidance and hopefully it leads you down the right path.

At first glance I am at this moment not able to see anything wrong with the
code you have. A couple of suggestions though:

a) The transaction in a select statement is really optional. Nothing really
needs to be rolled back or treated for the most part as an atomic
operation. It doesn't hurt if you want to keep it though.

b) I would enable debug and see the sql query that is being generated.
Looking at your entity doesn't reveal any associations, but the query can
very well be generating a left join hence the list of three results with
apparently only the first real row from a table that contain three distinct
ones. So in hibernate enable debug (hibernate property or xml file) and
take a look at the generated sql query. You can then run that query against
your database, see the result and go from there.

c) STS has really good support for the query api you are using in
hibernate. If you use that IDE, you can directly paste the "from Table"
query you have in the hibernate perspective and see the results there
before you even run the code.

Best regards,

Alfredo

On Sun, Mar 18, 2012 at 5:11 PM, nofear  wrote:

> Hi guys ,
>
> İ have a hibernate problem again, here's my problem ,
> I have an exam schedule table in my database and i inserted 3 rows of
> data in this table. But when i try to get the data from database using
> hibernate, just the first data comes. i mean , if there are 3 rows in
> the table , so the FIRST ROW returns 3 times!. please help to fix this
> issue.
>
> here's my code ;
>
>
> SinavTakvim.java
> ***
> //ExamSchedule domain class
>
>
> package tr.edu.gsu.yds.shared.domain;
>
> import java.io.Serializable;
>
> import javax.persistence.Column;
> import javax.persistence.Entity;
> import javax.persistence.Id;
> import javax.persistence.Table;
>
> import net.sf.gilead.pojo.gwt.LightEntity;
>
> //ExamSchedule Domain
>
> @Entity
> @Table(name = "sinavtakvim")
> public class SinavTakvim extends LightEntity implements Serializable
> {
>private static final long serialVersionUID = 1L;
>
>private Integer sinavTakvimId;
>private String sinavTarih;
>private String sinavSinif;
>private String sinavNot;
>
>@Id
>@Column(name = "sinavTakvimId", nullable = false, length=10)
>public Integer getSinavTakvimId()
>{
>return sinavTakvimId;
>}
>
>public void setSinavTakvimId( Integer sinavTakvimId )
>{
>this.sinavTakvimId = sinavTakvimId;
>}
>
>@Column(name = "sinavTarihi", nullable = false, length=20)
>public String getSinavTarihi()
>{
>return sinavTarih;
>}
>
>public void setSinavTarihi( String sinavTarihi )
>{
>this.sinavTarih = sinavTarihi;
>}
>
>@Column(name = "sinavSinif", nullable = false, length=45)
>public String getSinavSinif()
>{
>return sinavSinif;
>}
>
>public void setSinavSinif( String sinavSinif )
>{
>this.sinavSinif = sinavSinif;
>}
>
>@Column(name = "sinavNot", length=45)
>public String getSinavNot()
>{
>return sinavNot;
>}
>
>public void setSinavNot( String sinavNot )
>{
>this.sinavNot = sinavNot;
>}
>
> }
>
> -
>
>
>
>
> SinavTakvimDao.java
> 
> package tr.edu.gsu.yds.server.dao;
>
> import java.util.List;
>
> import org.hibernate.Session;
> import org.hibernate.Transaction;
>
> import tr.edu.gsu.yds.server.util.GileadHibernateUtil;
> import tr.edu.gsu.yds.shared.domain.SinavTakvim;
>
> //ExamSchedule DAO
>
> public class SinavTakvimDao
> {
>public List getSinavTakvimList()
>{
>Session session = null;
>Transaction transaction = null;
>try
>{
>session =
> GileadHibernateUtil.getSessionFactory().openSession();
>transaction = session.beginTransaction();
>List sinavTakvimList =
> session.createQuery("from
> SinavTakvim").list();
>transaction.commit();
>return sinavTakvimList;
>}
>catch ( RuntimeException e )
>{
>transaction.rollback();
>throw e;
>}
>finally
>{
>if ( session != null )
>{
>session.close();
>}
>}
>}
>
>
> }
>
> -
>
>
>

Re: ff11 gwt dev plugin

2012-03-18 Thread Alan Leung
I installed it, but it tells med that it is not compatible with FF11.
>
>
Can you tell me which .xpi and what OS you are using?

-Alan


> 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/-/AsWaOrazK74J.
>
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>

-- 
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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Popup show/hide toggle functionality with auto hide enabled

2012-03-18 Thread Jens
Try using:

popup.addAutoHidePartner(yourButton.getElement());

This should disable the auto hide functionality when clicking on the 
button, so you can control the popup visibility yourself based on 
popup.isShowing() when clicking the button.

-- J.


Am Sonntag, 18. März 2012 22:31:56 UTC+1 schrieb Jonas:
>
> I have a popup with setAutoHideEnabled (it automatically hides when you 
> click somewhere outside of it).
> I display it using a button but I want to have toggle functionality. First 
> click shows the popup, then second
> click on button hides it (but clicking somewhere outside also hides it). 
> The problem is that when I click
> the button the second time the popup first gets hidden because of auto 
> hide and then is shown again.
> Any ideas on how to solve this? 
>
> I also apply some styling on the button depending on popup visibility, so 
> would like to remove the style when 
> the popup is hidden using autohide.
>
>

-- 
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/-/x78ubVK3MxkJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Popup show/hide toggle functionality with auto hide enabled

2012-03-18 Thread Jonas
I have a popup with setAutoHideEnabled (it automatically hides when you 
click somewhere outside of it).
I display it using a button but I want to have toggle functionality. First 
click shows the popup, then second
click on button hides it (but clicking somewhere outside also hides it). 
The problem is that when I click
the button the second time the popup first gets hidden because of auto hide 
and then is shown again.
Any ideas on how to solve this? 

I also apply some styling on the button depending on popup visibility, so 
would like to remove the style when 
the popup is hidden using autohide.

-- 
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/-/HVNPocr6kMcJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



hibernate , getting data List from database problem

2012-03-18 Thread nofear
Hi guys ,

İ have a hibernate problem again, here's my problem ,
I have an exam schedule table in my database and i inserted 3 rows of
data in this table. But when i try to get the data from database using
hibernate, just the first data comes. i mean , if there are 3 rows in
the table , so the FIRST ROW returns 3 times!. please help to fix this
issue.

here's my code ;


SinavTakvim.java
***
//ExamSchedule domain class


package tr.edu.gsu.yds.shared.domain;

import java.io.Serializable;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;

import net.sf.gilead.pojo.gwt.LightEntity;

//ExamSchedule Domain

@Entity
@Table(name = "sinavtakvim")
public class SinavTakvim extends LightEntity implements Serializable
{
private static final long serialVersionUID = 1L;

private Integer sinavTakvimId;
private String sinavTarih;
private String sinavSinif;
private String sinavNot;

@Id
@Column(name = "sinavTakvimId", nullable = false, length=10)
public Integer getSinavTakvimId()
{
return sinavTakvimId;
}

public void setSinavTakvimId( Integer sinavTakvimId )
{
this.sinavTakvimId = sinavTakvimId;
}

@Column(name = "sinavTarihi", nullable = false, length=20)
public String getSinavTarihi()
{
return sinavTarih;
}

public void setSinavTarihi( String sinavTarihi )
{
this.sinavTarih = sinavTarihi;
}

@Column(name = "sinavSinif", nullable = false, length=45)
public String getSinavSinif()
{
return sinavSinif;
}

public void setSinavSinif( String sinavSinif )
{
this.sinavSinif = sinavSinif;
}

@Column(name = "sinavNot", length=45)
public String getSinavNot()
{
return sinavNot;
}

public void setSinavNot( String sinavNot )
{
this.sinavNot = sinavNot;
}

}

-




SinavTakvimDao.java

package tr.edu.gsu.yds.server.dao;

import java.util.List;

import org.hibernate.Session;
import org.hibernate.Transaction;

import tr.edu.gsu.yds.server.util.GileadHibernateUtil;
import tr.edu.gsu.yds.shared.domain.SinavTakvim;

//ExamSchedule DAO

public class SinavTakvimDao
{
public List getSinavTakvimList()
{
Session session = null;
Transaction transaction = null;
try
{
session = 
GileadHibernateUtil.getSessionFactory().openSession();
transaction = session.beginTransaction();
List sinavTakvimList = 
session.createQuery("from
SinavTakvim").list();
transaction.commit();
return sinavTakvimList;
}
catch ( RuntimeException e )
{
transaction.rollback();
throw e;
}
finally
{
if ( session != null )
{
session.close();
}
}
}


}

-




Here's i get the data from database and put the data into a celltable
*


package tr.edu.gsu.yds.client.controller.ogrenci;

import java.util.List;

import tr.edu.gsu.yds.client.remote.YdsRemoteService;
import tr.edu.gsu.yds.client.remote.YdsRemoteServiceAsync;
import
tr.edu.gsu.yds.client.view.ogrenci.sinavislemleri.SinavTarihiGoruntuleme;
import tr.edu.gsu.yds.shared.domain.SinavTakvim;

import com.google.gwt.core.client.GWT;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.event.dom.client.ClickHandler;
import com.google.gwt.user.client.Window;
import com.google.gwt.user.client.rpc.AsyncCallback;

public class OgrenciSinavTarihiGoruntulemeController
{
private YdsRemoteServiceAsync ydsRemoteServiceAsync =
GWT.create( YdsRemoteService.class );
private SinavTarihiGoruntuleme ogrenciSinavTarihiGoruntulemeSayfasi;




public
OgrenciSinavTarihiGoruntulemeController( SinavTarihiGoruntuleme
ogrenciSinavTarihiGoruntulemeSayfasi )
{
this.ogrenciSinavTarihiGoruntulemeSayfasi =
ogrenciSinavTarihiGoruntulemeSayfasi;

}

public void send()
{


ydsRemoteServiceAsync.getSinavTakvimList( new
AsyncCallback>()
{
public void onFailure( Throwable caught 
)
{

Hibernate , how to get data from join tables.

2012-03-18 Thread nofear
Hello guys,

My main problem is that i cant write and i couldnt find the correct
query form to fetch data from join tables , for example in my
project , here's my database form ;

Student Table Result Table
-studentId   -resultId
-studentName -resultPoint
-studentSurname -studentId   (FK with Student Table)
-..   -..
-..   -..
-..

what i want to ask is that i cant fetch the resultPoint with using
studentId and please help me to fix this problem, here's my code ;



Student.java

package tr.edu.gsu.yds.shared.domain;

import java.io.Serializable;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.Id;
import javax.persistence.OneToOne;
import javax.persistence.PrimaryKeyJoinColumn;
import javax.persistence.Table;

import net.sf.gilead.pojo.gwt.LightEntity;


//RESULT DOMAIN

@Entity
@Table(name = "sonuc")
public class Sonuc extends LightEntity implements Serializable
{
private static final long serialVersionUID = 6L;

private String sonucId;
private Integer sonucPuan;
private String sonucSeviye;
private Ogrenci ogrenci;


@Id
@Column(name = "sonucId", nullable = false, length=10)
public String getSonucId() {
return sonucId;
}

public void setSonucId(String sonucId) {
this.sonucId = sonucId;
}

@Column(name = "sonucPuan", nullable = false, length=3)
public Integer getSonucPuan() {
return sonucPuan;
}

public void setSonucPuan(Integer sonucPuan) {
this.sonucPuan = sonucPuan;
}

@Column(name = "sonucSeviye", length=25)
public String getSonucSeviye() {
return sonucSeviye;
}

public void setSonucSeviye(String sonucSeviye) {
this.sonucSeviye = sonucSeviye;
}

@OneToOne(fetch = FetchType.LAZY)
@PrimaryKeyJoinColumn
public Ogrenci getOgrenci()
{
return ogrenci;
}

public void setOgrenci( Ogrenci ogrenci )
{
this.ogrenci = ogrenci;
}


}






SonucDao.java

package tr.edu.gsu.yds.server.dao;

import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.Transaction;

import tr.edu.gsu.yds.server.util.GileadHibernateUtil;
import tr.edu.gsu.yds.shared.domain.Sonuc;

//Result - (point result of a student)
public class SonucDao
{
//gets the result with studentNo
public Sonuc getSonuc( String ogrenciNo ) throws
IllegalArgumentException
{
Session session = null;
Transaction transaction = null;
try
{
session = 
GileadHibernateUtil.getSessionFactory().openSession();
transaction = session.beginTransaction();

StringBuffer mysqlQuery = new StringBuffer();

//here, i dont' know if this query is correct, that's my main
question.
mysqlQuery.append("from Sonuc sonuc where
sonuc.ogrenci=:ogrenciNo");

Query query = 
session.createQuery(mysqlQuery.toString());
query.setString("ogrenciNo", ogrenciNo);


Sonuc sonuc = (Sonuc) query.uniqueResult();
transaction.commit();

return sonuc;
}
catch ( RuntimeException e )
{
transaction.rollback();
throw e;
}
finally
{
if ( session != null )
{
session.close();
}
}
}

}

-




And here , i'm trying to fetch the data from database and put the into
a CELLTABLE , but the return value is NULL.
*
package tr.edu.gsu.yds.client.controller.ogrenci;

import java.util.ArrayList;
import java.util.List;

import com.google.gwt.core.client.GWT;
import com.google.gwt.user.client.Window;
import com.google.gwt.user.client.rpc.AsyncCallback;

import tr.edu.gsu.yds.client.remote.YdsRemoteService;
import tr.edu.gsu.yds.client.remote.YdsRemoteServiceAsync;
import
tr.edu.gsu.yds.client.view.ogrenci.sinavislemleri.SinavSonucuGoruntuleme;
import tr.edu.gsu.yds.shared.domain.Sonuc;

public class OgrenciSinavSonucuGoruntulemeController
{
private YdsRemo

Re: ff11 gwt dev plugin

2012-03-18 Thread Knubo
On Sunday, March 18, 2012 9:10:27 AM UTC+1, Alan Leung wrote:
>
> http://acleung.com/gwt-dev-plugin-mac.xpi
>
> For the mac 32/64 FF11 users.
>
> I installed it, but it tells med that it is not compatible with FF11.

KEB 

-- 
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/-/AsWaOrazK74J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: HTML Code Generation

2012-03-18 Thread Joseph Lust
HK,

Have you tried calling that function from inside a GWTTestCase? You could 
use that to pull out the HTML without a browser.

Sincerely,
Joseph

-- 
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/-/1aQZzEElGx4J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Register your company if you are using GWT

2012-03-18 Thread Joseph Lust
Touche,

Perhaps that line had too much Java love on it. I based that on my 
experience of writing some quite elaborate pure JS applications for the two 
years in ExtJs (backed by Struts) before moving to GWT. In those 
applications (100K+ Js lines) it was just a serious pain that there was:

   - No type checking, classes (can be emulated), or interfaces.
   - No compiler (you can use the YUI tools, but that is just a compressor. 
   Closure is a error generator for legacy code bases. )
   - No compiler/package/import structure to ensure each page had the 
   correct resources automatically.
   - No simple testing structure to automatically run unit tests and 
   collect reports while running inside an emulated browser (i.e. w/ TC or 
   Maven).
   - Discovery of issues (i.e. missing CSS class or image, improperly 
   nested ']' ) before running application.
   - JS debuggers, while they've come a long way, still don't compare with 
   GWT's Eclipse/browser debugging integration (i.e. Firebug debugger 
   continues to have wonky behavior).

I guess I should rephrase "easier than," but I still think that working in 
pure JS requires a bespoke, piecemeal toolchain which is more complex to 
utilize and less feature rich than an out of the box Eclipse+GWT setup. 
Does anyone else have anything to add to make the case that GWT should be 
used in WebApps?

Sincerely,
Joseph

-- 
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/-/JLIZ-FLUIJYJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Dev plug-in for Firefox 11

2012-03-18 Thread Joseph Lust
Works Ubuntu 11.10 x64. Thanks so much. Just after reading this thread I 
discovered that FF11 had updated a few minutes before. Seems that it is 
non-trivial to disable FF updates on Ubuntu. You saved my day Alan!

Sincerely,
Joseph

-- 
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/-/Gl8yHUtsFkwJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Click on Gauge

2012-03-18 Thread hugues2
Hi,

I am trying to make a Gauge clickable using the code below :

 Widget gauge = new MyGauge(tableData, tableOptions);
gauge.addDomHandler(new ClickHandler() {
public void onClick(ClickEvent e) {
  Window.alert("gauge has been clicked");
}
}, ClickEvent.getType());

  ...

The result is that the area just around the gauge becomes clickable
but not the gauge itself.

Do you have any idea ?

Cheers,

Hugues

-- 
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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Defining a Jetty realm in hosted mode

2012-03-18 Thread TimD
I should clarify, it's GPE 2.5.1 (GWT 2.4).

The following login-config in the web.xml works fine in Tomcat:

 
BASIC 


I don't actually want to have to define a Jetty realm, but with the above 
web.xml I get the following warning when I launch my app: 

Starting Jetty on port  
   [WARN] Unknown realm: Default  

It would be nice to have basic authentication working in hosted mode.

-- 
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/-/mVnzAonQld4J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Defining a Jetty realm in hosted mode

2012-03-18 Thread TimD
I should clarify, I mean GWT Eclipse Plugin 2.5.1 (GWT 2.4).

The following login-config in the web.xml works fine in Tomcat:

 
BASIC 


I don't actually want to have to define a Jetty realm, but with the above 
web.xml I get the following warning when I launch my app: 

Starting Jetty on port  
   [WARN] Unknown realm: Default  

It would be nice to have basic authentication working in hosted mode.

On Friday, March 16, 2012 1:38:43 PM UTC, TimD wrote:
>
> I am using GWT 2.5.1 in Eclipse Indigo. I am trying to configure basic 
> authentication in hosted mode and I'm running into the following 
> warning when I launch my app: 
>
> Starting Jetty on port  
>[WARN] Unknown realm: myRealm 
>
> When I try to access the app URL I get: 
>
> HTTP ERROR: 404 
>
> NOT_FOUND 
>
> RequestURI=/myApp.html 
>
> Powered by jetty:// 
>
> The following is in my web.xml: 
>
>  
> BASIC 
> myRealm 
>  
>
> I have also created the following jetty-web.xml that sits next to 
> web.xml: 
>
>  
>  PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" 
> "http://jetty.mortbay.org/configure.dtd";> 
>  
> /myWebApp 
>  
>  
> /webapps/myWebApp 
>  
>  
>  
>  class="org.mortbay.jetty.security.HashUserRealm"> 
> myRealm 
>  name="config">fullyQualifiedPathToMyRealm.properties 
>  
>  
>  
>  
>
> Without the fully qualified path to the realm properties file I get an 
> exception, so I know that it's now reading the config without error. 
>
> Why is the realm not being set?

-- 
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/-/tQP4sAjExtQJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Dev plug-in for Firefox 11

2012-03-18 Thread Alan Leung
http://acleung.com/gwt-dev-plugin-mac.xpi

For the mac 32/64 FF11 users.

-Alan



On Sat, Mar 17, 2012 at 10:49 AM, phb  wrote:

> Thanks.  Any ETA on Vista x64?
>
> On Mar 17, 3:07 am, Alan Leung  wrote:
> > I had just compiled a FF11 linux 32 / 64 only version here:
> >
> > http://acleung.com/gwt-dev-plugin.xpi
> >
> > -Alan
> >
> >
> >
> >
> >
> >
> >
> > On Fri, Mar 16, 2012 at 1:34 PM, Alan Leung  wrote:
> > > I am working on it
> >
> > > On Fri, Mar 16, 2012 at 6:10 AM, Paul Wujek 
> wrote:
> >
> > >> Today Ubuntu is asking me to update for FF11, but of course this will
> > >> kill my development environment.
> >
> > >> Is there an estimate of when the GWT plug-in will be available?
> >
> > >> --
> > >> 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/-/j0Nmn9KFKIQJ.
> > >> To post to this group, send email to
> google-web-toolkit@googlegroups.com.
> > >> To unsubscribe from this group, send email to
> > >> google-web-toolkit+unsubscr...@googlegroups.com.
> > >> For more options, visit this group at
> > >>http://groups.google.com/group/google-web-toolkit?hl=en.
>
> --
> 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-toolkit@googlegroups.com.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>

-- 
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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: ff11 gwt dev plugin

2012-03-18 Thread Alan Leung
http://acleung.com/gwt-dev-plugin-mac.xpi

For the mac 32/64 FF11 users.

-Alan

On Sat, Mar 17, 2012 at 9:32 AM, Fabricio Pizzichillo <
fpizzichi...@gmail.com> wrote:

> Thanks!
>
>
> 2012/3/17 Alan Leung 
>
>> Correct link:
>>
>> http://acleung.com/gwt-dev-plugin.xpi
>>
>> Again FF11 linux only.
>>
>>
>> On Sat, Mar 17, 2012 at 3:05 AM, Alan Leung  wrote:
>>
>>> I've build it for linux 32 and 64bit for now and dropped it here:
>>> http://acleung.com/gwt-dev-plugin.gwt
>>>
>>> -Alan
>>>
>>>
>>> On Fri, Mar 16, 2012 at 9:04 AM, Eike Thies wrote:
>>>
 to sad that i think you have a point here :( arghhh... where is my
 firefox portable just to test my gwt application :P

 Am Freitag, 16. März 2012 15:08:13 UTC+1 schrieb Olivier Scherler:

> I’m wondering, how long until Mozilla releases new version of Firefox
> faster than the GWT community can recompile the plugin?
>
> On 16 March 2012 14:25, Fabricio Pizzichillo 
> wrote:
>
>> Hello Alan.
>> Can you compile the plugin for FF11?
>>
>> regards
>
>
 Am Freitag, 16. März 2012 15:08:13 UTC+1 schrieb Olivier Scherler:

> I’m wondering, how long until Mozilla releases new version of Firefox
> faster than the GWT community can recompile the plugin?
>
> On 16 March 2012 14:25, Fabricio Pizzichillo 
> wrote:
>
>> Hello Alan.
>> Can you compile the plugin for FF11?
>>
>> regards
>
>   --
 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/-/jdcUZouxGZ0J.

 To post to this group, send email to
 google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.

>>>
>>>
>>  --
>> 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-toolkit@googlegroups.com.
>> To unsubscribe from this group, send email to
>> google-web-toolkit+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/google-web-toolkit?hl=en.
>>
>
>  --
> 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-toolkit@googlegroups.com.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>

-- 
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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Defining a Jetty realm in hosted mode

2012-03-18 Thread TimD
Sorry, that Jetty warning should have read:

Starting Jetty on port  
   [WARN] Unknown realm: Default


-- 
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/-/FGTuIE-wRKQJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Defining a Jetty realm in hosted mode

2012-03-18 Thread TimD
I should clarify, I mean GWT Eclipse Plugin 2.5.1 (GWT 2.4).

The following login-config in the web.xml works fine in Tomcat:

 
BASIC 


I don't actually want to have to define a Jetty realm, but with the above 
web.xml I get the following warning when I launch my app: 

Starting Jetty on port  
   [WARN] Unknown realm: myRealm  

It would be nice to have basic authentication working in hosted mode.

-- 
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/-/yuGZD8ptnu8J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.