From 9dc88f6c738f30ce1eb6339ba4b739b45555dea4 Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 8 May 2008 12:47:13 +0000 Subject: address standardization part one, finally checked in from here --- httemplate/elements/xmlhttp.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'httemplate/elements/xmlhttp.html') diff --git a/httemplate/elements/xmlhttp.html b/httemplate/elements/xmlhttp.html index 3f4462b94..d0c799095 100644 --- a/httemplate/elements/xmlhttp.html +++ b/httemplate/elements/xmlhttp.html @@ -1,3 +1,19 @@ +<%doc> + +Example: + + include( '/elements/xmlhttp.html', + # required + 'url' => $p.'misc/something.html', + 'subs' => [ 'subroutine' ], + + # optional + 'method' => 'GET', #defaults to GET, could specify POST + 'key' => 'unique', #unique key + + ); + +