File:  [LON-CAPA] / loncom / interface / lonmenu.pm
Revision 1.470: download - view: text, annotated - select for diffs
Mon Apr 10 02:45:45 2017 UTC (7 years, 2 months ago) by raeburn
Branches: MAIN
CVS tags: HEAD
- Pass absolute link not relative link to syllabus to &get_editbutton().

    1: # The LearningOnline Network with CAPA
    2: # Routines to control the menu
    3: #
    4: # $Id: lonmenu.pm,v 1.470 2017/04/10 02:45:45 raeburn Exp $
    5: #
    6: # Copyright Michigan State University Board of Trustees
    7: #
    8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    9: #
   10: # LON-CAPA is free software; you can redistribute it and/or modify
   11: # it under the terms of the GNU General Public License as published by
   12: # the Free Software Foundation; either version 2 of the License, or
   13: # (at your option) any later version.
   14: #
   15: # LON-CAPA is distributed in the hope that it will be useful,
   16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   18: # GNU General Public License for more details.
   19: #
   20: # You should have received a copy of the GNU General Public License
   21: # along with LON-CAPA; if not, write to the Free Software
   22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   23: #
   24: # /home/httpd/html/adm/gpl.txt
   25: #
   26: # http://www.lon-capa.org/
   27: #
   28: #
   29: 
   30: =head1 NAME
   31: 
   32: Apache::lonmenu
   33: 
   34: =head1 SYNOPSIS
   35: 
   36: Loads contents of /home/httpd/lonTabs/mydesk.tab, 
   37: used to generate inline menu, and Main Menu page. 
   38: 
   39: This is part of the LearningOnline Network with CAPA project
   40: described at http://www.lon-capa.org.
   41: 
   42: =head1 GLOBAL VARIABLES
   43: 
   44: =over
   45: 
   46: =item @desklines
   47: 
   48: Each element of this array contains a line of mydesk.tab that doesn't start with
   49: cat, prim or scnd. 
   50: It gets filled in the BEGIN block of this module.
   51: 
   52: =item %category_names
   53: 
   54: The keys of this hash are the abbreviations used in mydesk.tab in those lines that 
   55: start with cat, the values are strings representing titles. 
   56: It gets filled in the BEGIN block of this module.
   57: 
   58: =item %category_members
   59: 
   60: TODO 
   61: 
   62: =item %category_positions
   63: 
   64: The keys of this hash are the abbreviations used in mydesk.tab in those lines that
   65: start with cat, its values are position vectors (column, row). 
   66: It gets filled in the BEGIN block of this module.
   67: 
   68: =item $readdesk
   69: 
   70: Indicates that mydesk.tab has been read. 
   71: It is set to 'done' in the BEGIN block of this module.
   72: 
   73: =item @primary_menu
   74: 
   75: The elements of this array reference arrays that are made up of the components
   76: of those lines of mydesk.tab that start with prim:.
   77: It is used by primary_menu() to generate the corresponding menu.
   78: It gets filled in the BEGIN block of this module.
   79: 
   80: =item %primary_sub_menu
   81: 
   82: The keys of this hash reference are the names of items in the primary_menu array 
   83: which have sub-menus.  For each key, the corresponding value is a reference to
   84: an array containing components extracted from lines in mydesk.tab which begin
   85: with primsub:.
   86: This hash, which is used by primary_menu to generate sub-menus, is populated in
   87: the BEGIN block.
   88: 
   89: =item @secondary_menu
   90: 
   91: The elements of this array reference arrays that are made up of the components
   92: of those lines of mydesk.tab that start with scnd.
   93: It is used by secondary_menu() to generate the corresponding menu.
   94: It gets filled in the BEGIN block of this module.
   95: 
   96: =back
   97: 
   98: =head1 SUBROUTINES
   99: 
  100: =over
  101: 
  102: =item prep_menuitems(\@menuitem)
  103: 
  104: This routine wraps a menuitem in proper HTML. It is used by primary_menu() and 
  105: secondary_menu().
  106: 
  107: =item primary_menu()
  108: 
  109: This routine evaluates @primary_menu and returns a two item array, 
  110: with the array elements containing XHTML for the left and right sides of 
  111: the menu that contains the following links: About, Message, Roles, Help, Logout 
  112: @primary_menu is filled within the BEGIN block of this module with 
  113: entries from mydesk.tab
  114: 
  115: =item secondary_menu()
  116: 
  117: Same as primary_menu() but operates on @secondary_menu.
  118: 
  119: =item create_submenu()
  120: 
  121: Creates XHTML for unordered list of sub-menu items which belong to a 
  122: particular top-level menu item. Uses hover pseudo class in css to display
  123: dropdown list when mouse hovers over top-level item. Support for IE6 
  124: (no hover psuedo class) via LC_hoverable class for <li> tag for top-
  125: level item, which employs jQuery to handle behavior on mouseover.
  126: 
  127: Inputs: 6 - (a) link and (b) target for anchor href in top level item,
  128:             (c) title for text wrapped by anchor tag in top level item,
  129:             (d) reference to array of arrays of sub-menu items,
  130:             (e) boolean to indicate whether to call &mt() to translate 
  131:                 name of menu item,
  132:             (f) optional class for <li> element in primary menu, for which
  133:                 sub menu is being generated.
  134: 
  135:  The underlying datastructure used in (d) contains data from mydesk.tab.
  136:  It consists of an array which has an array for each item appearing in
  137:  the menu (e.g. [["link", "title", "condition"]] for a single-item menu).
  138:  create_submenu() supports also the creation of XHTML for nested dropdown
  139:  menus represented by unordered lists. This is done by replacing the
  140:  scalar used for the link with an arrayreference containing the menuitems
  141:  for the nested menu. This can be done recursively so that the next menu
  142:  may also contain nested submenus.
  143: 
  144:  Example:
  145:  [											# begin of datastructure
  146: 	["/home/", "Home", "condition1"], 		# 1st item of the 1st layer menu
  147: 	[										# 2nd item of the 1st layer menu
  148: 		[									# anon. array for nested menu
  149: 			["/path1", "Path1", undef], 	# 1st item of the 2nd layer menu
  150: 			["/path2", "Path2", undef], 	# 2nd item of the 2nd layer menu
  151: 			[								# 3rd item of the 2nd layer menu
  152: 				[[...], [...], ..., [...]],	# containing another menu layer
  153: 				"Sub-Sub-Menu",				# title for this container
  154: 				undef
  155: 			]
  156: 		],									# end of array/nested menu
  157: 		"Sub-Menu",							# title for the container item
  158: 		undef
  159: 	]										# end of 2nd item of the 1st layer menu
  160: ]
  161: 
  162: =item innerregister()
  163: 
  164: This gets called in order to register a URL in the body of the document
  165: 
  166: =item clear()
  167: 
  168: =item switch()
  169: 
  170: Switch a button or create a link
  171: Switch acts on the javascript that is executed when a button is clicked.  
  172: The javascript is usually similar to "go('/adm/roles')" or "cstrgo(..)".
  173: 
  174: =item secondlevel()
  175: 
  176: =item openmenu()
  177: 
  178: =item inlinemenu()
  179: 
  180: =item rawconfig()
  181: 
  182: =item utilityfunctions()
  183: 
  184: Output from this routine is a number of javascript functions called by
  185: items in the inline menu, and in some cases items in the Main Menu page. 
  186: 
  187: =item serverform()
  188: 
  189: =item constspaceform()
  190: 
  191: =item get_nav_status()
  192: 
  193: =item hidden_button_check()
  194: 
  195: =item roles_selector()
  196: 
  197: =item jump_to_role()
  198: 
  199: =back
  200: 
  201: =cut
  202: 
  203: package Apache::lonmenu;
  204: 
  205: use strict;
  206: use Apache::lonnet;
  207: use Apache::lonhtmlcommon();
  208: use Apache::loncommon();
  209: use Apache::lonenc();
  210: use Apache::lonlocal;
  211: use Apache::lonmsg();
  212: use LONCAPA qw(:DEFAULT :match);
  213: use HTML::Entities();
  214: use Apache::lonwishlist();
  215: 
  216: use vars qw(@desklines %category_names %category_members %category_positions 
  217:             $readdesk @primary_menu %primary_submenu @secondary_menu);
  218: 
  219: my @inlineremote;
  220: 
  221: sub prep_menuitem {
  222:     my ($menuitem) = @_;
  223:     return '' unless(ref($menuitem) eq 'ARRAY');
  224:     my $link;
  225:     if ($$menuitem[1]) { # graphical Link
  226:         $link = "<img class=\"LC_noBorder\""
  227:               . " src=\"" . &Apache::loncommon::lonhttpdurl($$menuitem[1]) . "\"" 
  228:               . " alt=\"" . &mt($$menuitem[2]) . "\" />";
  229:     } else {             # textual Link
  230:         $link = &mt($$menuitem[3]);
  231:     }
  232:     return '<li><a' 
  233:            # highlighting for new messages
  234:            . ( $$menuitem[4] eq 'newmsg' ? ' class="LC_new_message"' : '') 
  235:            . qq| href="$$menuitem[0]" target="_top">$link</a></li>|;
  236: }
  237: 
  238: # primary_menu() evaluates @primary_menu and returns a two item array,
  239: # with the array elements containing XHTML for the left and right sides of 
  240: # the menu that contains the following links:
  241: # Personal, About, Message, Roles, Help, Logout
  242: # @primary_menu is filled within the BEGIN block of this module with 
  243: # entries from mydesk.tab
  244: sub primary_menu {
  245:     my ($crstype) = @_;
  246:     my (%menu);
  247:     # each element of @primary contains following array:
  248:     # (link url, icon path, alt text, link text, condition, position)
  249:     my $public;
  250:     if ((($env{'user.name'} eq 'public') && ($env{'user.domain'} eq 'public'))
  251:         || (($env{'user.name'} eq '') && ($env{'user.domain'} eq ''))) {
  252:         $public = 1;
  253:     }
  254:     my $rolecount;
  255:     if (($crstype eq 'Placement') && (!$env{'request.role.adv'})) {
  256:         my $update=$env{'user.update.time'};
  257:         if (!$update) {
  258:             $update = $env{'user.login.time'};
  259:         }
  260:         my %roles_in_env;
  261:         $rolecount = &Apache::lonroles::roles_from_env(\%roles_in_env,$update);
  262:     }
  263:     foreach my $menuitem (@primary_menu) {
  264:         # evaluate conditions 
  265:         next if    ref($menuitem)       ne 'ARRAY';    #
  266:         next if    $$menuitem[4]        eq 'nonewmsg'  # show links depending on
  267:                 && &Apache::lonmsg::mynewmail();       # whether a new msg 
  268:         next if    $$menuitem[4]        eq 'newmsg'    # arrived or not
  269:                 && !&Apache::lonmsg::mynewmail();      # 
  270:         next if    $$menuitem[4]        !~ /public/    ##we've a public user,
  271:                 && $public;                            ##who should not see all
  272:                                                        ##links
  273:         next if    $$menuitem[4]        eq 'onlypublic'# hide links which are 
  274:                 && !$public;                           # only visible to public
  275:                                                        # users
  276:         next if    $$menuitem[4]        eq 'roles'     ##show links depending on
  277:                 && &Apache::loncommon::show_course();  ##term 'Courses' or 
  278:         next if    $$menuitem[4]        eq 'courses'   ##'Roles' wanted
  279:                 && !&Apache::loncommon::show_course(); ##
  280:         my $title = $menuitem->[3];
  281:         if (($crstype eq 'Placement') && (!$env{'request.role.adv'})) {
  282:             if ($menuitem->[4] eq 'courses') {
  283:                 next unless ($rolecount>1);
  284:             } else {
  285:                 next unless (($title eq 'Personal') || ($title eq 'Logout'));
  286:             }
  287:         }
  288:         my $position = $menuitem->[5];
  289:         if ($position eq '') {
  290:             $position = 'right';
  291:         }
  292:         if (defined($primary_submenu{$title})) {
  293:             my ($link,$target);
  294:             if ($menuitem->[0] ne '') {
  295:                 $link = $menuitem->[0];
  296:                 $target = '_top';
  297:             } else {
  298:                 $link = '#';
  299:             }
  300:             my @primsub;
  301:             if (ref($primary_submenu{$title}) eq 'ARRAY') {
  302:                 foreach my $item (@{$primary_submenu{$title}}) {
  303:                     next if (($crstype eq 'Placement') && (!$env{'request.role.adv'}));
  304:                     next if (($item->[2] eq 'wishlist') && (!$env{'user.adv'}));
  305:                     next if ((($item->[2] eq 'portfolio') ||
  306:                              ($item->[2] eq 'blog')) &&
  307:                              (!&Apache::lonnet::usertools_access('','',$item->[2],
  308:                                                            undef,'tools')));
  309:                     push(@primsub,$item);
  310:                 }
  311:                 if ($title eq 'Personal' && $env{'user.name'} && $env{'user.domain'} ) {
  312:                     $title = &Apache::loncommon::plainname($env{'user.name'},$env{'user.domain'});
  313:                 } else {
  314:                     $title = &mt($title);
  315:                 }
  316:                 if (@primsub > 0) {
  317:                     $menu{$position} .= &create_submenu($link,$target,$title,\@primsub,1);
  318:                 } elsif ($link) {
  319:                     $menu{$position} .= '<li><a href="'.$link.'" target="'.$target.'">'.$title.'</a></li>';
  320:                 }
  321:             }
  322:         } elsif ($$menuitem[3] eq 'Help') { # special treatment for helplink
  323:             next if ($crstype eq 'Placement'); 
  324:             if ($public) {
  325:                 my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
  326:                 my $defdom = &Apache::lonnet::default_login_domain();
  327:                 my $to = &Apache::loncommon::build_recipient_list(undef,
  328:                                                                   'helpdeskmail',
  329:                                                                   $defdom,$origmail);
  330:                 if ($to ne '') {
  331:                     $menu{$position} .= &prep_menuitem($menuitem); 
  332:                 }
  333:             } else {
  334:                 $menu{$position} .= '<li>'.&Apache::loncommon::top_nav_help('Help').'</li>';
  335:             }
  336:         } else {
  337:             $menu{$position} .= prep_menuitem($menuitem);
  338:         }
  339:     }
  340:     my @output = ('','');
  341:     if ($menu{'left'} ne '') {
  342:         $output[0] = "<ol class=\"LC_primary_menu LC_floatleft\">$menu{'left'}</ol>";
  343:     }
  344:     if ($menu{'right'} ne '') {
  345:         $output[1] = "<ol class=\"LC_primary_menu LC_floatright LC_right\">$menu{'right'}</ol>";
  346:     }
  347:     return @output;
  348: }
  349: 
  350: #returns hashref {user=>'',dom=>''} containing:
  351: #   own name, domain if user is au
  352: #   name, domain of parent author if user is ca or aa
  353: #empty return if user is not an author or not on homeserver
  354: #
  355: #TODO this should probably be moved somewhere more central
  356: #since it can be used by different parts of the system
  357: sub getauthor{
  358:     return unless $env{'request.role'}=~/^(ca|aa|au)/; #nothing to do if user isn't some kind of author
  359: 
  360:                         #co- or assistent author?
  361:     my ($dom, $user) = ($env{'request.role'} =~ /^(?:ca|aa)\.\/($match_domain)\/($match_username)$/)
  362:                        ? ($1, $2) #domain, username of the parent author
  363:                        : @env{ ('request.role.domain', 'user.name') }; #own domain, username
  364: 
  365:     # current server == home server?
  366:     my $home =  &Apache::lonnet::homeserver($user,$dom);
  367:     foreach (&Apache::lonnet::current_machine_ids()){
  368:         return {user => $user, dom => $dom} if $_ eq $home;
  369:     }
  370: 
  371:     # if wrong server
  372:     return;
  373: }
  374: 
  375: sub secondary_menu {
  376:     my ($httphost) = @_;
  377:     my $menu;
  378: 
  379:     my $crstype = &Apache::loncommon::course_type();
  380:     my $crs_sec = $env{'request.course.id'} . ($env{'request.course.sec'} 
  381:                                                ? "/$env{'request.course.sec'}"
  382:                                                : '');
  383:     my $canedit       = &Apache::lonnet::allowed('mdc', $env{'request.course.id'});
  384:     my $canvieweditor = &Apache::lonnet::allowed('cev', $env{'request.course.id'});
  385:     my $canviewroster = $env{'course.'.$env{'request.course.id'}.'.student_classlist_view'};
  386:     if ($canviewroster eq 'disabled') {
  387:         undef($canviewroster);
  388:     }
  389:     my $canviewgrps   = &Apache::lonnet::allowed('vcg', $crs_sec); 
  390:     my $canmodifyuser = &Apache::lonnet::allowed('cst', $crs_sec);
  391:     my $canviewusers  = &Apache::lonnet::allowed('vcl', $crs_sec); 
  392:     my $canviewwnew   = &Apache::lonnet::allowed('whn', $crs_sec); 
  393:     my $canviewpara   = &Apache::lonnet::allowed('vpa', $crs_sec);
  394:     my $canmodpara    = &Apache::lonnet::allowed('opa', $crs_sec);
  395:     my $canvgr        = &Apache::lonnet::allowed('vgr', $crs_sec);
  396:     my $canmgr        = &Apache::lonnet::allowed('mgr', $crs_sec); 
  397:     my $author        = &getauthor();
  398: 
  399:     my ($cdom,$cnum,$showsyllabus,$showfeeds,$showresv,$grouptools);
  400:     $grouptools = 0;
  401:     if ($env{'request.course.id'}) {
  402:         $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
  403:         $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
  404:         if ($canedit || $canvieweditor)  {
  405:             $showsyllabus = 1;
  406:             $showfeeds = 1;
  407:         } else {
  408:             unless (&Apache::lonnet::is_on_map("public/$cdom/$cnum/syllabus")) {
  409:                 if (($env{'course.'.$env{'request.course.id'}.'.externalsyllabus'}) ||
  410:                     ($env{'course.'.$env{'request.course.id'}.'.uploadedsyllabus'}) ||
  411:                     ($env{'course.'.$env{'request.course.id'}.'.updatedsyllabus'}) ||
  412:                     ($env{'request.course.syllabustime'})) {
  413:                     $showsyllabus = 1;
  414:                 }
  415:             }
  416:             if ($env{'request.course.feeds'}) {
  417:                 $showfeeds = 1;
  418:             }
  419:         }
  420:         unless ($canmgr || $canvgr) {
  421:             my %slots = &Apache::lonnet::get_course_slots($cnum,$cdom);
  422:             if (keys(%slots) > 0) {
  423:                 $showresv = 1;
  424:             }
  425:         }
  426:         my %groups = &Apache::lonnet::get_active_groups(
  427:                      $env{'user.domain'}, $env{'user.name'},$cdom,$cnum);
  428:         if (%groups) {
  429:             foreach my $group (keys(%groups)) {
  430:                 my @privs = split(/:/,$env{"user.priv.$env{'request.role'}./$cdom/$cnum/$group"});
  431:                 shift(@privs);
  432:                 if (@privs) {
  433:                     $grouptools ++;
  434:                 }
  435:             }
  436:         }
  437:     }
  438: 
  439:     my ($canmodifycoauthor); 
  440:     if ($env{'request.role'} eq "au./$env{'user.domain'}/") {
  441:         my $extent = "$env{'user.domain'}/$env{'user.name'}";
  442:         if ((&Apache::lonnet::allowed('cca',$extent)) ||
  443:             (&Apache::lonnet::allowed('caa',$extent))) {
  444:             $canmodifycoauthor = 1;
  445:         }
  446:     }
  447:     my ($roleswitcher_js,$roleswitcher_form);
  448: 
  449:     foreach my $menuitem (@secondary_menu) {
  450:         # evaluate conditions 
  451:         next if    ref($menuitem)  ne 'ARRAY';
  452:         next if (($crstype eq 'Placement') && ($$menuitem[3] ne 'Roles') && (!$env{'request.role.adv'}));
  453:         next if    $$menuitem[4]   ne 'always'
  454:                 && ($$menuitem[4]   ne 'author' && $$menuitem[4] ne 'cca')
  455:                 && !$env{'request.course.id'};
  456:         next if    $$menuitem[4]   =~ /^crsedit/
  457:                 && (!$canedit && !$canvieweditor);
  458:         next if    $$menuitem[4]  eq 'nvgr'
  459:                 && $canvgr;
  460:         next if    $$menuitem[4]  eq 'vgr'
  461:                 && !$canvgr;
  462:         next if    $$menuitem[4]   eq 'viewusers'
  463:                 && !$canmodifyuser && !$canviewusers;
  464:         next if    $$menuitem[4]   eq 'noviewusers'
  465:                 && ($canmodifyuser || $canviewusers || !$canviewroster);
  466:         next if    $$menuitem[4]   eq 'mgr'
  467:                 && !$canmgr;
  468:         next if    $$menuitem[4]   eq 'showresv'
  469:                 && !$showresv;
  470:         next if    $$menuitem[4]   eq 'whn'
  471:                 && !$canviewwnew;
  472:         next if    $$menuitem[4]   eq 'params'
  473:                 && (!$canmodpara && !$canviewpara);
  474:         next if    $$menuitem[4]   =~ /showgroups$/
  475:                 && !$canviewgrps
  476:                 && !$grouptools;
  477:         next if    $$menuitem[4]   eq 'showsyllabus'
  478:                 && !$showsyllabus;
  479:         next if    $$menuitem[4]   eq 'showfeeds'
  480:                 && !$showfeeds;
  481:         next if    $$menuitem[4]    eq 'author'
  482:                 && !$author;
  483:         next if    $$menuitem[4]    eq 'cca'
  484:                 && !$canmodifycoauthor;
  485: 
  486:         if ($$menuitem[3] eq 'Roles' && $env{'request.course.id'}) {
  487:             # special treatment for role selector
  488:             ($roleswitcher_js,$roleswitcher_form,my $switcher) =
  489:                 &roles_selector(
  490:                         $env{'course.' . $env{'request.course.id'} . '.domain'},
  491:                         $env{'course.' . $env{'request.course.id'} . '.num'},
  492:                         $httphost
  493:                 );
  494:             $menu .= $switcher;
  495:         } else {
  496:             if ($$menuitem[3] eq 'Syllabus' && $env{'request.course.id'}) {
  497:                 my $url = $$menuitem[0];
  498:                 $url =~ s{\[cdom\]/\[cnum\]}{$cdom/$cnum};
  499:                 if (&Apache::lonnet::is_on_map($url)) {
  500:                     unless ($$menuitem[0] =~ /(\?|\&)register=1/) {
  501:                         $$menuitem[0] .= (($$menuitem[0]=~/\?/)? '&' : '?').'register=1';
  502:                     }
  503:                 } else {
  504:                     $$menuitem[0] =~ s{\&?register=1}{};
  505:                 }
  506:                 if ($env{'course.'.$env{'request.course.id'}.'.externalsyllabus'} =~ m{^http://}) {
  507:                     if (($ENV{'SERVER_PORT'} == 443) || ($env{'request.use_absolute'} =~ m{^https://})) {
  508:                         unless ($$menuitem[0] =~ m{^https?://}) {
  509:                             $$menuitem[0] = 'http://'.$ENV{'SERVER_NAME'}.$$menuitem[0];
  510:                         }
  511:                         unless ($$menuitem[0] =~ /(\&|\?)usehttp=1/) {
  512:                             $$menuitem[0] .= (($$menuitem[0]=~/\?/) ? '&' : '?').'usehttp=1';
  513:                         }
  514:                     }
  515:                 }
  516:             }
  517:             $menu .= &prep_menuitem(\@$menuitem);
  518:         }
  519:     }
  520:     if ($menu =~ /\[url\].*\[symb\]/) {
  521:         my $escurl  = &escape( &Apache::lonenc::check_encrypt(
  522:                              $env{'request.noversionuri'}));
  523: 
  524:         my $escsymb = &escape( &Apache::lonenc::check_encrypt(
  525:                              $env{'request.symb'})); 
  526: 
  527:         if (    $env{'request.state'} eq 'construct'
  528:             and (   $env{'request.noversionuri'} eq '' 
  529:                  || !defined($env{'request.noversionuri'}))) 
  530:         {
  531:             my $londocroot = $Apache::lonnet::perlvar{'lonDocRoot'};
  532:             ($escurl = $env{'request.filename'}) =~ s{^\Q$londocroot\E}{};
  533:             $escurl  = &escape($escurl);
  534:         }    
  535:         $menu =~ s/\[url\]/$escurl/g;
  536:         $menu =~ s/\[symb\]/$escsymb/g;
  537:     }
  538:     $menu =~ s/\[uname\]/$$author{user}/g;
  539:     $menu =~ s/\[udom\]/$$author{dom}/g;
  540:     if ($showsyllabus || $showfeeds) {
  541:         $menu =~ s/\[cnum\]/$cnum/g;
  542:         $menu =~ s/\[cdom\]/$cdom/g;
  543:     }
  544:     if ($menu) {
  545:         $menu = "<ul id=\"LC_secondary_menu\">$menu</ul>";
  546:     }
  547:     if ($roleswitcher_form) {
  548:         $menu .= "\n$roleswitcher_js\n$roleswitcher_form";
  549:     }
  550:     return $menu;
  551: }
  552: 
  553: sub create_submenu {
  554:     my ($link,$target,$title,$submenu,$translate,$addclass) = @_;
  555:     return unless (ref($submenu) eq 'ARRAY');
  556:     my $disptarget;
  557:     if ($target ne '') {
  558:         $disptarget = ' target="'.$target.'"';
  559:     }
  560:     my $menu = '<li class="LC_hoverable '.$addclass.'">'.
  561:                '<a href="'.$link.'"'.$disptarget.'>'.
  562:                '<span class="LC_nobreak">'.$title.
  563:                '<span class="LC_fontsize_small" style="font-weight:normal;">'.
  564:                ' &#9660;</span></span></a>'.
  565:                '<ul>';
  566: 
  567:     # $link and $title are only used in the initial string written in $menu
  568:     # as seen above, not needed for nested submenus
  569:     $menu .= &build_submenu($target, $submenu, $translate, '1');
  570:     $menu .= '</ul></li>';
  571: 
  572:     return $menu;
  573: }
  574: 
  575: # helper routine for create_submenu
  576: # build the dropdown (and nested submenus) recursively
  577: # see perldoc create_submenu documentation for further information
  578: sub build_submenu {
  579:     my ($target, $submenu, $translate, $first_level) = @_; 
  580:     unless (@{$submenu}) {
  581:         return '';
  582:     }
  583: 
  584:     my $menu = '';
  585:     my $count = 0;
  586:     my $numsub = scalar(@{$submenu});
  587:     foreach my $item (@{$submenu}) {
  588:         $count ++;
  589:         if (ref($item) eq 'ARRAY') {
  590:             my $href = $item->[0];
  591:             my $bordertop;
  592:             my $borderbot;
  593:             my $title;
  594: 
  595:             if ($translate) {
  596:                  $title = &mt($item->[1]);
  597:             } else {
  598:                 $title = $item->[1];
  599:             }
  600: 
  601:             if ($count == 1 && !$first_level) {
  602:                 $bordertop = 'border-top: 1px solid black;';
  603:             }
  604:             if ($count == $numsub) {
  605:                 $borderbot = 'border-bottom: 1px solid black;';
  606:             }
  607: 
  608:             # href is a reference to another submenu
  609:             if (ref($href) eq 'ARRAY') {
  610:                 $menu .= '<li style="margin:0;padding:0;'.$bordertop . $borderbot . '">';
  611:                 $menu .= '<p><span class="LC_primary_menu_innertitle">'
  612: 					. $title . '</span><span class="LC_primary_menu_innerarrow">&#9654;</span></p>';
  613:                 $menu .= '<ul>';
  614:                 $menu .= &build_submenu($target, $href, $translate);
  615:                 $menu .= '</ul>';
  616:                 $menu .= '</li>';    
  617:             } else {    # href is the actual hyperlink and does not represent another submenu
  618:                         # for the current menu title
  619:                 if ($href =~ /(aboutme|rss\.html)$/) {
  620:                     next unless (($env{'user.name'} ne '') && ($env{'user.domain'} ne ''));
  621:                     $href =~ s/\[domain\]/$env{'user.domain'}/g;
  622:                     $href =~ s/\[user\]/$env{'user.name'}/g;
  623:                 }
  624:                 unless (($href eq '') || ($href =~ /^\#/)) {
  625:                     $target = ' target="_top"';
  626:                 }
  627: 
  628:                 $menu .= '<li style="margin:0;padding:0;'. $bordertop . $borderbot .'">';
  629:                 $menu .= '<a href="'.$href.'"'.$target.'>' .  $title . '</a>';
  630:                 $menu .= '</li>';
  631:             }
  632:         }
  633:     }
  634:     return $menu;
  635: }
  636: 
  637: sub innerregister {
  638:     my ($forcereg,$bread_crumbs,$group,$pagebuttonshide,$hostname) = @_;
  639:     my $const_space = ($env{'request.state'} eq 'construct');
  640:     my $is_const_dir = 0;
  641: 
  642:     if ($env{'request.noversionuri'} =~ m{^/res/adm/pages/}) { return ''; }
  643: 
  644:     $env{'request.registered'} = 1;
  645: 
  646:     undef(@inlineremote);
  647: 
  648:     my ($mapurl,$resurl,$crstype);
  649: 
  650:     if ($env{'request.course.id'}) {
  651: #
  652: #course_type:  Course, Community, or Placement
  653: #
  654:         $crstype = &Apache::loncommon::course_type();
  655:         if ($env{'request.symb'}) {
  656:             ($mapurl, my $rid, $resurl) = &Apache::lonnet::decode_symb(&Apache::lonnet::symbread());
  657:             my $coursetitle = $env{'course.'.$env{'request.course.id'}.'.description'};
  658: 
  659:             my $maptitle = &Apache::lonnet::gettitle($mapurl);
  660:             my $restitle = &Apache::lonnet::gettitle(&Apache::lonnet::symbread());
  661:             my @crumbs;
  662:             unless (($forcereg) &&
  663:                     ($env{'request.noversionuri'} eq '/adm/navmaps') &&
  664:                     ($mapurl eq $env{'course.'.$env{'request.course.id'}.'.url'}) ||
  665:                     (($crstype eq 'Placement') && (!$env{'request.role.adv'}))) {
  666:                 @crumbs = ({text  => $crstype.' Contents', 
  667:                             href  => "Javascript:gopost('/adm/navmaps','')"});
  668:             }
  669:             if ($mapurl ne $env{'course.'.$env{'request.course.id'}.'.url'}) { 
  670:                 push(@crumbs, {text  => '...',
  671:                                no_mt => 1});
  672:             }
  673: 
  674:             unless (($crstype eq 'Placement') || (!$env{'request.role.adv'})) {
  675:                 push @crumbs, {text => $maptitle, no_mt => 1} if ($maptitle 
  676:                                                            && $maptitle ne 'default.sequence' 
  677:                                                            && $maptitle ne $coursetitle);
  678:             }
  679: 
  680:             push @crumbs, {text => $restitle, no_mt => 1} if $restitle; 
  681:             my @tools;
  682:             if ($env{'request.filename'} =~ /\.page$/) {
  683:                 my %breadcrumb_tools = &Apache::lonhtmlcommon::current_breadcrumb_tools();
  684:                 if (ref($breadcrumb_tools{'tools'}) eq 'ARRAY') {
  685:                     @tools = @{$breadcrumb_tools{'tools'}};
  686:                 }
  687:             }
  688:             &Apache::lonhtmlcommon::clear_breadcrumbs();
  689:             &Apache::lonhtmlcommon::add_breadcrumb(@crumbs);
  690:             if (@tools) {
  691:                 &Apache::lonhtmlcommon::add_breadcrumb_tool('tools',@tools);
  692:             }
  693:         } else {
  694:             $resurl = $env{'request.noversionuri'};
  695:             my $courseurl = &Apache::lonnet::courseid_to_courseurl($env{'request.course.id'});
  696:             my $title = &mt('View Resource');
  697:             if ($resurl =~ m{^\Q/uploaded$courseurl/supplemental/\E(default|\d+)/}) {
  698:                 &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['folderpath','title']);
  699:                 &Apache::lonhtmlcommon::clear_breadcrumbs();
  700:                 if ($env{'form.title'}) {
  701:                     $title = $env{'form.title'};
  702:                 }
  703:                 my $trail;
  704:                 if ($env{'form.folderpath'}) {
  705:                     &prepare_functions($resurl,$forcereg,$group,undef,undef,1,$hostname);
  706:                     ($trail) =
  707:                         &Apache::lonhtmlcommon::docs_breadcrumbs(undef,$crstype,undef,$title,1);
  708:                 } else {
  709:                     &Apache::lonhtmlcommon::add_breadcrumb(
  710:                     {text  => "Supplemental $crstype Content",
  711:                      href  => "javascript:gopost('/adm/supplemental','')"});
  712:                     $title = &mt('View Resource');
  713:                     ($trail) = 
  714:                         &Apache::lonhtmlcommon::docs_breadcrumbs(undef,$crstype,undef,$title,1);
  715:                 }
  716:                 return $trail;
  717:             } elsif ($resurl =~ m{^\Q/uploaded$courseurl/portfolio/syllabus/}) {
  718:                 &Apache::lonhtmlcommon::clear_breadcrumbs();
  719:                 &prepare_functions('/public'.$courseurl."/syllabus",
  720:                                    $forcereg,$group,undef,undef,1,$hostname);
  721:                 $title = &mt('Syllabus File');
  722:                 my ($trail) =
  723:                     &Apache::lonhtmlcommon::docs_breadcrumbs(undef,$crstype,undef,$title,1,$hostname);
  724:                 return $trail;
  725:             }
  726:             unless ($env{'request.state'} eq 'construct') {
  727:                 &Apache::lonhtmlcommon::clear_breadcrumbs();
  728:                 &Apache::lonhtmlcommon::add_breadcrumb({text => 'View Resource'});
  729:             }
  730:         }
  731:     } elsif (! $const_space){
  732:         #a situation when we're looking at a resource outside of context of a 
  733:         #course or construction space (e.g. with cumulative rights)
  734:         &Apache::lonhtmlcommon::clear_breadcrumbs();
  735:         unless ($env{'request.noversionuri'} =~ m{^/adm/$match_domain/$match_username/aboutme$}) {
  736:             &Apache::lonhtmlcommon::add_breadcrumb({text => 'View Resource'});
  737:         }
  738:     }
  739: # =============================================================================
  740: # ============================ This is for URLs that actually can be registered
  741:     return '' unless ( ($env{'request.noversionuri'}!~m{^/(res/)*adm/}) 
  742:                        || $forcereg );
  743:     my ($cdom,$cnum,%perms,$cfile,$switchserver,$home,$forceedit,
  744:         $forceview,$editbutton);
  745:     if (($resurl =~ m{^/?adm/($match_domain)/($match_username)/aboutme$}) ||
  746:         ($env{'request.role'} !~/^(aa|ca|au)/)) {
  747:         $editbutton = &prepare_functions($resurl,$forcereg,$group,'','','',$hostname);
  748:     }
  749:     if ($editbutton eq '') {
  750:         $editbutton = &clear(6,1);
  751:     }
  752: 
  753: #
  754: # This applies in course context
  755: #
  756:     if ($env{'request.course.id'}) {
  757:         $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
  758:         $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
  759:         $perms{'mdc'} = &Apache::lonnet::allowed('mdc',$env{'request.course.id'});
  760:         $perms{'cev'} = &Apache::lonnet::allowed('cev',$env{'request.course.id'});
  761:         my @privs;
  762:         if ($env{'request.symb'} ne '') {
  763:              if ($env{'request.filename'}=~/$LONCAPA::assess_re/) {
  764:                  push(@privs,('mgr','vgr'));
  765:              }
  766:              push(@privs,('opa','vpa'));
  767:         }
  768:         foreach my $priv (@privs) {
  769:             $perms{$priv} = &Apache::lonnet::allowed($priv,$env{'request.course.id'});
  770:             if (!$perms{$priv} && $env{'request.course.sec'} ne '') {
  771:                 $perms{$priv} = 
  772:                     &Apache::lonnet::allowed($priv,"$env{'request.course.id'}/$env{'request.course.sec'}");
  773:             }
  774:         }
  775: #
  776: # Determine whether or not to show Grades and Submissions buttons
  777: #
  778:         if ($env{'request.symb'} ne '' &&
  779:             $env{'request.filename'}=~/$LONCAPA::assess_re/) {
  780:             if ($perms{'mgr'}) {
  781:                 &switch('','',7,2,'pgrd.png','Content Grades','grades[_4]',
  782:                         "gocmd('/adm/grades','gradingmenu')",
  783:                         'Content Grades');
  784:             } elsif ($perms{'vgr'}) {
  785:                 &switch('','',7,2,'subm.png','Content Submissions','missions[_1]',
  786:                         "gocmd('/adm/grades','submission')",
  787:                         'Content Submissions');
  788:              }
  789:         }
  790:         if (($env{'request.symb'} ne '') && (($perms{'opa'}) || ($perms{'vpa'}))) {
  791:             &switch('','',7,3,'pparm.png','Content Settings','parms[_2]',
  792:                     "gocmd('/adm/parmset','set')",
  793:                     'Content Settings');
  794: 	}
  795: # End grades/submissions check
  796: 
  797: #
  798: # This applies to items inside a folder/page modifiable in the course.
  799: #
  800:         if (($env{'request.symb'}=~/^uploaded/) && (($perms{'mdc'}) || ($perms{'cev'}))) {
  801:             my $text = 'Edit Folder';
  802:             if (($mapurl =~ /\.page$/) ||
  803:                 ($env{'request.symb'}=~
  804:                      m{uploaded/$cdom/$cnum/default_\d+\.page$}))  {
  805:                 $text = 'Edit Page';
  806:             }
  807:             &switch('','',7,4,'docs-22x22.png',$text,'parms[_2]',
  808:                     "gocmd('/adm/coursedocs','direct')",
  809:                     'Folder/Page Content');
  810:         }
  811: # End modifiable folder/page container check
  812:     }
  813: # End course context
  814: 
  815: # Prepare the rest of the buttons
  816:         my ($menuitems,$got_prt,$got_wishlist);
  817:         if ($const_space) {
  818: #
  819: # We are in construction space
  820: #
  821: 
  822:             my $londocroot = $Apache::lonnet::perlvar{'lonDocRoot'};
  823: 	    my ($udom,$uname,$thisdisfn) =
  824: 		($env{'request.filename'}=~m{^\Q$londocroot/priv/\E([^/]+)/([^/]+)/(.*)$});
  825:             my $currdir = '/priv/'.$udom.'/'.$uname.'/'.$thisdisfn;
  826:             if ($currdir =~ m-/$-) {
  827:                 $is_const_dir = 1;
  828:                 if ($thisdisfn eq '') {
  829:                     unless (($env{'request.course.id'}) && 
  830:                             ($env{'course.'.$env{'request.course.id'}.'.num'} eq $uname) &&
  831:                             ($env{'course.'.$env{'request.course.id'}.'.domain'} eq $udom)) { 
  832:                         $is_const_dir = 2;
  833:                     }
  834:                 }
  835:             } else {
  836:                 $currdir =~ s|[^/]+$||;
  837: 		my $cleandisfn = &Apache::loncommon::escape_single($thisdisfn);
  838: 		my $esc_currdir = &Apache::loncommon::escape_single($currdir);
  839: #
  840: # Probably should be in mydesk.tab
  841: #
  842:                 $menuitems=(<<ENDMENUITEMS);
  843: s&6&1&list.png&Directory&dir[_1]&golist('$esc_currdir')&List current directory
  844: s&6&2&rtrv.png&Retrieve&version[_1]&gocstr('/adm/retrieve','/priv/$udom/$uname/$cleandisfn')&Retrieve old version
  845: s&6&3&pub.png&Publish&resource[_3]&gocstr('/adm/publish','/priv/$udom/$uname/$cleandisfn')&Publish this resource
  846: s&7&1&del.png&Delete&resource[_2]&gocstr('/adm/cfile?action=delete','/priv/$udom/$uname/$cleandisfn')&Delete this resource
  847: s&7&2&prt.png&Print&printout[_1]&gocstr('/adm/printout','/priv/$udom/$uname/$cleandisfn')&Prepare a printable document
  848: ENDMENUITEMS
  849:             }
  850:                 if (ref($bread_crumbs) eq 'ARRAY') {
  851:                     &Apache::lonhtmlcommon::clear_breadcrumbs();
  852:                     foreach my $crumb (@{$bread_crumbs}){
  853:                         &Apache::lonhtmlcommon::add_breadcrumb($crumb);
  854:                     }
  855:                 }
  856:         } elsif ( defined($env{'request.course.id'}) && 
  857: 		 $env{'request.symb'} ne '' ) {
  858: #
  859: # We are in a course and looking at a registered URL
  860: # Should probably be in mydesk.tab
  861: #
  862:             $menuitems = "c&3&1";
  863:             if (($crstype ne 'Placement') || ($env{'request.role.adv'})) {
  864:                 $menuitems.="
  865: s&2&1&back.png&&&gopost('/adm/flip','back:'+currentURL)&Previous content resource&&1
  866: s&2&3&forw.png&&&gopost('/adm/flip','forward:'+currentURL)&Next content resource&&3";
  867:             } else {
  868: # Suppress display of backward arrow for Placement Tests
  869: # Suppress display of forward arrow for Placement Tests if this is the last resource.
  870:                 my $showforw = 1;
  871:                 if ($env{'request.symb'}) {
  872:                     my $navmap = Apache::lonnavmaps::navmap->new();
  873:                     if (ref($navmap)) {
  874:                         if (&Apache::lonplacementtest::is_lastres($env{'request.symb'},$navmap)) {
  875:                             $showforw = 0;
  876:                         }
  877:                     }
  878:                 }
  879:                 if ($showforw) {
  880:                     $menuitems.="
  881: s&2&3&forw.png&&&gopost('/adm/flip','forward:'+currentURL)&Next content resource&&3";
  882:                 }
  883:             }
  884: 	    $menuitems .= (<<ENDMENUITEMS);
  885: 
  886: c&6&3
  887: c&8&1
  888: c&8&2
  889: s&8&3&prt.png&Print&printout[_1]&gopost('/adm/printout',currentURL)&Prepare a printable document
  890: ENDMENUITEMS
  891:             $got_prt = 1;
  892:             if (($env{'user.adv'}) && ($env{'request.uri'} =~ /^\/res/)
  893:                 && (!$env{'request.enc'})) {
  894:                 my ($cnum,$cdom) = &Apache::loncommon::crsauthor_url($env{'request.uri'});
  895:                 unless ($cnum) {
  896:                     # wishlist is only available for users with access to resource-pool
  897:                     # and links can only be set for resources within the resource-pool
  898:                     $menuitems .= (<<ENDMENUITEMS);
  899: s&9&1&wishlist-link.png&Stored Links&wishlistlink[_2]&set_wishlistlink()&Save a link for this resource in my personal Stored Links repository&&1
  900: ENDMENUITEMS
  901:                     $got_wishlist = 1;
  902:                 }
  903:             }
  904: 
  905: my $currentURL = &Apache::loncommon::get_symb();
  906: my ($symb_old,$symb_old_enc) = &Apache::loncommon::clean_symb($currentURL);
  907: my $annotation = &Apache::loncommon::get_annotation($symb_old,$symb_old_enc);
  908: $menuitems.="s&9&3&";
  909: if(length($annotation) > 0){
  910: 	$menuitems.="anot2.png";
  911: }else{
  912: 	$menuitems.="anot.png";
  913: }
  914: $menuitems.="&Notes&&annotate()&";
  915: $menuitems.="Make notes and annotations about this resource&&1\n";
  916: my $is_mobile;
  917: if ($env{'browser.mobile'}) {
  918:     $is_mobile = 1;
  919: }
  920: 
  921:             unless ($env{'request.noversionuri'}=~/\/(bulletinboard|smppg|navmaps|syllabus|aboutme|viewclasslist|portfolio|exttools?)(\?|$)/) {
  922: 		if ((!$env{'request.enc'}) && ($env{'request.noversionuri'} !~ m{^/adm/wrapper/ext/}) && ($env{'request.noversionuri'} !~ m{^/uploaded/$match_domain/$match_courseid/docs/})) {
  923: 		    $menuitems.=(<<ENDREALRES);
  924: s&6&3&catalog.png&Info&info[_1]&catalog_info('$is_mobile')&Show Metadata
  925: ENDREALRES
  926:                 }
  927:                 unless (($env{'request.noversionuri'} =~ m{^/uploaded/$match_domain/$match_courseid/docs/}) ||
  928:                         ($env{'request.noversionuri'} =~ m{^\Q/adm/wrapper/\E(ext|uploaded)/})) {  
  929:                     $menuitems.=(<<ENDREALRES);
  930: s&8&1&eval.png&Evaluate&this[_1]&gopost('/adm/evaluate',currentURL,1)&Provide my evaluation of this resource
  931: ENDREALRES
  932:                 }
  933:                 unless ($env{'request.noversionuri'} =~ m{^\Q/adm/wrapper/\E(ext|uploaded)/}) {
  934:                     $menuitems.=(<<ENDREALRES);
  935: s&8&2&fdbk.png&Communicate&discuss[_1]&gopost('/adm/feedback',currentURL,1)&Provide feedback messages or contribute to the course discussion about this resource
  936: ENDREALRES
  937:                 }
  938: 	    }
  939:         }
  940: 	if ($env{'request.uri'} =~ /^\/res/) {
  941:             unless ($got_prt) {
  942: 	        $menuitems .= (<<ENDMENUITEMS);
  943: s&8&3&prt.png&Print&printout[_1]&gopost('/adm/printout',currentURL)&Prepare a printable document
  944: ENDMENUITEMS
  945:                 $got_prt = 1;
  946:             }
  947:             unless ($got_wishlist) {
  948:                 if (($env{'user.adv'}) && (!$env{'request.enc'})) {
  949:                     # wishlist is only available for users with access to resource-pool
  950:                     $menuitems .= (<<ENDMENUITEMS);
  951: s&9&1&wishlist-link.png&Stored Links&wishlistlink[_2]&set_wishlistlink()&Save a link for this resource in your personal Stored Links repository&&1
  952: ENDMENUITEMS
  953:                     $got_wishlist = 1;
  954:                 }
  955: 	    }
  956:         }
  957:         my $buttons='';
  958:         foreach (split(/\n/,$menuitems)) {
  959: 	    my ($command,@rest)=split(/\&/,$_);
  960:             my $idx=10*$rest[0]+$rest[1];
  961:             if (&hidden_button_check() eq 'yes') {
  962:                 if ($idx == 21 ||$idx == 23) {
  963:                     $buttons.=&switch('','',@rest);
  964:                 } else {
  965:                     $buttons.=&clear(@rest);
  966:                 }
  967:             } else {  
  968:                 if ($command eq 's') {
  969: 	            $buttons.=&switch('','',@rest);
  970:                 } else {
  971:                     $buttons.=&clear(@rest);
  972:                 }
  973:             }
  974:         }
  975:         my $showprogress;
  976:         if (($crstype eq 'Placement') && (!$env{'request.role.adv'})) {
  977:             $showprogress = &placement_progress();
  978:         }
  979: 
  980: 	my $addremote=0;
  981: 	foreach (@inlineremote) { if ($_ ne '') { $addremote=1; last;} }
  982: 
  983:     if ($addremote) {
  984:         my ($countdown,$buttonshide);
  985:         if ($env{'request.filename'} =~ /\.page$/) {
  986:             my %breadcrumb_tools = &Apache::lonhtmlcommon::current_breadcrumb_tools();
  987:             if (ref($breadcrumb_tools{'tools'}) eq 'ARRAY') {
  988:                 $countdown = $breadcrumb_tools{'tools'}->[0];
  989:             }
  990:             $buttonshide = $pagebuttonshide;
  991:         } else {
  992:             $countdown = &countdown_timer();
  993:             $buttonshide = &hidden_button_check();
  994:         }
  995:         &Apache::lonhtmlcommon::clear_breadcrumb_tools();
  996: 
  997:             &Apache::lonhtmlcommon::add_breadcrumb_tool(
  998:                 'navigation', @inlineremote[21,23]);
  999: 
 1000:         if ($buttonshide eq 'yes') {
 1001:             if ($countdown) {
 1002:                 &Apache::lonhtmlcommon::add_breadcrumb_tool('tools',$countdown);
 1003:             }
 1004:             if ($showprogress) {
 1005:                 &Apache::lonhtmlcommon::add_breadcrumb_tool('tools',$showprogress);
 1006:             }
 1007:         } else {
 1008:             my @tools = @inlineremote[93,91,81,82,83];
 1009:             if ($countdown) {
 1010:                 unshift(@tools,$countdown);
 1011:             }
 1012:             &Apache::lonhtmlcommon::add_breadcrumb_tool(
 1013:                 'tools',@tools);
 1014: 
 1015:             #publish button in construction space
 1016:             if ($env{'request.state'} eq 'construct'){
 1017:                 &Apache::lonhtmlcommon::add_breadcrumb_tool(
 1018:                      'advtools', $inlineremote[63]);
 1019:             } else {
 1020:                 &Apache::lonhtmlcommon::add_breadcrumb_tool(
 1021:                      'tools', $inlineremote[63]);
 1022:             }
 1023:             &advtools_crumbs(@inlineremote);
 1024:         }
 1025:     } else {
 1026:         if ($showprogress) {
 1027:             &Apache::lonhtmlcommon::add_breadcrumb_tool('tools',$showprogress);
 1028:         }
 1029:     }
 1030:     my ($topic_help,$topic_help_text);
 1031:     if ($is_const_dir == 2) {
 1032:         if ((($ENV{'SERVER_PORT'} == 443) || 
 1033:              ($Apache::lonnet::protocol{$Apache::lonnet::perlvar{'lonHostID'}} eq 'https')) && 
 1034:             (&Apache::lonnet::usertools_access($env{'user.name'},$env{'user.domain'},'webdav'))) {
 1035:             $topic_help = 'Authoring_WebDAV,Authoring_WebDAV_Mac_10v6,Authoring_WebDAV_Mac_10v10,'.
 1036:                           'Authoring_WebDAV_Windows_v7,Authoring_WebDAV_Linux_Centos';
 1037:             $topic_help_text = 'About WebDAV access';
 1038:         }
 1039:     }
 1040:     return   &Apache::lonhtmlcommon::scripttag('', 'start')
 1041:            . &Apache::lonhtmlcommon::breadcrumbs(undef,undef,0,'','','','',$topic_help,$topic_help_text)
 1042:            . &Apache::lonhtmlcommon::scripttag('', 'end');
 1043: }
 1044: 
 1045: sub get_editbutton {
 1046:     my ($cfile,$home,$switchserver,$forceedit,$forceview,$forcereg,$hostname) = @_;
 1047:     my $jscall;
 1048:     if (($forceview) && ($env{'form.todocs'})) {
 1049:         my ($folderpath,$command,$navmap);
 1050:         if ($env{'request.symb'}) {
 1051:             $folderpath = &Apache::loncommon::symb_to_docspath($env{'request.symb'},\$navmap);
 1052:         } elsif ($env{'form.folderpath'} =~ /^supplemental/) {
 1053:             $folderpath = $env{'form.folderpath'};
 1054:             $command = '&forcesupplement=1';
 1055:         }
 1056:         $folderpath = &escape(&HTML::Entities::encode(&escape($folderpath),'<>&"'));
 1057:         $jscall = "go('/adm/coursedocs?folderpath=$folderpath$command')";
 1058:     } else {
 1059:         my $suppanchor;
 1060:         if ($env{'form.folderpath'}) {
 1061:             $suppanchor = $env{'form.anchor'};
 1062:         }
 1063:         $jscall = &Apache::lonhtmlcommon::jump_to_editres($cfile,$home,$switchserver,
 1064:                                                 $forceedit,$forcereg,$env{'request.symb'},
 1065:                                                 &escape($env{'form.folderpath'}),
 1066:                                                 &escape($env{'form.title'}),$hostname,
 1067:                                                 $env{'form.idx'},&escape($env{'form.suppurl'}),
 1068:                                                 $env{'form.todocs'},$suppanchor);
 1069:     }
 1070:     if ($jscall) {
 1071:         my $icon = 'pcstr.png';
 1072:         my $label = 'Edit';
 1073:         if ($forceview) {
 1074:             $icon = 'tolastloc.png';
 1075:             $label = 'Exit Editing';
 1076:         }
 1077:         &switch('','',6,1,$icon,$label,'resource[_2]',
 1078:                 $jscall,"Edit this resource");
 1079:         return 1;
 1080:     }
 1081:     return;
 1082: }
 1083: 
 1084: sub prepare_functions {
 1085:     my ($resurl,$forcereg,$group,$bread_crumbs,$advtools,$docscrumbs,$hostname) = @_;
 1086:     unless ($env{'request.registered'}) {
 1087:         undef(@inlineremote);
 1088:     }
 1089:     my ($cdom,$cnum,%perms,$cfile,$switchserver,$home,$forceedit,
 1090:         $forceview);
 1091: 
 1092:     if ($env{'request.course.id'}) {
 1093:         $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 1094:         $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 1095:         $perms{'mdc'} = &Apache::lonnet::allowed('mdc',$env{'request.course.id'});
 1096:     }
 1097: 
 1098:     my $editbutton = '';
 1099: #
 1100: # Determine whether or not to display 'Edit' icon/button
 1101: #
 1102:     if ($resurl =~ m{^/?adm/($match_domain)/($match_username)/aboutme$}) {
 1103:         my $file=&Apache::lonnet::declutter($env{'request.filename'});
 1104:         ($cfile,$home,$switchserver,$forceedit,$forceview) =
 1105:             &Apache::lonnet::can_edit_resource($file,$cnum,$cdom,
 1106:                 &Apache::lonnet::clutter($resurl),$env{'request.symb'},$group);
 1107:         if (($cfile) && ($home ne '') && ($home ne 'no_host')) {
 1108:             $editbutton = &get_editbutton($cfile,$home,$switchserver,
 1109:                                           $forceedit,$forceview,$forcereg);
 1110:         }
 1111:     } elsif ((!$env{'request.course.id'}) &&
 1112:              ($env{'user.author'}) && ($env{'request.filename'}) &&
 1113:              ($env{'request.role'} !~/^(aa|ca|au)/)) {
 1114: #
 1115: # Currently do not have the role of author or co-author.
 1116: # Do we have authoring privileges for the resource?
 1117: #
 1118:         my $file=&Apache::lonnet::declutter($env{'request.filename'});
 1119:         ($cfile,$home,$switchserver,$forceedit,$forceview) =
 1120:             &Apache::lonnet::can_edit_resource($file,$cnum,$cdom,
 1121:                 &Apache::lonnet::clutter($resurl),$env{'request.symb'},$group);
 1122:         if (($cfile) && ($home ne '') && ($home ne 'no_host')) {
 1123:             $editbutton = &get_editbutton($cfile,$home,$switchserver,
 1124:                                           $forceedit,$forceview,$forcereg);
 1125:         }
 1126:     } elsif ($env{'request.course.id'}) {
 1127: #
 1128: # This applies in course context
 1129: #
 1130:         if (($perms{'mdc'}) &&
 1131:             (($resurl =~ m{^/?public/$cdom/$cnum/syllabus}) ||
 1132:             ($resurl =~ m{^/?uploaded/$cdom/$cnum/portfolio/syllabus/}))) {
 1133:             if ($resurl =~ m{^/}) {
 1134:                 $cfile = $resurl;
 1135:             } else {
 1136:                 $cfile = "/$resurl";
 1137:             }
 1138:             $home = &Apache::lonnet::homeserver($cnum,$cdom);
 1139:             if ($env{'form.forceedit'}) {
 1140:                 $forceview = 1;
 1141:             } else {
 1142:                 $forceedit = 1;
 1143:             }
 1144:             $editbutton = &get_editbutton($cfile,$home,$switchserver,
 1145:                                           $forceedit,$forceview,$forcereg,
 1146:                                           $hostname);
 1147:         } elsif (($resurl eq '/adm/extresedit') &&
 1148:                  (($env{'form.symb'}) || ($env{'form.folderpath'}))) {
 1149:             ($cfile,$home,$switchserver,$forceedit,$forceview) =
 1150:             &Apache::lonnet::can_edit_resource($resurl,$cnum,$cdom,$resurl,
 1151:                                                $env{'form.symb'});
 1152:             if ($cfile ne '') {
 1153:                 $editbutton = &get_editbutton($cfile,$home,$switchserver,
 1154:                                               $forceedit,$forceview,$forcereg);
 1155:             }
 1156:         } elsif (($resurl =~ m{^/?adm/viewclasslist$}) &&
 1157:                  (&Apache::lonnet::allowed('opa',$env{'request.course.id'}))) {
 1158:             ($cfile,$home,$switchserver,$forceedit,$forceview) =
 1159:             &Apache::lonnet::can_edit_resource($resurl,$cnum,$cdom,$resurl,
 1160:                                                $env{'form.symb'});
 1161:             $editbutton = &get_editbutton($cfile,$home,$switchserver,
 1162:                                           $forceedit,$forceview,$forcereg);
 1163:         } elsif (($resurl !~ m{^/?adm/($match_domain)/($match_username)/aboutme$}) &&
 1164:                  ($resurl ne '/cgi-bin/printout.pl')) {
 1165:             if ($env{'request.filename'}) {
 1166:                 my $file=&Apache::lonnet::declutter($env{'request.filename'});
 1167:                 ($cfile,$home,$switchserver,$forceedit,$forceview) =
 1168:                     &Apache::lonnet::can_edit_resource($file,$cnum,$cdom,
 1169:                         &Apache::lonnet::clutter($resurl),$env{'request.symb'},$group);
 1170:                 if ($cfile ne '') {
 1171:                     $editbutton = &get_editbutton($cfile,$home,$switchserver,
 1172:                                                   $forceedit,$forceview,$forcereg,
 1173:                                                   $hostname);
 1174:                 }
 1175:             }
 1176:         }
 1177:     }
 1178: # End determination of 'Edit' icon/button display
 1179: 
 1180:     if ($env{'request.course.id'}) {
 1181: # This applies to about me page for users in a course
 1182:         if ($resurl =~ m{^/?adm/($match_domain)/($match_username)/aboutme$}) {
 1183:             my ($sdom,$sname) = ($1,$2);
 1184:             unless (&Apache::lonnet::is_course($sdom,$sname)) {
 1185:                 &switch('','',6,4,'mail-message-new-22x22.png','Message to user',
 1186:                         '',
 1187:                         "go('/adm/email?compose=individual&amp;recname=$sname&amp;recdom=$sdom')",
 1188:                             'Send message to specific user');
 1189:             }
 1190:             my $hideprivileged = 1;
 1191:             if (&Apache::lonnet::in_course($sdom,$sname,$cdom,$cnum,undef,
 1192:                                            $hideprivileged)) {
 1193:                 foreach my $priv ('vsa','vgr','srm') {
 1194:                     $perms{$priv} = &Apache::lonnet::allowed($priv,$env{'request.course.id'});
 1195:                     if (!$perms{$priv} && $env{'request.course.sec'} ne '') {
 1196:                         $perms{$priv} =
 1197:                             &Apache::lonnet::allowed($priv,"$env{'request.course.id'}/$env{'request.course.sec'}");
 1198:                     }
 1199:                 }
 1200:                 if ($perms{'vsa'}) {
 1201:                     &switch('','',6,5,'trck-22x22.png','Activity',
 1202:                             '',
 1203:                             "go('/adm/trackstudent?selected_student=$sname:$sdom')",
 1204:                             'View recent activity by this person');
 1205:                 }
 1206:                 if ($perms{'vgr'}) {
 1207:                     &switch('','',6,6,'rsrv-22x22.png','Reservations',
 1208:                             '',
 1209:                             "go('/adm/slotrequest?command=showresv&amp;origin=aboutme&amp;uname=$sname&amp;udom=$sdom')",
 1210:                             'Slot reservation history');
 1211:                 }
 1212:                 if ($perms{'srm'}) {
 1213:                     &switch('','',6,7,'contact-new-22x22.png','Records',
 1214:                             '',
 1215:                             "go('/adm/email?recordftf=retrieve&amp;recname=$sname&amp;recdom=$sdom')",
 1216:                             'Add records');
 1217:                 }
 1218:             }
 1219:         }
 1220:         if (($env{'form.folderpath'} =~ /^supplemental/) &&
 1221:             (&Apache::lonnet::allowed('mdc',$env{'request.course.id'})) &&
 1222:             (($resurl =~ m{^/adm/wrapper/ext/}) ||
 1223:              ($resurl =~ m{^/adm/$cdom/$cnum/\d+/exttools?$}) ||
 1224:              ($resurl =~ m{^/uploaded/$cdom/$cnum/supplemental/}) ||
 1225:              ($resurl eq '/adm/supplemental') ||
 1226:              ($resurl =~ m{^/public/$cdom/$cnum/syllabus$}) ||
 1227:              ($resurl =~ m{^/adm/$match_domain/$match_username/aboutme$}))) {
 1228:             my @folders=split('&',$env{'form.folderpath'});
 1229:             if ((@folders > 2) || ($resurl ne '/adm/supplemental')) {
 1230:                 my $suppanchor;
 1231:                 if ($resurl =~ m{^/adm/wrapper/ext/}) {
 1232:                     $suppanchor = $env{'form.anchor'};
 1233:                 }
 1234:                 my $esc_path=&escape(&HTML::Entities::encode(&escape($env{'form.folderpath'}),'<>&"'));
 1235:                 my $link = '/adm/coursedocs?command=direct&amp;forcesupplement=1&amp;supppath='.
 1236:                            "$esc_path&amp;anchor=$suppanchor";
 1237:                 if ($env{'request.use_absolute'} ne '') {
 1238:                     $link = $env{'request.use_absolute'}.$link;
 1239:                 }
 1240:                 &switch('','',7,4,'docs-22x22.png','Edit Folder','parms[_2]',
 1241:                         "location.href='$link'",'Folder/Page Content');
 1242:             }
 1243:         }
 1244:     }
 1245: 
 1246: # End checking for items for about me page for users in a course
 1247:     if ($docscrumbs) {
 1248:         &Apache::lonhtmlcommon::clear_breadcrumb_tools();
 1249:         &advtools_crumbs(@inlineremote);
 1250:         return $editbutton;
 1251:     } elsif ($env{'request.registered'}) {
 1252:         return $editbutton;
 1253:     } else {
 1254:         if (ref($bread_crumbs) eq 'ARRAY') {
 1255:             if (@inlineremote > 0) {
 1256:                 if (ref($advtools) eq 'ARRAY') {
 1257:                     @{$advtools} = @inlineremote;
 1258:                 }
 1259:             }
 1260:             return;
 1261:         } elsif (@inlineremote > 0) {
 1262:             &Apache::lonhtmlcommon::clear_breadcrumb_tools();
 1263:             &advtools_crumbs(@inlineremote);
 1264:             return   &Apache::lonhtmlcommon::scripttag('', 'start')
 1265:                    . &Apache::lonhtmlcommon::breadcrumbs(undef,undef,0)
 1266:                    . &Apache::lonhtmlcommon::scripttag('', 'end');
 1267:         }
 1268:     }
 1269: }
 1270: 
 1271: sub advtools_crumbs {
 1272:     my @funcs = @_;
 1273:     if ($env{'request.noversionuri'} =~ m{^/adm/$match_domain/$match_username/aboutme$}) {
 1274:         &Apache::lonhtmlcommon::add_breadcrumb_tool(
 1275:             'advtools', @funcs[61,64,65,66,67,74]);
 1276:     } elsif ($env{'request.noversionuri'} !~ m{^/adm/(navmaps|viewclasslist)(\?|$)}) {
 1277:         &Apache::lonhtmlcommon::add_breadcrumb_tool(
 1278:             'advtools', @funcs[61,71,72,73,74,92]);
 1279:     } elsif ($env{'request.noversionuri'} eq '/adm/viewclasslist') {
 1280:         &Apache::lonhtmlcommon::add_breadcrumb_tool(
 1281:             'advtools', $funcs[61]);
 1282:     }
 1283:     return;
 1284: }
 1285: 
 1286: # ================================================================== Raw Config
 1287: 
 1288: sub clear {
 1289:     my ($row,$col)=@_;
 1290:     $inlineremote[10*$row+$col]='';
 1291:     return ''; 
 1292: }
 1293: 
 1294: # ============================================ Switch a button or create a link
 1295: # Switch acts on the javascript that is executed when a button is clicked.  
 1296: # The javascript is usually similar to "go('/adm/roles')" or "cstrgo(..)".
 1297: 
 1298: sub switch {
 1299:     my ($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat,$nobreak)=@_;
 1300:     $act=~s/\$uname/$uname/g;
 1301:     $act=~s/\$udom/$udom/g;
 1302:     $top=&mt($top);
 1303:     $bot=&mt($bot);
 1304:     $desc=&mt($desc);
 1305:     my $idx=10*$row+$col;
 1306:     $category_members{$cat}.=':'.$idx;
 1307: 
 1308: # Inline Menu
 1309:     if ($nobreak==2) { return ''; }
 1310:     my $text=$top.' '.$bot;
 1311:     $text=~s/\s*\-\s*//gs;
 1312: 
 1313:     my $pic=
 1314: 	   '<img alt="'.$text.'" src="'.
 1315: 	   &Apache::loncommon::lonhttpdurl('/res/adm/pages/'.$img).
 1316: 	   '" align="'.($nobreak==3?'right':'left').'" class="LC_icon" />';
 1317:     if ($env{'browser.interface'} eq 'faketextual') {
 1318: # Main Menu
 1319: 	   if ($nobreak==3) {
 1320: 	       $inlineremote[$idx]="\n".
 1321: 		   '<td class="LC_menubuttons_text" align="right">'.$text.
 1322: 		   '</td><td align="left">'.
 1323: 		   '<a href="javascript:'.$act.';">'.$pic.'</a></td></tr>';
 1324: 	   } elsif ($nobreak) {
 1325: 	       $inlineremote[$idx]="\n<tr>".
 1326: 		   '<td align="left">'.
 1327: 		   '<a href="javascript:'.$act.';">'.$pic.'</a></td>
 1328:                     <td class="LC_menubuttons_text" align="left"><a class="LC_menubuttons_link" href="javascript:'.$act.';"><span class="LC_menubuttons_inline_text">'.$text.'</span></a></td>';
 1329: 	   } else {
 1330: 	       $inlineremote[$idx]="\n<tr>".
 1331: 		   '<td align="left">'.
 1332: 		   '<a href="javascript:'.$act.';">'.$pic.
 1333: 		   '</a></td><td class="LC_menubuttons_text" colspan="3">'.
 1334: 		   '<a class="LC_menubuttons_link" href="javascript:'.$act.';"><span class="LC_menubuttons_inline_text">'.$desc.'</span></a></td></tr>';
 1335: 	   }
 1336:     } else {
 1337: # Inline Menu
 1338:         my @tools = (93,91,81,82,83);
 1339:         unless ($env{'request.state'} eq 'construct') {
 1340:             push(@tools,63);
 1341:         }
 1342:         if (($env{'environment.icons'} eq 'iconsonly') && 
 1343:             (grep(/^$idx$/,@tools))) {
 1344:             $inlineremote[$idx] =
 1345:         '<a title="'.$desc.'" class="LC_menubuttons_link" href="javascript:'.$act.';">'.$pic.'</a>';
 1346:         } else {
 1347:             $inlineremote[$idx] =
 1348:        '<a title="'.$desc.'" class="LC_menubuttons_link" href="javascript:'.$act.';">'.$pic.
 1349:        '<span class="LC_menubuttons_inline_text">'.$top.'&nbsp;</span></a>';
 1350:         }
 1351:     }
 1352:     return '';
 1353: }
 1354: 
 1355: sub secondlevel {
 1356:     my $output='';
 1357:     my 
 1358:     ($uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat)=@_;
 1359:     if ($prt eq 'any') {
 1360: 	   $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
 1361:     } elsif ($prt=~/^r(\w+)/) {
 1362:         if ($rol eq $1) {
 1363:            $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
 1364:         }
 1365:     }
 1366:     return $output;
 1367: }
 1368: 
 1369: sub inlinemenu {
 1370:     undef(@inlineremote);
 1371:     undef(%category_members);
 1372: # calling rawconfig with "1" will evaluate mydesk.tab, even if there is no active remote control
 1373:     &rawconfig(1);
 1374:     my $output='<table><tr>';
 1375:     for (my $col=1; $col<=2; $col++) {
 1376:         $output.='<td class="LC_mainmenu_col_fieldset">';
 1377:         for (my $row=1; $row<=8; $row++) {
 1378:             foreach my $cat (keys(%category_members)) {
 1379:                if ($category_positions{$cat} ne "$col,$row") { next; }
 1380:                #$output.='<table><tr><td colspan="4" class="LC_menubuttons_category">'.&mt($category_names{$cat}).'</td></tr>';
 1381:                $output.='<div class="LC_Box LC_400Box">';
 1382: 	       $output.='<h3 class="LC_hcell">'.&mt($category_names{$cat}).'</h3>';
 1383:                $output.='<table>';
 1384:                my %active=();
 1385:                foreach my $menu_item (split(/\:/,$category_members{$cat})) {
 1386:                   if ($inlineremote[$menu_item]) {
 1387:                      $active{$menu_item}=1;
 1388:                   }
 1389:                }  
 1390:                foreach my $item (sort(keys(%active))) {
 1391:                   $output.=$inlineremote[$item];
 1392:                }
 1393:                $output.='</table>';
 1394:                $output.='</div>';
 1395:             }
 1396:          }
 1397:          $output.="</td>";
 1398:     }
 1399:     $output.="</tr></table>";
 1400:     return $output;
 1401: }
 1402: 
 1403: sub rawconfig {
 1404: #
 1405: # This evaluates mydesk.tab
 1406: # Need to add more positions and more privileges to deal with all
 1407: # menu items.
 1408: #
 1409:     my $textualoverride=shift;
 1410:     my $output='';
 1411:     return '' unless $textualoverride;
 1412:     my $uname=$env{'user.name'};
 1413:     my $udom=$env{'user.domain'};
 1414:     my $adv=$env{'user.adv'};
 1415:     my $show_course=&Apache::loncommon::show_course();
 1416:     my $author=$env{'user.author'};
 1417:     my $crs='';
 1418:     my $crstype='';
 1419:     if ($env{'request.course.id'}) {
 1420:        $crs='/'.$env{'request.course.id'};
 1421:        if ($env{'request.course.sec'}) {
 1422: 	   $crs.='_'.$env{'request.course.sec'};
 1423:        }
 1424:        $crs=~s/\_/\//g;
 1425:        $crstype = &Apache::loncommon::course_type();
 1426:     }
 1427:     my $pub=($env{'request.state'} eq 'published');
 1428:     my $con=($env{'request.state'} eq 'construct');
 1429:     my $rol=$env{'request.role'};
 1430:     my $requested_domain;
 1431:     if ($rol) {
 1432:        $requested_domain = $env{'request.role.domain'};
 1433:     }
 1434:     foreach my $line (@desklines) {
 1435:         my ($row,$col,$pro,$prt,$img,$top,$bot,$act,$desc,$cat)=split(/\:/,$line);
 1436:         $prt=~s/\$uname/$uname/g;
 1437:         $prt=~s/\$udom/$udom/g;
 1438:         if ($prt =~ /\$crs/) {
 1439:             next unless ($env{'request.course.id'});
 1440:             next if ($crstype eq 'Community');
 1441:             $prt=~s/\$crs/$crs/g;
 1442:         } elsif ($prt =~ /\$cmty/) {
 1443:             next unless ($env{'request.course.id'});
 1444:             next if ($crstype ne 'Community');
 1445:             $prt=~s/\$cmty/$crs/g;
 1446:         }
 1447:         if ($prt =~ m/\$requested_domain/) {
 1448:             if ((!$requested_domain) && ($pro eq 'pbre') && ($env{'user.adv'})) {
 1449:                 $prt=~s/\$requested_domain/$env{'user.domain'}/g;
 1450:             } else {
 1451:                 $prt=~s/\$requested_domain/$requested_domain/g;
 1452:             }
 1453:         }
 1454:         if ($category_names{$cat}!~/\w/) { $cat='oth'; }
 1455:         if ($pro eq 'clear') {
 1456: 	    $output.=&clear($row,$col);
 1457:         } elsif ($pro eq 'any') {
 1458:                $output.=&secondlevel(
 1459: 	  $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
 1460: 	} elsif ($pro eq 'smp') {
 1461:             unless ($adv) {
 1462:                $output.=&secondlevel(
 1463:           $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
 1464:             }
 1465:         } elsif ($pro eq 'adv') {
 1466:             if ($adv) {
 1467:                $output.=&secondlevel(
 1468: 	  $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
 1469:             }
 1470: 	} elsif ($pro eq 'shc') {
 1471:             if ($show_course) {
 1472:                $output.=&secondlevel(
 1473:           $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
 1474:             }
 1475:         } elsif ($pro eq 'nsc') {
 1476:             if (!$show_course) {
 1477:                $output.=&secondlevel(
 1478: 	  $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
 1479:             }
 1480:         } elsif (($pro=~/^p(\w+)/) && ($prt)) {
 1481:             my $priv = $1;
 1482:             if ($priv =~ /^mdc(Course|Community)/) {
 1483:                 if ($crstype eq $1) {
 1484:                     $priv = 'mdc';
 1485:                 } else {
 1486:                     next;
 1487:                 }
 1488:             }
 1489:             if ((($priv eq 'bre') && (&Apache::lonnet::allowed($priv,$prt) eq 'F')) ||
 1490:                 (($priv ne 'bre') && (&Apache::lonnet::allowed($priv,$prt)))) {
 1491:                 $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
 1492:             }
 1493:         } elsif ($pro eq 'course')  {
 1494:             if (($env{'request.course.fn'}) && ($crstype ne 'Community')) {
 1495:                $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
 1496: 	    }
 1497:         } elsif ($pro eq 'community')  {
 1498:             if (($env{'request.course.fn'}) && ($crstype eq 'Community')) {
 1499:                $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
 1500:             }
 1501:         } elsif ($pro =~ /^courseenv_(.*)$/) {
 1502:             my $key = $1;
 1503:             if ($crstype ne 'Community') {
 1504:                 my $coursepref = $env{'course.'.$env{'request.course.id'}.'.'.$key};
 1505:                 if ($key eq 'canuse_pdfforms') {
 1506:                     if ($env{'request.course.id'} && $coursepref eq '') {
 1507:                         my %domdefs = &Apache::lonnet::get_domain_defaults($env{'course.'.$env{'request.course.id'}.'.domain'});
 1508:                         $coursepref = $domdefs{'canuse_pdfforms'};
 1509:                     }
 1510:                 }
 1511:                 if ($coursepref) { 
 1512:                     $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
 1513:                 }
 1514:             }
 1515:         } elsif ($pro =~ /^communityenv_(.*)$/) {
 1516:             my $key = $1;
 1517:             if ($crstype eq 'Community') {
 1518:                 my $coursepref = $env{'course.'.$env{'request.course.id'}.'.'.$key};
 1519:                 if ($key eq 'canuse_pdfforms') {
 1520:                     if ($env{'request.course.id'} && $coursepref eq '') {
 1521:                         my %domdefs = &Apache::lonnet::get_domain_defaults($env{'course.'.$env{'request.course.id'}.'.domain'});
 1522:                         $coursepref = $domdefs{'canuse_pdfforms'};
 1523:                     }
 1524:                 }
 1525:                 if ($coursepref) { 
 1526:                     $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
 1527:                 }
 1528:             }
 1529:         } elsif ($pro =~ /^course_(.*)$/) {
 1530:             # Check for permissions inside of a course
 1531:             if (($env{'request.course.id'}) && ($crstype ne 'Community') && 
 1532:                 (&Apache::lonnet::allowed($1,$env{'request.course.id'}.
 1533:             ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))
 1534:                  )) {
 1535:                 $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
 1536: 	    }
 1537:         } elsif ($pro =~ /^community_(.*)$/) {
 1538:             # Check for permissions inside of a community
 1539:             if (($env{'request.course.id'}) && ($crstype eq 'Community') &&   
 1540:                 (&Apache::lonnet::allowed($1,$env{'request.course.id'}.
 1541:             ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))
 1542:                  )) {
 1543:                 $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
 1544:             }
 1545:         } elsif ($pro eq 'author') {
 1546:             if ($author) {
 1547:                 if ((($prt eq 'rca') && ($env{'request.role'}=~/^ca/)) ||
 1548:                     (($prt eq 'raa') && ($env{'request.role'}=~/^aa/)) || 
 1549:                     (($prt eq 'rau') && ($env{'request.role'}=~/^au/))) {
 1550:                     # Check that we are on the correct machine
 1551:                     my $cadom=$requested_domain;
 1552:                     my $caname=$env{'user.name'};
 1553:                     if (($prt eq 'rca') || ($prt eq 'raa')) {
 1554: 		       ($cadom,$caname)=
 1555:                                ($env{'request.role'}=~/($match_domain)\/($match_username)$/);
 1556:                     }                       
 1557:                     $act =~ s/\$caname/$caname/g;
 1558:                     $act =~ s/\$cadom/$cadom/g;
 1559:                     my $home = &Apache::lonnet::homeserver($caname,$cadom);
 1560: 		    my $allowed=0;
 1561: 		    my @ids=&Apache::lonnet::current_machine_ids();
 1562: 		    foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
 1563: 		    if ($allowed) {
 1564:                         $output.=&switch($caname,$cadom,
 1565:                                         $row,$col,$img,$top,$bot,$act,$desc,$cat);
 1566:                     }
 1567:                 }
 1568:             }
 1569:         } elsif ($pro eq 'tools') {
 1570:             my @tools = ('aboutme','blog','portfolio');
 1571:             if (grep(/^\Q$prt\E$/,@tools)) {
 1572:                 if (!&Apache::lonnet::usertools_access($env{'user.name'},
 1573:                                                        $env{'user.domain'},
 1574:                                                        $prt,undef,'tools')) {
 1575:                     $output.=&clear($row,$col);
 1576:                     next;
 1577:                 }
 1578:             } elsif (($prt eq 'reqcrsnsc') || ($prt eq 'reqcrsshc')) {
 1579:                 if (($prt eq 'reqcrsnsc') && ($show_course))   {
 1580:                     next;
 1581:                 }
 1582:                 if (($prt eq 'reqcrsshc') && (!$show_course)) {
 1583:                     next;
 1584:                 }
 1585:                 my $showreqcrs = &check_for_rcrs();
 1586:                 if (!$showreqcrs) {
 1587:                     $output.=&clear($row,$col);
 1588:                     next;
 1589:                 }
 1590:             }
 1591:             $prt='any';
 1592:             $output.=&secondlevel(
 1593:           $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
 1594:         }
 1595:     }
 1596:     return $output;
 1597: }
 1598: 
 1599: sub check_for_rcrs {
 1600:     my $showreqcrs = 0;
 1601:     my @reqtypes = ('official','unofficial','community','textbook','placement');
 1602:     foreach my $type (@reqtypes) {
 1603:         if (&Apache::lonnet::usertools_access($env{'user.name'},
 1604:                                               $env{'user.domain'},
 1605:                                               $type,undef,'requestcourses')) {
 1606:             $showreqcrs = 1;
 1607:             last;
 1608:         }
 1609:     }
 1610:     if (!$showreqcrs) {
 1611:         foreach my $type (@reqtypes) {
 1612:             if ($env{'environment.reqcrsotherdom.'.$type} ne '') {
 1613:                 $showreqcrs = 1;
 1614:                 last;
 1615:             }
 1616:         }
 1617:     }
 1618:     return $showreqcrs;
 1619: }
 1620: 
 1621: sub dc_popup_js {
 1622:     my %lt = &Apache::lonlocal::texthash(
 1623:                                           more => '(More ...)',
 1624:                                           less => '(Less ...)',
 1625:                                         );
 1626:     return <<"END";
 1627: 
 1628: function showCourseID() {
 1629:     document.getElementById('dccid').style.display='block';
 1630:     document.getElementById('dccid').style.textAlign='left';
 1631:     document.getElementById('dccid').style.textFace='normal';
 1632:     document.getElementById('dccidtext').innerHTML ='<a href="javascript:hideCourseID();" class="LC_menubuttons_link">$lt{'less'}</a>';
 1633:     return;
 1634: }
 1635: 
 1636: function hideCourseID() {
 1637:     document.getElementById('dccid').style.display='none';
 1638:     document.getElementById('dccidtext').innerHTML ='<a href="javascript:showCourseID()" class="LC_menubuttons_link">$lt{'more'}</a>';
 1639:     return;
 1640: }
 1641: 
 1642: END
 1643: 
 1644: }
 1645: 
 1646: sub countdown_toggle_js {
 1647:     return <<"END";
 1648: 
 1649: function toggleCountdown() {
 1650:     var countdownid = document.getElementById('duedatecountdown');
 1651:     var currstyle = countdownid.style.display;
 1652:     if (currstyle == 'inline') {
 1653:         countdownid.style.display = 'none';
 1654:         document.getElementById('ddcountcollapse').innerHTML='';
 1655:         document.getElementById('ddcountexpand').innerHTML='&#9668;&nbsp;';
 1656:     } else {
 1657:         countdownid.style.display = 'inline';
 1658:         document.getElementById('ddcountcollapse').innerHTML='&#9658;&nbsp;';
 1659:         document.getElementById('ddcountexpand').innerHTML='';
 1660:     }
 1661:     return;
 1662: }
 1663: 
 1664: END
 1665: }
 1666: 
 1667: # This creates a "done button" for timed events.  The confirmation box is a jQuery
 1668: # dialog widget. If the interval parameter requires a proctor key for the timed 
 1669: # event to be marked done, there will also be a textbox where that can be entered. 
 1670: # Clicking OK will set the value of LC_interval_done to 'true', and, if needed will 
 1671: # set the value of LC_interval_done_proctorpass to the text entered in that box, 
 1672: # and submit the corresponding form.
 1673: # 
 1674: # The &zero_time() routine in lonhomework.pm is called when a page is rendered if
 1675: # LC_interval_done is true.
 1676: #
 1677: sub done_button_js {
 1678:     my ($type,$width,$height,$proctor,$donebuttontext) = @_;
 1679:     return unless (($type eq 'map') || ($type eq 'resource'));
 1680:     my %lt = &Apache::lonlocal::texthash(
 1681:                  title    => 'WARNING!',
 1682:                  preamble => 'You are trying to end this timed event early.',
 1683:                  map      => 'Confirming that you are done will cause the time to expire and prevent you from changing any answers in the current folder.',
 1684:                  resource => 'Confirming that you are done will cause the time to expire for this question, and prevent you from changing your answer(s).', 
 1685:                  okdone   => 'Click "OK" if you are completely finished.',
 1686:                  cancel   => 'Click "Cancel" to continue working.',
 1687:                  proctor  => 'Ask a proctor to enter the key, then click "OK" if you are completely finished.',
 1688:                  ok       => 'OK',
 1689:                  exit     => 'Cancel',
 1690:                  key      => 'Key:',
 1691:                  nokey    => 'A proctor key is required', 
 1692:     );
 1693:     my $navmap = Apache::lonnavmaps::navmap->new(); 
 1694:     my ($missing,$tried) = (0,0);
 1695:     if (ref($navmap)) {
 1696:         my @resources=();
 1697:         if ($type eq 'map') {
 1698:             my ($mapurl,$rid,$resurl)=&Apache::lonnet::decode_symb($env{'request.symb'});
 1699:             @resources=$navmap->retrieveResources($mapurl,sub { $_[0]->is_problem() });
 1700:         } else {
 1701:             my $res = $navmap->getBySymb($env{'request.symb'});
 1702:             if (ref($res)) {
 1703:                 if ($res->is_problem()) {
 1704:                     push(@resources,$res);
 1705:                 }
 1706:             }
 1707:         }
 1708:         foreach my $res (@resources) {
 1709:             if (ref($res->parts()) eq 'ARRAY') {
 1710:                 foreach my $part (@{$res->parts()}) {
 1711:                     if (!$res->tries($part)) {
 1712:                         $missing++;
 1713:                     } else {
 1714:                         $tried++;
 1715:                     }
 1716:                 }
 1717:             }
 1718:         }
 1719:     }
 1720:     if ($missing) {
 1721:         $lt{'miss'} .= '<p class="LC_error">';
 1722:         if ($type eq 'map') {
 1723:             $lt{'miss'} .= &mt('Submissions are missing for [quant,_1,question part,question parts] in this folder.',$missing);
 1724:         } else {
 1725:             $lt{'miss'} .= &mt('Submissions are missing for [quant,_1,part] in this question.',$missing);
 1726:         }
 1727:         if ($missing > 1) {
 1728:             $lt{'miss'} .= ' '.&mt('If you confirm you are done you will be unable to submit answers for them.').'</span>';
 1729:         } else {
 1730:             $lt{'miss'} .= ' '.&mt('If you confirm you are done you will be unable to submit an answer for it.').'</p>';
 1731:         }
 1732:     }
 1733:     $donebuttontext = &HTML::Entities::encode($donebuttontext,'<>&"');
 1734:     if ($proctor) {
 1735:         if ($height !~ /^\d+$/) {
 1736:             $height = 400;
 1737:             if ($missing) {
 1738:                 $height += 60; 
 1739:             }
 1740:         }
 1741:         if ($width !~ /^\d+$/) {
 1742:             $width = 400;
 1743:             if ($missing) {
 1744:                 $width += 60;
 1745:             }
 1746:         }
 1747:         return <<END;
 1748: <form method="post" name="LCdoneButton" action="">
 1749:     <input type="hidden" name="LC_interval_done" value="" />
 1750:     <input type="hidden" name="LC_interval_done_proctorpass" value="" />
 1751:     <button id="LC_done-confirm-opener" type="button">$donebuttontext</button>
 1752: </form>
 1753: 
 1754: <div id="LC_done-confirm" title="$lt{'title'}">
 1755:   <p>$lt{'preamble'} $lt{$type}</p>
 1756:   $lt{'miss'}
 1757:   <p>$lt{'proctor'}</p>
 1758:   <form name="LCdoneButtonProctor" action="">
 1759:     <label>$lt{'key'}<input type="password" name="LC_interval_done_proctorkey" value="" /></label>
 1760:     <input type="submit" tabindex="-1" style="position:absolute; top:-1000px" />
 1761:   </form>
 1762:   <p>$lt{'cancel'}</p>
 1763: </div>
 1764: 
 1765: <script type="text/javascript">
 1766: // <![CDATA[
 1767:     \$( "#LC_done-confirm" ).dialog({ autoOpen: false });
 1768:     \$( "#LC_done-confirm-opener" ).on("click", function() {
 1769:         \$( "#LC_done-confirm" ).dialog("open");
 1770:         \$( "#LC_done-confirm" ).dialog({
 1771:             height: $height,
 1772:             width: $width,
 1773:             modal: true,
 1774:             resizable: false,
 1775:             buttons: [
 1776:                 {
 1777:                     text: "$lt{'ok'}",
 1778:                     click: function() {
 1779:                         var proctorkey = \$( '[name="LC_interval_done_proctorkey"]' )[0].value;
 1780:                         if ((proctorkey == '') || (proctorkey == null)) {
 1781:                             alert("$lt{'nokey'}"); 
 1782:                         } else { 
 1783:                             \$( '[name="LC_interval_done"]' )[0].value = 'true';
 1784:                             \$( '[name="LC_interval_done_proctorpass"]' )[0].value = proctorkey;
 1785:                             \$( '[name="LCdoneButton"]' )[0].submit();
 1786:                         }
 1787:                     },
 1788:                 },
 1789:                 {
 1790:                     text: "$lt{'exit'}",
 1791:                     click: function() {
 1792:                         \$("#LC_done-confirm").dialog( "close" );
 1793:                     }
 1794:                 }
 1795:             ],
 1796:             close: function() {
 1797:                 \$( '[name="LC_interval_done_proctorkey"]' )[0].value = '';
 1798:             }
 1799:         });
 1800:         \$( "#LC_done-confirm" ).find( "form" ).on( "submit", function( event ) {
 1801:             event.preventDefault();
 1802:             \$( '[name="LC_interval_done"]' )[0].value = 'true';
 1803:             \$( '[name="LC_interval_done_proctorpass"]' )[0].value = \$( '[name="LC_interval_done_proctorkey"]' )[0].value;
 1804:             \$( '[name="LCdoneButton"]' )[0].submit();
 1805:         });
 1806: });
 1807: 
 1808: // ]]>
 1809: </script>
 1810: 
 1811: END
 1812:     } else {
 1813:         if ($height !~ /^\d+$/) {
 1814:             $height = 320;
 1815:             if ($missing) {
 1816:                 $height += 60;
 1817:             }
 1818:         }
 1819:         if ($width !~ /^\d+$/) {
 1820:             $width = 320;
 1821:             if ($missing) {
 1822:                 $width += 60;
 1823:             }
 1824:         }
 1825:         if ($missing) {
 1826:             $lt{'miss'} = '</p>'.$lt{'miss'}.'<p>';
 1827:         }
 1828:         return <<END;
 1829: 
 1830: <form method="post" name="LCdoneButton" action="">
 1831:     <input type="hidden" name="LC_interval_done" value="" />
 1832:     <button id="LC_done-confirm-opener" type="button">$donebuttontext</button>
 1833: </form>
 1834: 
 1835: <div id="LC_done-confirm" title="$lt{'title'}">
 1836:     <p>$lt{'preamble'} $lt{$type} $lt{'miss'} $lt{'okdone'} $lt{'cancel'}</p>
 1837: </div>
 1838: 
 1839: <script type="text/javascript">
 1840: // <![CDATA[
 1841: \$( "#LC_done-confirm" ).dialog({ autoOpen: false });
 1842: \$( "#LC_done-confirm-opener" ).click(function() {
 1843:     \$( "#LC_done-confirm" ).dialog( "open" );
 1844:     \$( "#LC_done-confirm" ).dialog({
 1845:       resizable: false,
 1846:       height: $height,
 1847:       width: $width,
 1848:       modal: true,
 1849:       buttons: [
 1850:                  {
 1851:                     text: "$lt{'ok'}",
 1852:                     click: function() {
 1853:                         \$( this ).dialog( "close" );
 1854:                         \$( '[name="LC_interval_done"]' )[0].value = 'true';
 1855:                         \$( '[name="LCdoneButton"]' )[0].submit();
 1856:                     },
 1857:                  },
 1858:                  {
 1859:                      text: "$lt{'exit'}",
 1860:                      click: function() {
 1861:                          \$( this ).dialog( "close" );
 1862:                      },
 1863:                   },
 1864:                ],
 1865:        });
 1866: });
 1867: // ]]>
 1868: </script>
 1869: 
 1870: END
 1871:     }
 1872: }
 1873: 
 1874: sub utilityfunctions {
 1875:     my ($httphost) = @_;
 1876:     my $currenturl=&Apache::lonnet::clutter(&Apache::lonnet::fixversion((split(/\?/,$env{'request.noversionuri'}))[0]));
 1877:     if ($currenturl =~ m{^/adm/wrapper/ext/}
 1878:         && $env{'request.external.querystring'} ) {
 1879:             $currenturl .= ($currenturl=~/\?/)?'&':'?'.$env{'request.external.querystring'};
 1880:     }
 1881:     $currenturl=&Apache::lonenc::check_encrypt(&unescape($currenturl));
 1882:     
 1883:     my $currentsymb=&Apache::lonenc::check_encrypt($env{'request.symb'});
 1884: 
 1885:     my $dc_popup_cid;
 1886:     if ($env{'user.adv'} && exists($env{'user.role.dc./'.
 1887:                         $env{'course.'.$env{'request.course.id'}.
 1888:                                  '.domain'}.'/'})) {
 1889:         $dc_popup_cid = &dc_popup_js();
 1890:     }
 1891: 
 1892:     my $start_page_annotate = 
 1893:         &Apache::loncommon::start_page('Annotator',undef,
 1894: 				       {'only_body' => 1,
 1895: 					'js_ready'  => 1,
 1896: 					'bgcolor'   => '#BBBBBB',
 1897: 					'add_entries' => {
 1898: 					    'onload' => 'javascript:document.goannotate.submit();'}});
 1899: 
 1900:     my $end_page_annotate = 
 1901:         &Apache::loncommon::end_page({'js_ready' => 1});
 1902: 
 1903:     my $jumptores = &Apache::lonhtmlcommon::javascript_jumpto_resource();
 1904: 
 1905:     my $esc_url=&escape($currenturl);
 1906:     my $esc_symb=&escape($currentsymb);
 1907: 
 1908:     my $countdown = &countdown_toggle_js();
 1909: 
 1910:     my $hostvar = '
 1911: function setLCHost() {
 1912:     var lcHostname="";
 1913: ';
 1914:     if ($httphost =~ m{^https?\://}) {
 1915:         $hostvar .= '    var lcServer="'.$httphost.'";'."\n".
 1916:                     '    var hostReg = /^https?:\/\/([^\/]+)$/i;'."\n".
 1917:                     '    var match = hostReg.exec(lcServer);'."\n".
 1918:                     '    if (match.length) {'."\n".
 1919:                     '        if (match[1] == location.hostname) {'."\n".
 1920:                     '            lcHostname=lcServer;'."\n".
 1921:                     '        }'."\n".
 1922:                     '    }'."\n";
 1923:     }
 1924:     
 1925:     $hostvar .= '    return lcHostname;'."\n".
 1926: '}'."\n";
 1927: 
 1928: return (<<ENDUTILITY)
 1929:     $hostvar
 1930:     var currentURL=unescape("$esc_url");
 1931:     var reloadURL=unescape("$esc_url");
 1932:     var currentSymb=unescape("$esc_symb");
 1933: 
 1934: $dc_popup_cid
 1935: 
 1936: $jumptores
 1937: 
 1938: function gopost(url,postdata) {
 1939:    if (url!='') {
 1940:       var lcHostname = setLCHost();
 1941:       this.document.server.action=lcHostname+url;
 1942:       this.document.server.postdata.value=postdata;
 1943:       this.document.server.command.value='';
 1944:       this.document.server.url.value='';
 1945:       this.document.server.symb.value='';
 1946:       this.document.server.submit();
 1947:    }
 1948: }
 1949: 
 1950: function gocmd(url,cmd) {
 1951:    if (url!='') {
 1952:       var lcHostname = setLCHost();
 1953:       this.document.server.action=lcHostname+url;
 1954:       this.document.server.postdata.value='';
 1955:       this.document.server.command.value=cmd;
 1956:       this.document.server.url.value=currentURL;
 1957:       this.document.server.symb.value=currentSymb;
 1958:       this.document.server.submit();
 1959:    }
 1960: }
 1961: 
 1962: function gocstr(url,filename) {
 1963:     if (url == '/adm/cfile?action=delete') {
 1964:         this.document.cstrdelete.filename.value = filename
 1965:         this.document.cstrdelete.submit();
 1966:         return;
 1967:     }
 1968:     if (url == '/adm/printout') {
 1969:         this.document.cstrprint.postdata.value = filename
 1970:         this.document.cstrprint.curseed.value = 0;
 1971:         this.document.cstrprint.problemtype.value = 0;
 1972:         if (this.document.lonhomework) {
 1973:             if ((this.document.lonhomework.rndseed) && (this.document.lonhomework.rndseed.value != null) && (this.document.lonhomework.rndseed.value != '')) {
 1974:                 this.document.cstrprint.curseed.value = this.document.lonhomework.rndseed.value
 1975:             }
 1976:             if (this.document.lonhomework.problemtype) {
 1977: 		if (this.document.lonhomework.problemtype.value) {
 1978: 		    this.document.cstrprint.problemtype.value = 
 1979: 			this.document.lonhomework.problemtype.value;
 1980: 		} else if (this.document.lonhomework.problemtype.options) {
 1981: 		    for (var i=0; i<this.document.lonhomework.problemtype.options.length; i++) {
 1982: 			if (this.document.lonhomework.problemtype.options[i].selected) {
 1983: 			    if (this.document.lonhomework.problemtype.options[i].value != null && this.document.lonhomework.problemtype.options[i].value != '') { 
 1984: 				this.document.cstrprint.problemtype.value = this.document.lonhomework.problemtype.options[i].value
 1985: 				}
 1986: 			}
 1987: 		    }
 1988: 		}
 1989: 	    }
 1990: 	}
 1991:         this.document.cstrprint.submit();
 1992:         return;
 1993:     }
 1994:     if (url !='') {
 1995:         this.document.constspace.filename.value = filename;
 1996:         this.document.constspace.action = url;
 1997:         this.document.constspace.submit();
 1998:     }
 1999: }
 2000: 
 2001: function golist(url) {
 2002:    if (url!='' && url!= null) {
 2003:        currentURL = null;
 2004:        currentSymb= null;
 2005:        var lcHostname = setLCHost();
 2006:        top.location.href=lcHostname+url;
 2007:    }
 2008: }
 2009: 
 2010: 
 2011: 
 2012: function catalog_info(isMobile) {
 2013:     if (isMobile == 1) {
 2014:         openMyModal(window.location.pathname+'.meta?modal=1',500,400,'yes');
 2015:     } else {
 2016:         loncatinfo=window.open(window.location.pathname+'.meta',"LONcatInfo",'height=500,width=400,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no');
 2017:     }
 2018: }
 2019: 
 2020: function chat_win() {
 2021:    var lcHostname = setLCHost();
 2022:    lonchat=window.open(lcHostname+'/res/adm/pages/chatroom.html',"LONchat",'height=320,width=480,resizable=yes,location=no,menubar=no,toolbar=no');
 2023: }
 2024: 
 2025: function group_chat(group) {
 2026:    var lcHostname = setLCHost();
 2027:    var url = lcHostname+'/adm/groupchat?group='+group;
 2028:    var winName = 'LONchat_'+group;
 2029:    grpchat=window.open(url,winName,'height=320,width=280,resizable=yes,location=no,menubar=no,toolbar=no');
 2030: }
 2031: 
 2032: function annotate() {
 2033:    w_Annotator_flag=1;
 2034:    annotator=window.open('','Annotator','width=365,height=265,scrollbars=0');
 2035:    annotator.document.write(
 2036:    '$start_page_annotate'
 2037:   +"<form name='goannotate' target='Annotator' method='post' "
 2038:   +"action='/adm/annotations'>"
 2039:   +"<input type='hidden' name='symbnew' value='"+currentSymb+"' />"
 2040:   +"<\\/form>"
 2041:   +'$end_page_annotate');
 2042:    annotator.document.close();
 2043: }
 2044: 
 2045: function open_StoredLinks_Import(rat) {
 2046:    var newWin;
 2047:    var lcHostname = setLCHost();
 2048:    if (rat) {
 2049:        newWin = window.open(lcHostname+'/adm/wishlist?inhibitmenu=yes&mode=import&rat='+rat,
 2050:                             'wishlistImport','scrollbars=1,resizable=1,menubar=0');
 2051:    }
 2052:    else {
 2053:        newWin = window.open(lcHostname+'/adm/wishlist?inhibitmenu=yes&mode=import',
 2054:                             'wishlistImport','scrollbars=1,resizable=1,menubar=0');
 2055:    }
 2056:    newWin.focus();
 2057: }
 2058: 
 2059: (function (\$) {
 2060:   \$(document).ready(function () {
 2061:     \$.single=function(a){return function(b){a[0]=b;return a}}(\$([1]));
 2062:     /*\@cc_on
 2063:       if (!window.XMLHttpRequest) {
 2064:         \$('.LC_hoverable').each(function () {
 2065:           this.attachEvent('onmouseenter', function (evt) { \$.single(evt.srcElement).addClass('hover'); });
 2066:           this.attachEvent('onmouseleave', function (evt) { \$.single(evt.srcElement).removeClass('hover'); });
 2067:         });
 2068:       }
 2069:     \@*/
 2070:   });
 2071: }(jQuery));
 2072: 
 2073: $countdown
 2074: 
 2075: ENDUTILITY
 2076: }
 2077: 
 2078: sub serverform {
 2079:     return(<<ENDSERVERFORM);
 2080: <form name="server" action="/adm/logout" method="post" target="_top">
 2081: <input type="hidden" name="postdata" value="none" />
 2082: <input type="hidden" name="command" value="none" />
 2083: <input type="hidden" name="url" value="none" />
 2084: <input type="hidden" name="symb" value="none" />
 2085: </form>
 2086: ENDSERVERFORM
 2087: }
 2088: 
 2089: sub constspaceform {
 2090:     return(<<ENDCONSTSPACEFORM);
 2091: <form name="constspace" action="/adm/logout" method="post" target="_top">
 2092: <input type="hidden" name="filename" value="" />
 2093: </form>
 2094: <form name="cstrdelete" action="/adm/cfile" method="post" target="_top">
 2095: <input type="hidden" name="action" value="delete" /> 
 2096: <input type="hidden" name="filename" value="" />
 2097: </form>
 2098: <form name="cstrprint" action="/adm/printout" target="_parent" method="post">
 2099: <input type="hidden" name="postdata" value="" />
 2100: <input type="hidden" name="curseed" value="" />
 2101: <input type="hidden" name="problemtype" value="" />
 2102: </form>
 2103: 
 2104: ENDCONSTSPACEFORM
 2105: }
 2106: 
 2107: sub hidden_button_check {
 2108:     if ( $env{'request.course.id'} eq ''
 2109:          || $env{'request.role.adv'} ) {
 2110: 
 2111:         return;
 2112:     }
 2113:     my $buttonshide = &Apache::lonnet::EXT('resource.0.buttonshide');
 2114:     return $buttonshide; 
 2115: }
 2116: 
 2117: sub roles_selector {
 2118:     my ($cdom,$cnum,$httphost) = @_;
 2119:     my $crstype = &Apache::loncommon::course_type();
 2120:     my $now = time;
 2121:     my (%courseroles,%seccount,%courseprivs,%roledesc);
 2122:     my $is_cc;
 2123:     my ($js,$form,$switcher);
 2124:     my $ccrole;
 2125:     if ($crstype eq 'Community') {
 2126:         $ccrole = 'co';
 2127:     } else {
 2128:         $ccrole = 'cc';
 2129:     }
 2130:     my ($privref,$gotsymb,$destsymb);
 2131:     my $destinationurl = $ENV{'REQUEST_URI'};
 2132:     if ($destinationurl =~ /(\?|\&)symb=/) {
 2133:         $gotsymb = 1;
 2134:     } elsif ($destinationurl =~ m{^/enc/}) {
 2135:         my $plainurl = &Apache::lonenc::unencrypted($destinationurl);
 2136:         if ($plainurl =~ /(\?|\&)symb=/) {
 2137:             $gotsymb = 1;
 2138:         }
 2139:     }
 2140:     unless ($gotsymb) {
 2141:         $destsymb = &Apache::lonnet::symbread();
 2142:         if ($destsymb ne '') {
 2143:             $destsymb = &Apache::lonenc::check_encrypt($destsymb);
 2144:         }
 2145:     }
 2146:     my $reqprivs = &required_privs();
 2147:     if (ref($reqprivs) eq 'HASH') {
 2148:         my $destination = $destinationurl;
 2149:         $destination =~ s/(\?.*)$//;
 2150:         if (exists($reqprivs->{$destination})) {
 2151:             if ($reqprivs->{$destination} =~ /,/) {
 2152:                 @{$privref} = split(/,/,$reqprivs->{$destination});
 2153:             } else { 
 2154:                 $privref = [$reqprivs->{$destination}];
 2155:             }
 2156:         }
 2157:     }
 2158:     if ($env{'user.role.'.$ccrole.'./'.$cdom.'/'.$cnum}) {
 2159:         my ($start,$end) = split(/\./,$env{'user.role.'.$ccrole.'./'.$cdom.'/'.$cnum});
 2160:         if ((($start) && ($start<0)) || 
 2161:             (($end) && ($end<$now))  ||
 2162:             (($start) && ($now<$start))) {
 2163:             $is_cc = 0;
 2164:         } else {
 2165:             $is_cc = 1;
 2166:         }
 2167:     }
 2168:     if ($is_cc) {
 2169:         &get_all_courseroles($cdom,$cnum,\%courseroles,\%seccount,\%courseprivs);
 2170:     } elsif ($env{'request.role'} =~ m{^\Qcr/$cdom/$cdom-domainconfig/\E(\w+)\.\Q/$cdom/$cnum\E}) {
 2171:         &get_customadhoc_roles($cdom,$cnum,\%courseroles,\%seccount,\%courseprivs,\%roledesc,$privref);
 2172:     } else {
 2173:         my %gotnosection;
 2174:         foreach my $item (keys(%env)) {
 2175:             if ($item =~ m-^user\.role\.([^.]+)\./\Q$cdom\E/\Q$cnum\E/?(\w*)$-) {
 2176:                 my $role = $1;
 2177:                 my $sec = $2;
 2178:                 next if ($role eq 'gr');
 2179:                 my ($start,$end) = split(/\./,$env{$item});
 2180:                 next if (($start && $start > $now) || ($end && $end < $now));
 2181:                 if ($sec eq '') {
 2182:                     if (!$gotnosection{$role}) {
 2183:                         $seccount{$role} ++;
 2184:                         $gotnosection{$role} = 1;
 2185:                     }
 2186:                 }
 2187:                 if ((ref($privref) eq 'ARRAY') && (@{$privref} > 0)) {
 2188:                     my $cnumsec = $cnum;
 2189:                     if ($sec ne '') {
 2190:                         $cnumsec .= "/$sec";
 2191:                     }
 2192:                     $courseprivs{"$role./$cdom/$cnumsec./"} =
 2193:                         $env{"user.priv.$role./$cdom/$cnumsec./"};
 2194:                     $courseprivs{"$role./$cdom/$cnumsec./$cdom/"} =
 2195:                         $env{"user.priv.$role./$cdom/$cnumsec./$cdom/"};
 2196:                     $courseprivs{"$role./$cdom/$cnumsec./$cdom/$cnumsec"} =
 2197:                         $env{"user.priv.$role./$cdom/$cnumsec./$cdom/$cnumsec"};
 2198:                 }
 2199:                 if (ref($courseroles{$role}) eq 'ARRAY') {
 2200:                     if ($sec ne '') {
 2201:                         if (!grep(/^\Q$sec\E$/,@{$courseroles{$role}})) {
 2202:                             push(@{$courseroles{$role}},$sec);
 2203:                             $seccount{$role} ++;
 2204:                         }
 2205:                     }
 2206:                 } else {
 2207:                     @{$courseroles{$role}} = ();
 2208:                     if ($sec ne '') {
 2209:                         $seccount{$role} ++;
 2210:                         push(@{$courseroles{$role}},$sec);
 2211:                     }
 2212:                 }
 2213:             }
 2214:         }
 2215:     }
 2216:     my @roles_order = ($ccrole,'in','ta','ep','ad','st');
 2217:     my $numdiffsec;
 2218:     if (keys(%seccount) == 1) {
 2219:         foreach my $key (keys(%seccount)) {
 2220:             $numdiffsec = $seccount{$key};
 2221:         }
 2222:     }
 2223:     if ((keys(%seccount) > 1) || ($numdiffsec > 1)) {
 2224:         my @submenu;
 2225:         $js = &jump_to_role($cdom,$cnum,\%seccount,\%courseroles,\%courseprivs,\%roledesc,$privref);
 2226:         $form = 
 2227:             '<form name="rolechooser" method="post" action="'.$httphost.'/adm/roles">'."\n".
 2228:             '  <input type="hidden" name="destinationurl" value="'.
 2229:             &HTML::Entities::encode($destinationurl).'" />'."\n".
 2230:             '  <input type="hidden" name="gotorole" value="1" />'."\n".
 2231:             '  <input type="hidden" name="selectrole" value="" />'."\n".
 2232:             '  <input type="hidden" name="switchrole" value="" />'."\n";
 2233:         if ($destsymb ne '') {
 2234:             $form .= '  <input type="hidden" name="destsymb" value="'.
 2235:                         &HTML::Entities::encode($destsymb).'" />'."\n";
 2236:         }
 2237:         $form .= '</form>'."\n";
 2238:         foreach my $role (@roles_order) {
 2239:             my $include;
 2240:             if (defined($courseroles{$role})) {
 2241:                 if ($env{'request.role'} =~ m{^\Q$role\E}) {
 2242:                     if ($seccount{$role} > 1) {
 2243:                         $include = 1;
 2244:                     }
 2245:                 } else {
 2246:                     $include = 1;
 2247:                 }
 2248:             }
 2249:             if ($include) {
 2250:                 push(@submenu,['javascript:adhocRole('."'$role'".')',
 2251:                                &Apache::lonnet::plaintext($role,$crstype)]);
 2252:             }
 2253:         }
 2254:         foreach my $role (sort(keys(%courseroles))) {
 2255:             if ($role =~ /^cr/) {
 2256:                 my $include;
 2257:                 if ($env{'request.role'} =~ m{^\Q$role\E}) {
 2258:                     if ($seccount{$role} > 1) {
 2259:                         $include = 1;
 2260:                     }
 2261:                 } else {
 2262:                     $include = 1; 
 2263:                 }
 2264:                 if ($include) {
 2265:                     my $rolename;
 2266:                     if ($role =~ m{^cr/$cdom/$cdom\-domainconfig/(\w+)(?:/\w+|$)}) {
 2267:                         $rolename = $roledesc{$role};
 2268:                         if ($rolename eq '') {
 2269:                             $rolename = &mt('Helpdesk [_1]',$1);
 2270:                         }
 2271:                     } else {
 2272:                         $rolename = &Apache::lonnet::plaintext($role);
 2273:                     }
 2274:                     push(@submenu,['javascript:adhocRole('."'$role'".')',
 2275:                                    $rolename]);
 2276:                 }
 2277:             }
 2278:         }
 2279:         if (@submenu > 0) {
 2280:             $switcher = &create_submenu('','',&mt('Switch role'),\@submenu);
 2281:         }
 2282:     }
 2283:     return ($js,$form,$switcher);
 2284: }
 2285: 
 2286: sub get_all_courseroles {
 2287:     my ($cdom,$cnum,$courseroles,$seccount,$courseprivs) = @_;
 2288:     unless ((ref($courseroles) eq 'HASH') && (ref($seccount) eq 'HASH') &&
 2289:             (ref($courseprivs) eq 'HASH')) {
 2290:         return;
 2291:     }
 2292:     my ($result,$cached) = 
 2293:         &Apache::lonnet::is_cached_new('getcourseroles',$cdom.'_'.$cnum);
 2294:     if (defined($cached)) {
 2295:         if (ref($result) eq 'HASH') {
 2296:             if ((ref($result->{'roles'}) eq 'HASH') && 
 2297:                 (ref($result->{'seccount'}) eq 'HASH') && 
 2298:                 (ref($result->{'privs'}) eq 'HASH')) {
 2299:                 %{$courseroles} = %{$result->{'roles'}};
 2300:                 %{$seccount} = %{$result->{'seccount'}};
 2301:                 %{$courseprivs} = %{$result->{'privs'}};
 2302:                 return;
 2303:             }
 2304:         }
 2305:     }
 2306:     my %gotnosection;
 2307:     my %adv_roles =
 2308:          &Apache::lonnet::get_course_adv_roles($env{'request.course.id'},1);
 2309:     foreach my $role (keys(%adv_roles)) {
 2310:         my ($urole,$usec) = split(/:/,$role);
 2311:         if (!$gotnosection{$urole}) {
 2312:             $seccount->{$urole} ++;
 2313:             $gotnosection{$urole} = 1;
 2314:         }
 2315:         if (ref($courseroles->{$urole}) eq 'ARRAY') {
 2316:             if ($usec ne '') {
 2317:                 if (!grep(/^Q$usec\E$/,@{$courseroles->{$urole}})) {
 2318:                     push(@{$courseroles->{$urole}},$usec);
 2319:                     $seccount->{$urole} ++;
 2320:                 }
 2321:             }
 2322:         } else {
 2323:             @{$courseroles->{$urole}} = ();
 2324:             if ($usec ne '') {
 2325:                 $seccount->{$urole} ++;
 2326:                 push(@{$courseroles->{$urole}},$usec);
 2327:             }
 2328:         }
 2329:         my $area = '/'.$cdom.'/'.$cnum;
 2330:         if ($usec ne '') {
 2331:             $area .= '/'.$usec;
 2332:         }
 2333:         if ($role =~ /^cr\//) {
 2334:             &Apache::lonnet::custom_roleprivs($courseprivs,$urole,$cdom,$cnum,$urole.'.'.$area,$area);
 2335:         } else {
 2336:             &Apache::lonnet::standard_roleprivs($courseprivs,$urole,$cdom,$urole.'.'.$area,$cnum,$area);
 2337:         }
 2338:     }
 2339:     my %sections_count = &Apache::loncommon::get_sections($cdom,$cnum,['st']);
 2340:     @{$courseroles->{'st'}} = ();
 2341:     &Apache::lonnet::standard_roleprivs($courseprivs,'st',$cdom,"st./$cdom/$cnum",$cnum,"/$cdom/$cnum");
 2342:     if (keys(%sections_count) > 0) {
 2343:         push(@{$courseroles->{'st'}},keys(%sections_count));
 2344:         $seccount->{'st'} = scalar(keys(%sections_count));
 2345:     }
 2346:     $seccount->{'st'} ++; # Increment for a section-less student role.  
 2347:     my $rolehash = {
 2348:                      'roles'    => $courseroles,
 2349:                      'seccount' => $seccount,
 2350:                      'privs'    => $courseprivs,
 2351:                    };
 2352:     &Apache::lonnet::do_cache_new('getcourseroles',$cdom.'_'.$cnum,$rolehash);
 2353:     return;
 2354: }
 2355: 
 2356: sub get_customadhoc_roles {
 2357:     my ($cdom,$cnum,$courseroles,$seccount,$courseprivs,$roledesc,$privref) = @_;
 2358:     unless ((ref($courseroles) eq 'HASH') && (ref($seccount) eq 'HASH') &&
 2359:             (ref($courseprivs) eq 'HASH') && (ref($roledesc) eq 'HASH')) {
 2360:         return;
 2361:     }
 2362:     my $is_helpdesk = 0;
 2363:     my $now = time;
 2364:     foreach my $role ('dh','da') {
 2365:         if ($env{"user.role.$role./$cdom/"}) {
 2366:             my ($start,$end)=split(/\./,$env{"user.role.$role./$cdom/"});
 2367:             if (!($start && ($now<$start)) && !($end && ($now>$end))) {
 2368:                 $is_helpdesk = 1;
 2369:                 last;
 2370:             }
 2371:         }
 2372:     }
 2373:     if ($is_helpdesk) {
 2374:         my ($possroles,$description) = &Apache::lonnet::get_my_adhocroles($cdom.'_'.$cnum);
 2375:         my %available;
 2376:         if (ref($possroles) eq 'ARRAY') {
 2377:             map { $available{$_} = 1; } @{$possroles};
 2378:         }
 2379:         my %domdefaults = &Apache::lonnet::get_domain_defaults($cdom);
 2380:         if (ref($domdefaults{'adhocroles'}) eq 'HASH') {
 2381:             if (keys(%{$domdefaults{'adhocroles'}})) {
 2382:                 my $numsec = 1;
 2383:                 my @sections;
 2384:                 my ($allseclist,$cached) =
 2385:                     &Apache::lonnet::is_cached_new('courseseclist',$cdom.'_'.$cnum);
 2386:                 if (defined($cached)) {
 2387:                     if ($allseclist ne '') {
 2388:                         @sections = split(/,/,$allseclist);
 2389:                         $numsec += scalar(@sections);
 2390:                     }
 2391:                 } else {
 2392:                     my %sections_count = &Apache::loncommon::get_sections($cdom,$cnum);
 2393:                     @sections = sort(keys(%sections_count));
 2394:                     $numsec += scalar(@sections);
 2395:                     $allseclist = join(',',@sections);
 2396:                     &Apache::lonnet::do_cache_new('courseseclist',$cdom.'_'.$cnum,$allseclist);
 2397:                 }
 2398:                 my (%adhoc,$gotprivs);
 2399:                 my $prefix = "cr/$cdom/$cdom".'-domainconfig';
 2400:                 foreach my $role (keys(%{$domdefaults{'adhocroles'}})) {
 2401:                     next if (($role eq '') || ($role =~ /\W/));
 2402:                     $seccount->{"$prefix/$role"} = $numsec;
 2403:                     $roledesc->{"$prefix/$role"} = $description->{$role};
 2404:                     if ((ref($privref) eq 'ARRAY') && (@{$privref} > 0)) {
 2405:                         if (exists($env{"user.priv.$prefix/$role./$cdom/$cnum./"})) {
 2406:                             $courseprivs->{"$prefix/$role./$cdom/$cnum./"} =
 2407:                                 $env{"user.priv.$prefix/$role./$cdom/$cnum./"};
 2408:                             $courseprivs->{"$prefix/$role./$cdom/$cnum./$cdom/"} =
 2409:                                 $env{"user.priv.$prefix/$role./$cdom/$cnum./$cdom/"};
 2410:                             $courseprivs->{"$prefix/$role./$cdom/$cnum./$cdom/$cnum"} =
 2411:                                 $env{"user.priv.$prefix/$role./$cdom/$cnum./$cdom/$cnum"};
 2412:                         } else {
 2413:                             unless ($gotprivs) {
 2414:                                 my ($adhocroles,$privscached) =
 2415:                                     &Apache::lonnet::is_cached_new('adhocroles',$cdom);
 2416:                                 if ((defined($privscached)) && (ref($adhocroles) eq 'HASH')) {
 2417:                                     %adhoc = %{$adhocroles};
 2418:                                 } else {
 2419:                                     my $confname = &Apache::lonnet::get_domainconfiguser($cdom);
 2420:                                     my %roledefs = &Apache::lonnet::dump('roles',$cdom,$confname,'rolesdef_');
 2421:                                     foreach my $key (keys(%roledefs)) {
 2422:                                         (undef,my $rolename) = split(/_/,$key);
 2423:                                         if ($rolename ne '') {
 2424:                                             my ($systempriv,$domainpriv,$coursepriv) = split(/\_/,$roledefs{$key});
 2425:                                             $coursepriv = &Apache::lonnet::course_adhocrole_privs($rolename,$cdom,$cnum,$coursepriv);
 2426:                                             $adhoc{$rolename} = join('_',($systempriv,$domainpriv,$coursepriv));
 2427:                                         }
 2428:                                     }
 2429:                                     &Apache::lonnet::do_cache_new('adhocroles',$cdom,\%adhoc);
 2430:                                 }
 2431:                                 $gotprivs = 1;
 2432:                             }
 2433:                             ($courseprivs->{"$prefix/$role./$cdom/$cnum./"},
 2434:                              $courseprivs->{"$prefix/$role./$cdom/$cnum./$cdom/"},
 2435:                              $courseprivs->{"$prefix/$role./$cdom/$cnum./$cdom/$cnum"}) =
 2436:                                  split(/\_/,$adhoc{$role});
 2437:                         }
 2438:                     }
 2439:                     if ($available{$role}) {
 2440:                         $courseroles->{"$prefix/$role"} = \@sections;
 2441:                     }
 2442:                 }
 2443:             }
 2444:         }
 2445:     }
 2446:     return;
 2447: }
 2448: 
 2449: sub jump_to_role {
 2450:     my ($cdom,$cnum,$seccount,$courseroles,$courseprivs,$roledesc,$privref) = @_;
 2451:     my %lt = &Apache::lonlocal::texthash(
 2452:                 this => 'This role has section(s) associated with it.',
 2453:                 ente => 'Enter a specific section.',
 2454:                 orlb => 'Enter a specific section, or leave blank for no section.',
 2455:                 avai => 'Available sections are:',
 2456:                 youe => 'You entered an invalid section choice:',
 2457:                 plst => 'Please try again.',
 2458:                 role => 'The role you selected is not permitted to view the current page.',
 2459:                 swit => 'Switch role, but display Main Menu page instead?',
 2460:     );
 2461:     my $js;
 2462:     if (ref($courseroles) eq 'HASH') {
 2463:         $js = '    var secpick = new Array("'.$lt{'ente'}.'","'.$lt{'orlb'}.'");'."\n". 
 2464:               '    var numsec = new Array();'."\n".
 2465:               '    var rolesections = new Array();'."\n".
 2466:               '    var rolenames = new Array();'."\n".
 2467:               '    var roleseclist = new Array();'."\n";
 2468:         my @items = keys(%{$courseroles});
 2469:         for (my $i=0; $i<@items; $i++) {
 2470:             $js .= '    rolenames['.$i.'] = "'.$items[$i].'";'."\n";
 2471:             my ($secs,$secstr);
 2472:             if (ref($courseroles->{$items[$i]}) eq 'ARRAY') {
 2473:                 my @sections = sort { $a <=> $b } @{$courseroles->{$items[$i]}};
 2474:                 $secs = join('","',@sections);
 2475:                 $secstr = join(', ',@sections);
 2476:             }
 2477:             $js .= '    rolesections['.$i.'] = new Array("'.$secs.'");'."\n".
 2478:                    '    roleseclist['.$i.'] = "'.$secstr.'";'."\n".
 2479:                    '    numsec['.$i.'] = "'.$seccount->{$items[$i]}.'";'."\n";
 2480:         }
 2481:     }
 2482:     my $checkroles = 0;
 2483:     if ((ref($privref) eq 'ARRAY') && (@{$privref} > 0) && (ref($courseprivs) eq 'HASH')) {
 2484:         my %disallowed;
 2485:         foreach my $role (sort(keys(%{$courseprivs}))) {
 2486:             my $trole;
 2487:             if ($role =~ m{^(.+?)\Q./$cdom/$cnum\E}) {
 2488:                 $trole = $1;
 2489:             }
 2490:             if (($trole ne '') && ($trole ne 'cm')) {
 2491:                 $disallowed{$trole} = 1;
 2492:                 foreach my $priv (@{$privref}) { 
 2493:                     if ($courseprivs->{$role} =~ /\Q:$priv\E($|:|\&\w+)/) {
 2494:                         delete($disallowed{$trole});
 2495:                         last;
 2496:                     }
 2497:                 }
 2498:             }
 2499:         }
 2500:         if (keys(%disallowed) > 0) {
 2501:             $checkroles = 1;
 2502:             $js .= "    var disallow = new Array('".join("','",keys(%disallowed))."');\n".
 2503:                    "    var rolecheck = 1;\n";
 2504:         }
 2505:     }
 2506:     if (!$checkroles) {
 2507:         $js .=  "    var disallow = new Array();\n".
 2508:                 "    rolecheck = 0;\n";
 2509:     }
 2510:     return <<"END";
 2511: <script type="text/javascript">
 2512: //<![CDATA[
 2513: function adhocRole(newrole) {
 2514:     $js
 2515:     if (newrole == '') {
 2516:         return;
 2517:     } 
 2518:     var fullrole = newrole+'./$cdom/$cnum';
 2519:     var selidx = '';
 2520:     for (var i=0; i<rolenames.length; i++) {
 2521:         if (rolenames[i] == newrole) {
 2522:             selidx = i;
 2523:         }
 2524:     }
 2525:     if (rolecheck > 0) {
 2526:         for (var i=0; i<disallow.length; i++) {
 2527:             if (disallow[i] == newrole) {
 2528:                 if (confirm("$lt{'role'}\\n$lt{'swit'}")) {
 2529:                     document.rolechooser.destinationurl.value = '/adm/menu';
 2530:                 } else {
 2531:                     return;
 2532:                 }
 2533:             }
 2534:         }
 2535:     }
 2536:     var secok = 1;
 2537:     var secchoice = '';
 2538:     if (selidx >= 0) {
 2539:         if (numsec[selidx] > 1) {
 2540:             secok = 0;
 2541:             var numrolesec = rolesections[selidx].length;
 2542:             var msgidx = numsec[selidx] - numrolesec;
 2543:             secchoice = prompt("$lt{'this'} "+secpick[msgidx]+"\\n$lt{'avai'} "+roleseclist[selidx],"");
 2544:             if (secchoice == '') {
 2545:                 if (msgidx > 0) {
 2546:                     secok = 1;
 2547:                 }
 2548:             } else {
 2549:                 for (var j=0; j<rolesections[selidx].length; j++) {
 2550:                     if (rolesections[selidx][j] == secchoice) {
 2551:                         secok = 1;
 2552:                     }
 2553:                 }
 2554:             }
 2555:         } else {
 2556:             if (rolesections[selidx].length == 1) {
 2557:                 secchoice = rolesections[selidx][0];
 2558:             }
 2559:         }
 2560:     }
 2561:     if (secok == 1) {
 2562:         if (secchoice != '') {
 2563:             fullrole += '/'+secchoice;
 2564:         }
 2565:     } else {
 2566:         if (secchoice != null) {
 2567:             alert("$lt{'youe'} \\""+secchoice+"\\".\\n $lt{'plst'}");
 2568:         }
 2569:         return;
 2570:     }
 2571:     if (fullrole == "$env{'request.role'}") {
 2572:         return;
 2573:     }
 2574:     itemid = retrieveIndex('gotorole');
 2575:     if (itemid != -1) {
 2576:         document.rolechooser.elements[itemid].name = fullrole;
 2577:     }
 2578:     document.rolechooser.switchrole.value = fullrole;
 2579:     document.rolechooser.selectrole.value = '1';
 2580:     document.rolechooser.submit();
 2581:     return;
 2582: }
 2583: 
 2584: function retrieveIndex(item) {
 2585:     for (var i=0;i<document.rolechooser.elements.length;i++) {
 2586:         if (document.rolechooser.elements[i].name == item) {
 2587:             return i;
 2588:         }
 2589:     }
 2590:     return -1;
 2591: }
 2592: // ]]>
 2593: </script>
 2594: END
 2595: }
 2596: 
 2597: sub required_privs {
 2598:     my $privs =  {
 2599:              '/adm/parmset'      => 'opa,vpa',
 2600:              '/adm/courseprefs'  => 'opa,vpa',
 2601:              '/adm/whatsnew'     => 'whn',
 2602:              '/adm/populate'     => 'cst,vpa,vcl',
 2603:              '/adm/trackstudent' => 'vsa',
 2604:              '/adm/statistics'   => 'mgr,vgr',
 2605:              '/adm/setblock'     => 'dcm,vcb',
 2606:              '/adm/coursedocs'   => 'mdc',
 2607:            };
 2608:     unless ($env{'course.'.$env{'request.course.id'}.'.grading'} eq 'spreadsheet') {
 2609:         $privs->{'/adm/classcalc'}   = 'vgr',
 2610:         $privs->{'/adm/assesscalc'}  = 'vgr',
 2611:         $privs->{'/adm/studentcalc'} = 'vgr';
 2612:     }
 2613:     return $privs;
 2614: }
 2615: 
 2616: sub countdown_timer {
 2617:     if (($env{'request.course.id'}) && ($env{'request.symb'} ne '') &&
 2618:         ($env{'request.filename'}=~/$LONCAPA::assess_re/)) {
 2619:         my ($type,$hastimeleft,$slothastime);
 2620:         my $now = time;
 2621:         if ($env{'request.filename'} =~ /\.task$/) {
 2622:             $type = 'Task';
 2623:         } else {
 2624:             $type = 'problem';
 2625:         }
 2626:         my ($status,$accessmsg,$slot_name,$slot) =
 2627:             &Apache::lonhomework::check_slot_access('0',$type);
 2628:         if ($slot_name ne '') {
 2629:             if (ref($slot) eq 'HASH') {
 2630:                 if (($slot->{'starttime'} < $now) &&
 2631:                     ($slot->{'endtime'} > $now)) {
 2632:                     $slothastime = 1;
 2633:                 }
 2634:             }
 2635:         }
 2636:         if ($status ne 'CAN_ANSWER') {
 2637:             return;
 2638:         }
 2639:         my $duedate = &Apache::lonnet::EXT("resource.0.duedate");
 2640:         my @interval=&Apache::lonnet::EXT("resource.0.interval");
 2641:         my ($timelimit,$usesdone,$donebuttontext,$proctor,$secret);
 2642:         if (@interval > 1) {
 2643:             ($timelimit,my $donesuffix) = split(/_/,$interval[0],2);
 2644:             if ($donesuffix =~ /^done\:([^\:]+)\:(.*)$/) {
 2645:                 $usesdone = 'done';
 2646:                 $donebuttontext = $1;
 2647:                 (undef,$proctor,$secret) = split(/_/,$2);
 2648:             } elsif ($donesuffix =~ /^done(|_.+)$/) {
 2649:                 $donebuttontext = &mt('Done');
 2650:                 ($usesdone,$proctor,$secret) = split(/_/,$donesuffix);
 2651:             }
 2652:             my $first_access=&Apache::lonnet::get_first_access($interval[1]);
 2653:             if ($first_access > 0) {
 2654:                 if ($first_access+$timelimit > time) {
 2655:                     $hastimeleft = 1;
 2656:                 }
 2657:             }
 2658:         }
 2659:         if (($duedate && $duedate > time) ||
 2660:             (!$duedate && $hastimeleft) ||
 2661:             ($slot_name ne '' && $slothastime)) {
 2662:             my ($collapse,$expand,$alttxt,$title,$currdisp,$donebutton);
 2663:             if ((@interval > 1 && $hastimeleft) ||
 2664:                 ($type eq 'Task' && $slothastime)) {
 2665:                 $currdisp = 'inline';
 2666:                 $collapse = '&#9658;&nbsp;';
 2667:                 if ((@interval > 1) && ($hastimeleft)) {
 2668:                     if ($usesdone eq 'done') {
 2669:                         $donebutton = &done_button_js($interval[1],'','',$proctor,$donebuttontext);
 2670:                     }
 2671:                 }
 2672:             } else {
 2673:                 $currdisp = 'none';
 2674:                 $expand = '&#9668;&nbsp;';
 2675:             }
 2676:             unless ($env{'environment.icons'} eq 'iconsonly') {
 2677:                 $alttxt = &mt('Timer');
 2678:                 $title = $alttxt.'&nbsp;';
 2679:             }
 2680:             my $desc = &mt('Countdown to due date/time');
 2681: 
 2682:             return <<END;
 2683: $donebutton
 2684: <a href="javascript:toggleCountdown();" class="LC_menubuttons_link">
 2685: <span id="ddcountcollapse" class="LC_menubuttons_inline_text">
 2686: $collapse
 2687: </span></a>
 2688: <span id="duedatecountdown" class="LC_menubuttons_inline_text" style="display: $currdisp;"></span>
 2689: <a href="javascript:toggleCountdown();" class="LC_menubuttons_link">
 2690: <span id="ddcountexpand" class="LC_menubuttons_inline_text" >$expand</span>
 2691: <img src="/res/adm/pages/timer.png" title="$desc" class="LC_icon" alt="$alttxt" /><span class="LC_menubuttons_inline_text">$title</span></a>
 2692: END
 2693:         }
 2694:     }
 2695:     return;
 2696: }
 2697: 
 2698: sub placement_progress {
 2699:     my ($totalpoints,$incomplete) = &Apache::lonplacementtest::check_completion(undef,undef,1);
 2700:     my $complete = 100 - $incomplete;
 2701:     return '<span class="LC_placement_prog">'.
 2702:            &mt('Test is [_1]% complete',$complete).'</span>';
 2703: }
 2704: 
 2705: # ================================================================ Main Program
 2706: 
 2707: BEGIN {
 2708:     if (! defined($readdesk)) {
 2709:         {
 2710:             my $tabfile = $Apache::lonnet::perlvar{'lonTabDir'}.'/mydesk.tab';
 2711:             if ( CORE::open( my $config,"<$tabfile") ) {
 2712:                 while (my $configline=<$config>) {
 2713:                     $configline=(split(/\#/,$configline))[0];
 2714:                     $configline=~s/^\s+//;
 2715:                     chomp($configline);
 2716:                     if ($configline=~/^cat\:/) {
 2717:                         my @entries=split(/\:/,$configline);
 2718:                         $category_positions{$entries[2]}=$entries[1];
 2719:                         $category_names{$entries[2]}=$entries[3];
 2720:                     } elsif ($configline=~/^prim\:/) {
 2721:                         my @entries = (split(/\:/, $configline))[1..6];
 2722:                         push(@primary_menu,\@entries);
 2723:                     } elsif ($configline=~/^primsub\:/) {
 2724:                         my ($parent,@entries) = (split(/\:/, $configline))[1..4];
 2725:                         push(@{$primary_submenu{$parent}},\@entries);
 2726:                     } elsif ($configline=~/^scnd\:/) {
 2727:                         my @entries = (split(/\:/, $configline))[1..5];
 2728:                         push(@secondary_menu,\@entries);
 2729:                     } elsif ($configline) {
 2730:                         push(@desklines,$configline);
 2731:                     }
 2732:                 }
 2733:                 CORE::close($config);
 2734:             }
 2735:         }
 2736:         $readdesk='done';
 2737:     }
 2738: }
 2739: 
 2740: 1;
 2741: __END__
 2742: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>