--- loncom/interface/lonhtmlcommon.pm 2009/05/22 17:57:19 1.218
+++ loncom/interface/lonhtmlcommon.pm 2009/06/10 13:32:38 1.223
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# a pile of common html routines
#
-# $Id: lonhtmlcommon.pm,v 1.218 2009/05/22 17:57:19 bisitz Exp $
+# $Id: lonhtmlcommon.pm,v 1.223 2009/06/10 13:32:38 droeschl Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -1314,15 +1314,13 @@ sub htmlareabrowser {
=item breadcrumbs
Compiles the previously registered breadcrumbs into an series of links.
-FAQ and BUG links will be placed on the left side of the table if they
-are defined for the last registered breadcrumb.
Additionally supports a 'component', which will be displayed on the
-right side of the table (without a link).
+right side of the breadcrumbs enclosing div (without a link).
A link to help for the component will be included if one is specified.
All inputs can be undef without problems.
-Inputs: $component (the large text on the right side of the table),
+Inputs: $component (the text on the right side of the breadcrumbs trail),
$component_help
$menulink (boolean, controls whether to include a link to /adm/menu)
$helplink (if 'nohelp' don't include the orange help link)
@@ -1357,20 +1355,13 @@ returns: nothing
my ($component,$component_help,$menulink,$helplink,$css_class,$no_mt, $CourseBreadcrumbs) = @_;
#
$css_class ||= 'LC_breadcrumbs';
- my $Str1 = '
';
- }
- #
- if (defined($component)) {
- $Str .= "\n".''
- .'';
- if ($no_mt) {
- $Str .= $component;
- } else {
- $Str .= &mt($component);
- }
- if ($icons ne '') {
- $Str .= ' '.$icons;
- }
- $Str .= ' |
'."\n";
+ unless ($CourseBreadcrumbs) {
+ $links = htmltag('ol', $links, { id => "LC_MenuBreadcrumbs" });
+ } else {
+ $links = htmltag('ul', $links, { id => "LC_CourseBreadcrumbs" });
}
- #
+
+ if ($component) {
+ $links = htmltag('span',
+ ( $no_mt ? $component : mt($component) ).
+ ( $icons ? $icons : '' ),
+ { class => 'LC_breadcrumbs_component' } )
+ .$links;
+ }
+
+ $links = htmltag('div', $links,
+ { id => "LC_head_subbox" }) unless ($CourseBreadcrumbs) ;
+
# Return the @Crumbs stack to what we started with
push(@Crumbs,$last);
shift(@Crumbs);
- # Return a table and after that the breadcrumb's line
- return "$Str\n$Str1";
+ # Return the breadcrumb's line
+ return "$links";
}
sub clear_breadcrumbs {
@@ -1836,13 +1814,11 @@ sub course_custom_roles {
#
sub topic_bar {
my ($imgnum,$title) = @_;
- return '
-
-
!['.&mt('Step [_1]',$imgnum).
- '](/res/adm/pages/bl_step'.$imgnum.'.gif)
-
'.$title.'
-
-';
+ return ''
+ .'
!['.&mt('Step [_1]',$imgnum).'](/res/adm/pages/bl_step'.$imgnum.'.gif)
'
+ .' '.$title
+ .'
';
}
##############################################
@@ -2094,6 +2070,53 @@ END
return $scripttag;
}
+
+# USAGE: htmltag(element, content, {attribute => value,...});
+#
+# EXAMPLES:
+# - htmltag('a', 'this is an anchor', {href => 'www.example.com',
+# title => 'this is a title'})
+#
+# - You might want to set up needed tags like:
+#
+# my $h3 = sub { return htmltag( "h3", @_ ) };
+#
+# ... and use them: $h3->("This is a headline")
+#
+# - To set up a couple of tags, see sub inittags
+#
+# NOTES:
+# - Empty elements, such as
are correctly terminated,
+# i.e. htmltag('br') returns
+# - Empty attributes (title="") are filtered out.
+# - The function will not check for deprecated attributes.
+#
+# OUTPUT: content enclosed in xhtml conform tags
+sub htmltag{
+ return
+ qq|<$_[0]|
+ . join( '', map { qq| $_="${$_[2]}{$_}"| if ${$_[2]}{$_} } keys %{ $_[2] } )
+ . ($_[1] ? qq|>$_[1]$_[0]>| : qq|/>|). "\n";
+};
+
+
+# USAGE: inittags(@tags);
+#
+# EXAMPLES:
+# - my ($h1, $h2, $h3) = initTags( qw( h1 h2 h3 ) )
+# $h1->("This is a headline") #Returns: This is a headline
+#
+# NOTES: See sub htmltag for further information.
+#
+# OUTPUT: List of subroutines.
+sub inittags {
+ my @tags = @_;
+ return map { my $tag = $_;
+ sub { return htmltag( $tag, @_ ) }
+ } @tags;
+}
+
+
##############################################
##############################################
@@ -2131,23 +2154,8 @@ END
# --------------------------
sub generate_menu {
my @menu = @_;
-
- # usage: $wrap->(element, content, {attribute => value,...});
- # output: content enclosed in html conform tags
- my $wrap = sub {
- return
- qq|<$_[0]|
- . join( '', map { qq| $_="${$_[2]}{$_}"| } keys %{ $_[2] } )
- . ($_[1] ? qq|>$_[1]$_[0]>| : qq|/>|). "\n";
- };
-
# subs for specific html elements
- my $h3 = sub { return $wrap->( "h3", @_ ) };
- my $div = sub { return $wrap->( "div", @_ ) };
- my $ul = sub { return $wrap->( "ul", @_ ) };
- my $li = sub { return $wrap->( "li", @_ ) };
- my $a = sub { return $wrap->( "a", @_ ) };
- my $img = sub { return $wrap->( "img", @_ ) };
+ my ($h3, $div, $ul, $li, $a, $img) = inittags( qw(h3 div ul li a img) );
my @categories; # each element represents the entire markup for a category
@@ -2190,7 +2198,7 @@ sub generate_menu {
push @categories,
$div->($h3->(mt($$category{categorytitle}), {class=>"LC_hcell"}).
$ul->(join('' ,@links), {class =>"LC_ListStyleNormal" }),
- {class=>"LC_ContentBoxSpecial LC_400Box"}) if scalar(@links);
+ {class=>"LC_Box LC_400Box"}) if scalar(@links);
}
# wrap the joined @categories in another (column layout)