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