On Wednesday, September 12, 2001, at 05:14 PM, Steven Grimes wrote:
I need to find out what operating system my clients are using. I know this information is available in the REQUEST object but I can not find a way to print that information on a page. For example: <html> <body> Hello <dtml-var AUTHENTICATED_USER>! You are running {Operating System}. </body> </html> Iwould like the Zope syntax to print the actual operating system used in the statement above.
<dtml-var "REQUEST['HTTP_UA_OS']"> works for me. Sticking <dtml-var REQUEST> into a DTML Method does a nice job of displaying the data available to you. I put a viewRequest method containing that tag in my root and reference it frequently. Gregg. -- Gregg Hartling hartling@earthlink.net