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