--- loncom/interface/lonmeta.pm 2003/12/26 21:17:37 1.43 +++ loncom/interface/lonmeta.pm 2003/12/28 20:12:59 1.44 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Metadata display handler # -# $Id: lonmeta.pm,v 1.43 2003/12/26 21:17:37 www Exp $ +# $Id: lonmeta.pm,v 1.44 2003/12/28 20:12:59 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -24,12 +24,7 @@ # /home/httpd/html/adm/gpl.txt # # http://www.lon-capa.org/ -# -# (TeX Content Handler -# -# 05/29/00,05/30,10/11 Gerd Kortemeyer) -# -# 10/19,10/21,10/23,11/27,08/09/01,12/22,12/24,12/25 Gerd Kortemeyer + package Apache::lonmeta; @@ -42,6 +37,10 @@ use Apache::lonpublisher; use Apache::lonlocal; use Apache::lonmysql; +# MySQL table columns + +my @columns; + # ----------------------------------------- Fetch and evaluate dynamic metadata sub dynamicmeta { @@ -191,6 +190,17 @@ sub diffgraph { return $output; } +# ==================================================== Turn MySQL row into hash + +sub metadata_col_to_hash { + my @cols=@_; + my %hash=(); + for (my $i=0; $i<=$#columns; $i++) { + $hash{$columns[$i]}=$cols[$i]; + } + return %hash; +} + # ================================================================ Main Handler sub handler { @@ -550,6 +560,11 @@ ENDEDIT } } +# ================================================================= BEGIN Block +BEGIN { +# Get columns of MySQL metadata table + @columns=&Apache::lonmysql::col_order('metadata'); +} 1; __END__