--- loncom/publisher/Attic/lonconstruct.pm 2006/04/06 22:15:18 1.32 +++ loncom/publisher/Attic/lonconstruct.pm 2010/04/12 15:05:51 1.37 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Construction Space Page Wrapper for Construction # -# $Id: lonconstruct.pm,v 1.32 2006/04/06 22:15:18 albertel Exp $ +# $Id: lonconstruct.pm,v 1.37 2010/04/12 15:05:51 droeschl Exp $ # # Copyright Michigan State University Board of Trustees # @@ -27,16 +27,22 @@ # # -package Apache::lonconstruct; +=pod -use strict; -use Apache::Constants qw(:common :http :methods); -use Apache::lonnet; -use HTML::Entities(); +=head1 + +=head1 NAME + +Apache::lonconstruct + +=head1 SYNOPSIS + +Page wrapper for handling construction space. + +This is part of the LearningOnline Network with CAPA project +described at http://www.lon-capa.org. -my $DEBUG = 0; -=pod =item Debug($request, $message) @@ -59,6 +65,17 @@ my $DEBUG = 0; =cut +package Apache::lonconstruct; + + +use strict; +use Apache::Constants qw(:common :http :methods); +use Apache::lonnet; +use HTML::Entities(); + +my $DEBUG = 0; + + sub Debug { # Put out the indicated message but only if DEBUG is true. if ($DEBUG) { @@ -92,43 +109,20 @@ sub handler { &Apache::loncommon::get_unprocessed_cgi ($ENV{'QUERY_STRING'},['forceedit']); if ($env{'form.forceedit'}) { - $lowerframe.='?editmode=Edit&problemmode=EditXML'; + $lowerframe.='?editmode=Edit&problemmode=editxml'; } &Apache::loncommon::get_unprocessed_cgi ($ENV{'QUERY_STRING'},['forceColoredit']); if ($env{'form.forceColoredit'}) { - $lowerframe.='?editmode=Edit&problemmode=Edit'; + $lowerframe.='?editmode=Edit&problemmode=edit'; } -# -# Checking to see if we should display the topframe -# - my $toprows = 0; - my $topsrc = ''; - if ($env{'environment.remote'} ne 'off') { - $toprows = '110'; - $topsrc = '/adm/localize/adm/publisher.html'; - } - my $extra; - &Apache::lontexconvert::jsMath_reset(); - if ($env{'environment.texengine'} eq 'jsMath' || - $env{'form.texengine'} eq 'jsMath' ) { - $extra.=&Apache::lontexconvert::jsMath_header(); - } - my $html=&Apache::lonxml::xmlbegin(); - $r->print(<LON-CAPA Construction Space - - - - - - - -ENDPAGE + # when the remote control existed we used to force the + # pages of construction space into a frameset. + # without remote control, we can elimnate this frameset + # and redirect to the url of the content frame. + # This keeps all URLs intact. + $r->internal_redirect($lowerframe); return OK; } 1;