Annotation of loncom/interface/lonmenu.pm, revision 1.477

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

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