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

  - PoupPanel and scrolling with the scroll wheel [1 Update]
    http://groups.google.com/group/google-web-toolkit/t/bf341ac3114bc292
  - GWT Developer Plugin not working IE8 [1 Update]
    http://groups.google.com/group/google-web-toolkit/t/dc78259de32b4e9c
  - Query on Google Web Toolkit (GWT) [1 Update]
    http://groups.google.com/group/google-web-toolkit/t/a594a8559fe7805d
  - RequestBuilder [2 Updates]
    http://groups.google.com/group/google-web-toolkit/t/629e10c03ee3b239
  - Announcing GWT 2.0 and much, much more... [6 Updates]
    http://groups.google.com/group/google-web-toolkit/t/919dfda6baf7a5e
  - MVP, GIN, UiBinder [2 Updates]
    http://groups.google.com/group/google-web-toolkit/t/6e45529b7e763b82
  - Anchor.wrap with GQuery [1 Update]
    http://groups.google.com/group/google-web-toolkit/t/293a10dcaf6b7758
  - Inconsistency (or a bug?) in application creation for GWT 2.0 [1 Update]
    http://groups.google.com/group/google-web-toolkit/t/c8f6077c518fe898
  - Install Speed Tracer on the Mac? [3 Updates]
    http://groups.google.com/group/google-web-toolkit/t/7da4678b33fd7549
  - GWT Chat applications [3 Updates]
    http://groups.google.com/group/google-web-toolkit/t/e09553126e464253
  - Strange scroll behaviour of ScrollPanel [1 Update]
    http://groups.google.com/group/google-web-toolkit/t/66721a541e133545
  - Nesting with SplitLayout and DockLayout panels [1 Update]
    http://groups.google.com/group/google-web-toolkit/t/93ae393bb4dcc2db
  - Please Post ListView of Images display. [2 Updates]
    http://groups.google.com/group/google-web-toolkit/t/31823a904d957f0e


=============================================================================
Topic: PoupPanel and scrolling with the scroll wheel
Url: http://groups.google.com/group/google-web-toolkit/t/bf341ac3114bc292
=============================================================================

---------- 1 of 1 ----------
From: jdw <[email protected]>
Date: Dec 09 08:22AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/e1fd9b02cc6fc4f9

Scroll bars do work when a modal dialog or modal popup is visible.  I
verified this with the DialogBox example.  I don't believe that
"modal" behavior should mean you can't scroll.  Using setGlassEnabled
( true ) is not an option as we are using GWT 1.7

Does anyone know a way to get the scroll wheel to work when you have a
modal dialog visible?

Thanks,
- Jay




=============================================================================
Topic: GWT Developer Plugin not working IE8
Url: http://groups.google.com/group/google-web-toolkit/t/dc78259de32b4e9c
=============================================================================

---------- 1 of 1 ----------
From: Andrey <[email protected]>
Date: Dec 09 08:00AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/83b24dd9fab8e8e1

The same problem. And it was reported a few times before.




=============================================================================
Topic: Query on Google Web Toolkit (GWT)
Url: http://groups.google.com/group/google-web-toolkit/t/a594a8559fe7805d
=============================================================================

---------- 1 of 1 ----------
From: elliot <[email protected]>
Date: Dec 09 08:00AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/84a7bcae967691b2

GWT. Two. Point.  Ohhhhhhhhhhh!!!!!

sticky note time?



=============================================================================
Topic: RequestBuilder
Url: http://groups.google.com/group/google-web-toolkit/t/629e10c03ee3b239
=============================================================================

---------- 1 of 2 ----------
From: charlie <[email protected]>
Date: Dec 09 09:22AM -0600
Url: http://groups.google.com/group/google-web-toolkit/msg/a76f0250cf6a8709

I have a php page
http://the-charlie.com/artwork/index.php?artist=Kanye+West&album=Graduation,
that when I hit it directly gives me an image URL.

I have this code in my app

RequestBuilder builder = new RequestBuilder(RequestBuilder.GET,"
http://the-charlie.com/artwork/index.php?artist=Kanye+West&album=Graduation";
);

                try {
                    builder.sendRequest("", new RequestCallback() {

                        @Override
                        public void onResponseReceived(Request request,
Response response) {


                            Window.alert(response.getText() );
                            Window.alert(response.getHeadersAsString());
                            Window.alert(response.getStatusText() );

Window.alert(Integer.toString(response.getStatusCode()));
                        }

                        @Override
                        public void onError(Request request, Throwable
exception) {


                        }
                    });
                } catch (RequestException e) {

                    e.printStackTrace();
                }

            }

Which is always returning null , with a status code of 200.

If my app runs on port 8080, is it a problem hitting a page on port 80 ( the
php page ) ?

Why would this constantly be returning blank ?

Thanks!
Charlie


---------- 2 of 2 ----------
From: "P.G.Taboada" <[email protected]>
Date: Dec 09 07:51AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/df4802ffab90bbd7

