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