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