Hi Andreas,
On Apr 14, 2009, at 1:04 AM, Andreas Schaefer wrote:
Thanks. Finally I saw it (stupid me) but now the
info/warning/error
macros are failing on my. I use XWiki Enterprise 1.8.17790 and it just
ignores the macro using:
#warning("This is my warning to you")
The velocity macros that were working for XWiki Syntax 1.0 still work
for XWiki syntax 2.0 (provided you use them inside the {{velocity}}
macro). However most of them output HTML and in XWiki Syntax 2.0 you
need to surround any HTML block by the {{html}} macro so basically
you'll need to write:
{{html}}{{velocity}}#warning("This is my warning to you"){{/velocity}}
{{/html}}
Note that we're working on automatically adding the html macro
wrapping for XE 1.8.2 so you only need to do that temporarily.
Thanks
-Vincent
Is there a way to fix that because I used that a lot
so far.
On another note I could not find the Wiki Syntax help on my
installation. The link on Wiki Editor 'Help on XWiki Syntax' is
displaying the old 1.0 syntax. How to I change that to 2.0. I tried to
find a panel that would contain and I found one but could not figure
out how to change it.
Thanks
Andreas Schaefer
CEO of
Madplanet.com Inc.
andreas.schaefer(a)madplanet.com
schaefera(a)me.com
On Apr 13, 2009, at 12:02 PM, Vincent Massol wrote:
> Hi Andreas,
>
> On Apr 13, 2009, at 7:40 PM, Andreas Schaefer wrote:
>
>>
>> So, how would I upgrade a page to version 2.0 or do I need to
>> rewrite
>> the entire page?
>
> Just change the page's syntax to XWiki Syntax 2.0. You'll get a
> dialog
> box asking you whether to convert to 2.0 syntax.
>
> -Vincent
>
>> Sorry to ask but I could not find the answer.
>>
>> Thanks
>>
>> Andreas Schaefer
>> CEO of
Madplanet.com Inc.
>> andreas.schaefer(a)madplanet.com
>> schaefera(a)me.com
>>
>> On Apr 12, 2009, at 6:09 AM, Marius Dumitru Florea (via Nabble)
>> wrote:
>>
>>> Hi,
>>>
>>> I can see you're using the XWiki 1.0 syntax and thus the old
>>> WYSIWYG
>>> editor which is no longer maintained. What you describe could be a
>>> bug
>>> in the old editor. I tried your example in the new editor using the
>>> {{code}} macro and it works fine. Maybe you can switch to XWiki 2.0
>>> syntax and try the new WYSIWYG editor.
>>>
>>> Thanks,
>>> Marius
>>>
>>> Andreas Schaefer wrote:
>>>
>>>> Hi
>>>>
>>>> I normally edit my pages in the Wiki editor but to add links or
>>> images I use the WYSIWYG editor. Now having a code box like this:
>>>>
>>>> {code}
>>>> - (BOOL) textFieldShouldReturn: (UITextField *) textField {
>>>> [self greetMe:nil];
>>>> return YES;
>>>> }
>>>>
>>>> {code}
>>>>
>>>> will turn into this:
>>>>
>>>> {code}
>>>> - (BOOL) textFieldShouldReturn: (UITextField *) textField {
>>>> [self greetMe:nil];
>>>> return YES;
>>>> }
>>>>
>>>> {code}
>>>>
>>>> Any ideas why and how to workaround this problem.
>>>>
>>>> Cheers
>>>>
>>>> Andreas Schaefer