File:  [LON-CAPA] / loncom / interface / lonmenu.pm
Revision 1.510: download - view: text, annotated - select for diffs
Tue Sep 21 22:54:26 2021 UTC (2 years, 8 months ago) by raeburn
Branches: MAIN
CVS tags: HEAD
- For SAML authentication (Shibboleth) config for each of domain's nodes
  to set /adm/log-in as landing page for user toggle between SSO or non-SSO.

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

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