1 # Copyright 2004-2007 Interchange Development Group and others
2 # Copyright 2001 Ed LaFrance <edl@newmediaems.com>
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version. See the LICENSE file for details.
9 # $Id: env.tag,v 1.11 2007-03-30 23:40:57 pajamian Exp $
12 Usertag env PosNumber 1
13 UserTag env attrAlias name arg
14 UserTag env Version $Revision: 1.11 $
15 Usertag env Routine <<EOR
18 my $env = ::http()->{env};
21 $out = "<table cellpadding='2' cellspacing='1' border='1'>\n";
22 foreach ((keys %$env)) {
23 $out .= "<tr><td><b>$_</b></td><td>";
24 $out .= "$env->{$_}</td>\n</tr><tr>\n";