--- loncom/cgi/loncgi.pm 2006/04/10 17:46:04 1.6 +++ loncom/cgi/loncgi.pm 2006/05/18 14:24:06 1.7 @@ -1,7 +1,7 @@ # # LON-CAPA helpers for cgi-bin scripts # -# $Id: loncgi.pm,v 1.6 2006/04/10 17:46:04 albertel Exp $ +# $Id: loncgi.pm,v 1.7 2006/05/18 14:24:06 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -53,9 +53,11 @@ use strict; use warnings FATAL=>'all'; no warnings 'uninitialized'; +use lib '/home/httpd/lib/perl/'; use CGI(); use CGI::Cookie(); use Fcntl qw(:flock); +use LONCAPA; use LONCAPA::Configuration(); my $lonidsdir; @@ -162,20 +164,6 @@ sub transfer_profile_to_env { ############################################# ############################################# -sub escape { - my $str=shift; - $str =~ s/(\W)/"%".unpack('H2',$1)/eg; - return $str; -} - -# ----------------------------------------------------- Un-Escape Special Chars - -sub unescape { - my $str=shift; - $str =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg; - return $str; -} - =pod