# Copyright 2004-2007 Interchange Development Group and others # Copyright 2001 Ed LaFrance # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. See the LICENSE file for details. Usertag env Order arg Usertag env PosNumber 1 UserTag env attrAlias name arg UserTag env Version 1.11 Usertag env Routine <{env}; my $out; if (! $arg) { $out = "\n"; foreach ((keys %$env)) { $out .= "\n\n"; } $out .= "
$_"; $out .= "$env->{$_}
\n"; } else { $out = $env->{$arg}; } return $out; } EOR