File:  [LON-CAPA] / loncom / interface / lonmenu.pm
Revision 1.451: download - view: text, annotated - select for diffs
Sun Jun 19 04:27:50 2016 UTC (7 years, 11 months ago) by raeburn
Branches: MAIN
CVS tags: HEAD
- Course Editor has "Standard Problem" item (Grading tab) for creation
  of new problem in user's Authoring Space, or in a Course "Authoring" Space.
- Course Editor has "Import from Course Resources" item (Import tab) to
  import published content from Course "Authoring" Space.
- Course "Authoring" Space
  - default.rights -- course-only access
  - quota is shared with content uploaded directly to course
  - content only browsable in course context
  - metadata not included in searchable meatdata MySQL table
CVs: ----------------------------------------------------------------------

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

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