--- loncom/interface/lontemplate.pm 2009/02/19 17:32:39 1.17 +++ loncom/interface/lontemplate.pm 2009/03/21 21:58:32 1.24 @@ -1,7 +1,7 @@ # The LearningOnline Network # "Template" Functions to generate html output # -# $Id: lontemplate.pm,v 1.17 2009/02/19 17:32:39 neumanie Exp $ +# $Id: lontemplate.pm,v 1.24 2009/03/21 21:58:32 bisitz Exp $ # # Copyright Michigan State University Board of Trustees # @@ -58,7 +58,7 @@ sub print_aboutme_content_template{ my ($r,$allowed,$target,$syllabusfields_ref,$syllabus_ref) = @_; my %syllabusfields = %{$syllabusfields_ref}; my %syllabus = %{$syllabus_ref}; - #&start_ContentBox($r,$allowed); + foreach my $field (sort(keys(%syllabusfields))) { if (($syllabus{$field}) || ($allowed)) { my $message=$syllabus{$field}; @@ -97,7 +97,7 @@ sub print_aboutme_content_template{ } } } - #&end_ContentBox($r); + } sub start_ContentBox{ @@ -114,22 +114,30 @@ sub end_ContentBox{ sub send_message{ my ($r,$cnum,$cdom) = @_; my $s; - my $image = qq{}; - #$r->print('
'); - $s=&Apache::loncommon::messagewrapper($image,$cnum,$cdom).' '.&Apache::loncommon::messagewrapper(&mt('Send me a message'),$cnum,$cdom); - #$r->print('
'); - return $s; + my $image = qq{}; + $s=&Apache::loncommon::messagewrapper($image,$cnum,$cdom).' '.&Apache::loncommon::messagewrapper(&mt('Send me a message'),$cnum,$cdom); + return $s; } sub print_template { - my ($r,$topic,$content, $allowed,$boxclass) = @_; + my ($r,$topic,$content, $allowed,$boxclass) = @_; $r->print('
'); $r->print('

'.$topic.'

'); - $r->print('
'.$content.'
'); + $r->print('

' .$content . '

'); + $r->print('
'); +} +sub print_start_template +{ + my ($r,$topic,$boxclass) = @_; + $r->print('
'); + $r->print('

'.$topic.'

'); +} +sub print_end_template +{ + my ($r) = @_; $r->print('
'); } - sub print_editbox_template { my ($r,$content,$field) = @_; @@ -140,14 +148,13 @@ sub print_editbox_template } sub print_start_page_functions { - my($r)=@_; - #TODO add translation for Functions - $r->print('
Functions'); + my($r)=@_; + $r->print('
'. &mt('Functions') . ''); } sub print_functions_content { my($r,$content) = @_; - $r->print($content.'      '); + $r->print('• '.$content.' '); } sub print_end_page_functions {