# The LearningOnline Network with CAPA # Build menu bar for Advanced RAT. Uses javascript code originally in # static file: rat/client/code.html, now in rat/client/ratcode.js # # $Id: lonratmenu.pm,v 1.23 2022/05/29 11:33:57 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # # This file is part of the LearningOnline Network with CAPA (LON-CAPA). # # LON-CAPA 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. # # LON-CAPA is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with LON-CAPA; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # /home/httpd/html/adm/gpl.txt # # http://www.lon-capa.org/ # package Apache::lonratmenu; use strict; use Apache::Constants qw(:common); use Apache::File; use Apache::loncommon; use Apache::lonhtmlcommon; use Apache::lonlocal; use Apache::lonnet; sub handler { my $r = shift; my $include = $Apache::lonnet::perlvar{'lonIncludes'}; my $jsh=Apache::File->new($include."/ratcode.js"); my $js = join('',<$jsh>); my %loaditem = ('onunload' => "leave();",); my $readfile=$r->uri; $readfile=~s/\/loadonly\/adveditmenu$//; my $target = '_top'; if ((($env{'request.lti.login'}) && ($env{'request.lti.target'} eq 'iframe')) || (($env{'request.deeplink.login'}) && ($env{'request.deeplink.target'}))) { $target = '_parent'; } # Breadcrumbs my $brcrum = [{'href' => &Apache::loncommon::authorspace($r->uri), 'text' => 'Authoring Space', 'target' => $target}, {'href' => '', 'text' => 'RAT'}, {'href' => '', 'text' => 'Advanced Editor'}]; my $help=&Apache::loncommon::help_open_menu( 'Sequence_Advanced_Editor_Creation', 'Sequence_Advanced_Editor_Creation',6,'RAT'); # Compile available Advanced RAT functions my $functions = '
'; $functions .= $help; # FIXME: Move help to bread_crumbs_component $functions .= &Apache::lonhtmlcommon::start_funclist(&mt('Display Actions')) .&Apache::lonhtmlcommon::add_item_funclist( '' .&mt('Toggle display').'') .&Apache::lonhtmlcommon::add_item_funclist( '' .&mt('Zoom out').'') .&Apache::lonhtmlcommon::add_item_funclist( '' .&mt('Zoom in').'') .&Apache::lonhtmlcommon::add_item_funclist( '' .&mt('Condense').'') .&Apache::lonhtmlcommon::add_item_funclist( '' .&mt('Straighten').'') .&Apache::lonhtmlcommon::add_item_funclist( '' .&mt('Revert').'') .&Apache::lonhtmlcommon::end_funclist(); $functions .= &Apache::lonhtmlcommon::start_funclist(&mt('Version Actions')) .&Apache::lonhtmlcommon::add_item_funclist( '' .&mt('Undo').'') .&Apache::lonhtmlcommon::add_item_funclist( '' .&mt('Redo').'') .&Apache::lonhtmlcommon::add_item_funclist( '' .&mt('Recover deleted').'') .&Apache::lonhtmlcommon::end_funclist(); $functions .= &Apache::lonhtmlcommon::start_funclist(&mt('Import')) .&Apache::lonhtmlcommon::add_item_funclist( '' .&mt('Search').'') .&Apache::lonhtmlcommon::add_item_funclist( '' .&mt('Import').'') .&Apache::lonhtmlcommon::add_item_funclist( '' .&mt('Import from Stored Links').'') .&Apache::lonhtmlcommon::add_item_funclist( '' .&mt('Copy').'') .&Apache::lonhtmlcommon::end_funclist(); $functions .= &Apache::lonhtmlcommon::start_funclist(&mt('Save')) .&Apache::lonhtmlcommon::add_item_funclist( '' .&mt('Save map').'') .&Apache::lonhtmlcommon::add_item_funclist( '' .&mt('Save map and layout').'') .&Apache::lonhtmlcommon::end_funclist(); $functions .= '
'; # End: LC_columnSection $functions .= &Apache::lonhtmlcommon::scripttag('main();'); # Print Advanced RAT page header $r->send_http_header('text/html'); my $frameset = 1; $r->print( &Apache::loncommon::start_page( 'Advanced Editor', $js, {'add_entries' => \%loaditem, 'bread_crumbs' => $brcrum, 'links_target => '_parent',}) .&Apache::loncommon::head_subbox( &Apache::loncommon::CSTR_pageheader('',$frameset) .$functions) .&Apache::loncommon::end_page() ); return OK; } 1;