Wave rich text editor

2011-06-14 Thread Anton Starcev
Hello all,

Trying to extract rich text editor from the Wave, stuck with a compilation 
error:

  
  
   
... 

gwt compile produce: 
java 
Compiling module ru.artlebedev.ast.Admin 
   [ERROR] Errors in 
'jar:file:/mnt/sda1/projects/appengine/nucleus-app/war/WEB-INF/lib/client-common-src.jar!/org/waveprotocol/wave/client/common/util/UserAgentStaticProperties.java'
 
  [ERROR] Line 57: Rebind result 
'org.waveprotocol.wave.client.common.util.UserAgentStaticProperties' cannot 
be abstract 
   [ERROR] Cannot proceed due to previous errors 

When I replace in waveprotocol project in 
org.waveprotocol.wave.client.common.util.UserAgentStaticProperties string:
return GWT.create(UserAgentStaticProperties.class);

with:
return new FirefoxImpl();
everything is going well

Can anyone help?

-- 
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/-/sxRSjlRXTYMJ.
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: Wave rich text editor

2011-06-14 Thread Anton Starcev
I didn't receive email notification, but I'm subscribed to the wave-dev 
mailing list now, thnx

-- 
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/-/BzyAjGuwa6IJ.
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: Wave rich text editor

2011-06-14 Thread Thomas Broyer
Your bug report  actually 
had answers… on the wave-dev mailing list!
See 
http://mail-archives.apache.org/mod_mbox/incubator-wave-dev/201106.mbox/%3cbanlktinwsi4mpu3dgwvqpvhxr4kmz0nzr0eiqzwch9zdimx...@mail.gmail.com%3E
 (also, 
read the associated thread)

If you want to reuse the Editor though, the module you actually need is 
org.waveprotocol.wave.client.editor.Editor. And you'll probably also need 
org.waveprotocol.wave.model.Model (and 
org.waveprotocol.wave.model.account.Account and 
org.waveprotocol.wave.model.supplement.Supplement or you'll have a bunch of 
errors on the console; it won't make you build fail though, unless you build 
in -strict mode)
EditorHarness is, as its name suggest, the GWT *application* that allows 
devs to test the Editor. It's a good start to understand how to bootstrap 
the editor, but it's not a reusable module.

-- 
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/-/NpGb-9lzmNMJ.
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.