CGI-Out
view release on metacpan or search on metacpan
lib/CGI/Out.pm view on Meta::CPAN
444546474849505152535455565758596061626364
$out
=
''
;
@saveA
=
@ARGV
;
$pwd
= getcwd();
$zero
= $0;
%e
=
%ENV
;
# idiom.com specific feature:
$pwd
=
"$Chroot::has_chrooted$pwd"
if
defined
$Chroot::has_chrooted
;
$usedby
=
join
(
':'
,(
caller
(2))[1,2]);
&error
(
"Cannot combine CGI::Out ($usedby) and CGI::Wrap ($CGI::Wrap::usedby)"
)
if
defined
@CGI::Wrap::EXPORT
;
}
sub
savequery
{
(
$query
) = (
@_
);
}
lib/CGI/Wrap.pm view on Meta::CPAN
272829303132333435363738394041424344454647
$out
=
''
;
@saveA
=
@ARGV
;
$pwd
= getcwd();
$zero
= $0;
%e
=
%ENV
;
# idiom.com specific feature:
$pwd
=
"$Chroot::has_chrooted$pwd"
if
defined
$Chroot::has_chrooted
;
$usedby
=
join
(
':'
,(
caller
(2))[1,2]);
if
(
defined
@CGI::Out::EXPORT
) {
bigdeath(
''
,
''
,
"Cannot combine CGI::Wrap ($usedby) with CGI::Out ($CGI::Out::usedby)"
,
\
%e
,
$query
,
$pwd
,
$zero
, \
@saveA
,
$debug
,
$mailto
);
exit
(1);
}
}
sub
savequery
( run in 0.254 second using v1.01-cache-2.11-cpan-eab888a1d7d )