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