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