version 1.309, 2006/03/16 21:23:51
|
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: |
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 |
|
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->{'onlybody'},undef,undef,undef, |
&bodytag($title,undef,$args->{'add_entries'},$args->{'only_body'}, |
$args->{'notopbar'}); |
undef,undef,undef,$args->{'no_nav_bar'}); |
} |
} |
|
|
=pod |
=pod |