# 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.14 2009/06/09 15:01:28 bisitz 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::lonnet; sub handler { my $r = shift; my $include = $Apache::lonnet::perlvar{'lonIncludes'}; my $jsh=Apache::File->new($include."/ratcode.js"); $r->send_http_header('text/html'); my $js = join('',<$jsh>); my %loaditem = ('onunload' => "leave();",); my $brcrum = [{'href' => &Apache::loncommon::authorspace(), 'text' => 'Construction Space'}, {'href' => '', 'text' => 'RAT'}, {'href' => '', 'text' => 'Advanced Editor'}]; $r->print(&Apache::loncommon::start_page('Advanced Editor',$js, {'add_entries' => \%loaditem, 'bread_crumbs' => $brcrum,}) .&Apache::loncommon::head_subbox( &Apache::loncommon::CSTR_pageheader()) ); my $readfile=$r->uri; $readfile=~s/\/loadonly\/adveditmenu$//; $r->print(&print_html($readfile)); $r->print(&Apache::loncommon::end_page()); return OK; } sub print_html { my $readfile=shift; my $help=&Apache::loncommon::help_open_menu('Sequence_Advanced_Editor_Creation','Sequence_Advanced_Editor_Creation',6,'RAT'); my $pagetext = <<"END";
$help Toggle display Zoom out Zoom in Condense Straighten Revert Undo Redo Recover deleted Search Import Import Bookmarks Copy Save map Save map and layout
END return $pagetext; } 1;