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

  - SplitLayoutPanel - Is there a way to set splitter position 
programmatically? [1 Update]
    http://groups.google.com/group/google-web-toolkit/t/e8764ba3a5a1aa33
  - Full GWT Website with MS SQL Server 2008 [1 Update]
    http://groups.google.com/group/google-web-toolkit/t/d7be95fb16394d58
  - listbox that contains widgets instead of just text.. [3 Updates]
    http://groups.google.com/group/google-web-toolkit/t/a0448eac590c27ce
  - GWT 2.0 books [1 Update]
    http://groups.google.com/group/google-web-toolkit/t/cfe592ca5a4aa8fc
  - Hosted Mode crashes OSX 10.6  GWT-1.7.1 [2 Updates]
    http://groups.google.com/group/google-web-toolkit/t/f75cdf24ae65f938
  - How can I disable the browser's default right click response? [1 Update]
    http://groups.google.com/group/google-web-toolkit/t/e6acef1ac9e3fe13
  - Need help getting panel fade to work properly [1 Update]
    http://groups.google.com/group/google-web-toolkit/t/1c712e7e8c7d803f
  - OOPHM not connecting to Code Server [2 Updates]
    http://groups.google.com/group/google-web-toolkit/t/4b20abe7a7fa2d31
  - RC2 and Eclipse Plugin [1 Update]
    http://groups.google.com/group/google-web-toolkit/t/3afa63106371c06e
  - How to run GWT 2.0 RC2's hosted mode with another server? [2 Updates]
    http://groups.google.com/group/google-web-toolkit/t/f5c903255d896a03


=============================================================================
Topic: SplitLayoutPanel - Is there a way to set splitter position 
programmatically?
Url: http://groups.google.com/group/google-web-toolkit/t/e8764ba3a5a1aa33
=============================================================================

---------- 1 of 1 ----------
From: shiang <[email protected]>
Date: Dec 05 04:23AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/386d50d3fb5a5bab

Hi all,

Do you know is there any workaround solutions to set the splitter
position programmatically of a SplitLayoutPanel?
(example: HoriozontalSplitPanel has the setPosition() method but
SplitLayoutPanel does not have).

Thank you,
Shiang



=============================================================================
Topic: Full GWT Website with MS SQL Server 2008
Url: http://groups.google.com/group/google-web-toolkit/t/d7be95fb16394d58
=============================================================================

---------- 1 of 1 ----------
From: Joe <[email protected]>
Date: Dec 05 02:13AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/1a15fd2b9a06c587

Well, You're right Sathya,

it is taking time, this is because the website contains lots of
tables,
horizontalpanel, htmlpanel, verticalpanel, etc ...

TextBoxes on the other hand do not take long, what takes long is
every dropdown, this is a customized widget built from scratch,
this too needs to be optimized.

The website has lot of images that load at startup, the website
doesn't take benefit yet of the powerful GWT technique, ImageBundle.

So you have lot of HTTP round trips. The listboxes, dropdowns,
are loading their data on startup upon creation, this too, can be
optimized
by loading data on demand, which means on click on the drop down
arrow.

as for the structure, I am working on a new layout which is div + css,
no tables.

As soon as things get finished, i'll be posting them!

Regards,

Joe



=============================================================================
Topic: listbox that contains widgets instead of just text..
Url: http://groups.google.com/group/google-web-toolkit/t/a0448eac590c27ce
=============================================================================

---------- 1 of 3 ----------
From: Jaimon <[email protected]>
Date: Dec 04 08:48PM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/cabf1e0e94c80dd4

hi, thanks for the help :-) really learned something.
but my problem is more UI related, i would like to have something that
looks like dropdown and inside there are widgets.
sorry if my question was not clear..

me



---------- 2 of 3 ----------
From: Miroslav Genov <[email protected]>
Date: Dec 05 11:00AM +0200
Url: http://groups.google.com/group/google-web-toolkit/msg/5aaab8506a874100

