Diff for /loncom/homework/lonhomework.pm between versions 1.311 and 1.312

version 1.311, 2009/05/19 22:52:19 version 1.312, 2009/06/09 16:33:55
Line 688  sub handle_save_or_undo { Line 688  sub handle_save_or_undo {
 sub analyze_header {  sub analyze_header {
     my ($request) = @_;      my ($request) = @_;
     my $js = &Apache::structuretags::setmode_javascript();      my $js = &Apache::structuretags::setmode_javascript();
   
       # Breadcrumbs
       my $brcrum = [{'href' => &Apache::loncommon::authorspace(),
                      'text' => 'Construction Space'},
                     {'href' => '',
                      'text' => 'Problem Testing'},
                     {'href' => '',
                      'text' => 'Analyzing a problem'}];
   
     my $result =      my $result =
         &Apache::loncommon::start_page('Analyzing a problem',$js)          &Apache::loncommon::start_page('Analyzing a problem',
        .&Apache::lonhtmlcommon::breadcrumbs() # FIXME add breadcrumbs                                         $js,
                                          {'bread_crumbs' => $brcrum,})
        .&Apache::loncommon::head_subbox(         .&Apache::loncommon::head_subbox(
                 &Apache::loncommon::CSTR_pageheader());                  &Apache::loncommon::CSTR_pageheader());
     $result .=       $result .= 
Line 916  sub editxmlmode { Line 926  sub editxmlmode {
  my $only_body =  ($env{'environment.remote'} eq 'off')? 0 : 1;   my $only_body =  ($env{'environment.remote'} eq 'off')? 0 : 1;
  my $dragmath_button =    my $dragmath_button = 
             &Apache::lonhtmlcommon::dragmath_button("LC_editxmltext",1);              &Apache::lonhtmlcommon::dragmath_button("LC_editxmltext",1);
   
       # Breadcrumbs
       my $brcrum = [{'href' => &Apache::loncommon::authorspace(),
                      'text' => 'Construction Space'},
                     {'href' => '',
                      'text' => 'Problem Editing'}];
   
  my $start_page =    my $start_page = 
     &Apache::loncommon::start_page(&mt("EditXML [_1]",$file),$js,      &Apache::loncommon::start_page(&mt("EditXML [_1]",$file),$js,
    {'no_auto_mt_title' => 1,     {'no_auto_mt_title' => 1,
Line 923  sub editxmlmode { Line 940  sub editxmlmode {
     'add_entries'      => {      'add_entries'      => {
  'onresize' => q[resize_textarea('LC_editxmltext','LC_aftertextarea')],   'onresize' => q[resize_textarea('LC_editxmltext','LC_aftertextarea')],
  'onload'   => q[resize_textarea('LC_editxmltext','LC_aftertextarea')],   'onload'   => q[resize_textarea('LC_editxmltext','LC_aftertextarea')],
     }});                                      },
                                                   'bread_crumbs' => $brcrum,
   });
   
     $result=$start_page      $result=$start_page
            .&Apache::lonhtmlcommon::breadcrumbs() # FIXME add breadcrumbs  
            .&Apache::loncommon::head_subbox(             .&Apache::loncommon::head_subbox(
                 &Apache::loncommon::CSTR_pageheader());                  &Apache::loncommon::CSTR_pageheader());
  $result.=&renderpage($request,$file,['no_output_web'],1).   $result.=&renderpage($request,$file,['no_output_web'],1).
Line 1140  sub newproblem { Line 1158  sub newproblem {
  my $dest = &Apache::lonnet::filelocation("",$request->uri);   my $dest = &Apache::lonnet::filelocation("",$request->uri);
  my $errormsg;   my $errormsg;
  my $instructions;   my $instructions;
           my $brcrum = [{'href' => &Apache::loncommon::authorspace(),
                          'text' => 'Construction Space'},
                         {'href' => '',
                          'text' => "Create New $extension"}];
  my $start_page =    my $start_page = 
     &Apache::loncommon::start_page("Create New $extension");              &Apache::loncommon::start_page("Create New $extension",
                                              undef,
                                              {'bread_crumbs' => $brcrum,});
  $request->print(   $request->print(
         $start_page          $start_page
        .&Apache::lonhtmlcommon::breadcrumbs() # FIXME add breadcrumbs  
        .&Apache::loncommon::head_subbox(         .&Apache::loncommon::head_subbox(
                 &Apache::loncommon::CSTR_pageheader())                  &Apache::loncommon::CSTR_pageheader())
        .'<h1>'.&mt("Creating a new $extension resource.")."</h1>         .'<h1>'.&mt("Creating a new $extension resource.")."</h1>

Removed from v.1.311  
changed lines
  Added in v.1.312


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