File:  [LON-CAPA] / loncom / interface / lonmenu.pm
Revision 1.369.2.52: download - view: text, annotated - select for diffs
Sun Jun 22 19:48:05 2014 UTC (9 years, 10 months ago) by raeburn
Branches: version_2_11_X
CVS tags: version_2_11_0
- For 2.11
  - Backport 1.428

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

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