Re: GWT Canvas on HTML 4.01?

2010-10-15 Thread mass0ne
no way 'The canvas element is part of HTML5...'(c)
http://en.wikipedia.org/wiki/Canvas_element
only !DOCTYPE html

http://www.google.com/search?q=html5+canvas

On Oct 14, 6:30 pm, s.djukic s.dju...@gmail.com wrote:
 Hi all,

 Does anyone know whether GWT Canvas will work on older browsers
 (4.01)? Couldn't really find any explicit statement on the net.

 Thanks!
 Sinisha

-- 
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-tool...@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: Problems creating my first reusable module: import cannot be resolved

2010-08-19 Thread mass0ne
For me...

package:
src
`-my.site.tools.layout
  `-Layout.gwt.xml

progect.gwt.xml:
inherits name=my.site.tools.layout.Layout/

...works perfectly.

Test your project before you pack them in jar. debug-junit-compile-
jar
The very first thing that comes to mind: Jar not empty?

On Aug 18, 11:44 pm, Sleeveen pstron...@gmail.com wrote:
 I've dropped the JAR in war/WEB-INF/lib since it will (eventually) be
 used on the server side of things.

 I've removed the hyphens from the name of the module (everywhere):
 still no luck.

 I've removed the rename-to attribute: still no luck.

 I am indeed using Eclipse. The JAR is configured as a library on my
 Java build path.

 I appreciate the comments though!

 Keep 'em coming!

 Thanks

 On Aug 18, 12:58 pm, lineman78 linema...@gmail.com wrote:







  From what I can tell there is nothing wrong with the structure of your
  project or the packaging.  Generics have been supported since GWT
  1.5.

  First of all, you dont want it to be in war/WEB-INF/lib.  This is for
  server-side Java libraries, but this won't hurt anything.

  Second, I would try taking the hyphen out of the module name as that
  may be causing issues.

  Thirdly, you might think about removing the rename-to from the library
  gwt.xml.

  I would also double check your classpath to ensure that the jar is in
  it.  How are you compiling? Eclipse?

-- 
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-tool...@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: Loading a GWT module into a jsp page

2010-08-12 Thread mass0ne
I have the same problem in devmode, with a compiled application JSP
works fine.
Try reloading the page or use the *. html for devmode.
I'm using *. html

On Aug 7, 8:19 pm, shinokamparos shinokampa...@gmail.com wrote:
 Hi Luis,

 this is my entrypoint:

 public void onModuleLoad() {

         loginPanel = new LoginPanel();
         RootPanel.get(login).add(loginPanel);

 }

 On Aug 5, 1:49 am, Luis Daniel Mesa Velasquez



 luisdanielm...@gmail.com wrote:
  Can you post your EntryPoint? maybe you nned to check the
  RootPanel.get() methods and check everything's where it's supposed to
  be...

  On Aug 3, 7:55 pm, shinokamparos shinokampa...@gmail.com wrote:

   Hi all,
   I have a GWT module I want to load into a jsp page. My nocache.js
   file
   load correctly from the server as per Firebug. The problem is that
   the
   module does not display. I don't know what the problem, the code is
   taken form the generated hosted page, which works, so I see no reason
   why there should be a problem. My jsp file is set out below. Any help
   would be greatly apreciated.
   ?xml version=1.0 encoding=UTF-8 ?
   %@ page language=java contentType=text/html; charset=UTF-8
       pageEncoding=UTF-8%
   !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN
   http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
   html
       head
           titleLogin/title
           meta http-equiv=content-type content=text/html;
   charset=UTF-8/meta
           meta name=gwt:module content=com.accounts.Login/
   com.accounts.Login/meta
           script type=text/javascript language=javascript src=../
   com.accounts.Login/com.accounts.Login.nocache.js/script
       /head
       body
           iframe src=javascript:'' id=__gwt_historyFrame
   tabIndex='-1' style=position: absolute; width: 0; height: 0; border:
   0/iframe
           pHello Login/p
           div id=login/div
       /body
   /html

-- 
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-tool...@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, Wave extensions API tutorials/resources

