# 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.15 2009/12/04 15:13:04 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::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$//; # Breadcrumbs my $brcrum = [{'href' => &Apache::loncommon::authorspace(), 'text' => 'Construction Space'}, {'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 Bookmarks').'') .&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'); $r->print( &Apache::loncommon::start_page( 'Advanced Editor', $js, {'add_entries' => \%loaditem, 'bread_crumbs' => $brcrum,}) .&Apache::loncommon::head_subbox( &Apache::loncommon::CSTR_pageheader() .$functions) .&Apache::loncommon::end_page() ); return OK; } 1; 500 Internal Server Error

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at root@localhost to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.