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