Ops. My mistake, wrong answer of the right question :).
 Sorry about that. 

 So I think that you could define your own custom widget that is using
several existing widgets that are looking similar to that you wanna
build.
 You could extend the Composite widget and to combine other several
widgets together on it. Here is some example that would make the things
more clear (note that code is not compiled and may contains some
mistakes):

 public class MyListBox extends Composite {
   private Button showListButton = new Button("");
   private MyListBoxListItemsView items = new MyListBoxListItemsView();

   private HorizontalPanel container = new HorizontalPanel();
   
   public MyListBox(MyObject[] items) {
     initWidget(container);
     showListButton.setStyleName("myListBoxButton"); // set background
image and etc
     this.items.addAll(items);

     showListButton.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent e) {
         if (!items.showed()) {
           items.showList();
         } else {
           items.hideList(); // second button click have to hide list
items
         }

        }
     }) 
     container.add(items);
     container.add(showListButton);    
   }
 }
 and so on. 

 Hope this will help you to solve your issue. 

 Also You can look at the showcase example:
http://gwt.google.com/samples/Showcase/Showcase.html 
You could use Basic Popup for showing and hiding list items to the
user.(i.e in my example:showListButton could show and hide the Basic
Popup widget with rendered items) 

 Another option would be using of existing js widget and binding them
through JSNI, but I think that it's a little bit harder then using GWT's
widget library.


  
Regards,
  Miroslav
On Fri, 2009-12-04 at 20:48 -0800, Jaimon wrote:


---------- 3 of 3 ----------
From: Joe <[email protected]>
Date: Dec 05 01:59AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/d7cef6dbdf483d3c

Hi Jaimon,

There's a widget i have created long time ago, it's a listbox
functionality,
but where i have control on all css and styles and design of it. As
you know, the normal listbox of gwt depends on your browser look and
feel.

But the idea is simple: You need to have a textbox  with image(drop
down arrow).

Then, when you click on the image, a popup will appear below it.

The popup can contain a scrollpanel with a vertical panel.

The vertical panel can conatin any widget you want, a label, an
image,
a textbox, etc ...

Hope this will be helpful, let me know if you need any help.

Good luck,

Joe




=============================================================================
Topic: GWT 2.0 books
Url: http://groups.google.com/group/google-web-toolkit/t/cfe592ca5a4aa8fc
=============================================================================

---------- 1 of 1 ----------
From: philippe <[email protected]>
Date: Dec 05 01:56AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/6fb068f1f4aa0d69

a good book for French readers, is being prepared here :
http://www.dng-consulting.com/blogs/index.php/2009/12/04/programmation-gwt-2-bientaocirc-t-en-lib-1?blog=1




=============================================================================
Topic: Hosted Mode crashes OSX 10.6  GWT-1.7.1
Url: http://groups.google.com/group/google-web-toolkit/t/f75cdf24ae65f938
=============================================================================

---------- 1 of 2 ----------
From: mdwarne <[email protected]>
Date: Dec 04 03:24PM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/694b5f1d446d3bbd

Hi,

I am trying to use GWT 1.7 under Mac OSX version 10.6.2.
JRE:  1.6 (mac osx)
I am using Eclipse 3.5.1.
Safari 4.04


I am repeatedly getting random crashes like this:
GWT quit unexpectedly while using the libgwt-ll.jnilib plugin.

In the console I get a message:
Invalid memory access of location 0x10 eip=0x9558a77b

I am using the JRE 1.6 (mac osx) with the -d32 flag in the jre
arguments.

I also tried installing the daily build of WebKit, and set the
Environment variable:
DYLD_FRAMEWORK_PATH=/Applications/WebKit.app/Contents/Frameworks/10.6



Crash Report looks like this:

Process:         java [2004]
Path:            /System/Library/Frameworks/JavaVM.framework/Versions/
1.6.0/Home/bin/java
Identifier:      java
Version:         ??? (???)
Code Type:       X86 (Native)
Parent Process:  eclipse [1759]

