Diff for /loncom/interface/loncommon.pm between versions 1.309 and 1.310

version 1.309, 2006/03/16 21:23:51 version 1.310, 2006/03/16 21:34:03
Line 3036  Returns a complete <html> .. <body> sect Line 3036  Returns a complete <html> .. <body> sect
 Inputs: $title - optional title for the page  Inputs: $title - optional title for the page
         $head_extra - optional extra HTML to incude inside the <head>          $head_extra - optional extra HTML to incude inside the <head>
         %args - additional optional args supported are:          %args - additional optional args supported are:
                   onlybody -> is true will set &bodytag() onlybodytag arg on                    only_body  -> is true will set &bodytag() onlybodytag arg on
                   notopbar -> is true will set &bodytag() notopbar arg on                    no_nav_bar -> is true will set &bodytag() notopbar arg on
   
 =back  =back
   
Line 3048  sub start_page { Line 3048  sub start_page {
     return       return 
  &Apache::lonxml::xmlbegin().   &Apache::lonxml::xmlbegin().
  &headtag($title,$head_extra).&endheadtag().   &headtag($title,$head_extra).&endheadtag().
  &bodytag($title,undef,undef,$args->{'onlybody'},undef,undef,undef,   &bodytag($title,undef,undef,$args->{'only_body'},undef,undef,undef,
  $args->{'notopbar'});   $args->{'no_nav_bar'});
 }  }
   
 =pod  =pod

Removed from v.1.309  
changed lines
  Added in v.1.310


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