2009-12-03 Thread mass0ne
 through this section. Good stuff. I should do it again.

  In some issues I could be wrong. I look forward to account for
  wavesandbox, and do not have practice with the Wave.

  Me too. I think I am putting the want out into the ethers of the wire in
  hopes of receiving an email from the GWT group with a synthesized tutorial
  section that encompasses all three technologies (GWT, App Enging, Wave, 
  even
  project hosting). I'm a dreamer.

  While we are
  working on server-side logic and server side configuration, Wave-
  client for us mocks. When there is access to the sandbox, then let us
  touch Wave.

  Sounds good let me know when we have sandbox access : ) I've tried...

  Thank you for your help.

  On Dec 1, 12:27 pm, Angel Marquez angel.marq...@gmail.com wrote:
   I guess to be more specific I'm looking for a tutorial that went from:
   1. Setting up App Engine for a robot
   2. Installing GWT using the eclipse plugin
   3. Creating a Wave specific project under subversion
   4. Incorporating a gadget that utilized gMap, twitter,
  mashup..webService
   that illustrated the state change mecha with a focus on healthy
   collaboration.
   5. Create an installer, deploy.

   A scalable tutorial. For song writing or screen plays or something
  where you
   could create one piece and use it as a building block. I want a clean
  path
   from inception to completion. Am I asking for to much?

   On Mon, Nov 30, 2009 at 11:14 PM, Angel Marquez 
  angel.marq...@gmail.comwrote:

Awesome. I'll take a look. The capabilities.xml has me. Are gadgets
  going
to be the iPhone equiv?

Thank you.

On Sun, Nov 29, 2009 at 9:51 AM, mass0ne ctg.m...@gmail.com wrote:

Gadgetshttp://code.google.com/p/cobogwave/
Robots also like to javahttp://code.google.com/apis/wave/

On Nov 28, 11:27 pm, Angel Marquez angel.marq...@gmail.com wrote:
 Anyone know of any good resources for developing wave extensions
  with
gwt?

 -a

--

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-tool...@googlegroups.com.
To unsubscribe from this group, send email to
google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
  google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252bunsubscr...@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.comgoogle-web-toolkit%2bunsubscr...@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-tool...@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, Wave extensions API tutorials/resources

2009-12-03 Thread mass0ne
 experimented with the plugins on a mac and pc and the
  one
thing that I don't like is the need to have your App Engine name
  available.
I for see this being a pain. I stop when something doesn't seem right.

3. Your Wave project is Java project. You choose where it's hosted
locally or in public (you can at code.google.com). For Java project,
you still need java bild tool (ant or ivy)

I thought the eclipse plugin handled the build auto pilot style. I'm
  sure
it is just running ant, rake, whatever behind the scenes; but, once
  you run
in dev mode I think the build.xml is just read in command line format.

4. Oo, sorry I did not understand (and recently began to study English
=))

I'm sure it was my poor english not yours. Maybe I could clarify, not
  sure
what didn't make sense.

5. Create an installer - # 3 java bild tool can be?
if you mean Wave-robot-installer, then it is sort of resolved at link
robot with the Wave. # 1
Deploy -
 http://code.google.com/appengine/docs/java/tools/eclipse.html

 Yep, I have gone through this section. Good stuff. I should do it
  again.

In some issues I could be wrong. I look forward to account for
wavesandbox, and do not have practice with the Wave.

Me too. I think I am putting the want out into the ethers of the wire
  in
hopes of receiving an email from the GWT group with a synthesized
  tutorial
section that encompasses all three technologies (GWT, App Enging,
  Wave, even
project hosting). I'm a dreamer.

While we are
working on server-side logic and server side configuration, Wave-
client for us mocks. When there is access to the sandbox, then let us
touch Wave.

Sounds good let me know when we have sandbox access : ) I've tried...

Thank you for your help.

On Dec 1, 12:27 pm, Angel Marquez angel.marq...@gmail.com wrote:
 I guess to be more specific I'm looking for a tutorial that went
  from:
 1. Setting up App Engine for a robot
 2. Installing GWT using the eclipse plugin
 3. Creating a Wave specific project under subversion
 4. Incorporating a gadget that utilized gMap, twitter,
mashup..webService
 that illustrated the state change mecha with a focus on healthy
 collaboration.
 5. Create an installer, deploy.

 A scalable tutorial. For song writing or screen plays or something
where you
 could create one piece and use it as a building block. I want a
  clean
path
 from inception to completion. Am I asking for to much?

 On Mon, Nov 30, 2009 at 11:14 PM, Angel Marquez 
angel.marq...@gmail.comwrote:

  Awesome. I'll take a look. The capabilities.xml has me. Are
  gadgets
