File:  [LON-CAPA] / loncom / interface / lonmenu.pm
Revision 1.480: download - view: text, annotated - select for diffs
Fri Sep 29 19:18:10 2017 UTC (6 years, 8 months ago) by raeburn
Branches: MAIN
CVS tags: HEAD
- In course context the Functions menu will include a "View source" item/icon
  for a published assessment item, if the user does not have rights to edit,
  and either of the following are true:
  (a) user has a cre priv, and content has source set to "open",
  (b) user has vxc priv (View XML of assessments in course where
      course owner/co-owner is author/co-author of content).
- vxc priv is assignable to custom role, including ad hoc custom roles
  which can be made available to users with domain helpdesk role.

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

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