File:  [LON-CAPA] / loncom / interface / lonmenu.pm
Revision 1.478: download - view: text, annotated - select for diffs
Sat Sep 9 21:30:12 2017 UTC (6 years, 9 months ago) by raeburn
Branches: MAIN
CVS tags: HEAD
- No breadcrumbtrail for folders/sub-folders for Placement Tests, unless
  viewed by privileged user.

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

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