going
  to be the iPhone equiv?

  Thank you.

  On Sun, Nov 29, 2009 at 9:51 AM, mass0ne ctg.m...@gmail.com
  wrote:

  Gadgetshttp://code.google.com/p/cobogwave/
  Robots also like to javahttp://code.google.com/apis/wave/

  On Nov 28, 11:27 pm, Angel Marquez angel.marq...@gmail.com
  wrote:
   Anyone know of any good resources for developing wave
  extensions
with
  gwt?

   -a

  --

  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-tool...@googlegroups.com.
  To unsubscribe from this group, send email to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
  google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252bunsubscr...@googlegroups.com

google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252bunsubscr...@googlegroups.com
  google-web-toolkit%252bunsubscr...@googlegroups.comgoogle-web-toolkit%25252bunsubscr...@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.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
  google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252bunsubscr...@googlegroups.com

.
For more

 ...

 read more »

--

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-tool...@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, Wave extensions API tutorials/resources

2009-12-01 Thread mass0ne
Use the Google plugin for Eclipse:
http://code.google.com/eclipse/docs/creating_new_webapp.html
case (you use == robot + gadgets): use GWT + GAE
case (you use == only robot): use GAE
case (you use == only gadgets): use GWT + GAE
ps: taking into account the fact that gadgets hosted on App Engine

Hope this helps.
0. gwt + iphone if you are looking specifically for iphone
http://code.google.com/p/gwt-mobile-webkit/
1. WaveRobot (under the hood AppEngine) - set up a simple and little
http://code.google.com/apis/wave/extensions/robots/java-tutorial.html
This document redirects to all the necessary information to configure
the robot for AppEngine
2. not need to install GWT, install the plugin
http://code.google.com/eclipse/docs/download.html and you already get
the GWT and Appengine
When creating a project just check what you need GWT, GAE or both.
3. Your Wave project is Java project. You choose where it's hosted
locally or in public (you can at code.google.com). For Java project,
you still need java bild tool (ant or ivy)
4. Oo, sorry I did not understand (and recently began to study English
=))
5. Create an installer - # 3 java bild tool can be?
if you mean Wave-robot-installer, then it is sort of resolved at link
robot with the Wave. # 1
Deploy - http://code.google.com/appengine/docs/java/tools/eclipse.html

In some issues I could be wrong. I look forward to account for
wavesandbox, and do not have practice with the Wave. While we are
working on server-side logic and server side configuration, Wave-
client for us mocks. When there is access to the sandbox, then let us
touch Wave.

On Dec 1, 12:27 pm, Angel Marquez angel.marq...@gmail.com wrote:
 I guess to be more specific I'm looking for a tutorial that went from:
 1. Setting up App Engine for a robot
 2. Installing GWT using the eclipse plugin
 3. Creating a Wave specific project under subversion
 4. Incorporating a gadget that utilized gMap, twitter, mashup..webService
 that illustrated the state change mecha with a focus on healthy
 collaboration.
 5. Create an installer, deploy.

 A scalable tutorial. For song writing or screen plays or something where you
 could create one piece and use it as a building block. I want a clean path
 from inception to completion. Am I asking for to much?

 On Mon, Nov 30, 2009 at 11:14 PM, Angel Marquez 
 angel.marq...@gmail.comwrote:

  Awesome. I'll take a look. The capabilities.xml has me. Are gadgets going
  to be the iPhone equiv?

  Thank you.

  On Sun, Nov 29, 2009 at 9:51 AM, mass0ne ctg.m...@gmail.com wrote:

  Gadgetshttp://code.google.com/p/cobogwave/
  Robots also like to javahttp://code.google.com/apis/wave/

  On Nov 28, 11:27 pm, Angel Marquez angel.marq...@gmail.com wrote:
   Anyone know of any good resources for developing wave extensions with
  gwt?

   -a

  --

  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-tool...@googlegroups.com.
  To unsubscribe from this group, send email to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@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-tool...@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, Wave extensions API tutorials/resources

2009-11-30 Thread mass0ne
Gadgets http://code.google.com/p/cobogwave/
Robots also like to java http://code.google.com/apis/wave/

On Nov 28, 11:27 pm, Angel Marquez angel.marq...@gmail.com wrote:
 Anyone know of any good resources for developing wave extensions with gwt?

 -a

--

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-tool...@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.