Is there a predefined Zope variable to be used in DTML documents that contains the parameter part of a request. Say, the requested URL is http://somewhere:9674/folder1/folder2/object?param1=values1¶m2=value s2 The variable URL0 contains then http://somewhere:9674/folder1/folder2/object But is there any for the param1=values1¶m2=values2 part? I guess there's a Dictionary somewhere around, but I'm right now too busy to look for it. Thanks in advance Stefan
On 17 Feb 99, at 23:46, Stefan Franke wrote: See QUERY_STRING, and REQUEST.form You can also just access parem1, param2 etc directly in dhtml.
Is there a predefined Zope variable to be used in DTML documents that contains the parameter part of a request. Say, the requested URL is
http://somewhere:9674/folder1/folder2/object?param1=values1¶m2=value s2
The variable URL0 contains then
http://somewhere:9674/folder1/folder2/object
But is there any for the param1=values1¶m2=values2 part? I guess there's a Dictionary somewhere around, but I'm right now too busy to look for it.
Thanks in advance Stefan
_______________________________________________ Zope maillist - Zope@zope.org http://www.zope.org/mailman/listinfo/zope
Brad Clements, bkc@murkworks.com (315)268-1000 http://www.murkworks.com (315)268-9812 Fax netmeeting: ils://ils.murkworks.com ICQ: 14856937
At 23:46 17/02/99 , Stefan Franke wrote:
... Say, the requested URL is
http://somewhere:9674/folder1/folder2/object?param1=values1¶m2=value s2
The variable URL0 contains then
and QUERY_STRING contains param1=values1¶m2=values2 -- M.J. Pieters, Web Developer | ATMM http://www.atmm.nl | Tel: +31-35-6254545 Fax: +31-35-6254555 | mailto:mj@atmm.nl http://www.atmm.nl/~mj | PGP: http://wwwkeys.nl.pgp.net:11371/pks/lookup?op=get&search=0xA8A32149 ------------------------------------------
On Wed, 17 Feb 1999, Stefan Franke wrote:
Is there a predefined Zope variable to be used in DTML documents that contains the parameter part of a request. Say, the requested URL is
REQUEST.form contains all the relevant parameters. Alternatively you can access the parameters directly: <!--# var param1--> for example. Pavlos
participants (4)
-
Brad Clements -
Martijn Pieters -
Pavlos Christoforou -
Stefan Franke