Re: [Moin-user] Using IFRAME

2008-09-18 Thread Rick Vanderveer
One workaround, instead of "#format html" install and use "#format raw". However, due to severe security concerns, use this only on internal wiki's. Look on the macro page for 'raw'. Also, height="100%" doesn't work for me either, you must specify a height in pixels. -Rick On Thu, Sep 18, 2

Re: [Moin-user] Using IFRAME

2008-09-18 Thread R.Bauer
[EMAIL PROTECTED] schrieb: > A propos IFRAME in moin 1.7.1 > > Inside a macro, the following works: width="100%" height="400"> > > The following results in an empty page: width="100%" height="100%"> > > The only difference is in the height value: "400" works, but "100%" doesn't. > > Is this

Re: [Moin-user] Using IFRAME

2008-09-18 Thread victorlei
A propos IFRAME in moin 1.7.1 Inside a macro, the following works: The following results in an empty page: The only difference is in the height value: "400" works, but "100%" doesn't. Is this a bug or a feature? Victor On 9/18/08, Thomas Waldmann <[EMAIL PROTECTED]> wrote: >> #format h

Re: [Moin-user] Using IFRAME

2008-09-18 Thread Thomas Waldmann
> #format html > > > But I get empty page. Note that the html parser is a "safe" html parser (to avoid abuse of the wiki / security risks), so it does not allow all html tags. Maybe iframe is not in the allowed set of tags. ---