Annotation of loncom/interface/lonmenu.pm, revision 1.363
1.1 www 1: # The LearningOnline Network with CAPA
2: # Routines to control the menu
3: #
1.363 ! www 4: # $Id: lonmenu.pm,v 1.362 2011/11/27 20:55:58 www 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: #
1.269 droeschl 29: # There is one parameter controlling the action of this module:
1.48 www 30: #
1.1 www 31:
1.244 jms 32: =head1 NAME
33:
34: Apache::lonmenu
35:
36: =head1 SYNOPSIS
37:
38: Coordinates the response to clicking an image.
39:
40: This is part of the LearningOnline Network with CAPA project
41: described at http://www.lon-capa.org.
42:
1.314 droeschl 43: =head1 GLOBAL VARIABLES
44:
45: =over
46:
47: =item @desklines
48:
49: Each element of this array contains a line of mydesk.tab that doesn't start with
50: cat, prim or scnd.
51: It gets filled in the BEGIN block of this module.
52:
53: =item %category_names
54:
55: The keys of this hash are the abbreviations used in mydesk.tab in those lines that
56: start with cat, the values are strings representing titles.
57: It gets filled in the BEGIN block of this module.
58:
59: =item %category_members
60:
61: TODO
62:
63: =item %category_positions
64:
65: The keys of this hash are the abbreviations used in mydesk.tab in those lines that
66: start with cat, its values are position vectors (column, row).
67: It gets filled in the BEGIN block of this module.
68:
69: =item $readdesk
70:
71: Indicates that mydesk.tab has been read.
72: It is set to 'done' in the BEGIN block of this module.
73:
74: =item @primary_menu
75:
76: The elements of this array reference arrays that are made up of the components
77: of those lines of mydesk.tab that start with prim.
78: It is used by primary_menu() to generate the corresponding menu.
79: It gets filled in the BEGIN block of this module.
80:
81: =item @secondary_menu
82:
83: The elements of this array reference arrays that are made up of the components
84: of those lines of mydesk.tab that start with scnd.
85: It is used by secondary_menu() to generate the corresponding menu.
86: It gets filled in the BEGIN block of this module.
87:
88: =back
89:
1.244 jms 90: =head1 SUBROUTINES
91:
92: =over
93:
1.314 droeschl 94: =item prep_menuitems(\@menuitem)
95:
96: This routine wraps a menuitem in proper HTML. It is used by primary_menu() and
97: secondary_menu().
98:
99: =item primary_menu()
100:
101: This routine evaluates @primary_menu and returns XHTML for the menu
102: that contains following links: About, Message, Roles, Help, Logout
103: @primary_menu is filled within the BEGIN block of this module with
104: entries from mydesk.tab
105:
106: =item secondary_menu()
107:
108: Same as primary_menu() but operates on @secondary_menu.
109:
1.244 jms 110: =item innerregister()
111:
1.320 droeschl 112: This gets called in order to register a URL in the body of the document
1.244 jms 113:
114: =item clear()
115:
116: =item switch()
117:
118: Switch a button or create a link
119: Switch acts on the javascript that is executed when a button is clicked.
120: The javascript is usually similar to "go('/adm/roles')" or "cstrgo(..)".
121:
122: =item secondlevel()
123:
124: =item openmenu()
125:
126: =item inlinemenu()
127:
128: =item rawconfig()
129:
130: =item utilityfunctions()
131:
132: =item serverform()
133:
134: =item constspaceform()
135:
136: =item get_nav_status()
137:
138: =item hidden_button_check()
139:
140: =item roles_selector()
141:
142: =item jump_to_role()
143:
144: =back
145:
146: =cut
147:
1.1 www 148: package Apache::lonmenu;
149:
150: use strict;
1.152 albertel 151: use Apache::lonnet;
1.47 matthew 152: use Apache::lonhtmlcommon();
1.115 albertel 153: use Apache::loncommon();
1.127 albertel 154: use Apache::lonenc();
1.88 www 155: use Apache::lonlocal;
1.361 raeburn 156: use Apache::lonmsg();
1.207 foxr 157: use LONCAPA qw(:DEFAULT :match);
1.282 amueller 158: use HTML::Entities();
1.346 wenzelju 159: use Apache::lonwishlist();
1.88 www 160:
1.283 droeschl 161: use vars qw(@desklines %category_names %category_members %category_positions
162: $readdesk @primary_menu @secondary_menu);
1.88 www 163:
1.56 www 164: my @inlineremote;
1.38 www 165:
1.283 droeschl 166: sub prep_menuitem {
1.291 raeburn 167: my ($menuitem) = @_;
168: return '' unless(ref($menuitem) eq 'ARRAY');
1.283 droeschl 169: my $link;
170: if ($$menuitem[1]) { # graphical Link
171: $link = "<img class=\"LC_noBorder\""
1.291 raeburn 172: . " src=\"" . &Apache::loncommon::lonhttpdurl($$menuitem[1]) . "\""
173: . " alt=\"" . &mt($$menuitem[2]) . "\" />";
1.283 droeschl 174: } else { # textual Link
1.291 raeburn 175: $link = &mt($$menuitem[3]);
176: }
1.316 droeschl 177: return '<li><a'
178: # highlighting for new messages
179: . ( $$menuitem[4] eq 'newmsg' ? ' class="LC_new_message"' : '')
1.325 droeschl 180: . qq| href="$$menuitem[0]" target="_top">$link</a></li>|;
1.283 droeschl 181: }
182:
183: # primary_menu() evaluates @primary_menu and returns XHTML for the menu
184: # that contains following links:
185: # About, Message, Roles, Help, Logout
186: # @primary_menu is filled within the BEGIN block of this module with
187: # entries from mydesk.tab
188: sub primary_menu {
189: my $menu;
190: # each element of @primary contains following array:
191: # (link url, icon path, alt text, link text, condition)
1.319 raeburn 192: my $public;
193: if ((($env{'user.name'} eq 'public') && ($env{'user.domain'} eq 'public'))
194: || (($env{'user.name'} eq '') && ($env{'user.domain'} eq ''))) {
195: $public = 1;
196: }
1.283 droeschl 197: foreach my $menuitem (@primary_menu) {
198: # evaluate conditions
1.296 droeschl 199: next if ref($menuitem) ne 'ARRAY'; #
1.283 droeschl 200: next if $$menuitem[4] eq 'nonewmsg' # show links depending on
1.291 raeburn 201: && &Apache::lonmsg::mynewmail(); # whether a new msg
1.283 droeschl 202: next if $$menuitem[4] eq 'newmsg' # arrived or not
1.291 raeburn 203: && !&Apache::lonmsg::mynewmail(); #
1.319 raeburn 204: next if $$menuitem[4] !~ /public/ ##we've a public user,
205: && $public; ##who should not see all
206: ##links
1.283 droeschl 207: next if $$menuitem[4] eq 'onlypublic'# hide links which are
1.319 raeburn 208: && !$public; # only visible to public
209: # users
1.283 droeschl 210: next if $$menuitem[4] eq 'roles' ##show links depending on
1.291 raeburn 211: && &Apache::loncommon::show_course(); ##term 'Courses' or
1.283 droeschl 212: next if $$menuitem[4] eq 'courses' ##'Roles' wanted
1.291 raeburn 213: && !&Apache::loncommon::show_course(); ##
214:
215:
1.283 droeschl 216: if ($$menuitem[3] eq 'Help') { # special treatment for helplink
1.340 raeburn 217: if ($public) {
218: my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
219: my $defdom = &Apache::lonnet::default_login_domain();
220: my $to = &Apache::loncommon::build_recipient_list(undef,
221: 'helpdeskmail',
222: $defdom,$origmail);
223: if ($to ne '') {
224: $menu .= &prep_menuitem($menuitem);
225: }
226: } else {
227: $menu .= '<li>'.&Apache::loncommon::top_nav_help('Help').'</li>';
228: }
1.283 droeschl 229: } else {
1.325 droeschl 230: $menu .= prep_menuitem($menuitem);
1.283 droeschl 231: }
1.291 raeburn 232: }
1.325 droeschl 233: $menu =~ s/\[domain\]/$env{'user.domain'}/g;
234: $menu =~ s/\[user\]/$env{'user.name'}/g;
1.283 droeschl 235:
1.291 raeburn 236: return "<ol class=\"LC_primary_menu LC_right\">$menu</ol>";
1.283 droeschl 237: }
238:
1.329 droeschl 239: #returns hashref {user=>'',dom=>''} containing:
240: # own name, domain if user is au
241: # name, domain of parent author if user is ca or aa
242: #empty return if user is not an author or not on homeserver
243: #
244: #TODO this should probably be moved somewhere more central
245: #since it can be used by different parts of the system
246: sub getauthor{
247: return unless $env{'request.role'}=~/^(ca|aa|au)/; #nothing to do if user isn't some kind of author
248:
249: #co- or assistent author?
250: my ($dom, $user) = ($env{'request.role'} =~ /^(?:ca|aa)\.\/($match_domain)\/($match_username)$/)
251: ? ($1, $2) #domain, username of the parent author
252: : @env{ ('request.role.domain', 'user.name') }; #own domain, username
253:
254: # current server == home server?
255: my $home = &Apache::lonnet::homeserver($user,$dom);
256: foreach (&Apache::lonnet::current_machine_ids()){
257: return {user => $user, dom => $dom} if $_ eq $home;
258: }
259:
260: # if wrong server
261: return;
262: }
1.283 droeschl 263:
264: sub secondary_menu {
265: my $menu;
266:
1.286 raeburn 267: my $crstype = &Apache::loncommon::course_type();
1.327 droeschl 268: my $crs_sec = $env{'request.course.id'} . ($env{'request.course.sec'}
269: ? "/$env{'request.course.sec'}"
270: : '');
271: my $canedit = &Apache::lonnet::allowed('mdc', $env{'request.course.id'});
272: my $canviewgrps = &Apache::lonnet::allowed('vcg', $crs_sec);
273: my $canmodifyuser = &Apache::lonnet::allowed('cst', $crs_sec);
274: my $canviewwnew = &Apache::lonnet::allowed('whn', $crs_sec);
1.341 www 275: my $canmodpara = &Apache::lonnet::allowed('opa', $crs_sec);
1.343 www 276: my $canvgr = &Apache::lonnet::allowed('vgr', $crs_sec);
277: my $canmgr = &Apache::lonnet::allowed('mgr', $crs_sec);
278: my $author = &getauthor();
1.327 droeschl 279:
1.286 raeburn 280: my %groups = &Apache::lonnet::get_active_groups(
281: $env{'user.domain'}, $env{'user.name'},
282: $env{'course.' . $env{'request.course.id'} . '.domain'},
283: $env{'course.' . $env{'request.course.id'} . '.num'});
1.327 droeschl 284:
1.283 droeschl 285: foreach my $menuitem (@secondary_menu) {
286: # evaluate conditions
1.296 droeschl 287: next if ref($menuitem) ne 'ARRAY';
1.283 droeschl 288: next if $$menuitem[4] ne 'always'
1.329 droeschl 289: && $$menuitem[4] ne 'author'
1.283 droeschl 290: && !$env{'request.course.id'};
291: next if $$menuitem[4] =~ /^mdc/
1.286 raeburn 292: && !$canedit;
1.341 www 293: next if $$menuitem[4] eq 'nvgr'
294: && $canvgr;
295: next if $$menuitem[4] eq 'vgr'
296: && !$canvgr;
1.327 droeschl 297: next if $$menuitem[4] eq 'cst'
298: && !$canmodifyuser;
1.343 www 299: next if $$menuitem[4] eq 'ncst'
300: && $canmodifyuser;
301: next if $$menuitem[4] eq 'mgr'
302: && !$canmgr;
303: next if $$menuitem[4] eq 'nmgr'
304: && $canmgr;
1.327 droeschl 305: next if $$menuitem[4] eq 'whn'
306: && !$canviewwnew;
307: next if $$menuitem[4] eq 'opa'
308: && !$canmodpara;
1.283 droeschl 309: next if $$menuitem[4] =~ /showgroups$/
1.300 raeburn 310: && !$canviewgrps
1.286 raeburn 311: && !%groups;
1.329 droeschl 312: next if $$menuitem[4] eq 'author'
313: && !$author;
1.283 droeschl 314:
1.286 raeburn 315: if ($$menuitem[3] eq 'Roles' && $env{'request.course.id'}) {
1.283 droeschl 316: # special treatment for role selector
1.298 raeburn 317: my $roles_selector = &roles_selector(
1.283 droeschl 318: $env{'course.' . $env{'request.course.id'} . '.domain'},
319: $env{'course.' . $env{'request.course.id'} . '.num'} );
320:
321: $menu .= $roles_selector ? "<li>$roles_selector</li>"
322: : '';
1.296 droeschl 323: } else {
324: $menu .= &prep_menuitem(\@$menuitem);
1.283 droeschl 325: }
326: }
327: if ($menu =~ /\[url\].*\[symb\]/) {
1.291 raeburn 328: my $escurl = &escape( &Apache::lonenc::check_encrypt(
329: $env{'request.noversionuri'}));
1.283 droeschl 330:
1.291 raeburn 331: my $escsymb = &escape( &Apache::lonenc::check_encrypt(
332: $env{'request.symb'}));
1.283 droeschl 333:
334: if ( $env{'request.state'} eq 'construct'
335: and ( $env{'request.noversionuri'} eq ''
336: || !defined($env{'request.noversionuri'})))
337: {
1.359 raeburn 338: my $londocroot = $Apache::lonnet::perlvar{'lonDocRoot'};
339: ($escurl = $env{'request.filename'}) =~ s{^\Q$londocroot\E}{};
1.291 raeburn 340: $escurl = &escape($escurl);
1.283 droeschl 341: }
342: $menu =~ s/\[url\]/$escurl/g;
343: $menu =~ s/\[symb\]/$escsymb/g;
344: }
1.329 droeschl 345: $menu =~ s/\[uname\]/$$author{user}/g;
346: $menu =~ s/\[udom\]/$$author{dom}/g;
1.283 droeschl 347:
1.285 wenzelju 348: return "<ul id=\"LC_secondary_menu\">$menu</ul>";
1.283 droeschl 349: }
350:
1.40 www 351: sub innerregister {
1.321 droeschl 352: my ($forcereg,$bread_crumbs) = @_;
1.152 albertel 353: my $const_space = ($env{'request.state'} eq 'construct');
1.131 raeburn 354: my $is_const_dir = 0;
1.120 raeburn 355:
1.175 albertel 356: if ($env{'request.noversionuri'} =~ m{^/res/adm/pages/}) { return ''; }
1.40 www 357:
1.174 albertel 358: $env{'request.registered'} = 1;
1.40 www 359:
1.177 albertel 360: undef(@inlineremote);
1.56 www 361:
1.348 raeburn 362: my $resurl;
1.316 droeschl 363: if ( $env{'request.symb'} && $env{'request.course.id'} ) {
1.267 droeschl 364:
1.348 raeburn 365: (my $mapurl, my $rid, $resurl) = &Apache::lonnet::decode_symb(&Apache::lonnet::symbread());
1.267 droeschl 366: my $coursetitle = $env{'course.'.$env{'request.course.id'}.'.description'};
367:
368: my $maptitle = &Apache::lonnet::gettitle($mapurl);
369: my $restitle = &Apache::lonnet::gettitle(&Apache::lonnet::symbread());
1.318 droeschl 370:
371: #SD
372: #course_type only Course and Community?
373: #
1.324 raeburn 374: my @crumbs;
375: unless (($forcereg) && ($env{'request.noversionuri'} eq '/adm/navmaps')
376: && ($mapurl eq $env{'course.'.$env{'request.course.id'}.'.url'})) {
377: @crumbs = ({text => Apache::loncommon::course_type()
1.318 droeschl 378: . ' Contents',
1.324 raeburn 379: href => "Javascript:gopost('/adm/navmaps','')"});
380: }
1.289 raeburn 381: if ($mapurl ne $env{'course.'.$env{'request.course.id'}.'.url'}) {
382: push(@crumbs, {text => '...',
383: no_mt => 1});
384: }
1.268 droeschl 385:
386: push @crumbs, {text => $maptitle, no_mt => 1} if ($maptitle
387: && $maptitle ne 'default.sequence'
388: && $maptitle ne $coursetitle);
389:
390: push @crumbs, {text => $restitle, no_mt => 1} if $restitle;
391:
1.291 raeburn 392: &Apache::lonhtmlcommon::clear_breadcrumbs();
393: &Apache::lonhtmlcommon::add_breadcrumb(@crumbs);
1.328 droeschl 394: }elsif (! $const_space){
395: #a situation when we're looking at a resource outside of context of a
396: #course or construction space (e.g. with cumulative rights)
397: &Apache::lonhtmlcommon::clear_breadcrumbs();
398: &Apache::lonhtmlcommon::add_breadcrumb({text => 'View Resource'});
1.65 www 399: }
1.41 www 400: # =============================================================================
401: # ============================ This is for URLs that actually can be registered
1.316 droeschl 402: return '' unless ( ($env{'request.noversionuri'}!~m{^/(res/)*adm/})
403: || $forcereg );
1.317 droeschl 404:
1.40 www 405: # -- This applies to homework problems for users with grading privileges
1.152 albertel 406: my $crs='/'.$env{'request.course.id'};
407: if ($env{'request.course.sec'}) {
408: $crs.='_'.$env{'request.course.sec'};
1.107 albertel 409: }
410: $crs=~s/\_/\//g;
411:
1.38 www 412: my $hwkadd='';
1.152 albertel 413: if ($env{'request.symb'} ne '' &&
1.360 www 414: $env{'request.filename'}=~/$LONCAPA::assess_re/) {
1.79 www 415: if (&Apache::lonnet::allowed('mgr',$crs)) {
1.344 www 416: $hwkadd.=&switch('','',7,2,'pgrd.png','Content Grades','grades[_4]',
1.40 www 417: "gocmd('/adm/grades','gradingmenu')",
1.344 www 418: 'Content Grades');
1.154 www 419: } elsif (&Apache::lonnet::allowed('vgr',$crs)) {
1.344 www 420: $hwkadd.=&switch('','',7,2,'subm.png','Content Submissions','missions[_1]',
1.154 www 421: "gocmd('/adm/grades','submission')",
1.344 www 422: 'Content Submissions');
1.38 www 423: }
1.107 albertel 424: }
1.152 albertel 425: if ($env{'request.symb'} ne '' &&
1.145 albertel 426: &Apache::lonnet::allowed('opa',$crs)) {
1.344 www 427: $hwkadd.=&switch('','',7,3,'pparm.png','Content Settings','parms[_2]',
1.107 albertel 428: "gocmd('/adm/parmset','set')",
1.344 www 429: 'Content Settings');
1.38 www 430: }
1.363 ! www 431: if ($env{'request.symb'}=~/^uploaded/ &&
1.362 www 432: &Apache::lonnet::allowed('mdc',$crs)) {
433: $hwkadd.=&switch('','',7,4,'docs.png','Folder/Page Content','parms[_2]',
434: "gocmd('/adm/coursedocs','direct')",
435: 'Folder/Page Content');
436: }
1.40 www 437: # -- End Homework
1.38 www 438: ###
439: ### Determine whether or not to display the 'cstr' button for this
440: ### resource
441: ###
442: my $editbutton = '';
1.258 raeburn 443: my $noeditbutton = 1;
444: my ($cnum,$cdom);
445: if ($env{'request.course.id'}) {
446: $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
447: $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
448: }
1.152 albertel 449: if ($env{'user.author'}) {
1.234 raeburn 450: if ($env{'request.role'}=~/^(aa|ca|au)/) {
1.274 www 451: #
452: # We have the role of an author
453: #
1.38 www 454: # Set defaults for authors
455: my ($top,$bottom) = ('con-','struct');
1.353 www 456: my $action = "go('/priv/".$env{'user.domain'}.'/'.$env{'user.name'}."');";
1.152 albertel 457: my $cadom = $env{'request.role.domain'};
458: my $caname = $env{'user.name'};
1.236 bisitz 459: my $desc = "Enter my construction space";
1.38 www 460: # Set defaults for co-authors
1.152 albertel 461: if ($env{'request.role'} =~ /^ca/) {
1.206 albertel 462: ($cadom,$caname)=($env{'request.role'}=~/($match_domain)\/($match_username)$/);
1.38 www 463: ($top,$bottom) = ('co con-','struct');
1.353 www 464: $action = "go('/priv/".$cadom.'/'.$caname."');";
1.38 www 465: $desc = "Enter construction space as co-author";
1.234 raeburn 466: } elsif ($env{'request.role'} =~ /^aa/) {
467: ($cadom,$caname)=($env{'request.role'}=~/($match_domain)\/($match_username)$/);
468: ($top,$bottom) = ('co con-','struct');
1.353 www 469: $action = "go('/priv/".$cadom.'/'.$caname."');";
1.234 raeburn 470: $desc = "Enter construction space as assistant co-author";
1.38 www 471: }
472: # Check that we are on the correct machine
473: my $home = &Apache::lonnet::homeserver($caname,$cadom);
1.109 albertel 474: my $allowed=0;
475: my @ids=&Apache::lonnet::current_machine_ids();
476: foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
477: if (!$allowed) {
478: $editbutton=&switch('','',6,1,$top,,$bottom,$action,$desc);
1.258 raeburn 479: $noeditbutton = 0;
1.38 www 480: }
481: }
1.274 www 482: #
483: # We are an author for some stuff, but currently do not have the role of author.
484: # Figure out if we have authoring privileges for the resource we are looking at.
485: # This should maybe become a privilege check in lonnet
486: #
1.38 www 487: ##
488: ## Determine if user can edit url.
489: ##
490: my $cfile='';
491: my $cfuname='';
492: my $cfudom='';
1.258 raeburn 493: my $uploaded;
1.330 raeburn 494: my $switchserver='';
495: my $home;
1.152 albertel 496: if ($env{'request.filename'}) {
497: my $file=&Apache::lonnet::declutter($env{'request.filename'});
1.258 raeburn 498: if (defined($cnum) && defined($cdom)) {
499: $uploaded = &is_course_upload($file,$cnum,$cdom);
500: }
501: if (!$uploaded) {
1.357 raeburn 502:
503: $file=~s{^(priv/$match_domain/$match_username)}{/$1};
1.358 raeburn 504: $file=~s{^($match_domain/$match_username)}{/priv/$1};
1.356 raeburn 505:
1.258 raeburn 506: # Check that the user has permission to edit this resource
1.356 raeburn 507: my $setpriv = 1;
508: ($cfuname,$cfudom)=&Apache::loncacc::constructaccess($file,$setpriv);
1.258 raeburn 509: if (defined($cfudom)) {
1.330 raeburn 510: $home=&Apache::lonnet::homeserver($cfuname,$cfudom);
1.258 raeburn 511: my $allowed=0;
512: my @ids=&Apache::lonnet::current_machine_ids();
513: foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
514: if ($allowed) {
515: $cfile=$file;
1.330 raeburn 516: } else {
517: $switchserver=$file;
1.258 raeburn 518: }
1.38 www 519: }
520: }
1.258 raeburn 521: }
1.38 www 522: # Finally, turn the button on or off
1.330 raeburn 523: if (($cfile || $switchserver) && !$const_space) {
1.302 raeburn 524: my $nocrsedit;
525: # Suppress display where CC has switched to student role.
526: if ($env{'request.course.id'}) {
527: unless(&Apache::lonnet::allowed('mdc',
528: $env{'request.course.id'})) {
529: $nocrsedit = 1;
530: }
531: }
532: if ($nocrsedit) {
533: $editbutton=&clear(6,1);
534: } else {
1.336 raeburn 535: my $bot = "go('$cfile')";
1.330 raeburn 536: if ($switchserver) {
537: if ( $env{'request.symb'} && $env{'request.course.id'} ) {
1.336 raeburn 538: $cfile = '/adm/switchserver?otherserver='.$home.'&role='.
539: &HTML::Entities::encode($env{'request.role'},'"<>&').'&symb='.
540: &HTML::Entities::encode($env{'request.symb'},'"<>&');
541: $bot = "need_switchserver('$cfile');";
1.330 raeburn 542: }
543: }
1.302 raeburn 544: $editbutton=&switch
1.345 www 545: ('','',6,1,'pcstr.png','Edit','resource[_2]',
1.336 raeburn 546: $bot,"Edit this resource");
1.302 raeburn 547: $noeditbutton = 0;
548: }
1.38 www 549: } elsif ($editbutton eq '') {
1.191 www 550: $editbutton=&clear(6,1);
1.38 www 551: }
552: }
1.258 raeburn 553: if (($noeditbutton) && ($env{'request.filename'})) {
554: if (&Apache::lonnet::allowed('mdc',$env{'request.course.id'})) {
555: my $file=&Apache::lonnet::declutter($env{'request.filename'});
556: if (defined($cnum) && defined($cdom)) {
557: if (&is_course_upload($file,$cnum,$cdom)) {
558: my $cfile = &edit_course_upload($file,$cnum,$cdom);
559: if ($cfile) {
560: $editbutton=&switch
1.345 www 561: ('','',6,1,'pcstr.png','Edit',
1.258 raeburn 562: 'resource[_2]',"go('".$cfile."');",
563: 'Edit this resource');
564: }
565: }
566: }
567: }
568: }
1.348 raeburn 569: if ($env{'request.course.id'}) {
570: if ($resurl eq "public/$cdom/$cnum/syllabus") {
571: if ($env{'course.'.$env{'request.course.id'}.'.externalsyllabus'} =~ /\w/) {
572: if (&Apache::lonnet::allowed('mdc',$env{'request.course.id'})) {
573: $editbutton=&switch('','',6,1,'pcstr.png','Edit',
574: 'resource[_2]',
575: "go('/adm/courseprefs?phase=display&actions=courseinfo')",
576: 'Edit this resource');
577: }
578: }
579: }
580: }
1.38 www 581: ###
582: ###
1.41 www 583: # Prepare the rest of the buttons
1.120 raeburn 584: my $menuitems;
585: if ($const_space) {
1.274 www 586: #
587: # We are in construction space
588: #
1.353 www 589:
1.355 raeburn 590: my $londocroot = $Apache::lonnet::perlvar{'lonDocRoot'};
1.353 www 591: my ($udom,$uname,$thisdisfn) =
1.355 raeburn 592: ($env{'request.filename'}=~m{^\Q$londocroot/priv/\E([^/]+)/([^/]+)/(.*)$});
1.353 www 593: my $currdir = '/priv/'.$udom.'/'.$uname.'/'.$thisdisfn;
1.131 raeburn 594: if ($currdir =~ m-/$-) {
595: $is_const_dir = 1;
596: } else {
1.267 droeschl 597: $currdir =~ s|[^/]+$||;
1.200 foxr 598: my $cleandisfn = &Apache::loncommon::escape_single($thisdisfn);
1.208 albertel 599: my $esc_currdir = &Apache::loncommon::escape_single($currdir);
1.274 www 600: #
601: # Probably should be in mydesk.tab
602: #
1.131 raeburn 603: $menuitems=(<<ENDMENUITEMS);
1.344 www 604: s&6&1&list.png&Directory&dir[_1]&golist('$esc_currdir')&List current directory
1.353 www 605: s&6&2&rtrv.png&Retrieve&version[_1]&gocstr('/adm/retrieve','/priv/$udom/$uname/$cleandisfn')&Retrieve old version
606: s&6&3&pub.png&Publish&resource[_3]&gocstr('/adm/publish','/priv/$udom/$uname/$cleandisfn')&Publish this resource
607: s&7&1&del.png&Delete&resource[_2]&gocstr('/adm/cfile?action=delete','/priv/$udom/$uname/$cleandisfn')&Delete this resource
608: s&7&2&prt.png&Print&printout[_1]&gocstr('/adm/printout','/priv/$udom/$uname/$cleandisfn')&Prepare a printable document
1.120 raeburn 609: ENDMENUITEMS
1.131 raeburn 610: }
1.308 raeburn 611: if (ref($bread_crumbs) eq 'ARRAY') {
612: &Apache::lonhtmlcommon::clear_breadcrumbs();
613: foreach my $crumb (@{$bread_crumbs}){
614: &Apache::lonhtmlcommon::add_breadcrumb($crumb);
615: }
616: }
1.203 foxr 617: } elsif ( defined($env{'request.course.id'}) &&
618: $env{'request.symb'} ne '' ) {
1.274 www 619: #
620: # We are in a course and looking at a registred URL
621: # Should probably be in mydesk.tab
622: #
1.120 raeburn 623: $menuitems=(<<ENDMENUITEMS);
1.41 www 624: c&3&1
1.344 www 625: s&2&1&back.png&&&gopost('/adm/flip','back:'+currentURL)&Previous content resource&&1
626: s&2&3&forw.png&&&gopost('/adm/flip','forward:'+currentURL)&Next content resource&&3
1.77 www 627: c&6&3
628: c&8&1
629: c&8&2
1.344 www 630: s&8&3&prt.png&Print&printout[_1]&gopost('/adm/printout',currentURL)&Prepare a printable document
1.41 www 631: ENDMENUITEMS
1.332 wenzelju 632: if (&Apache::lonnet::allowed('bre', $env{'request.course.id'}) eq 'F' && $env{'request.uri'} =~ /^\/res/) {
633: # wishlist is only available for users with access to resource-pool
634: # and links can only be set for resources within the resource-pool
635: $menuitems .= (<<ENDMENUITEMS);
1.344 www 636: s&9&1&wishlist-link.png&Wishlist&wishlistlink[_2]&set_wishlistlink()&Set a link for this resource to wishlist&&1
1.332 wenzelju 637: ENDMENUITEMS
638: }
1.216 albertel 639:
1.243 tempelho 640: my $currentURL = &Apache::loncommon::get_symb();
641: my ($symb_old,$symb_old_enc) = &Apache::loncommon::clean_symb($currentURL);
642: my $annotation = &Apache::loncommon::get_annotation($symb_old,$symb_old_enc);
643: $menuitems.="s&9&3&";
644: if(length($annotation) > 0){
1.317 droeschl 645: $menuitems.="anot2.png";
1.243 tempelho 646: }else{
1.317 droeschl 647: $menuitems.="anot.png";
1.243 tempelho 648: }
1.344 www 649: $menuitems.="&Notes&&annotate()&";
1.243 tempelho 650: $menuitems.="Make notes and annotations about this resource&&1\n";
651:
1.323 raeburn 652: unless ($env{'request.noversionuri'}=~/\/(bulletinboard|smppg|navmaps|syllabus|aboutme|viewclasslist|portfolio)(\?|$)/) {
1.294 raeburn 653: if ((!$env{'request.enc'}) && ($env{'request.noversionuri'} !~ m{^/adm/wrapper/ext/})) {
1.216 albertel 654: $menuitems.=(<<ENDREALRES);
1.344 www 655: s&6&3&catalog.png&Info&info[_1]&catalog_info()&Show Metadata
1.216 albertel 656: ENDREALRES
657: }
1.120 raeburn 658: $menuitems.=(<<ENDREALRES);
1.344 www 659: s&8&1&eval.png&Evaluate&this[_1]&gopost('/adm/evaluate',currentURL,1)&Provide my evaluation of this resource
660: s&8&2&fdbk.png&Communicate&discuss[_1]&gopost('/adm/feedback',currentURL,1)&Provide feedback messages or contribute to the course discussion about this resource
1.77 www 661: ENDREALRES
1.120 raeburn 662: }
663: }
1.203 foxr 664: if ($env{'request.uri'} =~ /^\/res/) {
665: $menuitems .= (<<ENDMENUITEMS);
1.344 www 666: s&8&3&prt.png&Print&printout[_1]&gopost('/adm/printout',currentURL)&Prepare a printable document
1.203 foxr 667: ENDMENUITEMS
1.332 wenzelju 668: if (&Apache::lonnet::allowed('bre', $env{'request.course.id'}) eq 'F') {
669: # wishlist is only available for users with access to resource-pool
670: $menuitems .= (<<ENDMENUITEMS);
1.344 www 671: s&9&1&wishlist-link.png&Wishlist&wishlistlink[_2]&set_wishlistlink()&Set a link for this resource to wishlist&&1
1.332 wenzelju 672: ENDMENUITEMS
673: }
1.203 foxr 674: }
1.41 www 675: my $buttons='';
676: foreach (split(/\n/,$menuitems)) {
677: my ($command,@rest)=split(/\&/,$_);
1.220 raeburn 678: my $idx=10*$rest[0]+$rest[1];
679: if (&hidden_button_check() eq 'yes') {
680: if ($idx == 21 ||$idx == 23) {
681: $buttons.=&switch('','',@rest);
682: } else {
683: $buttons.=&clear(@rest);
684: }
685: } else {
686: if ($command eq 's') {
687: $buttons.=&switch('','',@rest);
688: } else {
689: $buttons.=&clear(@rest);
690: }
1.41 www 691: }
692: }
1.148 albertel 693:
694: my $addremote=0;
1.267 droeschl 695: foreach (@inlineremote) { if ($_ ne '') { $addremote=1; last;} }
1.301 droeschl 696: if ($addremote) {
697:
1.342 www 698: &Apache::lonhtmlcommon::clear_breadcrumb_tools();
1.301 droeschl 699:
1.342 www 700: &Apache::lonhtmlcommon::add_breadcrumb_tool(
1.312 droeschl 701: 'navigation', @inlineremote[21,23]);
702:
703: if(hidden_button_check() ne 'yes') {
1.342 www 704: &Apache::lonhtmlcommon::add_breadcrumb_tool(
1.313 droeschl 705: 'tools', @inlineremote[93,91,81,82,83]);
706:
707: #publish button in construction space
708: if ($env{'request.state'} eq 'construct'){
1.342 www 709: &Apache::lonhtmlcommon::add_breadcrumb_tool(
1.349 raeburn 710: 'advtools', $inlineremote[63]);
1.342 www 711: } else {
712: &Apache::lonhtmlcommon::add_breadcrumb_tool(
1.349 raeburn 713: 'tools', $inlineremote[63]);
1.313 droeschl 714: }
715:
1.322 raeburn 716: unless ($env{'request.noversionuri'}=~ m{^/adm/(navmaps|viewclasslist)(\?|$)}) {
1.342 www 717: &Apache::lonhtmlcommon::add_breadcrumb_tool(
1.362 www 718: 'advtools', @inlineremote[61,71,72,73,74,92]);
1.322 raeburn 719: }
1.301 droeschl 720: }
1.38 www 721: }
722:
1.342 www 723: return &Apache::lonhtmlcommon::scripttag('', 'start')
724: . &Apache::lonhtmlcommon::breadcrumbs(undef,undef,0)
725: . &Apache::lonhtmlcommon::scripttag('', 'end');
1.38 www 726: }
727:
1.258 raeburn 728: sub is_course_upload {
729: my ($file,$cnum,$cdom) = @_;
730: my $uploadpath = &LONCAPA::propath($cdom,$cnum);
731: $uploadpath =~ s{^\/}{};
732: if (($file =~ m{^\Q$uploadpath\E/userfiles/docs/}) ||
733: ($file =~ m{^userfiles/\Q$cdom\E/\Q$cnum\E/docs/})) {
734: return 1;
735: }
736: return;
737: }
738:
739: sub edit_course_upload {
740: my ($file,$cnum,$cdom) = @_;
741: my $cfile;
742: if ($file =~/\.(htm|html|css|js|txt)$/) {
743: my $ext = $1;
744: my $url = &Apache::lonnet::hreflocation('',$file);
745: my $home = &Apache::lonnet::homeserver($cnum,$cdom);
746: my @ids=&Apache::lonnet::current_machine_ids();
747: my $dest;
748: if ($home && grep(/^\Q$home\E$/,@ids)) {
749: $dest = $url.'?forceedit=1';
750: } else {
751: unless (&Apache::lonnet::get_locks()) {
752: $dest = '/adm/switchserver?otherserver='.
753: $home.'&role='.$env{'request.role'}.
754: '&url='.$url.'&forceedit=1';
755: }
756: }
757: if ($dest) {
758: $cfile = &HTML::Entities::encode($dest,'"<>&');
759: }
760: }
761: return $cfile;
762: }
763:
1.2 www 764: # ================================================================== Raw Config
765:
1.3 www 766: sub clear {
767: my ($row,$col)=@_;
1.316 droeschl 768: $inlineremote[10*$row+$col]='';
769: return '';
1.3 www 770: }
771:
1.40 www 772: # ============================================ Switch a button or create a link
1.25 matthew 773: # Switch acts on the javascript that is executed when a button is clicked.
774: # The javascript is usually similar to "go('/adm/roles')" or "cstrgo(..)".
1.40 www 775:
1.2 www 776: sub switch {
1.209 www 777: my ($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat,$nobreak)=@_;
1.2 www 778: $act=~s/\$uname/$uname/g;
779: $act=~s/\$udom/$udom/g;
1.88 www 780: $top=&mt($top);
781: $bot=&mt($bot);
782: $desc=&mt($desc);
1.209 www 783: my $idx=10*$row+$col;
784: $category_members{$cat}.=':'.$idx;
785:
1.320 droeschl 786: # Inline Menu
1.317 droeschl 787: if ($nobreak==2) { return ''; }
788: my $text=$top.' '.$bot;
789: $text=~s/\s*\-\s*//gs;
1.105 www 790:
1.317 droeschl 791: my $pic=
1.225 albertel 792: '<img alt="'.$text.'" src="'.
793: &Apache::loncommon::lonhttpdurl('/res/adm/pages/'.$img).
1.303 droeschl 794: '" align="'.($nobreak==3?'right':'left').'" class="LC_icon" />';
1.317 droeschl 795: if ($env{'browser.interface'} eq 'faketextual') {
1.274 www 796: # Main Menu
1.103 www 797: if ($nobreak==3) {
1.209 www 798: $inlineremote[$idx]="\n".
1.177 albertel 799: '<td class="LC_menubuttons_text" align="right">'.$text.
1.247 harmsja 800: '</td><td align="left">'.
1.103 www 801: '<a href="javascript:'.$act.';">'.$pic.'</a></td></tr>';
802: } elsif ($nobreak) {
1.209 www 803: $inlineremote[$idx]="\n<tr>".
1.247 harmsja 804: '<td align="left">'.
1.177 albertel 805: '<a href="javascript:'.$act.';">'.$pic.'</a></td>
1.215 www 806: <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 807: } else {
1.209 www 808: $inlineremote[$idx]="\n<tr>".
1.247 harmsja 809: '<td align="left">'.
1.103 www 810: '<a href="javascript:'.$act.';">'.$pic.
1.177 albertel 811: '</a></td><td class="LC_menubuttons_text" colspan="3">'.
1.215 www 812: '<a class="LC_menubuttons_link" href="javascript:'.$act.';"><span class="LC_menubuttons_inline_text">'.$desc.'</span></a></td></tr>';
1.103 www 813: }
1.317 droeschl 814: } else {
1.103 www 815: # Inline Menu
1.317 droeschl 816: $inlineremote[$idx]=
817: '<a title="'.$desc.'" class="LC_menubuttons_link" href="javascript:'.$act.';">'.$pic.
1.344 www 818: '<span class="LC_menubuttons_inline_text">'.$top.' </span></a>';
1.317 droeschl 819: }
1.56 www 820: return '';
1.2 www 821: }
822:
823: sub secondlevel {
824: my $output='';
825: my
1.209 www 826: ($uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat)=@_;
1.2 www 827: if ($prt eq 'any') {
1.209 www 828: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.2 www 829: } elsif ($prt=~/^r(\w+)/) {
830: if ($rol eq $1) {
1.209 www 831: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.2 www 832: }
833: }
834: return $output;
835: }
836:
1.56 www 837: sub inlinemenu {
1.210 albertel 838: undef(@inlineremote);
839: undef(%category_members);
1.275 www 840: # calling rawconfig with "1" will evaluate mydesk.tab, even if there is no active remote control
1.56 www 841: &rawconfig(1);
1.309 bisitz 842: my $output='<table><tr>';
1.209 www 843: for (my $col=1; $col<=2; $col++) {
1.241 riegler 844: $output.='<td class="LC_mainmenu_col_fieldset">';
1.209 www 845: for (my $row=1; $row<=8; $row++) {
846: foreach my $cat (keys(%category_members)) {
847: if ($category_positions{$cat} ne "$col,$row") { next; }
1.247 harmsja 848: #$output.='<table><tr><td colspan="4" class="LC_menubuttons_category">'.&mt($category_names{$cat}).'</td></tr>';
1.309 bisitz 849: $output.='<div class="LC_Box LC_400Box">';
850: $output.='<h3 class="LC_hcell">'.&mt($category_names{$cat}).'</h3>';
1.247 harmsja 851: $output.='<table>';
1.240 riegler 852: my %active=();
853: foreach my $menu_item (split(/\:/,$category_members{$cat})) {
854: if ($inlineremote[$menu_item]) {
855: $active{$menu_item}=1;
856: }
857: }
858: foreach my $item (sort(keys(%active))) {
859: $output.=$inlineremote[$item];
860: }
861: $output.='</table>';
1.245 harmsja 862: $output.='</div>';
1.240 riegler 863: }
864: }
865: $output.="</td>";
866: }
867: $output.="</tr></table>";
868: return $output;
869: }
870:
1.2 www 871: sub rawconfig {
1.274 www 872: #
873: # This evaluates mydesk.tab
874: # Need to add more positions and more privileges to deal with all
875: # menu items.
876: #
1.34 www 877: my $textualoverride=shift;
878: my $output='';
1.316 droeschl 879: return '' unless $textualoverride;
1.152 albertel 880: my $uname=$env{'user.name'};
881: my $udom=$env{'user.domain'};
882: my $adv=$env{'user.adv'};
1.266 raeburn 883: my $show_course=&Apache::loncommon::show_course();
1.152 albertel 884: my $author=$env{'user.author'};
1.5 www 885: my $crs='';
1.295 raeburn 886: my $crstype='';
1.152 albertel 887: if ($env{'request.course.id'}) {
888: $crs='/'.$env{'request.course.id'};
889: if ($env{'request.course.sec'}) {
890: $crs.='_'.$env{'request.course.sec'};
1.7 www 891: }
1.8 www 892: $crs=~s/\_/\//g;
1.295 raeburn 893: $crstype = &Apache::loncommon::course_type();
1.5 www 894: }
1.152 albertel 895: my $pub=($env{'request.state'} eq 'published');
896: my $con=($env{'request.state'} eq 'construct');
897: my $rol=$env{'request.role'};
898: my $requested_domain = $env{'request.role.domain'};
1.184 raeburn 899: foreach my $line (@desklines) {
1.209 www 900: my ($row,$col,$pro,$prt,$img,$top,$bot,$act,$desc,$cat)=split(/\:/,$line);
1.3 www 901: $prt=~s/\$uname/$uname/g;
902: $prt=~s/\$udom/$udom/g;
1.295 raeburn 903: if ($prt =~ /\$crs/) {
904: next unless ($env{'request.course.id'});
905: next if ($crstype eq 'Community');
906: $prt=~s/\$crs/$crs/g;
907: } elsif ($prt =~ /\$cmty/) {
908: next unless ($env{'request.course.id'});
909: next if ($crstype ne 'Community');
910: $prt=~s/\$cmty/$crs/g;
911: }
1.25 matthew 912: $prt=~s/\$requested_domain/$requested_domain/g;
1.211 www 913: if ($category_names{$cat}!~/\w/) { $cat='oth'; }
1.3 www 914: if ($pro eq 'clear') {
1.4 www 915: $output.=&clear($row,$col);
1.3 www 916: } elsif ($pro eq 'any') {
1.2 www 917: $output.=&secondlevel(
1.209 www 918: $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1.2 www 919: } elsif ($pro eq 'smp') {
920: unless ($adv) {
921: $output.=&secondlevel(
1.209 www 922: $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1.2 www 923: }
924: } elsif ($pro eq 'adv') {
925: if ($adv) {
926: $output.=&secondlevel(
1.209 www 927: $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1.2 www 928: }
1.231 albertel 929: } elsif ($pro eq 'shc') {
930: if ($show_course) {
931: $output.=&secondlevel(
932: $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
933: }
934: } elsif ($pro eq 'nsc') {
935: if (!$show_course) {
936: $output.=&secondlevel(
937: $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
938: }
1.81 matthew 939: } elsif (($pro=~/^p(\w+)/) && ($prt)) {
1.295 raeburn 940: my $priv = $1;
941: if ($priv =~ /^mdc(Course|Community)/) {
942: if ($crstype eq $1) {
943: $priv = 'mdc';
944: } else {
945: next;
946: }
947: }
948: if (&Apache::lonnet::allowed($priv,$prt)) {
1.209 www 949: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.4 www 950: }
1.295 raeburn 951: } elsif ($pro eq 'course') {
952: if (($env{'request.course.fn'}) && ($crstype ne 'Community')) {
1.209 www 953: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.81 matthew 954: }
1.295 raeburn 955: } elsif ($pro eq 'community') {
956: if (($env{'request.course.fn'}) && ($crstype eq 'Community')) {
957: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
958: }
1.124 matthew 959: } elsif ($pro =~ /^courseenv_(.*)$/) {
960: my $key = $1;
1.307 raeburn 961: if ($crstype ne 'Community') {
962: my $coursepref = $env{'course.'.$env{'request.course.id'}.'.'.$key};
963: if ($key eq 'canuse_pdfforms') {
964: if ($env{'request.course.id'} && $coursepref eq '') {
965: my %domdefs = &Apache::lonnet::get_domain_defaults($env{'course.'.$env{'request.course.id'}.'.domain'});
966: $coursepref = $domdefs{'canuse_pdfforms'};
967: }
968: }
969: if ($coursepref) {
970: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
971: }
1.295 raeburn 972: }
973: } elsif ($pro =~ /^communityenv_(.*)$/) {
974: my $key = $1;
1.307 raeburn 975: if ($crstype eq 'Community') {
976: my $coursepref = $env{'course.'.$env{'request.course.id'}.'.'.$key};
977: if ($key eq 'canuse_pdfforms') {
978: if ($env{'request.course.id'} && $coursepref eq '') {
979: my %domdefs = &Apache::lonnet::get_domain_defaults($env{'course.'.$env{'request.course.id'}.'.domain'});
980: $coursepref = $domdefs{'canuse_pdfforms'};
981: }
982: }
983: if ($coursepref) {
984: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
985: }
1.124 matthew 986: }
1.81 matthew 987: } elsif ($pro =~ /^course_(.*)$/) {
988: # Check for permissions inside of a course
1.295 raeburn 989: if (($env{'request.course.id'}) && ($crstype ne 'Community') &&
1.152 albertel 990: (&Apache::lonnet::allowed($1,$env{'request.course.id'}.
991: ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))
1.81 matthew 992: )) {
1.209 www 993: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.26 www 994: }
1.295 raeburn 995: } elsif ($pro =~ /^community_(.*)$/) {
996: # Check for permissions inside of a community
997: if (($env{'request.course.id'}) && ($crstype eq 'Community') &&
998: (&Apache::lonnet::allowed($1,$env{'request.course.id'}.
999: ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))
1000: )) {
1001: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1002: }
1.4 www 1003: } elsif ($pro eq 'author') {
1004: if ($author) {
1.152 albertel 1005: if ((($prt eq 'rca') && ($env{'request.role'}=~/^ca/)) ||
1.234 raeburn 1006: (($prt eq 'raa') && ($env{'request.role'}=~/^aa/)) ||
1.152 albertel 1007: (($prt eq 'rau') && ($env{'request.role'}=~/^au/))) {
1.19 matthew 1008: # Check that we are on the correct machine
1.29 matthew 1009: my $cadom=$requested_domain;
1.152 albertel 1010: my $caname=$env{'user.name'};
1.234 raeburn 1011: if (($prt eq 'rca') || ($prt eq 'raa')) {
1.29 matthew 1012: ($cadom,$caname)=
1.206 albertel 1013: ($env{'request.role'}=~/($match_domain)\/($match_username)$/);
1.29 matthew 1014: }
1015: $act =~ s/\$caname/$caname/g;
1.353 www 1016: $act =~ s/\$cadom/$cadom/g;
1.19 matthew 1017: my $home = &Apache::lonnet::homeserver($caname,$cadom);
1.109 albertel 1018: my $allowed=0;
1019: my @ids=&Apache::lonnet::current_machine_ids();
1020: foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
1021: if ($allowed) {
1.209 www 1022: $output.=&switch($caname,$cadom,
1023: $row,$col,$img,$top,$bot,$act,$desc,$cat);
1.19 matthew 1024: }
1.6 www 1025: }
1.2 www 1026: }
1.248 raeburn 1027: } elsif ($pro eq 'tools') {
1028: my @tools = ('aboutme','blog','portfolio');
1029: if (grep(/^\Q$prt\E$/,@tools)) {
1.249 raeburn 1030: if (!&Apache::lonnet::usertools_access($env{'user.name'},
1.251 raeburn 1031: $env{'user.domain'},
1032: $prt,undef,'tools')) {
1033: $output.=&clear($row,$col);
1034: next;
1035: }
1.278 raeburn 1036: } elsif (($prt eq 'reqcrsnsc') || ($prt eq 'reqcrsshc')) {
1037: if (($prt eq 'reqcrsnsc') && ($show_course)) {
1038: next;
1039: }
1040: if (($prt eq 'reqcrsshc') && (!$show_course)) {
1041: next;
1042: }
1.279 raeburn 1043: my $showreqcrs = &check_for_rcrs();
1.251 raeburn 1044: if (!$showreqcrs) {
1.248 raeburn 1045: $output.=&clear($row,$col);
1046: next;
1047: }
1048: }
1049: $prt='any';
1050: $output.=&secondlevel(
1051: $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1.2 www 1052: }
1.13 harris41 1053: }
1.2 www 1054: return $output;
1055: }
1056:
1.279 raeburn 1057: sub check_for_rcrs {
1058: my $showreqcrs = 0;
1.280 raeburn 1059: my @reqtypes = ('official','unofficial','community');
1060: foreach my $type (@reqtypes) {
1.279 raeburn 1061: if (&Apache::lonnet::usertools_access($env{'user.name'},
1062: $env{'user.domain'},
1063: $type,undef,'requestcourses')) {
1064: $showreqcrs = 1;
1065: last;
1066: }
1067: }
1.280 raeburn 1068: if (!$showreqcrs) {
1069: foreach my $type (@reqtypes) {
1070: if ($env{'environment.reqcrsotherdom.'.$type} ne '') {
1071: $showreqcrs = 1;
1072: last;
1073: }
1074: }
1075: }
1.279 raeburn 1076: return $showreqcrs;
1077: }
1078:
1.306 raeburn 1079: sub dc_popup_js {
1080: my %lt = &Apache::lonlocal::texthash(
1081: more => '(More ...)',
1082: less => '(Less ...)',
1083: );
1084: return <<"END";
1085:
1086: function showCourseID() {
1087: document.getElementById('dccid').style.display='block';
1088: document.getElementById('dccid').style.textAlign='left';
1.307 raeburn 1089: document.getElementById('dccid').style.textFace='normal';
1.306 raeburn 1090: document.getElementById('dccidtext').innerHTML ='<a href="javascript:hideCourseID();">$lt{'less'}</a>';
1091: return;
1092: }
1093:
1094: function hideCourseID() {
1095: document.getElementById('dccid').style.display='none';
1096: document.getElementById('dccidtext').innerHTML ='<a href="javascript:showCourseID()">$lt{'more'}</a>';
1097: return;
1098: }
1099:
1100: END
1101:
1102: }
1103:
1.42 www 1104: sub utilityfunctions {
1.152 albertel 1105: my $currenturl=&Apache::lonnet::clutter(&Apache::lonnet::fixversion((split(/\?/,$env{'request.noversionuri'}))[0]));
1.316 droeschl 1106: if ($currenturl =~ m{^/adm/wrapper/ext/}
1107: && $env{'request.external.querystring'} ) {
1.293 raeburn 1108: $currenturl .= ($currenturl=~/\?/)?'&':'?'.$env{'request.external.querystring'};
1109: }
1.183 www 1110: $currenturl=&Apache::lonenc::check_encrypt(&unescape($currenturl));
1.125 albertel 1111:
1.152 albertel 1112: my $currentsymb=&Apache::lonenc::check_encrypt($env{'request.symb'});
1.175 albertel 1113:
1.306 raeburn 1114: my $dc_popup_cid;
1115: if ($env{'user.adv'} && exists($env{'user.role.dc./'.
1116: $env{'course.'.$env{'request.course.id'}.
1117: '.domain'}.'/'})) {
1118: $dc_popup_cid = &dc_popup_js();
1119: }
1120:
1.175 albertel 1121: my $start_page_annotate =
1122: &Apache::loncommon::start_page('Annotator',undef,
1123: {'only_body' => 1,
1124: 'js_ready' => 1,
1125: 'bgcolor' => '#BBBBBB',
1126: 'add_entries' => {
1127: 'onload' => 'javascript:document.goannotate.submit();'}});
1128:
1.205 albertel 1129: my $end_page_annotate =
1130: &Apache::loncommon::end_page({'js_ready' => 1});
1131:
1.336 raeburn 1132: my $confirm_switch = &mt("Editing requires switching to the resource's home server.").'\n'.
1133: &mt('Switch server?');
1134:
1.332 wenzelju 1135:
1.42 www 1136: return (<<ENDUTILITY)
1137:
1138: var currentURL="$currenturl";
1139: var reloadURL="$currenturl";
1140: var currentSymb="$currentsymb";
1141:
1.306 raeburn 1142: $dc_popup_cid
1.114 albertel 1143:
1.42 www 1144: function go(url) {
1145: if (url!='' && url!= null) {
1146: currentURL = null;
1147: currentSymb= null;
1148: window.location.href=url;
1149: }
1150: }
1151:
1.336 raeburn 1152: function need_switchserver(url) {
1153: if (url!='' && url!= null) {
1154: if (confirm("$confirm_switch")) {
1155: go(url);
1156: }
1157: }
1158: return;
1159: }
1160:
1.42 www 1161: function gopost(url,postdata) {
1162: if (url!='') {
1163: this.document.server.action=url;
1164: this.document.server.postdata.value=postdata;
1165: this.document.server.command.value='';
1166: this.document.server.url.value='';
1167: this.document.server.symb.value='';
1168: this.document.server.submit();
1169: }
1170: }
1171:
1172: function gocmd(url,cmd) {
1173: if (url!='') {
1174: this.document.server.action=url;
1175: this.document.server.postdata.value='';
1176: this.document.server.command.value=cmd;
1177: this.document.server.url.value=currentURL;
1178: this.document.server.symb.value=currentSymb;
1179: this.document.server.submit();
1180: }
1.57 www 1181: }
1182:
1.121 raeburn 1183: function gocstr(url,filename) {
1184: if (url == '/adm/cfile?action=delete') {
1185: this.document.cstrdelete.filename.value = filename
1186: this.document.cstrdelete.submit();
1187: return;
1188: }
1.137 raeburn 1189: if (url == '/adm/printout') {
1190: this.document.cstrprint.postdata.value = filename
1191: this.document.cstrprint.curseed.value = 0;
1192: this.document.cstrprint.problemtype.value = 0;
1.138 raeburn 1193: if (this.document.lonhomework) {
1194: if ((this.document.lonhomework.rndseed) && (this.document.lonhomework.rndseed.value != null) && (this.document.lonhomework.rndseed.value != '')) {
1195: this.document.cstrprint.curseed.value = this.document.lonhomework.rndseed.value
1196: }
1197: if (this.document.lonhomework.problemtype) {
1.164 albertel 1198: if (this.document.lonhomework.problemtype.value) {
1199: this.document.cstrprint.problemtype.value =
1200: this.document.lonhomework.problemtype.value;
1201: } else if (this.document.lonhomework.problemtype.options) {
1202: for (var i=0; i<this.document.lonhomework.problemtype.options.length; i++) {
1203: if (this.document.lonhomework.problemtype.options[i].selected) {
1204: if (this.document.lonhomework.problemtype.options[i].value != null && this.document.lonhomework.problemtype.options[i].value != '') {
1205: this.document.cstrprint.problemtype.value = this.document.lonhomework.problemtype.options[i].value
1206: }
1207: }
1208: }
1209: }
1210: }
1211: }
1.137 raeburn 1212: this.document.cstrprint.submit();
1213: return;
1214: }
1.121 raeburn 1215: if (url !='') {
1216: this.document.constspace.filename.value = filename;
1217: this.document.constspace.action = url;
1218: this.document.constspace.submit();
1219: }
1220: }
1221:
1.131 raeburn 1222: function golist(url) {
1223: if (url!='' && url!= null) {
1224: currentURL = null;
1225: currentSymb= null;
1226: top.location.href=url;
1227: }
1228: }
1229:
1230:
1.121 raeburn 1231:
1.57 www 1232: function catalog_info() {
1.102 albertel 1233: loncatinfo=window.open(window.location.pathname+'.meta',"LONcatInfo",'height=320,width=280,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no');
1.57 www 1234: }
1235:
1236: function chat_win() {
1.290 raeburn 1237: lonchat=window.open('/res/adm/pages/chatroom.html',"LONchat",'height=320,width=480,resizable=yes,location=no,menubar=no,toolbar=no');
1.42 www 1238: }
1.169 raeburn 1239:
1240: function group_chat(group) {
1241: var url = '/adm/groupchat?group='+group;
1242: var winName = 'LONchat_'+group;
1243: grpchat=window.open(url,winName,'height=320,width=280,resizable=yes,location=no,menubar=no,toolbar=no');
1244: }
1.175 albertel 1245:
1246: function annotate() {
1247: w_Annotator_flag=1;
1248: annotator=window.open('','Annotator','width=365,height=265,scrollbars=0');
1249: annotator.document.write(
1250: '$start_page_annotate'
1251: +"<form name='goannotate' target='Annotator' method='post' "
1252: +"action='/adm/annotations'>"
1.217 albertel 1253: +"<input type='hidden' name='symbnew' value='"+currentSymb+"' />"
1.181 albertel 1254: +"<\\/form>"
1.205 albertel 1255: +'$end_page_annotate');
1.175 albertel 1256: annotator.document.close();
1257: }
1258:
1.332 wenzelju 1259: function set_wishlistlink(title, path) {
1.347 wenzelju 1260: if (!title) {
1261: title = document.title;
1262: title = title.replace(/^LON-CAPA /,'');
1263: }
1264: if (!path) {
1265: path = location.pathname;
1266: }
1267: Win = window.open('/adm/wishlist?mode=newLink&setTitle='+title+'&setPath='+path,
1268: 'wishlistNewLink','width=560,height=350,scrollbars=0');
1.332 wenzelju 1269: }
1270:
1.335 wenzelju 1271: function open_Wishlist_Import(rat) {
1272: var newWin;
1273: if (rat) {
1274: newWin = window.open('/adm/wishlist?inhibitmenu=yes&mode=import&rat='+rat,
1.334 wenzelju 1275: 'wishlistImport','scrollbars=1,resizable=1,menubar=0');
1.335 wenzelju 1276: }
1277: else {
1278: newWin = window.open('/adm/wishlist?inhibitmenu=yes&mode=import',
1279: 'wishlistImport','scrollbars=1,resizable=1,menubar=0');
1280: }
1.334 wenzelju 1281: newWin.focus();
1282: }
1283:
1.42 www 1284: ENDUTILITY
1285: }
1286:
1287: sub serverform {
1288: return(<<ENDSERVERFORM);
1.181 albertel 1289: <form name="server" action="/adm/logout" method="post" target="_top">
1.42 www 1290: <input type="hidden" name="postdata" value="none" />
1291: <input type="hidden" name="command" value="none" />
1292: <input type="hidden" name="url" value="none" />
1293: <input type="hidden" name="symb" value="none" />
1294: </form>
1295: ENDSERVERFORM
1296: }
1.113 albertel 1297:
1.121 raeburn 1298: sub constspaceform {
1299: return(<<ENDCONSTSPACEFORM);
1.181 albertel 1300: <form name="constspace" action="/adm/logout" method="post" target="_top">
1.121 raeburn 1301: <input type="hidden" name="filename" value="" />
1302: </form>
1.181 albertel 1303: <form name="cstrdelete" action="/adm/cfile" method="post" target="_top">
1.121 raeburn 1304: <input type="hidden" name="action" value="delete" />
1305: <input type="hidden" name="filename" value="" />
1306: </form>
1.181 albertel 1307: <form name="cstrprint" action="/adm/printout" target="_parent" method="post">
1.137 raeburn 1308: <input type="hidden" name="postdata" value="" />
1309: <input type="hidden" name="curseed" value="" />
1310: <input type="hidden" name="problemtype" value="" />
1311: </form>
1312:
1.121 raeburn 1313: ENDCONSTSPACEFORM
1314: }
1315:
1.220 raeburn 1316: sub hidden_button_check {
1.317 droeschl 1317: if ( $env{'request.course.id'} eq ''
1318: || $env{'request.role.adv'} ) {
1319:
1.220 raeburn 1320: return;
1321: }
1.232 raeburn 1322: my $buttonshide = &Apache::lonnet::EXT('resource.0.buttonshide');
1323: return $buttonshide;
1.220 raeburn 1324: }
1.184 raeburn 1325:
1.235 raeburn 1326: sub roles_selector {
1327: my ($cdom,$cnum) = @_;
1.298 raeburn 1328: my $crstype = &Apache::loncommon::course_type();
1.235 raeburn 1329: my $now = time;
1.350 raeburn 1330: my (%courseroles,%seccount,%courseprivs);
1.235 raeburn 1331: my $is_cc;
1332: my $role_selector;
1.298 raeburn 1333: my $ccrole;
1334: if ($crstype eq 'Community') {
1335: $ccrole = 'co';
1336: } else {
1337: $ccrole = 'cc';
1.350 raeburn 1338: }
1339: my $priv;
1340: my $destinationurl = $ENV{'REQUEST_URI'};
1341: my $reqprivs = &required_privs();
1342: if (ref($reqprivs) eq 'HASH') {
1343: my $destination = $destinationurl;
1344: $destination =~ s/(\?.*)$//;
1345: if (exists($reqprivs->{$destination})) {
1346: $priv = $reqprivs->{$destination};
1347: }
1348: }
1.298 raeburn 1349: if ($env{'user.role.'.$ccrole.'./'.$cdom.'/'.$cnum}) {
1350: my ($start,$end) = split(/\./,$env{'user.role.'.$ccrole.'./'.$cdom.'/'.$cnum});
1.235 raeburn 1351:
1352: if ((($start) && ($start<0)) ||
1353: (($end) && ($end<$now)) ||
1354: (($start) && ($now<$start))) {
1355: $is_cc = 0;
1356: } else {
1357: $is_cc = 1;
1358: }
1359: }
1360: if ($is_cc) {
1.350 raeburn 1361: &get_all_courseroles($cdom,$cnum,\%courseroles,\%seccount,\%courseprivs,$priv);
1.235 raeburn 1362: } else {
1.262 raeburn 1363: my %gotnosection;
1.235 raeburn 1364: foreach my $item (keys(%env)) {
1.239 raeburn 1365: if ($item =~ m-^user\.role\.([^.]+)\./\Q$cdom\E/\Q$cnum\E/?(\w*)$-) {
1.235 raeburn 1366: my $role = $1;
1367: my $sec = $2;
1368: next if ($role eq 'gr');
1369: my ($start,$end) = split(/\./,$env{$item});
1370: next if (($start && $start > $now) || ($end && $end < $now));
1371: if ($sec eq '') {
1.239 raeburn 1372: if (!$gotnosection{$role}) {
1373: $seccount{$role} ++;
1374: $gotnosection{$role} = 1;
1375: }
1.235 raeburn 1376: }
1.350 raeburn 1377: if ($priv ne '') {
1378: my $cnumsec = $cnum;
1379: if ($sec ne '') {
1380: $cnumsec .= "/$sec";
1381: }
1382: $courseprivs{"$role./$cdom/$cnumsec./"} =
1383: $env{"user.priv.$role./$cdom/$cnumsec./"};
1384: $courseprivs{"$role./$cdom/$cnumsec./$cdom/"} =
1385: $env{"user.priv.$role./$cdom/$cnumsec./$cdom/"};
1386: $courseprivs{"$role./$cdom/$cnumsec./$cdom/$cnumsec"} =
1387: $env{"user.priv.$role./$cdom/$cnumsec./$cdom/$cnumsec"};
1388: }
1.235 raeburn 1389: if (ref($courseroles{$role}) eq 'ARRAY') {
1.239 raeburn 1390: if ($sec ne '') {
1.264 raeburn 1391: if (!grep(/^\Q$sec\E$/,@{$courseroles{$role}})) {
1.239 raeburn 1392: push(@{$courseroles{$role}},$sec);
1393: $seccount{$role} ++;
1394: }
1395: }
1396: } else {
1397: @{$courseroles{$role}} = ();
1398: if ($sec ne '') {
1399: $seccount{$role} ++;
1.235 raeburn 1400: push(@{$courseroles{$role}},$sec);
1401: }
1402: }
1403: }
1404: }
1405: }
1.286 raeburn 1406: my $switchtext;
1407: if ($crstype eq 'Community') {
1408: $switchtext = &mt('Switch community role to...')
1409: } else {
1410: $switchtext = &mt('Switch course role to...')
1411: }
1.298 raeburn 1412: my @roles_order = ($ccrole,'in','ta','ep','ad','st');
1.235 raeburn 1413: if (keys(%courseroles) > 1) {
1.350 raeburn 1414: $role_selector = &jump_to_role($cdom,$cnum,\%seccount,\%courseroles,\%courseprivs,$priv);
1.235 raeburn 1415: $role_selector .= '<form name="rolechooser" method="post" action="/adm/roles">
1416: <select name="switchrole" onchange="javascript:adhocRole('."'switchrole'".')">';
1.286 raeburn 1417: $role_selector .= '<option value="">'.$switchtext.'</option>';
1.235 raeburn 1418: foreach my $role (@roles_order) {
1419: if (defined($courseroles{$role})) {
1.298 raeburn 1420: $role_selector .= "\n".'<option value="'.$role.'">'.&Apache::lonnet::plaintext($role,$crstype).'</option>';
1.235 raeburn 1421: }
1422: }
1423: foreach my $role (sort(keys(%courseroles))) {
1424: if ($role =~ /^cr/) {
1425: $role_selector .= "\n".'<option value="'.$role.'">'.&Apache::lonnet::plaintext($role).'</option>';
1426: }
1427: }
1428: $role_selector .= '</select>'."\n".
1429: '<input type="hidden" name="destinationurl" value="'.
1.350 raeburn 1430: &HTML::Entities::encode($destinationurl).'" />'."\n".
1.235 raeburn 1431: '<input type="hidden" name="gotorole" value="1" />'."\n".
1432: '<input type="hidden" name="selectrole" value="" />'."\n".
1433: '<input type="hidden" name="switch" value="1" />'."\n".
1434: '</form>';
1435: }
1436: return $role_selector;
1437: }
1438:
1.262 raeburn 1439: sub get_all_courseroles {
1.350 raeburn 1440: my ($cdom,$cnum,$courseroles,$seccount,$courseprivs) = @_;
1.351 raeburn 1441: unless ((ref($courseroles) eq 'HASH') && (ref($seccount) eq 'HASH') &&
1.350 raeburn 1442: (ref($courseprivs) eq 'HASH')) {
1.262 raeburn 1443: return;
1444: }
1445: my ($result,$cached) =
1446: &Apache::lonnet::is_cached_new('getcourseroles',$cdom.'_'.$cnum);
1447: if (defined($cached)) {
1448: if (ref($result) eq 'HASH') {
1449: if ((ref($result->{'roles'}) eq 'HASH') &&
1.350 raeburn 1450: (ref($result->{'seccount'}) eq 'HASH') &&
1451: (ref($result->{'privs'}) eq 'HASH')) {
1.262 raeburn 1452: %{$courseroles} = %{$result->{'roles'}};
1453: %{$seccount} = %{$result->{'seccount'}};
1.350 raeburn 1454: %{$courseprivs} = %{$result->{'privs'}};
1.262 raeburn 1455: return;
1456: }
1457: }
1458: }
1459: my %gotnosection;
1460: my %adv_roles =
1461: &Apache::lonnet::get_course_adv_roles($env{'request.course.id'},1);
1462: foreach my $role (keys(%adv_roles)) {
1463: my ($urole,$usec) = split(/:/,$role);
1464: if (!$gotnosection{$urole}) {
1465: $seccount->{$urole} ++;
1466: $gotnosection{$urole} = 1;
1467: }
1468: if (ref($courseroles->{$urole}) eq 'ARRAY') {
1469: if ($usec ne '') {
1470: if (!grep(/^Q$usec\E$/,@{$courseroles->{$urole}})) {
1471: push(@{$courseroles->{$urole}},$usec);
1472: $seccount->{$urole} ++;
1473: }
1474: }
1475: } else {
1476: @{$courseroles->{$urole}} = ();
1477: if ($usec ne '') {
1478: $seccount->{$urole} ++;
1479: push(@{$courseroles->{$urole}},$usec);
1480: }
1481: }
1.350 raeburn 1482: my $area = '/'.$cdom.'/'.$cnum;
1483: if ($usec ne '') {
1484: $area .= '/'.$usec;
1485: }
1486: if ($role =~ /^cr\//) {
1487: &Apache::lonnet::custom_roleprivs($courseprivs,$urole,$cdom,$cnum,$urole.'.'.$area,$area);
1488: } else {
1489: &Apache::lonnet::standard_roleprivs($courseprivs,$urole,$cdom,$urole.'.'.$area,$cnum,$area);
1490: }
1.262 raeburn 1491: }
1492: my %sections_count = &Apache::loncommon::get_sections($cdom,$cnum,['st']);
1493: @{$courseroles->{'st'}} = ();
1.350 raeburn 1494: &Apache::lonnet::standard_roleprivs($courseprivs,'st',$cdom,"st./$cdom/$cnum",$cnum,"/$cdom/$cnum");
1.262 raeburn 1495: if (keys(%sections_count) > 0) {
1496: push(@{$courseroles->{'st'}},keys(%sections_count));
1.350 raeburn 1497: $seccount->{'st'} = scalar(keys(%sections_count));
1.262 raeburn 1498: }
1499: my $rolehash = {
1500: 'roles' => $courseroles,
1501: 'seccount' => $seccount,
1.350 raeburn 1502: 'privs' => $courseprivs,
1.262 raeburn 1503: };
1504: &Apache::lonnet::do_cache_new('getcourseroles',$cdom.'_'.$cnum,$rolehash);
1505: return;
1506: }
1507:
1.235 raeburn 1508: sub jump_to_role {
1.350 raeburn 1509: my ($cdom,$cnum,$seccount,$courseroles,$courseprivs,$priv) = @_;
1.239 raeburn 1510: my %lt = &Apache::lonlocal::texthash(
1511: this => 'This role has section(s) associated with it.',
1512: ente => 'Enter a specific section.',
1513: orlb => 'Enter a specific section, or leave blank for no section.',
1514: avai => 'Available sections are:',
1515: youe => 'You entered an invalid section choice:',
1.352 raeburn 1516: plst => 'Please try again.',
1.350 raeburn 1517: role => 'The role you selected is not permitted to view the current page.',
1518: swit => 'Switch role, but display Main Menu page instead?',
1.239 raeburn 1519: );
1520: my $js;
1521: if (ref($courseroles) eq 'HASH') {
1522: $js = ' var secpick = new Array("'.$lt{'ente'}.'","'.$lt{'orlb'}.'");'."\n".
1523: ' var numsec = new Array();'."\n".
1524: ' var rolesections = new Array();'."\n".
1525: ' var rolenames = new Array();'."\n".
1526: ' var roleseclist = new Array();'."\n";
1527: my @items = keys(%{$courseroles});
1528: for (my $i=0; $i<@items; $i++) {
1529: $js .= ' rolenames['.$i.'] = "'.$items[$i].'";'."\n";
1530: my ($secs,$secstr);
1531: if (ref($courseroles->{$items[$i]}) eq 'ARRAY') {
1532: my @sections = sort { $a <=> $b } @{$courseroles->{$items[$i]}};
1533: $secs = join('","',@sections);
1534: $secstr = join(', ',@sections);
1535: }
1536: $js .= ' rolesections['.$i.'] = new Array("'.$secs.'");'."\n".
1537: ' roleseclist['.$i.'] = "'.$secstr.'";'."\n".
1538: ' numsec['.$i.'] = "'.$seccount->{$items[$i]}.'";'."\n";
1539: }
1540: }
1.350 raeburn 1541: my $checkroles = 0;
1542: if ($priv && ref($courseprivs) eq 'HASH') {
1543: my (%disallowed,%allowed,@disallow);
1544: foreach my $role (sort(keys(%{$courseprivs}))) {
1545: my $trole;
1546: if ($role =~ m{^(.+?)\Q./$cdom/$cnum\E}) {
1547: $trole = $1;
1548: }
1549: if (($trole ne '') && ($trole ne 'cm')) {
1550: if ($courseprivs->{$role} =~ /\Q:$priv\E($|:|\&\w+)/) {
1551: $allowed{$trole} = 1;
1552: } else {
1553: $disallowed{$trole} = 1;
1554: }
1555: }
1556: }
1557: foreach my $trole (keys(%disallowed)) {
1558: unless ($allowed{$trole}) {
1559: push(@disallow,$trole);
1560: }
1561: }
1562: if (@disallow > 0) {
1563: $checkroles = 1;
1564: $js .= " var disallow = new Array('".join("','",@disallow)."');\n".
1565: " var rolecheck = 1;\n";
1566: }
1567: }
1568: if (!$checkroles) {
1569: $js .= " var disallow = new Array();\n".
1570: " rolecheck = 0;\n";
1571: }
1.273 droeschl 1572: return <<"END";
1.235 raeburn 1573: <script type="text/javascript">
1.273 droeschl 1574: //<![CDATA[
1.235 raeburn 1575: function adhocRole(roleitem) {
1.239 raeburn 1576: $js
1.235 raeburn 1577: var newrole = document.rolechooser.elements[roleitem].options[document.rolechooser.elements[roleitem].selectedIndex].value;
1578: if (newrole == '') {
1.350 raeburn 1579: return;
1.235 raeburn 1580: }
1.239 raeburn 1581: var fullrole = newrole+'./$cdom/$cnum';
1582: var selidx = '';
1583: for (var i=0; i<rolenames.length; i++) {
1584: if (rolenames[i] == newrole) {
1585: selidx = i;
1586: }
1587: }
1.350 raeburn 1588: if (rolecheck > 0) {
1589: for (var i=0; i<disallow.length; i++) {
1590: if (disallow[i] == newrole) {
1591: if (confirm("$lt{'role'}\\n$lt{'swit'}")) {
1592: document.rolechooser.destinationurl.value = '/adm/menu';
1593: } else {
1594: document.rolechooser.elements[roleitem].selectedIndex = 0;
1595: return;
1596: }
1597: }
1598: }
1599: }
1.239 raeburn 1600: var secok = 1;
1601: var secchoice = '';
1602: if (selidx >= 0) {
1603: if (numsec[selidx] > 1) {
1604: secok = 0;
1605: var numrolesec = rolesections[selidx].length;
1606: var msgidx = numsec[selidx] - numrolesec;
1.339 raeburn 1607: secchoice = prompt("$lt{'this'} "+secpick[msgidx]+"\\n$lt{'avai'} "+roleseclist[selidx],"");
1.239 raeburn 1608: if (secchoice == '') {
1609: if (msgidx > 0) {
1610: secok = 1;
1611: }
1612: } else {
1613: for (var j=0; j<rolesections[selidx].length; j++) {
1614: if (rolesections[selidx][j] == secchoice) {
1615: secok = 1;
1616: }
1617: }
1618: }
1619: } else {
1620: if (rolesections[selidx].length == 1) {
1621: secchoice = rolesections[selidx][0];
1622: }
1623: }
1624: }
1625: if (secok == 1) {
1626: if (secchoice != '') {
1627: fullrole += '/'+secchoice;
1628: }
1629: } else {
1630: document.rolechooser.elements[roleitem].selectedIndex = 0;
1631: if (secchoice != null) {
1632: alert("$lt{'youe'} \\""+secchoice+"\\".\\n $lt{'plst'}");
1633: }
1634: return;
1635: }
1636: if (fullrole == "$env{'request.role'}") {
1.350 raeburn 1637: document.rolechooser.elements[roleitem].selectedIndex = 0;
1.235 raeburn 1638: return;
1639: }
1640: itemid = retrieveIndex('gotorole');
1641: if (itemid != -1) {
1.239 raeburn 1642: document.rolechooser.elements[itemid].name = fullrole;
1.235 raeburn 1643: }
1.239 raeburn 1644: document.rolechooser.elements[roleitem].options[document.rolechooser.elements[roleitem].selectedIndex].value = fullrole;
1.235 raeburn 1645: document.rolechooser.selectrole.value = '1';
1646: document.rolechooser.submit();
1647: return;
1648: }
1649:
1650: function retrieveIndex(item) {
1651: for (var i=0;i<document.rolechooser.elements.length;i++) {
1652: if (document.rolechooser.elements[i].name == item) {
1653: return i;
1654: }
1655: }
1656: return -1;
1657: }
1.273 droeschl 1658: // ]]>
1.235 raeburn 1659: </script>
1660: END
1661: }
1662:
1.350 raeburn 1663: sub required_privs {
1664: my $privs = {
1665: '/adm/parmset' => 'opa',
1666: '/adm/courseprefs' => 'opa',
1667: '/adm/whatsnew' => 'whn',
1668: '/adm/populate' => 'cst',
1669: '/adm/trackstudent' => 'vsa',
1670: '/adm/statistics' => 'vgr',
1671: };
1672: unless ($env{'course.'.$env{'request.course.id'}.'.grading'} eq 'spreadsheet') {
1673: $privs->{'/adm/classcalc'} => 'vgr',
1674: $privs->{'/adm/assesscalc'} => 'vgr',
1675: $privs->{'/adm/studentcalc'} => 'vgr';
1676: }
1677: return $privs;
1678: }
1.235 raeburn 1679:
1.2 www 1680: # ================================================================ Main Program
1681:
1.16 harris41 1682: BEGIN {
1.166 albertel 1683: if (! defined($readdesk)) {
1.283 droeschl 1684: {
1685: my $tabfile = $Apache::lonnet::perlvar{'lonTabDir'}.'/mydesk.tab';
1686: if ( CORE::open( my $config,"<$tabfile") ) {
1687: while (my $configline=<$config>) {
1688: $configline=(split(/\#/,$configline))[0];
1689: $configline=~s/^\s+//;
1690: chomp($configline);
1.209 www 1691: if ($configline=~/^cat\:/) {
1.283 droeschl 1692: my @entries=split(/\:/,$configline);
1693: $category_positions{$entries[2]}=$entries[1];
1694: $category_names{$entries[2]}=$entries[3];
1695: } elsif ($configline=~/^prim\:/) {
1696: my @entries = (split(/\:/, $configline))[1..5];
1697: push @primary_menu, \@entries;
1698: } elsif ($configline=~/^scnd\:/) {
1699: my @entries = (split(/\:/, $configline))[1..5];
1700: push @secondary_menu, \@entries;
1701: } elsif ($configline) {
1702: push(@desklines,$configline);
1703: }
1704: }
1705: CORE::close($config);
1706: }
1707: }
1708: $readdesk='done';
1.2 www 1709: }
1710: }
1.30 www 1711:
1.1 www 1712: 1;
1713: __END__
1714:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>