The original message was received at 2010-01-13 07:16:01 -0800
from postoffice.(null) [10.0.0.1]
----- The following addresses had permanent fatal errors -----
<[email protected]>
-----Transcript of session follows -----
... while talking to postoffice.(null).:
>>> RCPT To:<[email protected]>
<<< 550 5.1.1 unknown or illegal alias: [email protected]
550 <[email protected]>... User unknown
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.
Reporting-MTA: dns; postoffice.(null)
Received-From-MTA: DNS; postoffice.(null)
Arrival-Date: 2010-01-13 07:16:01 -0800
Final-Recipient: RFC822; [email protected]
Action: failed
Status: 5.1.1
Remote-MTA: DNS; postoffice.(null)
Diagnostic-Code: SMTP;550 5.1.1 unknown or illegal alias: [email protected]
Last-Attempt-Date: 2010-01-13 07:16:01 -0800
--- Begin Message ---
=============================================================================
Today's Topic Summary
=============================================================================
Group: [email protected]
Url: http://groups.google.com/group/google-web-toolkit/topics
- mozilla-hosted-browser.conf and Gentoo Linux [2 Updates]
http://groups.google.com/group/google-web-toolkit/t/25487dd985f4e9b4
- How to force "div" widgets to be on the same row? (not use table) [3
Updates]
http://groups.google.com/group/google-web-toolkit/t/b6588233adce1e03
- Roadmap for GWT 2.0 [3 Updates]
http://groups.google.com/group/google-web-toolkit/t/108a9dacfe2763a5
- Google Gadget: works in hosted mode, but not in web mode (iGoogle) [2
Updates]
http://groups.google.com/group/google-web-toolkit/t/a528874bafa682cf
- MVP + UiBinder, thoughts? [1 Update]
http://groups.google.com/group/google-web-toolkit/t/ff40f7599fcc8709
- Problems using SliderBar from incubator project [1 Update]
http://groups.google.com/group/google-web-toolkit/t/d9daf1c665f91467
- How to run GWT 2.0 RC2's hosted mode with another server? [1 Update]
http://groups.google.com/group/google-web-toolkit/t/f5c903255d896a03
- GWT 2.0.0 rc2 - failing to compile annotation (when used with Maven plugin
1.2-SNAPSHOT) [1 Update]
http://groups.google.com/group/google-web-toolkit/t/568351891631b575
- Any Gwt-Mosaic user here? I've got a problem:my DropdownPanel is
transparent ... [3 Updates]
http://groups.google.com/group/google-web-toolkit/t/3d58443e571ac5c2
- Please Suggest Me Good Book for GWT [3 Updates]
http://groups.google.com/group/google-web-toolkit/t/df3887569f943cf3
- Deploying a project [3 Updates]
http://groups.google.com/group/google-web-toolkit/t/9c519fa745c0a5e9
- OOPHM not connecting to Code Server [2 Updates]
http://groups.google.com/group/google-web-toolkit/t/4b20abe7a7fa2d31
=============================================================================
Topic: mozilla-hosted-browser.conf and Gentoo Linux
Url: http://groups.google.com/group/google-web-toolkit/t/25487dd985f4e9b4
=============================================================================
---------- 1 of 2 ----------
From: Jeff Chimene <[email protected]>
Date: Dec 01 09:47AM -0700
Url: http://groups.google.com/group/google-web-toolkit/msg/b36658261fc060b0
A couple things:
- You don't need to establish such an Eclipse -> browser link for GWT.
Eclipse has a lot of web development framework you don't need for developing
w/ GWT.
- For versions of GWT < 2.0, you test your compiled code in any of the
Linux browsers. This means deploying and serving the JavaScript in response
to an HTTP request. That is a step that you ordinarily don't do while in the
code->compile->debug loop. You don't need Eclipse Web development for this.
Simply compile the code in GWT, deploy it to a web server, start your
browser outside Eclipse, navigate to the URL.
- You don't say which GWT version you're using. For anything < 2.0, GWT
provides its own browser for Linux. It's a standalone version of FireFox
packaged for embedded development in tools like GWT called "XULRunner".
Please note that this hosted mode browser is what you will use most when
developing GWT code. GWT is designed to test your application before it's
compiled; which means that you won't use a standalone browser while testing
your application (for GWT < 2.0)
- The upshot is that what you're trying to do probably isn't what you
want
---------- 2 of 2 ----------
From: Jeff Chimene <[email protected]>
Date: Dec 01 09:53AM -0700
Url: http://groups.google.com/group/google-web-toolkit/msg/841ac5aba542b7e7
Please note the change in the 2nd bullet point. There is no GWT version
dependency when running compiled code.
=============================================================================
Topic: How to force "div" widgets to be on the same row? (not use table)
Url: http://groups.google.com/group/google-web-toolkit/t/b6588233adce1e03
=============================================================================
---------- 1 of 3 ----------
From: Qiushuang Zhang <[email protected]>
Date: Nov 30 04:03PM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/d00cfad97913b197
hi experts,
As you know, a lot of widgets in GWT are implemented by div, such as
buttons. So, if I try to put some of these widgets together, each of
them will automatically get into the second row by the nature of div.
I don't want to use horizontal panel (basically a table) to force them
into the same row, because I want to minimize the usage of table to
keep the rendering speed. So I am currently using css: display:
inline-block. But it does not work for all browsers.
So, I am wondering what are you guys using to put these divs into the
same row?
Thanks!
Autumn
---------- 2 of 3 ----------
From: Jeff Chimene <[email protected]>
Date: Dec 01 09:10AM -0700
Url: http://groups.google.com/group/google-web-toolkit/msg/481205a5e6b49664
You can try playing with something like
<div>
<div style="float: left">stuff</div>
<div style="float: left">more stuff</div>
</div>
I've done some fairly complex layouts w/o tables. If you search for "layout
omit tables" kind of query you should find several examples from those who
shun tables as layout canvas. I think alistapart would be a good starting
point.
Nevertheless, shunning tables yet still using GWT is like running down an
up escalator. Just saying.
---------- 3 of 3 ----------
From: Yozons Support on Gmail <[email protected]>
Date: Dec 01 08:53AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/ea38aa30c9107f23
And considering the complexity of the js-generated pages, a few tables
probably doesn't hurt that much. I mean, I've not seen any slow rendering
issues in my experience. But there are certainly times when it's nicer to
have it clean, and there are some widgets like InnerHTML and InnerLabel that
use span instead of div.
=============================================================================
Topic: Roadmap for GWT 2.0
Url: http://groups.google.com/group/google-web-toolkit/t/108a9dacfe2763a5
=============================================================================
---------- 1 of 3 ----------
From: "Feldman, Nir" <[email protected]>
Date: Dec 01 01:43PM
Url: http://groups.google.com/group/google-web-toolkit/msg/7862c2eb2f551c08
Hi,
Is there any estimations regarding the date of the release of GWT 2.0?
Any rough estimation will do it (month / 3 months / 6 months)...
Thanks,
Nir
[cid:[email protected]]
Nir Feldman
Release Control R&D Team Leader
Hewlett-Packard Company
+972-3-5399896 Phone
+972-54-7213833 Cell
+972-3-5331617 Fax
[email protected]<mailto:[email protected]>
---------- 2 of 3 ----------
From: "[email protected]" <[email protected]>
Date: Dec 01 08:07AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/8044879d5c9ee214
it should be soon because they are at rc2. usually after rc2 it is the
final which usually is in 2 weeks
---------- 3 of 3 ----------
From: Jeff Chimene <[email protected]>
Date: Dec 01 09:20AM -0700
Url: http://groups.google.com/group/google-web-toolkit/msg/d818543cd8609c43
> Nir
>
If you're considering 2.0, you should have some of your team reviewing RC2.
It's stable enough to use in an evaluation
=============================================================================
Topic: Google Gadget: works in hosted mode, but not in web mode (iGoogle)
Url: http://groups.google.com/group/google-web-toolkit/t/a528874bafa682cf
=============================================================================
---------- 1 of 2 ----------
From: flokay <[email protected]>
Date: Dec 01 07:37AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/30f6f3579e51921d
OK thanks!
So I have made it with RPC now and in hosted mode, it works well
again!
But if I want to change it in a gadget the compiler writes the
following error message:
Compiling module
com.google.gwt.sample.cnsnews_rpc_gadget.CADENASNews_RPC_Gadget
Computing all possible rebind results for
'com.google.gwt.sample.cnsnews_rpc_gadget.client.CADENASNews_RPC_Gadget'
Rebinding
com.google.gwt.sample.cnsnews_rpc_gadget.client.CADENASNews_RPC_Gadget
Invoking <generate-with
class='com.google.gwt.gadgets.rebind.GadgetGenerator'/>
[ERROR] Generator
'com.google.gwt.gadgets.rebind.GadgetGenerator' threw threw an
exception while rebinding
'com.google.gwt.sample.cnsnews_rpc_gadget.client.CADENASNews_RPC_Gadget'
java.lang.NullPointerException
at
com.google.gwt.gadgets.rebind.GadgetGenerator.generateGadgetManifest
(GadgetGenerator.java:274)
at com.google.gwt.gadgets.rebind.GadgetGenerator.generate
(GadgetGenerator.java:142)
at com.google.gwt.dev.cfg.RuleGenerateWith.realize
(RuleGenerateWith.java:49)
at com.google.gwt.dev.shell.StandardRebindOracle$Rebinder.tryRebind
(StandardRebindOracle.java:113)
at com.google.gwt.dev.shell.StandardRebindOracle$Rebinder.rebind
(StandardRebindOracle.java:62)
at com.google.gwt.dev.shell.StandardRebindOracle.rebind
(StandardRebindOracle.java:172)
at com.google.gwt.dev.shell.StandardRebindOracle.rebind
(StandardRebindOracle.java:161)
at com.google.gwt.dev.Precompile
$DistillerRebindPermutationOracle.getAllPossibleRebindAnswers
(Precompile.java:204)
at com.google.gwt.dev.jjs.JavaToJavaScriptCompiler.precompile
(JavaToJavaScriptCompiler.java:250)
at com.google.gwt.dev.Precompile.precompile(Precompile.java:300)
at com.google.gwt.dev.Compiler.run(Compiler.java:170)
at com.google.gwt.dev.Compiler$1.run(Compiler.java:124)
at com.google.gwt.dev.CompileTaskRunner.doRun(CompileTaskRunner.java:
88)
at com.google.gwt.dev.CompileTaskRunner.runWithAppropriateLogger
(CompileTaskRunner.java:82)
at com.google.gwt.dev.Compiler.main(Compiler.java:131)
I'm already using the gwt-gadgets-noredist.jar file!
Any suggestions?
---------- 2 of 2 ----------
From: Eric Ayers <[email protected]>
Date: Dec 01 11:14AM -0500
Url: http://groups.google.com/group/google-web-toolkit/msg/39c238140ffb6017
This may be a conflict between different versions of xerces, because this
part of the code is creating a new XML document. You should be using the
-noredist.jar file, and expecting to resolve xerces in your GWT build. Are
you explicitly including xerces in your build classpath?
It may help to checkout the gwt-gadgets project from code and build a fresh
.jar along with the version of GWT and xerces you are using.
--
Eric Z. Ayers
Google Web Toolkit, Atlanta, GA USA
=============================================================================
Topic: MVP + UiBinder, thoughts?
Url: http://groups.google.com/group/google-web-toolkit/t/ff40f7599fcc8709
=============================================================================
---------- 1 of 1 ----------
From: uwfrog <[email protected]>
Date: Dec 01 08:12AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/da84652fdce3d0c3
I found MVP works great with UiBinder. MVP pattern abstracts logic
from widget so that most of logic(i.e., calculation, rpc calls) can be
mocked and tested in plain junit test cases separately from those have
to be run in GWTTestCases. What's left in the V part are now layout
code in the widget which usually are lots of messy code with panels,
styling, and positioning. UiBinder cleans up the mess with html.
=============================================================================
Topic: Problems using SliderBar from incubator project
Url: http://groups.google.com/group/google-web-toolkit/t/d9daf1c665f91467
=============================================================================
---------- 1 of 1 ----------
From: steve souza <[email protected]>
Date: Dec 01 08:11AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/4e050d99e7976323
I found that the link in step one is stale and that the link to use is
the one in step 2. The documentation for the Slider is nonexistant
and for that matter the documentation incubator is pretty weak. For
example it still isn't clear to me when I should use the gen2
package. I know it is open source but for the only link i could find
to use on how to use the incubator to be wrong is not good.
This link has a number of comments that say that the posting on how to
use the incubator is wrong and no-one has corrected it. Being as it
is a wiki can I update it? If so, I will.
http://code.google.com/p/google-web-toolkit-incubator/wiki/HowToUseTheIncubator
=============================================================================
Topic: How to run GWT 2.0 RC2's hosted mode with another server?
Url: http://groups.google.com/group/google-web-toolkit/t/f5c903255d896a03
=============================================================================
---------- 1 of 1 ----------
From: Chris Ramsdale <[email protected]>
Date: Dec 01 11:03AM -0500
Url: http://groups.google.com/group/google-web-toolkit/msg/729dbdacd4f6600c
Based on the fact that the plugin is attempting to launch GWTShell, it may
not recognize your app as a "web app". This is typically the case when it
doesn't find a war/WEB-INF/web.xml file in the project root. Can you confirm
that this directory structure is in place? Also, what version of GWT and GPE
were you using to previously build your application?
=============================================================================
Topic: GWT 2.0.0 rc2 - failing to compile annotation (when used with Maven
plugin 1.2-SNAPSHOT)
Url: http://groups.google.com/group/google-web-toolkit/t/568351891631b575
=============================================================================
---------- 1 of 1 ----------
From: Karthik Abram <[email protected]>
Date: Dec 01 10:31AM -0500
Url: http://groups.google.com/group/google-web-toolkit/msg/2f2e1056a73f15c1
I have a class in the "client" subpackage (lets call it Foo) that has
an annotation (say @Bar) that is in a client.gwt.rpc sub-package. This
construct compiles fine with GWT eclipse plugin (1.2 rc2, eclipse
galileo) but when I compile using the maven plugin, I get a
ClassNotFoundException in the compile phase and the compiler says
[WARN] Ignoring unresolvable annotation type ...
Has anyone run into a similar problem or does anyone have a workaround?
Thanks
K
=============================================================================
Topic: Any Gwt-Mosaic user here? I've got a problem:my DropdownPanel is
transparent ...
Url: http://groups.google.com/group/google-web-toolkit/t/3d58443e571ac5c2
=============================================================================
---------- 1 of 3 ----------
From: lijnge <[email protected]>
Date: Dec 01 06:25AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/cdda91a2b662d925
Hello everybody,
I've try to post my problem in Gwt-Mosaic Group,but I haven't got any
reply.
So I came here to find if anyone can help me at this problem.
in my project ,I need a dropdown tree,so a extends ComboBoxBase and
Override it's abstract method,
everything is perfactly matched my requirement,except one thing...the
dropdownPanel(actually it is a PopupPanel) is transparent.
I've tried many methods ...but I'm failure...
any one here can't give me a little help ?
any idea will be greatly greatly ..(greatly)^100 .. appricated!
thanks!
---------- 2 of 3 ----------
From: lijnge <[email protected]>
Date: Dec 01 07:08AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/4a9474a0fd66c7f
for a spell mistake....
this is "any on here can give me.." instead of can't .....
sorry of making this spelling mistake ...maybe this is because problem
hurt too much....
---------- 3 of 3 ----------
From: Andrius Juozapaitis <[email protected]>
Date: Dec 01 07:29AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/ae624057eff00357
Hey,
Try their irc channel, it's listed on the project page - I was able to
get help from the guys there. It looks like a very decent alternative
to gxt and smartgwt, and while it doesn't provide that many widgets,
it solves a few layout and structuring issues very nicely.
regards,
--andrius aka phuqit
=============================================================================
Topic: Please Suggest Me Good Book for GWT
Url: http://groups.google.com/group/google-web-toolkit/t/df3887569f943cf3
=============================================================================
---------- 1 of 3 ----------
From: Pruthvi Raj <[email protected]>
Date: Dec 01 11:28AM +0530
Url: http://groups.google.com/group/google-web-toolkit/msg/db92cff06f252a34
Hi,
I am learning the GWT, So please suggest me good book to start, which is
availabe in bangalore(India).
thanks,
Pruthvi.
---------- 2 of 3 ----------
From: sri ramaraju <[email protected]>
Date: Dec 01 08:16PM +0530
Url: http://groups.google.com/group/google-web-toolkit/msg/58257c4059cbd009
Hi Pruthvi,
I am sending one pdf,it may be useful to ,that one is best in those i have
read for GWT
Bye
---------- 3 of 3 ----------
From: John Armstrong <[email protected]>
Date: Dec 01 07:23AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/436f692574172ee1
Safari has a few that are great as well."Beginning Google Web Toolkit"
got me up and running in a few hours.
http://my.safaribooksonline.com/9781430210313
You read it online so its available globally.
John-
=============================================================================
Topic: Deploying a project
Url: http://groups.google.com/group/google-web-toolkit/t/9c519fa745c0a5e9
=============================================================================
---------- 1 of 3 ----------
From: cutout33 <[email protected]>
Date: Dec 01 05:22AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/9c370f0862c1fc6d
Hello all,
Am really new to GWT and am using google plugin for eclipse which
great for development as it starts the project in hosted mode, but my
problem I need to deploy my sample on a real AS like JBoss, how can I
do that? how can I create a war file for my project? What file
structure should it contain?
I new that maybe it is very stupid but am not able to do :-/
Thanks in advance...
---------- 2 of 3 ----------
From: gwtfanb0y <[email protected]>
Date: Dec 01 07:12AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/f94e1dbd62a1022b
Hi,
you can use this ant-target to create a war file:
<target name="war" depends="build" description="Create a war file">
<zip destfile="MyApp.war" basedir="war"/>
</target>
I recommend to create the project structure with the
"webAppCreator" (included inside
the google-gwt-directory). I've written a tutorial how to do that:
http://blog.jdevelop.eu/2009/11/11/create-a-gwt-application-from-scratch/
Have a lot of fun!
---------- 3 of 3 ----------
From: Chris Ramsdale <[email protected]>
Date: Dec 01 10:14AM -0500
Url: http://groups.google.com/group/google-web-toolkit/msg/af70e74e1623c41c
The following overview may be of assistance as well:
http://code.google.com/webtoolkit/doc/1.6/DevGuideDeploying.html
=============================================================================
Topic: OOPHM not connecting to Code Server
Url: http://groups.google.com/group/google-web-toolkit/t/4b20abe7a7fa2d31
=============================================================================
---------- 1 of 2 ----------
From: ahawtho <[email protected]>
Date: Nov 30 09:03PM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/ba209c6d3e87865c
When running in Development mode from the Eclipse plugin, the DevMode
console does not indicate any URL, and starting DevMode does not open
a browser. From the UsingOOPHM wiki link, I found the text:
> of time, you can go directly to that missing-plugin page to install the
> plugin.
Since nothing appeared, I went to the missing-plugin page to install
the plugin, and found references to the "gwt.hosted" query param.
Our GWT pages are all served via servlets from a context URL of /
webconfig/*. We do not have a static HTML page. I tried to follow the
same pattern by navigating in FF to localhost:8888/webconfig/default?
gwt.hosted=localhost:9997 . Our application does seem to load and
function normally, but although I had run the DevMode configuration
from Eclipse's Debug menu, breakpoints don't work and I never see a
connection from the OOPHM plugin noted in the logs. I even suspended
the Code Server thread from within the DevMode JVM to see if it ever
returned from the ServerSocket.accept() (it didn't). It seems as
though the URL I'm using is bypassing the mechanism that invokes the
OOPHM plugin.
Another anomaly that I think might be related is that when creating or
editing a Run/Debug Configuration, the GWT tab on the configuration
dialog appears different when I select my GWT project (it's missing
the Browser URL field and replaces the Compiler & Shell section with a
Development Mode section, see attached images for details). I idly
wondered if it was related to our GWT bootstrap HTML pages being
generated by servlets, so I mention it here.
I found this:
http://groups.google.com/group/google-web-toolkit/browse_thread/thread/b3c69a212002444b/95f9e9a0d65347f5?lnk=gst
but I verified the gwt-servlet.jar was the same in the 2.0rc2 dir and
my war/WEB-INF/lib dir .
This looks like maybe the URL field is no longer valid:
http://groups.google.com/group/google-web-toolkit/browse_thread/thread/b688ac3e31802a6/bbc44affbff385e0
But in any case, perhaps my servlet is handling things before it gets
to yours? FWIW, I do have <load-on-startup> tags in my web.xml .
Thanks for any help,
Adam
---------- 2 of 2 ----------
From: ahawtho <[email protected]>
Date: Dec 01 06:42AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/31407f2442bd28ac
Two additional pieces of information:
1. It worked in 1.7.1, but I was upgraded to a 64-bit machine running
Ubuntu 9.10, which does not include libstdc++5 anymore. I'm upgrading
to 2.0 because I can't use 1.7.1 hosted mode anymore.
2. The reference to "images" below because I was originally writing a
bug report, but I thought I'd ask to make sure I didn't have an
obvious configuration issue before reporting it, so please ignore that
part :)
Thanks to anyone who can help,
Adam
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.
--- End Message ---