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