Diff for /loncom/homework/grades.pm between versions 1.574 and 1.574.2.1

version 1.574, 2009/05/14 14:24:07 version 1.574.2.1, 2009/05/18 20:07:34
Line 8278  sub grading_menu { Line 8278  sub grading_menu {
                   'saveState'=>"",                    'saveState'=>"",
                   'gradingMenu'=>1,                    'gradingMenu'=>1,
                   'showgrading'=>"yes");                    'showgrading'=>"yes");
           my $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
     my $url1 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);      my @menu = ({ url => $url,
                            name => &mt('Manual Grading/View Submissions'),
                        short_description =>
       &mt('Start the process of hand grading submissions.'),
                    });
     $fields{'command'} = 'csvform';      $fields{'command'} = 'csvform';
     my $url2 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);      $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
           push(@menu, { url => $url,
                      name => &mt('Upload Scores'),
                      short_description =>
               &mt('Specify a file containing the class scores for current resource.')});
     $fields{'command'} = 'processclicker';      $fields{'command'} = 'processclicker';
     my $url3 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);      $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
           push(@menu, { url => $url,
                      name => &mt('Process Clicker'),
                      short_description =>
               &mt('Specify a file containing the clicker information for this resource.')});
     $fields{'command'} = 'scantron_selectphase';      $fields{'command'} = 'scantron_selectphase';
     my $url4 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);      $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
           push(@menu, { url => $url,
     my @menu = ({ categorytitle=>'Course Grading',                     name => &mt('Grade/Manage/Review Scantron Forms'),
             items =>[                     short_description =>
                         { linktext => 'Manual Grading/View Submissions',              &mt('Grade scantron exams, upload/download scantron data files, and review previously graded scantron exams.')});
                     url => $url1,      $fields{'command'} = 'verify';
                     permission => 'F',      $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
                     icon => 'edit-find-replace.png',      push(@menu, { url => "",
                     linktitle => 'Start the process of hand grading submissions.'                     name => &mt('Verify Receipt'),
                         },                     short_description =>
                    { linktext => 'Upload Scores',              &mt('')});
                     url => $url2,  
                     permission => 'F',  
                     icon => 'uploadscores.png',  
                     linktitle => 'Specify a file containing the class scores for current resource.'  
                    },  
                    { linktext => 'Process Clicker',  
                     url => $url3,  
                     permission => 'F',  
                     icon => 'addClickerInfoFile.png',  
                     linktitle => 'Specify a file containing the clicker information for this resource.'  
                    },  
                    { linktext => 'Grade/Manage/Review Scantron Forms',  
                     url => $url4,  
                     permission => 'F',  
                     icon => 'stat.png',  
                     linktitle => 'Grade scantron exams, upload/download scantron data files, and review previously graded scantron exams.'  
                    }  
                     ]  
             });  
   
     #$fields{'command'} = 'verify';  
     #$url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);  
     #  
     # Create the menu      # Create the menu
     my $Str;      my $Str;
     # $Str .= '<h2>'.&mt('Please select a grading task').'</h2>';      # $Str .= '<h2>'.&mt('Please select a grading task').'</h2>';
