Annotation of loncom/interface/spreadsheet/lonspreadsheet.pm, revision 1.66
1.1 matthew 1: #
1.66 ! raeburn 2: # $Id: lonspreadsheet.pm,v 1.65 2013/07/15 16:13:26 bisitz Exp $
1.1 matthew 3: #
4: # Copyright Michigan State University Board of Trustees
5: #
6: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
7: #
8: # LON-CAPA is free software; you can redistribute it and/or modify
9: # it under the terms of the GNU General Public License as published by
10: # the Free Software Foundation; either version 2 of the License, or
11: # (at your option) any later version.
12: #
13: # LON-CAPA is distributed in the hope that it will be useful,
14: # but WITHOUT ANY WARRANTY; without even the implied warranty of
15: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16: # GNU General Public License for more details.
17: #
18: # You should have received a copy of the GNU General Public License
19: # along with LON-CAPA; if not, write to the Free Software
20: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21: #
22: # /home/httpd/html/adm/gpl.txt
23: #
24: # http://www.lon-capa.org/
25: #
26: # The LearningOnline Network with CAPA
27: # Spreadsheet/Grades Display Handler
28: #
29: # POD required stuff:
30:
31: =head1 NAME
32:
33: lonspreadsheet
34:
35: =head1 SYNOPSIS
36:
37: Spreadsheet interface to internal LON-CAPA data
38:
39: =head1 DESCRIPTION
40:
41: Lonspreadsheet provides course coordinators the ability to manage their
42: students grades online. The students are able to view their own grades, but
43: not the grades of their peers. The spreadsheet is highly customizable,
44: offering the ability to use Perl code to manipulate data, as well as many
45: built-in functions.
46:
47: =head2 Functions available to user of lonspreadsheet
48:
49: =over 4
50:
51: =cut
52:
53:
54: package Apache::lonspreadsheet;
55:
56: use strict;
1.23 matthew 57: use warnings FATAL=>'all';
58: no warnings 'uninitialized';
1.1 matthew 59: use Apache::classcalc();
60: use Apache::studentcalc();
61: use Apache::assesscalc();
62: use Apache::Constants qw(:common :http);
63: use Apache::lonnet;
64: use Apache::lonhtmlcommon;
1.25 www 65: use Apache::lonlocal;
1.26 matthew 66: use Apache::loncoursedata();
1.58 www 67: use Apache::lonquickgrades();
1.1 matthew 68: use HTML::Entities();
69:
70: ##
71: ## HTML utility subroutines really should go in lonhtmlcommon
72: ##
73:
74: sub textfield {
75: my ($title,$name,$value)=@_;
1.28 matthew 76: return "\n<p><b>$title:</b><br />".
1.53 bisitz 77: '<input type="text" name="'.$name.'" size="80" value="'.$value.'" />';
1.1 matthew 78: }
79:
80: sub hiddenfield {
81: my ($name,$value)=@_;
1.53 bisitz 82: return '<input type="hidden" name="'.$name.'" value="'.$value.'" />'."\n";
1.1 matthew 83: }
84:
85: sub selectbox {
86: my ($title,$name,$value,%options)=@_;
1.28 matthew 87: my $selout="\n<p><b>$title:</b><br />".'<select name="'.$name.'">';
1.1 matthew 88: foreach (sort keys(%options)) {
89: $selout.='<option value="'.$_.'"';
1.54 bisitz 90: if ($_ eq $value) { $selout.=' selected="selected"'; }
1.27 www 91: $selout.='>'.&mt($options{$_}).'</option>';
1.1 matthew 92: }
93: return $selout.'</select>';
94: }
95:
1.5 matthew 96: sub file_dialogs {
97: my ($spreadsheet) = @_;
98: my $bgcolor = "#FFFFFF";
99: my $sheettype = $spreadsheet->{'type'};
100: my $result = '';
1.11 matthew 101: my $message = '';
1.5 matthew 102: ##
103: ## Deal with saving the spreadsheet
1.42 albertel 104: $spreadsheet->check_formulas_loaded();
1.40 albertel 105: if ((exists($env{'form.save'}) || exists($env{'form.makedefault'})) &&
106: exists($env{'form.savefilename'})) {
107: $spreadsheet->filename($env{'form.savefilename'});
1.5 matthew 108: my $save_status = $spreadsheet->save();
109: if ($save_status ne 'ok') {
1.60 raeburn 110: $message .= '<span class="LC_error">'.
111: &mt('An error occurred while saving the spreadsheet. The error is: [_1].',
112: $save_status).'</span>';
1.5 matthew 113: } else {
1.60 raeburn 114: $message .= '<span class="LC_info">'.&mt('Spreadsheet saved as: [_1] .',
115: '<span class="LC_filename">'.$spreadsheet->filename().'</span>').
116: '</span>';
1.5 matthew 117: }
1.40 albertel 118: } elsif (exists($env{'form.newformula'}) &&
119: exists($env{'form.cell'}) &&
120: $env{'form.cell'} ne '' ) {
1.5 matthew 121: ##
122: ## Make any requested modifications to the spreadsheet
1.40 albertel 123: $spreadsheet->modify_cell($env{'form.cell'},
124: $env{'form.newformula'});
1.5 matthew 125: $spreadsheet->save_tmp();
126: # output that we are dealing with a temporary file
127: $result .=&hiddenfield('workcopy',$sheettype);
1.40 albertel 128: if ($env{'form.newformula'} !~ /^\s*$/) {
1.11 matthew 129: $message .='<table><tr>'.
1.40 albertel 130: '<td valign="top"><pre>'.&mt('Cell').' '.$env{'form.cell'}.' = </pre></td>'.
131: '<td><pre>'.$env{'form.newformula'}."</pre></td></tr></table>\n";
1.11 matthew 132: } else {
1.40 albertel 133: $message .= &mt('Deleted contents of cell').' '.$env{'form.cell'}.'.';
1.11 matthew 134: }
1.5 matthew 135: }
136: ##
137: ## Editing code
138: $result .=&hiddenfield('cell','').
139: &hiddenfield('newformula','');
140: ##
141: ## Create the save and load dialogs
142: my $filename = $spreadsheet->filename();
1.10 matthew 143: my $truefilename = $filename;
144: if ($spreadsheet->is_default()) {
145: $filename = 'Default';
146: }
1.52 bisitz 147: my $save_dialog = '<span class="LC_nobreak">'.
1.27 www 148: '<input type="submit" name="save" value="'.&mt('Save as').'" /> '.
1.5 matthew 149: '<input type="text" name="savefilename" size="30" value="'.
1.10 matthew 150: $truefilename.'" />'.
1.52 bisitz 151: '</span>';
1.5 matthew 152: my $makedefault_dialog = '<input type="submit" name="makedefault" '.
1.55 bisitz 153: 'value="'.&mt('Save as & Make This Sheet the Default').'"/>';
1.5 matthew 154: #
155: my $link = '<a href="javascript:openbrowser'.
1.27 www 156: "('sheet','loadfilename','spreadsheet')\">".&mt('Select Spreadsheet File')."</a>";
157: my $load=&mt('Load:');
1.5 matthew 158: my $load_dialog = <<END;
159: <table bgcolor="$bgcolor">
1.27 www 160: <tr><td><input type="submit" name="load" value="$load" /></td>
1.52 bisitz 161: <td><span class="LC_nobreak">
1.10 matthew 162: <input type="text" name="loadfilename" size="20" value="$filename" />
1.52 bisitz 163: $link</span>
1.5 matthew 164: </td></tr>
165: <tr><td> </td><td>
166: <select name="fileselect" onchange="document.sheet.loadfilename.value=document.sheet.fileselect.value" >
167: END
1.7 matthew 168: my $default_filename_set = 0;
1.5 matthew 169: foreach my $sheetfilename ($spreadsheet->othersheets()) {
1.28 matthew 170: $load_dialog .= ' <option value="'.$sheetfilename.'"';
1.5 matthew 171: if ($filename eq $sheetfilename) {
1.54 bisitz 172: $load_dialog .= ' selected="selected"';
1.7 matthew 173: $default_filename_set = 1;
1.5 matthew 174: }
175: $load_dialog .= '>'.$sheetfilename."</option>\n";
176: }
1.22 matthew 177: $load_dialog .= "</select>\n</td><td> </td></tr>\n</table>\n";
1.5 matthew 178: #
1.54 bisitz 179: my $headline = &mt('File Dialogs');
1.5 matthew 180: $result .=<<END;
1.23 matthew 181: <!--
182: <fieldset title="File Dialogs" >
1.54 bisitz 183: <legend>$headline</legend>
1.23 matthew 184: -->
1.5 matthew 185: <!-- load / save dialogs -->
186: <table cellspacing="2">
187: <tr>
188: <td>$load_dialog</td>
189: <td>
190: <table bgcolor="$bgcolor">
191: <tr><td>$save_dialog</td></tr>
192: <tr><td align="center">$makedefault_dialog</td></tr>
193: </table>
194: </td>
195: </tr>
196: </table>
1.23 matthew 197: <!--
198: </fieldset>
199: -->
1.5 matthew 200: END
1.11 matthew 201: return ($result,$message);
1.5 matthew 202: }
203:
1.1 matthew 204: sub handler {
205: my $r=shift;
206: #
207: # HTML Header
208: #
209: if ($r->header_only) {
1.25 www 210: &Apache::loncommon::content_type($r,'text/html');
1.1 matthew 211: $r->send_http_header;
212: return OK;
213: }
214: #
215: # Roles Checking
216: #
217: # Needs to be in a course
1.40 albertel 218: if (! $env{'request.course.fn'}) {
1.1 matthew 219: # Not in a course, or not allowed to modify parms
1.40 albertel 220: $env{'user.error.msg'}=
1.1 matthew 221: $r->uri.":opa:0:0:Cannot modify spreadsheet";
222: return HTTP_NOT_ACCEPTABLE;
1.17 matthew 223: }
1.59 raeburn 224: my ($sheettype) = ($r->uri=~/\/(\w+)$/);
1.40 albertel 225: my $courseid = $env{'request.course.id'};
1.59 raeburn 226:
227: ##
228: ## Check permissions
229: my $allowed_to_edit = &Apache::lonnet::allowed('mgr',
230: $env{'request.course.id'});
231: # Only those instructors/tas/whatevers with complete access
232: # (not section restricted) are able to modify spreadsheets.
233: my $allowed_to_view = &Apache::lonnet::allowed('vgr',
234: $env{'request.course.id'});
235: if (! $allowed_to_view) {
236: $allowed_to_view = &Apache::lonnet::allowed('vgr',
237: $env{'request.course.id'}.'/'.$env{'request.course.sec'});
238: # Those who are restricted by section are allowed to view.
239: # The routines in lonstatistics which decide which students'
240: # will be shown take care of the restriction by section.
241: }
242:
1.17 matthew 243: #
1.66 ! raeburn 244: # Check if display of course gradebook is blocked
! 245: #
! 246:
! 247: if ($env{'request.course.id'}) {
! 248: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
! 249: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
! 250: my ($blocked,$blocktext) =
! 251: &Apache::loncommon::blocking_status('grades',$cnum,$cdom);
! 252: if ($blocked) {
! 253: my $checkrole = "cm./$cdom/$cnum";
! 254: if ($env{'request.course.sec'} ne '') {
! 255: $checkrole .= "/$env{'request.course.sec'}";
! 256: }
! 257: unless ((&Apache::lonnet::allowed('evb',undef,undef,$checkrole)) &&
! 258: ($env{'request.role'} !~ m{^st\./$cdom/$cnum})) {
! 259: &Apache::lonquickgrades::grades_blocked($r,$blocktext,'spreadsheet');
! 260: return OK;
! 261: }
! 262: }
! 263: }
! 264:
! 265: #
1.59 raeburn 266: # Do not allow users without vgr or mgr priv to continue unless
267: # grading type is set to spreadsheet.
1.30 albertel 268: #
1.59 raeburn 269:
270: if ((!$allowed_to_view) && (!$allowed_to_edit)) {
271: if ($env{'course.'.$courseid.'.grading'} eq 'spreadsheet') {
272: if ($sheettype ne 'studentcalc') {
273: $r->internal_redirect('/adm/studentcalc');
274: return OK;
275: }
276: } else {
277: $r->internal_redirect('/adm/quickgrades');
278: return OK;
1.17 matthew 279: }
1.1 matthew 280: }
281: #
282: # Get query string for limited number of parameters
283: #
284: &Apache::loncommon::get_unprocessed_cgi
1.37 matthew 285: ($ENV{'QUERY_STRING'},['sname','sdomain','usymb','filename','recalc',
286: 'output_format','not_first_run']);
1.1 matthew 287: #
288: # Deal with restricted student permissions
289: #
1.40 albertel 290: if ($env{'request.role'} =~ /^st\./) {
291: delete $env{'form.cell'} if (exists($env{'form.cell'}));
292: delete $env{'form.newformula'} if (exists($env{'form.newformula'}));
1.1 matthew 293: }
294: #
295: # Determine basic information about the spreadsheet
296: #
297: my $symb = undef;
1.40 albertel 298: $symb = $env{'form.usymb'} if (exists($env{'form.usymb'}));
299: my $name = $env{'user.name'};
300: my $domain = $env{'user.domain'};
1.61 raeburn 301: my $warning;
1.40 albertel 302: if (exists($env{'form.sname'}) && $env{'form.sname'} ne '') {
1.61 raeburn 303: if (($env{'form.sname'} ne $env{'user.name'}) ||
304: ($env{'form.sdomain'} ne $env{'user.domain'})) {
305: if (($allowed_to_view) || ($allowed_to_edit)) {
306: if (&Apache::lonnet::homeserver($env{'form.sname'},$env{'form.sdomain'}) ne 'no_host') {
307: $name = $env{'form.sname'};
308: $domain = $env{'form.sdomain'};
309: } else {
310: $warning = &mt('Requested user: "[_1]" does not exist; your own sheet is displayed instead.',$env{'form.sname'}.':'.$env{'form.sdomain'});
311: }
312: } else {
313: $warning = &mt('Your current role is not permitted to display this sheet for the requested user: "[_1]"; your own sheet is displayed instead.',$env{'form.sname'}.':'.$env{'form.sdomain'});
314: }
315: }
1.1 matthew 316: }
1.40 albertel 317: $env{'form.sname'} = $name;
318: $env{'form.sdomain'} = $domain;
1.43 albertel 319: my $section = &Apache::lonnet::getsection($domain,$name,
320: $env{'request.course.id'});
1.47 raeburn 321: my @groups;
1.44 raeburn 322: if (($env{'user.name'} eq $name) && ($env{'user.domain'} eq $domain)) {
1.47 raeburn 323: @groups = &Apache::lonnet::sort_course_groups($env{'request.course.id'},
324: split(':',$env{'request.course.groups'}));
1.44 raeburn 325: } else {
1.47 raeburn 326: @groups = &Apache::lonnet::get_users_groups($domain,$name,
1.44 raeburn 327: $env{'request.course.id'});
328: }
329:
1.1 matthew 330: #
1.3 matthew 331: # Only those able to view others grades will be allowed to continue
332: # if they are not requesting their own.
1.12 matthew 333: if ($sheettype eq 'classcalc') {
1.59 raeburn 334: if (!$allowed_to_view) {
335: $r->internal_redirect('/adm/studentcalc');
336: return OK;
1.14 www 337: }
1.1 matthew 338: }
1.40 albertel 339: if ((($name ne $env{'user.name'} ) ||
340: ($domain ne $env{'user.domain'})) && $sheettype ne 'classcalc') {
1.12 matthew 341: # Check that the student is in their section?
1.40 albertel 342: if (exists($env{'request.course.sec'}) &&
343: $env{'request.course.sec'} ne '' ) {
1.39 albertel 344: my $stu_sec = &Apache::lonnet::getsection($domain,$name,
1.40 albertel 345: $env{'request.course.id'});
346: if ($stu_sec ne $env{'request.course.sec'}) {
347: $env{'user.error.msg'}=
1.14 www 348: $r->uri.":vgr:0:0:Requested student not in your section.";
349: return HTTP_NOT_ACCEPTABLE;
1.12 matthew 350: }
351: }
352: }
1.14 www 353:
354: #
355: # Open page, try to prevent browser cache.
356: #
1.25 www 357: &Apache::loncommon::content_type($r,'text/html');
1.15 matthew 358: &Apache::loncommon::no_cache($r);
1.14 www 359: $r->send_http_header;
1.12 matthew 360:
1.1 matthew 361: #
362: # Header....
363: #
364: my $nothing = &Apache::lonhtmlcommon::javascript_nothing();
365: ##
366: ## Spit out the javascript required for editing
367: ##
1.45 albertel 368: my $js;
1.5 matthew 369: if ($allowed_to_edit) {
1.63 bisitz 370: my %lt=&Apache::lonlocal::texthash(
1.27 www 371: 'ce' => 'Cell',
1.63 bisitz 372: 'ac' => 'Save',
373: 'dc' => 'Cancel'
1.27 www 374: );
1.5 matthew 375: my $extra_javascript =
376: &Apache::loncommon::browser_and_searcher_javascript();
1.45 albertel 377:
1.51 albertel 378: my $cell_extra_js = &Apache::loncommon::resize_textarea_js();
1.45 albertel 379: my $cell_edit_start =
1.51 albertel 380: &Apache::loncommon::start_page('Cell Edit Window',$cell_extra_js,
1.45 albertel 381: {'only_body' => 1,
1.51 albertel 382: 'js_ready' => 1,
383: 'add_entries' => {
384: 'onresize' => "resize_textarea('LC_newformula','LC_aftertextarea')",
385: 'onload' => "resize_textarea('LC_newformula','LC_aftertextarea')",
386: }});
1.45 albertel 387: my $cell_edit_end =
388: &Apache::loncommon::end_page({'js_ready' => 1,});
389:
390: $js = <<ENDSCRIPT;
1.28 matthew 391: <script type="text/javascript">
392: //<!--
1.5 matthew 393: $extra_javascript
394:
1.1 matthew 395: var editwin;
396:
397: function celledit(cellname,cellformula) {
398: var edit_text = '';
399: // cellformula may contain less-than and greater-than symbols, so
400: // we need to escape them?
1.45 albertel 401: edit_text +='$cell_edit_start';
1.65 bisitz 402: edit_text += '<form name="editwinform" action="">';
1.27 www 403: edit_text += '<center><h3>$lt{'ce'} '+cellname+'</h3>';
1.51 albertel 404: edit_text += '<textarea id="LC_newformula" name="newformula" ';
405: edit_text += ' cols="60" rows="12"; wrap="off" style="width:100%">';
406: edit_text += cellformula+'</textarea>';
407: edit_text += '<div id="LC_aftertextarea"><br />';
1.27 www 408: edit_text += '<input type="button" name="accept" value="$lt{'ac'}"';
1.64 bisitz 409: edit_text += ' onclick=\\\'javascript:';
1.1 matthew 410: edit_text += 'opener.document.sheet.cell.value=';
411: edit_text += '"'+cellname+'";';
412: edit_text += 'opener.document.sheet.newformula.value=';
413: edit_text += 'document.editwinform.newformula.value;';
414: edit_text += 'opener.document.sheet.submit();';
415: edit_text += 'self.close()\\\' />';
416: edit_text += ' ';
417: edit_text += '<input type="button" name="abort" ';
1.27 www 418: edit_text += 'value="$lt{'dc'}"';
1.64 bisitz 419: edit_text += ' onclick="javascript:self.close()" />';
1.51 albertel 420: edit_text += '</center></div></form>$cell_edit_end';
1.1 matthew 421:
422: if (editwin != null && !(editwin.closed) ) {
423: editwin.close();
424: }
425:
1.29 albertel 426: editwin = window.open($nothing,'CellEditWin','height=280,width=480,scrollbars=no,resizable=yes,alwaysRaised=yes,dependent=yes',true);
1.1 matthew 427: editwin.document.write(edit_text);
1.50 raeburn 428: editwin.document.close();
1.1 matthew 429: }
1.28 matthew 430: //-->
1.1 matthew 431: </script>
432: ENDSCRIPT
433: }
1.33 matthew 434: &Apache::lonhtmlcommon::clear_breadcrumbs();
435: &Apache::lonhtmlcommon::add_breadcrumb
436: ({href => $r->uri,
1.36 matthew 437: title => 'Spreadsheet',
438: text => 'Spreadsheet',
1.33 matthew 439: faq => 134,
440: bug => 'Spreadsheet'});
1.45 albertel 441: $r->print(&Apache::loncommon::start_page('Grades Spreadsheet',$js).
1.49 albertel 442: &Apache::lonhtmlcommon::breadcrumbs('Spreadsheet',
1.58 www 443: 'Spreadsheet_About'));
444:
445: #
446: # Tabs
447: #
448: &Apache::lonquickgrades::startGradeScreen($r,'spreadsheet');
449:
450: #
451: # Open the form
452: #
1.61 raeburn 453: if ($warning) {
454: $r->print('<p class="LC_info">'.$warning.'</p>');
455: }
1.58 www 456: $r->print('<form action="'.$r->uri.'" name="sheet" method="post">');
1.40 albertel 457: $r->print(&hiddenfield('sname' ,$env{'form.sname'}).
458: &hiddenfield('sdomain',$env{'form.sdomain'}).
459: &hiddenfield('usymb' ,$env{'form.usymb'}));
1.1 matthew 460: $r->rflush();
461: ##
462: ## Determine the filename to use
463: my $filename = undef;
1.3 matthew 464: if ($allowed_to_edit) {
1.40 albertel 465: $filename = $env{'form.filename'} if (exists($env{'form.filename'}));
1.1 matthew 466: #
1.40 albertel 467: if (exists($env{'form.load'}) && exists($env{'form.loadfilename'})) {
468: $filename = $env{'form.loadfilename'};
469: $env{'form.workcopy'} = 'no';
1.1 matthew 470: }
471: }
472: ##
1.19 matthew 473: ## Take care of "backdoor" spreadsheet expiration / recalc stuff
1.40 albertel 474: if ($allowed_to_edit && exists($env{'form.recalc'})) {
475: if (exists($env{'form.recalc'})) {
476: &Apache::loncoursedata::delete_caches($env{'requres.course.id'});
1.26 matthew 477: }
1.58 www 478: if ($env{'form.recalc'} eq 'expireallsheets') {
1.37 matthew 479: &Apache::lonnet::logthis('spreadsheet expired: entire course');
1.19 matthew 480: # expire ALL spreadsheets
481: &Apache::lonnet::expirespread('','','studentcalc');
482: &Apache::lonnet::expirespread('','','assesscalc');
1.37 matthew 483: $r->print('<h3>'.
484: &mt('Expired spreadsheet caches for all students').
485: '</h3>');
1.40 albertel 486: } elsif ($env{'form.recalc'} =~ /^symb:/) {
1.19 matthew 487: # expire for all students on this symb
1.40 albertel 488: my ($symb) = ($env{'form.recalc'} =~ /^symb:(.*)$/);
1.37 matthew 489: &Apache::lonnet::logthis('spreadsheet expired: symb = '.$symb);
1.19 matthew 490: &Apache::lonnet::expirespread('','','assesscalc',$symb);
491: &Apache::lonnet::expirespread('','','studentcalc');
1.37 matthew 492: $r->print('<h3>'.
493: &mt('Expired spreadsheet caches for all students for symb [_1]',
494: $symb).
495: '</h3>');
1.40 albertel 496: } elsif ($env{'form.recalc'} =~ /^student:/) {
1.19 matthew 497: # expire all assessment spreadsheets for this user
1.40 albertel 498: my ($sname,$sdom) = ($env{'form.recalc'}=~/^student:(.*):(.*)$/);
1.37 matthew 499: &Apache::lonnet::logthis('spreadsheet expired: student = '.
500: $sname.'@'.$sdom);
1.19 matthew 501: if (defined($sname) && defined($sdom)) {
502: &Apache::lonnet::expirespread($sname,$sdom,'assesscalc');
503: &Apache::lonnet::expirespread($sname,$sdom,'studentcalc');
1.37 matthew 504: $r->print('<h3>'.
505: &mt('Expired spreadsheet caches for student [_1]',
506: $sname.'@'.$sdom).
507: '</h3>');
1.19 matthew 508: }
509: }
510: }
511: ##
1.1 matthew 512: ## Make the spreadsheet
513: &Apache::Spreadsheet::initialize_spreadsheet_package();
514: my $spreadsheet = undef;
515: if ($sheettype eq 'classcalc') {
1.43 albertel 516: $spreadsheet = Apache::classcalc->new($name,$domain,$filename,undef,
1.47 raeburn 517: $section,\@groups);
1.1 matthew 518: } elsif ($sheettype eq 'studentcalc') {
1.43 albertel 519: $spreadsheet = Apache::studentcalc->new($name,$domain,$filename,undef,
1.47 raeburn 520: $section,\@groups);
1.2 matthew 521: } elsif ($sheettype eq 'assesscalc' &&
522: defined($symb) &&
1.3 matthew 523: $allowed_to_edit) {
1.43 albertel 524: $spreadsheet = Apache::assesscalc->new($name,$domain,$filename,$symb,
1.47 raeburn 525: $section,\@groups);
1.1 matthew 526: } else {
1.2 matthew 527: return HTTP_NOT_ACCEPTABLE;
528: }
529: if (! defined($spreadsheet)) {
530: # error error - run in circles, scream and shout
1.1 matthew 531: return;
532: }
1.8 matthew 533: $spreadsheet->initialize();
1.5 matthew 534: #
535: # Output selector
1.1 matthew 536: ##
537: ## Editing/loading/saving
1.3 matthew 538: if ($allowed_to_edit) {
1.11 matthew 539: my ($html,$action_message) = &file_dialogs($spreadsheet);
1.40 albertel 540: if ($env{'form.makedefault'}) {
1.10 matthew 541: $spreadsheet->make_default();
1.11 matthew 542: if ($action_message) {
543: $action_message .= '<br />';
544: }
1.27 www 545: $action_message .= &mt('Made this spreadsheet the default');
1.11 matthew 546: if ($sheettype eq 'classcalc') {
1.27 www 547: $action_message .= ' '.&mt('for the course');
1.11 matthew 548: } elsif ($sheettype eq 'studentcalc') {
1.27 www 549: $action_message .= ' '.&mt('for all students');
1.11 matthew 550: } elsif ($sheettype eq 'assesscalc') {
1.27 www 551: $action_message .= ' '.&mt('for all assessments');
1.11 matthew 552: }
553: $action_message .= '.';
1.10 matthew 554: }
1.38 matthew 555: $r->print('<table><tr><td valign="top">'.
556: $spreadsheet->html_header().
557: '</td>'.
558: '<td valign="center">'.$html."</td></tr></table>\n");
1.12 matthew 559: if ($action_message ne '') {
1.63 bisitz 560: $r->print(
561: &Apache::loncommon::confirmwrapper(
562: &mt('Last Action:')
563: .$action_message)
564: );
1.12 matthew 565: }
1.1 matthew 566: $r->rflush();
1.5 matthew 567: } else {
568: $r->print('<table><tr><td>'.$spreadsheet->html_header().
569: "</td></tr></table>\n");
1.1 matthew 570: }
1.11 matthew 571: $r->rflush();
1.1 matthew 572: #
1.19 matthew 573: $r->print("<table><tr>");
1.31 matthew 574: $r->print('<td><input type="submit" value="'.
575: &mt('Generate Spreadsheet').'" />'.
576: '</td>');
1.21 matthew 577: if ($allowed_to_view) {
578: $r->print('<td>'.
579: &Apache::loncommon::help_open_topic("Spreadsheet_About",
1.62 bisitz 580: &mt('Spreadsheet Help')).
1.21 matthew 581: '</td>');
582: }
583: if ($allowed_to_edit) {
584: $r->print('<td>'.
585: &Apache::loncommon::help_open_topic("Spreadsheet_Editing",
1.62 bisitz 586: &mt('Editing Help')).
1.21 matthew 587: '</td>');
588: }
1.19 matthew 589: $r->print('</tr></table>');
1.10 matthew 590: #
1.1 matthew 591: # Keep track of the filename
592: $r->print(&hiddenfield('filename',$filename));
593: #
1.5 matthew 594: # Keep track of the number of times we have been called, sort of.
1.58 www 595: $r->print(&hiddenfield('not_first_run','1'));
1.5 matthew 596: #
1.40 albertel 597: if (exists($env{'form.not_first_run'}) || $sheettype ne 'classcalc') {
1.5 matthew 598: $r->print($spreadsheet->get_html_title());
599: if ($allowed_to_view || $allowed_to_edit) {
600: $r->print($spreadsheet->parent_link());
601: }
1.16 matthew 602: $r->rflush();
1.5 matthew 603: $spreadsheet->display($r);
1.1 matthew 604: }
1.58 www 605: $r->print('</form>');
606: &Apache::lonquickgrades::endGradeScreen($r);
607: $r->print(&Apache::loncommon::end_page());
1.41 albertel 608: $spreadsheet->clear_package();
1.1 matthew 609: return OK;
610: }
611:
612: 1;
613:
614: __END__
615:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>