Hi,

different ports are indeed an issue, see SOP 
http://en.wikipedia.org/wiki/Same_origin_policy...

I tried your code here and got a status code 0.

For test purposes, dump your response data into your war folder and
change the url to the new location.

If it works, it is not your code, it most probably is SOP.

brgds,

Papick

ps: I use GWT.log("Got status code " + response.getStatusCode(), null)
to log instead of Window.alert.






=============================================================================
Topic: Announcing GWT 2.0 and much, much more...
Url: http://groups.google.com/group/google-web-toolkit/t/919dfda6baf7a5e
=============================================================================

---------- 1 of 6 ----------
From: Arthur Kalmenson <[email protected]>
Date: Dec 09 08:57AM -0500
Url: http://groups.google.com/group/google-web-toolkit/msg/2a2d9957f651ea00

Congratulations to the whole team, awesome job!

--
Arthur Kalmenson





---------- 2 of 6 ----------
From: Thomas Broyer <[email protected]>
Date: Dec 09 06:41AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/4a30273d9a39656e

>
> Where do I get those plugins?

You seem to be missing the WST. See 
http://code.google.com/eclipse/docs/faq.html#wstinstallerror


---------- 3 of 6 ----------
From: Rajeev Dayal <[email protected]>
Date: Dec 09 10:30AM -0500
Url: http://groups.google.com/group/google-web-toolkit/msg/89d20c46f9bb63c8

Hi,

When you were installing the plugin, did you have the option "Contact All
Update Sites During Install to Find Required Software" checked?

Our plugin has some dependencies on WST, and some installations of Eclipse
do not have them by default. However, the Galileo update site (which is
included in the list of default update sites) has these dependencies, and if
you have the option that I mentioned above selected when you install the
plugin, it will automatically grab them.

Let me know if this doesn't work for you.

Rajeev



---------- 4 of 6 ----------
From: Rajeev Dayal <[email protected]>
Date: Dec 09 10:31AM -0500
Url: http://groups.google.com/group/google-web-toolkit/msg/874448ad6d468bc9

> the uninstallation/installation for me. YMMV.
>

Yes, that is correct. Eclipse will automatically detect that you have an
older version installed, and automatically perform the upgrade.




---------- 5 of 6 ----------
From: Rajeev Dayal <[email protected]>
Date: Dec 09 10:32AM -0500
Url: http://groups.google.com/group/google-web-toolkit/msg/ef0bcf421f623d24

> plugin incompetence.
>

That is the default behavior - we do not automatically switch your project's
SDKs for you, even when you install a new SDK.




---------- 6 of 6 ----------
From: Rockster <[email protected]>
Date: Dec 09 07:46AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/816b7cf1b8259b8f

GWT2.0 ROCKS!!

Seriously.... I was having a feature that worked perfectly with GWT1.7
in hosted mode,
but when I start running on FF and Chrome, I got strange behavior.

Thanks to the DevMode and plugin I could test it cross browser!

Many many many thanks for that.

Keep up the Good work!

Rokesh





=============================================================================
Topic: MVP, GIN, UiBinder
Url: http://groups.google.com/group/google-web-toolkit/t/6e45529b7e763b82
=============================================================================

---------- 1 of 2 ----------
From: Thomas Broyer <[email protected]>
Date: Dec 09 07:13AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/aa1947eb7d229b4b

>
> Any thoughts here?

How about injecting your "child views" (or Provider<>s) into your view
and then use @UiField(provided=true) to tell UiBinder you're providing
those widgets?


---------- 2 of 2 ----------
From: "P.G.Taboada" <[email protected]>
Date: Dec 09 07:30AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/158154e3ec97f120

Well, that is what I am sort of doing. And it turns out to be a kind
of service location.

There are some workarounds, and they are nothing more than just that:
a workaround.

I am letting GIN build all of my presenters, and then I let them bind
the UIs.
Not nice, but that is the way with the fewest dependency lookup calls
for me atm.








=============================================================================
Topic: Anchor.wrap with GQuery
Url: http://groups.google.com/group/google-web-toolkit/t/293a10dcaf6b7758
=============================================================================

---------- 1 of 1 ----------
From: Thomas Broyer <[email protected]>
Date: Dec 09 07:13AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/b91887883b74bd20

> My question is _why_ is this element already owned and what can be  
> done about it.

First find the offending element (either set a breakpoint in
RootPanel::isElementChildOfWidget in DevMode, or look for a parent
element with a __listener property using whichever tool your like in
"prod mode" –Firebug, Web inspector, Developer Tools, etc.–), then try
to understand why it could "be a widget" already; but without seeing
your code it's impossible to help you further more...



=============================================================================
Topic: Inconsistency (or a bug?) in application creation for GWT 2.0
Url: http://groups.google.com/group/google-web-toolkit/t/c8f6077c518fe898
=============================================================================