Line 8333  sub grading_menu { Line 8319  sub grading_menu {
  '<input type="hidden" name="saveState"   value="" />'."\n".   '<input type="hidden" name="saveState"   value="" />'."\n".
  '<input type="hidden" name="gradingMenu" value="1" />'."\n".   '<input type="hidden" name="gradingMenu" value="1" />'."\n".
  '<input type="hidden" name="showgrading" value="yes" />'."\n";   '<input type="hidden" name="showgrading" value="yes" />'."\n";
       foreach my $menudata (@menu) {
     $Str .= Apache::lonhtmlcommon::generate_menu(@menu);          if ($menudata->{'name'} ne &mt('Verify Receipt')) {
     #$menudata->{'jscript'}              $Str .='    <h3><a '.
     $Str .='<hr /><input type="button" value="'.&mt('Verify Receipt').'" '.                  $menudata->{'jscript'}.
         ' onClick="javascript:checkChoice(document.forms.gradingMenu,\'5\',\'verify\')" '.                  ' href="'.
         ' /> '.                  $menudata->{'url'}.'" >'.
         &Apache::lonnet::recprefix($env{'request.course.id'}).                  $menudata->{'name'}."</a></h3>\n";
         '-<input type="text" name="receipt" size="4" onChange="javascript:checkReceiptNo(this.form,\'OK\')" />';          } else {
               $Str .='<hr /><input type="button" value="'.&mt('Verify Receipt').'" '.
                   $menudata->{'jscript'}.
                   ' onClick="javascript:checkChoice(document.forms.gradingMenu,\'5\',\'verify\')" '.
                   ' /> '.
                   &Apache::lonnet::recprefix($env{'request.course.id'}).
                       '-<input type="text" name="receipt" size="4" onChange="javascript:checkReceiptNo(this.form,\'OK\')" />';
           }
           $Str .= '    '.('&nbsp;'x8).$menudata->{'short_description'}.
               "\n";
       }
     $Str .="</form>\n";      $Str .="</form>\n";
     my $receiptalert = &mt("Please enter a receipt number given by a student in the receipt box.");      my $receiptalert = &mt("Please enter a receipt number given by a student in the receipt box.");
     $request->print(<<GRADINGMENUJS);      $request->print(<<GRADINGMENUJS);
Line 8458  GRADINGMENUJS Line 8453  GRADINGMENUJS
  '<input type="hidden" name="showgrading" value="yes" />'."\n";   '<input type="hidden" name="showgrading" value="yes" />'."\n";
   
     $result.='      $result.='
 <h2>      <div class="LC_grade_select_mode">
   '.&mt('Grade Current Resource').'        <div class="LC_grade_select_mode_current">
 </h2>          <h2>
 <div>            '.&mt('Grade Current Resource').'
   '.$table.'          </h2>
 </div>          <div class="LC_grade_select_mode_body">
             <div class="LC_grades_resource_info">
 <div class="LC_columnSection">             '.$table.'
               </div>
     <fieldset>            <div class="LC_grade_select_mode_selector">
       <legend>               <div class="LC_grade_select_mode_selector_header">
        '.&mt('Sections').'                  '.&mt('Sections').'
       </legend>               </div>
       <select name="section" multiple="multiple" size="5">'."\n";               <div class="LC_grade_select_mode_selector_body">
     $result.= $selsec;                 <select name="section" multiple="multiple" size="5">'."\n";
       if (ref($sections)) {
           foreach my $section (sort(@$sections)) {
               $result.='<option value="'.$section.'" '.
                   ($saveSec eq $section ? 'selected="selected"':'').'>'.$section.'</option>'."\n";
           }
       }
     $result.= '<option value="all" '.($saveSec eq 'all' ? 'selected="selected"' : ''). '>all</option></select> &nbsp; ';      $result.= '<option value="all" '.($saveSec eq 'all' ? 'selected="selected"' : ''). '>all</option></select> &nbsp; ';
     $result.='      $result.='
     </fieldset>               </div>
               </div>
     <fieldset>            <div class="LC_grade_select_mode_selector">
       <legend>               <div class="LC_grade_select_mode_selector_header">
         '.&mt('Groups').'                  '.&mt('Groups').'
       </legend>               </div>
       '.&Apache::lonstatistics::GroupSelect('group','multiple',5).'               <div class="LC_grade_select_mode_selector_body">
     </fieldset>                  '.&Apache::lonstatistics::GroupSelect('group','multiple',5).'
                  </div>
     <fieldset>            </div>
       <legend>            <div class="LC_grade_select_mode_selector">
         '.&mt('Access Status').'               <div class="LC_grade_select_mode_selector_header">
       </legend>                  '.&mt('Access Status').'
       '.&Apache::lonhtmlcommon::StatusOptions($saveStatus,undef,5,undef,'mult').'               </div>
     </fieldset>               <div class="LC_grade_select_mode_selector_body">
                     '.&Apache::lonhtmlcommon::StatusOptions($saveStatus,undef,5,undef,'mult').'
     <fieldset>               </div>
       <legend>            </div>
         '.&mt('Submission Status').'            <div class="LC_grade_select_mode_selector">
       </legend>               <div class="LC_grade_select_mode_selector_header">
       <select name="submitonly" size="5">                  '.&mt('Submission Status').'
          <option value="yes" '.      ($saveSub eq 'yes'       ? 'selected="selected"' : '').'>'.&mt('with submissions').'</option>               </div>
          <option value="queued" '.   ($saveSub eq 'queued'    ? 'selected="selected"' : '').'>'.&mt('in grading queue').'</option>               <div class="LC_grade_select_mode_selector_body">
          <option value="graded" '.   ($saveSub eq 'graded'    ? 'selected="selected"' : '').'>'.&mt('with ungraded submissions').'</option>                 <select name="submitonly" size="5">
          <option value="incorrect" '.($saveSub eq 'incorrect' ? 'selected="selected"' : '').'>'.&mt('with incorrect submissions').'</option>                   <option value="yes" '.      ($saveSub eq 'yes'       ? 'selected="selected"' : '').'>'.&mt('with submissions').'</option>
                    <option value="queued" '.   ($saveSub eq 'queued'    ? 'selected="selected"' : '').'>'.&mt('in grading queue').'</option>
                    <option value="graded" '.   ($saveSub eq 'graded'    ? 'selected="selected"' : '').'>'.&mt('with ungraded submissions').'</option>
                    <option value="incorrect" '.($saveSub eq 'incorrect' ? 'selected="selected"' : '').'>'.&mt('with incorrect submissions').'</option>
                  <option value="all" '.      ($saveSub eq 'all'       ? 'selected="selected"' : '').'>'.&mt('with any status').'</option>                   <option value="all" '.      ($saveSub eq 'all'       ? 'selected="selected"' : '').'>'.&mt('with any status').'</option>
       </select>                 </select>
     </fieldset>               </div>
               </div>
 </div>            <div class="LC_grade_select_mode_type_body">
               <div class="LC_grade_select_mode_type">
 <br />  
           <div>  
             <div>  
               <label>                <label>
                 <input type="radio" name="radioChoice" value="submission" '.                  <input type="radio" name="radioChoice" value="submission" '.
                   ($saveCmd eq 'submission' ? 'checked="checked"' : '').' /> '.                    ($saveCmd eq 'submission' ? 'checked="checked"' : '').' /> '.
              &mt('Select individual students to grade and view submissions.').'               &mt('Select individual students to grade and view submissions.').'
       </label>                 </label>
             </div>              </div>
             <div>              <div class="LC_grade_select_mode_type">
       <label>                <label>
                 <input type="radio" name="radioChoice" value="viewgrades" '.                  <input type="radio" name="radioChoice" value="viewgrades" '.
                   ($saveCmd eq 'viewgrades' ? 'checked="checked"' : '').' /> '.                    ($saveCmd eq 'viewgrades' ? 'checked="checked"' : '').' /> '.
                     &mt('Grade all selected students in a grading table.').'                      &mt('Grade all selected students in a grading table.').'
               </label>                </label>
             </div>              </div>
             <div>              <div class="LC_grade_select_mode_type">
       <input type="button" onClick="javascript:checkChoice(this.form,\'2\');" value="'.&mt('Next').' &rarr;" />                <input type="button" onClick="javascript:checkChoice(this.form,\'2\');" value="'.&mt('Next-&gt;').'" />
             </div>              </div>
           </div>            </div>
           </div>
         </div>
         <div class="LC_grade_select_mode_page">
         <h2>          <h2>
          '.&mt('Grade Complete Folder for One Student').'           '.&mt('Grade Complete Folder for One Student').'
         </h2>          </h2>
         <div>          <div class="LC_grades_select_mode_body">
             <div>            <div class="LC_grade_select_mode_type_body">
               <div class="LC_grade_select_mode_type">
               <label>                <label>
                 <input type="radio" name="radioChoice" value="pickStudentPage" '.                  <input type="radio" name="radioChoice" value="pickStudentPage" '.
   ($saveCmd eq 'pickStudentPage' ? 'checked="checked"' : '').' /> '.            ($saveCmd eq 'pickStudentPage' ? 'checked="checked"' : '').' /> '.
   &mt('The <b>complete</b> page/sequence/folder: For one student').'    &mt('The <b>complete</b> page/sequence/folder: For one student').'
               </label>                </label>
             </div>              </div>
             <div>              <div class="LC_grade_select_mode_type">
       <input type="button" onClick="javascript:checkChoice(this.form,\'2\');" value="'.&mt('Next').' &rarr;" />                <input type="button" onClick="javascript:checkChoice(this.form,\'2\');" value="'.&mt('Next-&gt;').'" />
             </div>              </div>
             </div>
         </div>          </div>
         </div>
       </div>
   </form>';    </form>';
     $result .= &show_grading_menu_form($symb);      $result .= &show_grading_menu_form($symb);
     return $result;      return $result;

Removed from v.1.574  
changed lines
  Added in v.1.574.2.1


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>