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

version 1.310, 2006/03/16 21:34:03 version 1.312, 2006/03/16 22:12:17
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:
                   only_body  -> is true will set &bodytag() onlybodytag arg on                    only_body   -> is true will set &bodytag() onlybodytag arg on
                   no_nav_bar -> is true will set &bodytag() notopbar arg on                    no_nav_bar  -> is true will set &bodytag() notopbar arg on
                     add_entries -> additional attributes to add to the  <body>
                     domain      -> force to color decorate a page for a 
                                    specific domain
   
 =back  =back
   
Line 3048  sub start_page { Line 3051  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->{'only_body'},undef,undef,undef,   &bodytag($title,undef,$args->{'add_entries'},$args->{'only_body'},
  $args->{'no_nav_bar'});   undef,undef,undef,$args->{'no_nav_bar'});
 }  }
   
 =pod  =pod

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


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