Hi
I get this error (Failed to execute the [html] macro) if I change the following:
#macro(ShowFlag $CountryCode)
#set($ImageExtension = '.png')
#set($CountryCodeFile = $CountryCode + $ImageExtension)
{{html}}
<img src="../../download/CdLSAssociations/FlagAttachments/$CountryCodeFile"
alt="$CountryCode"
title="$CountryCode"/>
{{/html}}
#end
to this
#macro(ShowFlag $CountryCode)
#set($ImageExtension = '.png')
#set($CountryCodeFile = $CountryCode + $ImageExtension)
{{html clean="true"}}
<div class="flags">
<img src="../../download/CdLSAssociations/FlagAttachments/$CountryCodeFile"
alt="$CountryCode"
title="$CountryCode"/>
<\div>
{{/html}}
#end
Why does adding the <div class...> and </div> give this error?
Gerritjan
Hi all,
On my wiki, I have many modification and my list grown...
I search on forum and in Internet and i have not found any script to clean
the history
I just find a suggestion...
you can write a scheduler task that runs once a week and
resets the history for the documents with at least 50 versions, or
delete all versions older than one month, for example.
How can I create this on my wiki ?
Thanks for all.
--
View this message in context: http://xwiki.475771.n2.nabble.com/Clean-History-Document-tp5834419p5834419.…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi all,
I need to include a Google Map in a page. In XWiki 1.0 syntax I add a iframe
and that works fine (http://www.parisjug.org/xwiki/bin/view/Location/ISEP)
but with XWiki 2.0 syntax I can't make it work (
http://www.parisjug.org/xwiki/bin/view/Location/CIUP). I've added {{html
wiki="true"}} but it's the same problem.
How do I add a iFrame in a XWiki 2.0 page ? Is there an easier way to add a
Google Map (like a {{google map}} macro) ?
Thanks,
Antonio