Hi,
On Fri, Apr 17, 2009 at 1:58 PM, Marius Dumitru Florea <
mariusdumitru.florea(a)xwiki.com> wrote:
Hi Jonas
Jonas Almfeldt wrote:
[snip]
Where can I find those templates? in the .war
file or in the database?
Yes, in the war, in templates directory. Have you changed editwysiwygnew.vm
or wysiwyginput.vm?
No haven't.
I have now deployed the same .war file in both environments and the instance
running in Tomcat works fine with the rendering in the wysiwyg editor, but
the instance running in WAS environment does not. :-(
[snip]
This means the XWiki syntax is no converted to
XHTML before loading
the editor. Can you try a simpler example just to be sure? For
instance to this:
* edit a new/empty page
* type a word like "bug"
* select the word
* click the bold button on the tool bar
* save and edit again
Do you get **bug** in the WYSIWYG editor? If so, then cancel the
edit. The "bug" is in bold in view mode right? Then please append
"xpage=wysiwyginput" to the query string of your URL and tell me the
output. For instance:
http://localhost:8080/xwiki/bin/view/Sandbox/Test?xpage=wysiwyginput
I suspect the output is **bug** right?
Yes, the output is: **bug**\\
Now if you append also "render" like in:
http://localhost:8080/xwiki/bin/view/Sandbox/FF?xpage=wysiwyginput&rend…
<
http://localhost:8080/xwiki/bin/view/Sandbox/FF?xpage=wysiwyginput&rend…
is the "bug" in bold?
No :-( the output of ...?xpage=wysiwyginput&render is still: **bug**\\
Can you try this:
* edit a NEW page with the Wiki editor and past this content:
-----8<-----
{{velocity}}
#set($mydoc = $xwiki.getDocument("Sandbox.FF"))
$mydoc.getRenderedContent($mydoc.content, $mydoc.syntaxId)
{{/velocity}}
----->8-----
* replace Sandbox.FF with the space and the page where you wrote **bug**.
Save and view. What does it display? I get:
<p><strong>bug</strong></p>
I also get:
<p><strong>bug</strong></p>
Some additional details:
The WAS 6.1 jvm has java version 1.5.0 btw.
My local Tomcat runs with the JRE of jdk1.5.0_08.
I also forgot to mention to the list that this problem is not specific to
1.8.1. It happens when I test with 1.8 also. (same wiki db content used,
created with 1.8 stable and the 1.8 XAR archive as a base).
[snip]
Thanks,
Marius