--- loncom/interface/lonnavmaps.pm 2009/02/25 21:06:27 1.430
+++ loncom/interface/lonnavmaps.pm 2009/03/16 15:25:40 1.431
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Navigate Maps Handler
#
-# $Id: lonnavmaps.pm,v 1.430 2009/02/25 21:06:27 schulted Exp $
+# $Id: lonnavmaps.pm,v 1.431 2009/03/16 15:25:40 schulted Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -1463,6 +1463,7 @@ END
} else {
$result .= '
';
}
+ $result.="".mt('Tools:')." | ";
$result.=&show_linkitems_toolbar($args->{'linkitems'});
if ($args->{'sort_html'}) {
if ($env{'environment.remotenavmap'} ne 'on') {
@@ -1489,7 +1490,7 @@ END
$result .= "
\n";
# Data
- $result .= '' ."\n";
+ $result.=&Apache::loncommon::start_data_table("LC_tableOfContent");
my $res = "Apache::lonnavmaps::resource";
my %condenseStatuses =
@@ -1733,7 +1734,7 @@ END
$rownum ++;
my $backgroundColor = $backgroundColors[$rownum % scalar(@backgroundColors)];
- $result .= " \n";
+ $result .= &Apache::loncommon::start_data_table_row();
# Set up some data about the parts that the cols might want
my $filter = $it->{FILTER};
@@ -1759,7 +1760,7 @@ END
}
$result .= $colHTML . "\n";
}
- $result .= "
\n";
+ $result .= &Apache::loncommon::end_data_table_row();
$args->{'isNewBranch'} = 0;
}
@@ -1795,8 +1796,8 @@ if (location.href.indexOf('#curloc')==-1
";
}
- $result .= "
";
-
+ $result.=&Apache::loncommon::end_data_table();
+
if ($r) {
$r->print($result);
$result = "";