On 21/12/06, Sarunas Burdulis sarunas@math.dartmouth.edu wrote:
Hello,
Is there a way to embed (or enable embedding) of something that in raw html would work as:
<a href="http://somesite.net/somepage.html%3E
<img src=http://somesite.net/script?param> </a>
If $wgAllowExternalImages is set to "true" in LocalSettings.php, then it might be possible through [http://server/script?params].
If not, then there are a couple of options:
(Better) Write a parser hook extension that accepts the parameter values as attributes and generates the appropriate HTML.
(Worse) Enable raw HTML ($wgRawHtml) and include the above HTML snippet on a page with <html></html>tags.
I favour the parser hook, overall.
Rob Church