PlugIn Path:       /Users/mikewarne/libs/gwt-mac-1.7.1/libgwt-
ll.jnilib
PlugIn Identifier: libgwt-ll.jnilib
PlugIn Version:    ??? (???)

Date/Time:       2009-12-04 12:56:03.648 -1000
OS Version:      Mac OS X 10.6.2 (10C540)
Report Version:  6

Interval Since Last Report:          8072 sec
Crashes Since Last Report:           9
Per-App Crashes Since Last Report:   9
Anonymous UUID:                      7DEDA2D0-0797-4CBD-
B585-490F872B7A44

Exception Type:  EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000010
Crashed Thread:  0  Dispatch queue: com.apple.main-thread

Application Specific Information:

Java information:
 Exception type: Bus Error (0xa) at pc=0x9558a77b

 Java VM: Java HotSpot(TM) Client VM (14.3-b01-101 mixed mode macosx-
x86)

Current thread (0x028a8400):  JavaThread "Thread-0" daemon
[_thread_in_native, id=-1601686272, stack(0xbf800000,0xc0000000)]
Stack: [0xbf800000,0xc0000000]
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
J  com.google.gwt.dev.shell.mac.LowLevelSaf.gcUnprotect(II)V
J  com.google.gwt.dev.shell.mac.JsValueSaf.setJsVal(I)V
j  com.google.gwt.dev.shell.mac.JsValueSaf.setUndefined()V+7
J  com.google.gwt.dev.shell.JsValueGlue.set(Lcom/google/gwt/dev/shell/
JsValue;Lcom/google/gwt/dev/shell/CompilingClassLoader;Ljava/lang/
Class;Ljava/lang/Object;)V
j  com.google.gwt.dev.shell.mac.MethodDispatch.invoke(II[I[I)I+242
v  ~StubRoutines::call_stub
j  org.eclipse.swt.internal.carbon.OS.ReceiveNextEvent(I[IDZ[I)I+0
j  org.eclipse.swt.widgets.Display.sleep()Z+172
j  com.google.gwt.dev.SwtHostedModeBase.sleep()V+4
j  com.google.gwt.dev.SwtHostedModeBase.processEvents()V+11
j  com.google.gwt.dev.HostedModeBase.pumpEventLoop()V+13
j  com.google.gwt.dev.HostedModeBase.run()V+19
j  com.google.gwt.dev.HostedMode.main([Ljava/lang/String;)V+27
v  ~StubRoutines::call_stub

...... more


---------- 2 of 2 ----------
From: Jim Douglas <[email protected]>
Date: Dec 04 08:15PM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/791eba79b6669051

http://code.google.com/p/google-web-toolkit/issues/detail?id=4220#c22




=============================================================================
Topic: How can I disable the browser's default right click response?
Url: http://groups.google.com/group/google-web-toolkit/t/e6acef1ac9e3fe13
=============================================================================

---------- 1 of 1 ----------
From: Rob Tanner <[email protected]>
Date: Dec 04 03:33PM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/1a3db3a937d98a95

Hi,

I want to add short context specific help messages when users right-
click into a text box.  Figuring out what button the pressed on the
mouse is a near no-brainer, but how to disable the default browser
response is a puzzler.   I've figured out how to disable right clicks
all together using the native interface:

        public static native void disableContextMenu(Element e) /*-{
                e.oncontextmenu = function() { return false; };
                }-*/;

But then I don't see them either.  All I want is to disable the
default context menu so that I can roll my own.  Any ideas?

Thanks,
Rob



=============================================================================
Topic: Need help getting panel fade to work properly
Url: http://groups.google.com/group/google-web-toolkit/t/1c712e7e8c7d803f
=============================================================================

---------- 1 of 1 ----------
From: Rob Tanner <[email protected]>
Date: Dec 04 03:02PM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/ea83d9eb56aef221

Gave up on 2.0 because of the "-style" bug (another thread) but did
come up with a workaround to accommodate Firefox.

Original code: DOM.setStyleAttribute(glass.getElement(), "height",
"100%");
Workaround: DOM.setStyleAttribute(glass.getElement(), "height", new
Integer(Window.getClientHeight()).toString());

And, of course, if someone resizes the window, I added the following
handler:

                Window.addResizeHandler(new ResizeHandler() {
                        // this is a tweak so that glass works in Firefox
                        public void onResize(ResizeEvent event) {
                                DOM.setStyleAttribute(glass.getElement(), 
"height", new Integer
(Window.getClientHeight()).toString());
                        }
                });

It's not perfect, but it's darn close.




=============================================================================
Topic: OOPHM not connecting to Code Server
Url: http://groups.google.com/group/google-web-toolkit/t/4b20abe7a7fa2d31
=============================================================================

---------- 1 of 2 ----------
From: Adam Hawthorne <[email protected]>
Date: Dec 04 05:24PM -0500
Url: http://groups.google.com/group/google-web-toolkit/msg/4b6e4de5cfdd6e69

I think the issue was not having compiled once with 2.0, which should
produce the new hosted.html, correct?  Once I did that, many other things
began to fail due to stray jars.  After I finally waded through that mess,
things worked well.

On an unrelated note, are there any plans for a Chrome for Linux OOPHM
plugin?  How different is it from the windows plugin?

Adam


-- 
"... that I may know Him and the power of His resurrection, and the
fellowship of His sufferings, being conformed to His death, if, by any
means, I may attain to the resurrection from the dead."


---------- 2 of 2 ----------
From: Chris Ramsdale <[email protected]>
Date: Dec 04 05:29PM -0500
Url: http://groups.google.com/group/google-web-toolkit/msg/a95f8e6c24018c89

Re: Chrome OOPHM on Linux - checkout this thread for more info:

http://groups.google.com/group/google-web-toolkit-contributors/browse_thread/thread/6cfb8c41339702a7?pli=1




=============================================================================
Topic: RC2 and Eclipse Plugin
Url: http://groups.google.com/group/google-web-toolkit/t/3afa63106371c06e
=============================================================================

---------- 1 of 1 ----------
From: Chris Ramsdale <[email protected]>
Date: Dec 04 05:25PM -0500
Url: http://groups.google.com/group/google-web-toolkit/msg/7a580496bee221fe

Startup URLs can be specified in the Arguments tab within your Web
Application launch config. For example "-startupUrl
http://localhost:8080/test/go"; (minus the quotes.




=============================================================================
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 2 ----------
From: Chris Ramsdale <[email protected]>
Date: Dec 04 05:16PM -0500
Url: http://groups.google.com/group/google-web-toolkit/msg/1d6e8f5aefe55398

I'm able to debug using an external Tomcat server by specifying the
following args in my Web Application launch config:

-noserver
-startupUrl http://localhost:8080/test/go

Where "localhost" is a Tomcat server and not the built in Jetty server.



---------- 2 of 2 ----------
From: Chris Ramsdale <[email protected]>
Date: Dec 04 05:13PM -0500
Url: http://groups.google.com/group/google-web-toolkit/msg/c0afc9bfad3f05d1

Jan,

It looks like you found an issue on our side. Given your project settings,
the GPE is attempting to load GwtShell with the -style arg which has been
removed.

We have a fix in place for the 2.0 launch and in the meantime, if you want
to continue using the RC2 plugin and SDK, you can do the following:

1. Uncheck the "Use Google Web Toolkit" setting within your project
properties
2. Add a war/WEB-INF directory structure to your app
3. Add a web.xml to the WEB-INF directory with the following contents:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd";>

<web-app>
</web-app>

4. Check the "Use  Google Web Toolkit" settings within your project
properties


This workaround will trigger the plugin to launch DevMode (instead of
GwtShell) without the -style arg.

- Chris





--

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