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