File:  [LON-CAPA] / loncom / interface / lonmenu.pm
Revision 1.482: download - view: text, annotated - select for diffs
Sat Oct 7 22:20:19 2017 UTC (6 years, 8 months ago) by raeburn
Branches: MAIN
CVS tags: HEAD
- Use sub-menu dropdown lists for Grades, People, Settings and Public for
  course personnel (as used in 2.11). Separate Groups, Slots, Syllabus,
  and Feeds items are in the corresponding dropdown lists.

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

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