google-code-export / gwt-ckeditor

Automatically exported from code.google.com/p/gwt-ckeditor
2 stars 0 forks source link

GWTCKeditor unable find on your classpath #24

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. I make my project gwt4spring folder structure. It's working
2. When i add gwtckeditor <inherit ...> - not working
3.

What is the expected output? What do you see instead?
Unable to find 'com/axeiya/gwtckeditor/Gwtckeditor.gwt.xml' on your classpath;

What version of the product are you using? On what operating system?
GWT 2.0.3, gwtckeditor 0.3-0.4, Linux Ubuntu last version

Please provide any additional information below.
File - is the project structure, not working version. In lib folder i'm put 
gwtckeditor.jar

Original issue reported on code.google.com by artem.bo...@gmail.com on 15 Sep 2010 at 12:50

Attachments:

GoogleCodeExporter commented 9 years ago
Your project name is : com.torovo.Application because there is no rename-to 
attribute in your module descriptor Application.gwt.xml. Keep in mind this 
project name.

When your project will be compiled, a folder named as your project name will be 
created, and every permutation, RPC configuration, etc. will be copied in. 
Furthermore, every "public" content of each imported GWT module (hear, 
Gwtckeditor) will be copied in this folder too. 

In your case, CKEditor JavaScript files will be copied in :
war/com.torovo.Application/ckeditor/

Then, in your HTML host page, you have to define the CKEditor source path as :

<script type="text/javascript">
    var CKEDITOR_BASEPATH = 'com.torovo.Application/ckeditor/';
</script>
<script type="text/javascript" language="javascript"
    src="com.torovo.Application/ckeditor/ckeditor.js"></script>

You can send this kind of message in the gwt-ckeditor group.

Original comment by picard.d...@gmail.com on 15 Sep 2010 at 3:34