Hans Juergen von Lengerke <[EMAIL PROTECTED]> on Feb 12, 2002:
> [% BLOCK httpquery %]
> [% # 'ua' is a reference to an LWP::UserAgent
> response = ua.simple_request('GET', $url);
> response.content;
> %]
> [% END %]
>
> [% INSERT httpquery("http://otherdomain.com/pelements/head.html") %]
> [% PROCESS httpquery("http://otherodmain.com/templates/foo.tt2") %]
Oops, these must of course be:
[% INSERT httpquery
url = 'http://otherdomain.com/pelements/head.html'
%]
[% PROCESS httpquery
url = 'http://otherodmain.com/templates/foo.tt2'
%]
Hans