---------- 1 of 1 ----------
From: Chris Ramsdale <[email protected]>
Date: Dec 09 10:09AM -0500
Url: http://groups.google.com/group/google-web-toolkit/msg/fe993fcc9e928272

>
>
Once you have imported the project you'll need to update the project to "Use
Google Web Toolkit" (right click on the project->Google->Web Toolkit
Settings..."



=============================================================================
Topic: Install Speed Tracer on the Mac?
Url: http://groups.google.com/group/google-web-toolkit/t/7da4678b33fd7549
=============================================================================

---------- 1 of 3 ----------
From: "P.G.Taboada" <[email protected]>
Date: Dec 09 05:41AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/dcc4f465bf8f4213

As far as I understood there is no way to install extensions on the
Mac Chrome, so we are left out of the fun stuff for now.



---------- 2 of 3 ----------
From: Chris Ramsdale <[email protected]>
Date: Dec 09 09:09AM -0500
Url: http://groups.google.com/group/google-web-toolkit/msg/31258f3f91212f4c

Jim,

Checkout the following post for information on how to enable extensions on
Mac Chrome:

http://www.techcrunch.com/2009/12/08/install-chrome-extensions-mac/

- Chris



---------- 3 of 3 ----------
From: "P.G.Taboada" <[email protected]>
Date: Dec 09 06:28AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/603c932372df5caf

Hi,
thanks for the link.
Still, I did not manage to install the plugin. I indeed managed to
turn on the install plugin button, but it fails afterwards with a
"plugin install not enabled" dialog.

Did anyone succeed?

brgds,

Papick




=============================================================================
Topic: GWT Chat applications
Url: http://groups.google.com/group/google-web-toolkit/t/e09553126e464253
=============================================================================

---------- 1 of 3 ----------
From: "P.G.Taboada" <[email protected]>
Date: Dec 09 05:48AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/4fed70b376e53678

I personally would not push the messages from the server, but have the
clients polling.

The rest is server-side coding. What backend are you targeting?
Don't forget that you will have to handle thread-safety issues on the
server side.

brgds,

Papick G. Taboada




---------- 2 of 3 ----------
From: abhiram wuntakal <[email protected]>
Date: Dec 09 07:22PM +0530
Url: http://groups.google.com/group/google-web-toolkit/msg/cad5a4e5018fbf9e

But, client side polling would make the system slow right? and how to do I
decide the frequency of polling?

Backend is pure Java with the database interaction thru hibernate.

~ Abhi



---------- 3 of 3 ----------
From: "P.G.Taboada" <[email protected]>
Date: Dec 09 06:10AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/c82d5271cc350c6f

Slow on what end?

Sure, pushing from server would lead to instant message delivery, but
I don't think it scales very well.
Do you know how may connections you can keep open?
You could change the polling rate depending on the load status of the
server, just a thought.


brgds,

Papick




=============================================================================
Topic: Strange scroll behaviour of ScrollPanel
Url: http://groups.google.com/group/google-web-toolkit/t/66721a541e133545
=============================================================================

---------- 1 of 1 ----------
From: romant <[email protected]>
Date: Dec 09 06:07AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/775dd9b4ef0397a0

Ok I got it work, in case anyone is interested - to simulate the
common FAQ page behaviour the simplest approach seems to be setting
the scroll position of a ScrollPanel like this:

int pos = panelToShow.getAbsoluteTop() - scrollPanel.getAbsoluteTop();
scrollPanel.setScrollPosition(pos);

panelToShow is one of many panels placed in a ScrollPanel.








=============================================================================
Topic: Nesting with SplitLayout and DockLayout panels
Url: http://groups.google.com/group/google-web-toolkit/t/93ae393bb4dcc2db
=============================================================================

---------- 1 of 1 ----------
From: "P.G.Taboada" <[email protected]>
Date: Dec 09 05:51AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/4055836e6089e4a8

I created a new thread with project, screenshot and link to a deployed
sample:


http://groups.google.com/group/google-web-toolkit/browse_thread/thread/c39b58f5d1c446f9#

brgds,

Papick



=============================================================================
Topic: Please Post ListView of Images display.
Url: http://groups.google.com/group/google-web-toolkit/t/31823a904d957f0e
=============================================================================

---------- 1 of 2 ----------
From: Pruthvi Raj <[email protected]>
Date: Dec 09 07:05PM +0530
Url: http://groups.google.com/group/google-web-toolkit/msg/f9517d5454b376e4

Hi,
I am seeing the listview of images in the demo program, but i strucking in
so many places, so please post some easy code, to explain the listview of
images.

thanks in advance.

-- 
Thank You,
Pruthvi Raj G.R,


---------- 2 of 2 ----------
From: "P.G.Taboada" <[email protected]>
Date: Dec 09 05:40AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/5431f07c75a20341

Hi,

please tell me

  - list view?
  - demo program?

brgds,

Papick





--

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 ---

Reply via email to