Diff for /loncom/homework/structuretags.pm between versions 1.455 and 1.461

version 1.455, 2009/07/06 17:48:30 version 1.461, 2009/12/06 21:18:24
Line 218  sub page_start { Line 218  sub page_start {
             'text'  => 'Construction Space',              'text'  => 'Construction Space',
             'href'  => &Apache::loncommon::authorspace(),              'href'  => &Apache::loncommon::authorspace(),
         });          });
           # breadcrumbs (and tools) will be created 
           # in start_page->bodytag->innerregister
   
 # FIXME Where are we?  # FIXME Where are we?
 #        &Apache::lonhtmlcommon::add_breadcrumb({  #        &Apache::lonhtmlcommon::add_breadcrumb({
 #            'text'  => 'Problem Editing', # 'Problem Testing'  #            'text'  => 'Problem Editing', # 'Problem Testing'
 #            'href'  => '',  #            'href'  => '',
 #        });  #        });
         $pageheader = &Apache::lonhtmlcommon::breadcrumbs()          $pageheader =&Apache::loncommon::head_subbox(
                      .&Apache::loncommon::head_subbox(  
                 &Apache::loncommon::CSTR_pageheader());                  &Apache::loncommon::CSTR_pageheader());
  }   }
     } elsif (!defined($found{'body'})) {      } elsif (!defined($found{'body'})) {
Line 252  sub page_start { Line 254  sub page_start {
     my $page_start = &Apache::loncommon::start_page($name,$extra_head,      my $page_start = &Apache::loncommon::start_page($name,$extra_head,
     \%body_args);      \%body_args);
     $page_start .= $pageheader;      $page_start .= $pageheader;
     if (!defined($found{'body'})   
  && $env{'request.state'} ne 'construct'      unless ($env{'request.gcicontext'} eq 'buildtest') {
  && ($target eq 'web' || $target eq 'webgrade')) {          if (!defined($found{'body'})
               && $env{'request.state'} ne 'construct'
  my ($symb,undef,undef,undef,$publicuser)= &Apache::lonnet::whichuser();              && ($target eq 'web' || $target eq 'webgrade')) {
  if ($symb eq '' && !$publicuser) {  
     my $help = &Apache::loncommon::help_open_topic("Ambiguous_Reference");              my ($symb,undef,undef,undef,$publicuser)= &Apache::lonnet::whichuser();
     $help="<hr/><p class='LC_info'>".&mt("Browsing resource, all submissions              if ($symb eq '' && !$publicuser) {
         are temporary.")."</p>";                  $page_start .= '<p class="LC_info">'
     $page_start .= $help;                                .&mt('Browsing resource, all submissions are temporary.')
  }                                .'</p>';
               }
           }
     }      }
   
     if (!defined($found{'body'}) && $env{'request.state'} ne 'construct') {      if (!defined($found{'body'}) && $env{'request.state'} ne 'construct') {
Line 388  sub problem_edit_header { Line 392  sub problem_edit_header {
 '.&mt('Problem Editing').&Apache::loncommon::help_open_menu('Problem Editing','Problem_Editor_XML_Index',5,'Authoring').'  '.&mt('Problem Editing').&Apache::loncommon::help_open_menu('Problem Editing','Problem_Editor_XML_Index',5,'Authoring').'
 </div>'.  </div>'.
 &problem_edit_buttons().'  &problem_edit_buttons().'
 <hr />  <hr style="clear:both;" />
 '.&Apache::lonxml::message_location().'  '.&Apache::lonxml::message_location().'
 </div>  </div>
 '.  '.
        '<table border="0" width="100%"><tr><td bgcolor="#DDDDDD">';         '<table border="0" width="100%"><tr><td bgcolor="#F8F8F8">';
 }  }
   
 sub problem_edit_footer {  sub problem_edit_footer {
Line 400  sub problem_edit_footer { Line 404  sub problem_edit_footer {
 <div class="LC_edit_problem_footer">  <div class="LC_edit_problem_footer">
   <hr />'.    <hr />'.
 &problem_edit_buttons().'  &problem_edit_buttons().'
   <hr />    <hr style="clear:both;" />
 </div>  </div>
 '.  '.
   
Line 913  sub start_problem { Line 917  sub start_problem {
  if ($env{'request.state'} ne "construct" &&    if ($env{'request.state'} ne "construct" && 
     ($symb eq '' || $Apache::lonhomework::type eq 'practice')) {      ($symb eq '' || $Apache::lonhomework::type eq 'practice')) {
     $form_tag_start.='<input type="hidden" name="rndseed" value="'.      $form_tag_start.='<input type="hidden" name="rndseed" value="'.
  $rndseed.'" />'.   $rndseed.'" />';
     '<input type="submit" name="resetdata"              unless ($env{'request.gcicontext'} eq 'buildtest') {
                              value="'.&mt('New Problem Variation').'" />';                  $form_tag_start .= '<input type="submit" name="resetdata"'.
                               ' value="'.&mt('New Problem Variation').'" />';
               }
     if (exists($env{'form.username'})) {      if (exists($env{'form.username'})) {
  $form_tag_start.=   $form_tag_start.=
     '<input type="hidden" name="username"      '<input type="hidden" name="username"
                              value="'.$env{'form.username'}.'" />';                               value="'.$env{'form.username'}.'" />';
     }      }
     if ($env{'request.role.adv'}) {              unless ($env{'request.gcicontext'} eq 'buildtest') {
  $form_tag_start.=          if ($env{'request.role.adv'}) {
     ' <label><input type="checkbox" name="showallfoils"';      $form_tag_start.= ' <label class="LC_nobreak">'
  if (defined($env{'form.showallfoils'})) {                                .'<input type="checkbox" name="showallfoils"';
     $form_tag_start.=' checked="checked"';      if (defined($env{'form.showallfoils'})) {
  }          $form_tag_start.=' checked="checked"';
  $form_tag_start.= ' />'.&mt('&nbsp;Show&nbsp;All&nbsp;Foils').      }
     '</label>';                      $form_tag_start.= ' /> '
     }                                       .&mt('Show All Foils')
                                        .'</label>';
           }
               }
             if ($Apache::lonhomework::type eq 'practice') {              if ($Apache::lonhomework::type eq 'practice') {
                 $form_tag_start.=&practice_problem_header();                  $form_tag_start.=&practice_problem_header();
             }              }
     $form_tag_start.='<hr />';              unless ($env{'request.gcicontext'} eq 'buildtest') {
           $form_tag_start.='<hr />';
               }
  }   }
   
  ($status,$accessmsg,my $slot_name,my $slot) =    ($status,$accessmsg,my $slot_name,my $slot) = 

Removed from v.1.455  
changed lines
  Added in v.1.461


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