--- loncom/interface/lonmeta.pm 2000/10/21 10:46:35 1.1
+++ loncom/interface/lonmeta.pm 2003/02/18 22:39:18 1.26
@@ -1,47 +1,184 @@
# The LearningOnline Network with CAPA
-#
# Metadata display handler
#
+# $Id: lonmeta.pm,v 1.26 2003/02/18 22:39:18 www Exp $
+#
+# Copyright Michigan State University Board of Trustees
+#
+# This file is part of the LearningOnline Network with CAPA (LON-CAPA).
+#
+# LON-CAPA is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# LON-CAPA is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with LON-CAPA; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+# /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 Gerd Kortemeyer
+# 10/19,10/21,10/23,11/27,08/09/01,12/22,12/24,12/25 Gerd Kortemeyer
package Apache::lonmeta;
use strict;
-use Apache::File;
use Apache::Constants qw(:common);
-use HTML::TokeParser;
+use Apache::lonnet();
+use Apache::loncommon();
+use Apache::lonmsg;
+use Apache::lonpublisher;
+
+# ----------------------------------------- Fetch and evaluate dynamic metadata
+
+sub dynamicmeta {
+ my $url=&Apache::lonnet::declutter(shift);
+ $url=~s/\.meta$//;
+ my ($adomain,$aauthor)=($url=~/^(\w+)\/(\w+)\//);
+ my $regexp=$url;
+ $regexp=~s/(\W)/\\$1/g;
+ $regexp='___'.$regexp.'___';
+ my %evaldata=&Apache::lonnet::dump('nohist_resevaldata',$adomain,
+ $aauthor,$regexp);
+ my %sum;
+ my %cnt;
+ my %listitems=('count' => 'add',
+ 'course' => 'add',
+ 'avetries' => 'avg',
+ 'stdno' => 'add',
+ 'difficulty' => 'avg',
+ 'clear' => 'avg',
+ 'technical' => 'avg',
+ 'helpful' => 'avg',
+ 'correct' => 'avg',
+ 'depth' => 'avg',
+ 'comments' => 'app',
+ 'usage' => 'cnt'
+ );
+ foreach (keys %evaldata) {
+ $_=~/___(\w+)$/;
+ if (defined($cnt{$1})) { $cnt{$1}++; } else { $cnt{$1}=1; }
+ unless ($listitems{$1} eq 'app') {
+ if (defined($sum{$1})) {
+ $sum{$1}+=$evaldata{$_};
+ } else {
+ $sum{$1}=$evaldata{$_};
+ }
+ } else {
+ if (defined($sum{$1})) {
+ if ($evaldata{$_}) {
+ $sum{$1}.='
'.$evaldata{$_};
+ }
+ } else {
+ $sum{$1}=''.$evaldata{$_};
+ }
+ }
+ }
+ my %returnhash=();
+ foreach (keys %cnt) {
+ if ($listitems{$_} eq 'avg') {
+ $returnhash{$_}=int(($sum{$_}/$cnt{$_})*100.0+0.5)/100.0;
+ } elsif ($listitems{$_} eq 'cnt') {
+ $returnhash{$_}=$cnt{$_};
+ } else {
+ $returnhash{$_}=$sum{$_};
+ }
+ }
+ return %returnhash;
+}
+# ------------------------------------- Try to make an alt tag if there is none
-# ================================================= Unpack metadata into a hash
+sub alttag {
+ my ($base,$src)=@_;
+ my $fullpath=&Apache::lonnet::hreflocation($base,$src);
+ my $alttag=&Apache::lonnet::metadata($fullpath,'title').' '.
+ &Apache::lonnet::metadata($fullpath,'subject').' '.
+ &Apache::lonnet::metadata($fullpath,'abstract');
+ $alttag=~s/\s+/ /gs;
+ $alttag=~s/\"//gs;
+ $alttag=~s/\'//gs;
+ $alttag=~s/\s+$//gs;
+ $alttag=~s/^\s+//gs;
+ if ($alttag) { return $alttag; } else
+ { return 'No information available'; }
+}
-sub unpackagemeta {
- my ($datastring,$fordisplay)=@_;
- my %content=();
- my $parser=HTML::TokeParser->new(\$datastring);
- my $token;
- while ($token=$parser->get_token) {
- if ($token->[0] eq 'S') {
- my $entry=$token->[1];
- my $value=$parser->get_text('/'.$entry);
- if (($token->[2]->{'display'}) && ($fordisplay)) {
- $value.='__dis__'.$token->[2]->{'display'};
- }
- $content{$entry}=$value;
- }
+# -------------------------------------------------------------- Pretty display
+
+sub evalgraph {
+ my $value=shift;
+ unless ($value) { return ''; }
+ my $val=int($value*10.+0.5)-10;
+ my $output='';
+ if ($val>=20) {
+ $output.='  | ';
+ } else {
+ $output.=' | '.
+ ' | ';
}
- return %content;
+ $output.=' | ';
+ if ($val>20) {
+ $output.=' | '.
+ ' | ';
+ } else {
+ $output.='  | ';
+ }
+ $output.=' ('.$value.') |
';
+ return $output;
+}
+
+sub diffgraph {
+ my $value=shift;
+ unless ($value) { return ''; }
+ my $val=int(40.0*$value+0.5);
+ my @colors=('#FF9933','#EEAA33','#DDBB33','#CCCC33',
+ '#BBDD33','#CCCC33','#DDBB33','#EEAA33');
+ my $output='';
+ for (my $i=0;$i<8;$i++) {
+ if ($val>$i*5) {
+ $output.=' | ';
+ } else {
+ $output.=' | ';
+ }
+ }
+ $output.=' ('.$value.') |
';
+ return $output;
}
# ================================================================ Main Handler
sub handler {
my $r=shift;
- my @metacontents;
- my %content;
+
+ my $loaderror=&Apache::lonnet::overloaderror($r);
+ if ($loaderror) { return $loaderror; }
+
+
+ my $uri=$r->uri;
+
+ unless ($uri=~/^\/\~/) {
+# =========================================== This is not in construction space
+ my ($resdomain,$resuser)=
+ (&Apache::lonnet::declutter($uri)=~/^(\w+)\/(\w+)\//);
+
+ $loaderror=
+ &Apache::lonnet::overloaderror($r,
+ &Apache::lonnet::homeserver($resuser,$resdomain));
+ if ($loaderror) { return $loaderror; }
+
+ my %content=();
# ----------------------------------------------------------- Set document type
@@ -51,35 +188,67 @@ sub handler {
return OK if $r->header_only;
# ------------------------------------------------------------------- Read file
-
- {
- my $fh=Apache::File->new($r->filename);
- @metacontents=<$fh>;
+ foreach (split(/\,/,&Apache::lonnet::metadata($uri,'keys'))) {
+ $content{$_}=&Apache::lonnet::metadata($uri,$_);
}
+# ------------------------------------------------------------------ Hide stuff
- %content=&unpackagemeta(join("\n",@metacontents),1);
+ unless ($ENV{'user.adv'}) {
+ foreach ('keywords','notes','abstract','subject') {
+ $content{$_}='- not displayed -';
+ }
+ }
# --------------------------------------------------------------- Render Output
-
+ my ($thisversion)=($uri=~/\.(\d+)\.(\w+)\.meta$/);
+my $creationdate=localtime(
+ &Apache::loncommon::unsqltime($content{'creationdate'}));
+my $lastrevisiondate=localtime(
+ &Apache::loncommon::unsqltime($content{'lastrevisiondate'}));
+my $language=&Apache::loncommon::languagedescription($content{'language'});
+my $mime=&Apache::loncommon::filedescription($content{'mime'});
+my $disuri=&Apache::lonnet::declutter($uri);
+ $disuri=~s/\.meta$//;
+my $currentversion=&Apache::lonnet::getversion($disuri);
+my $versiondisplay='';
+if ($thisversion) {
+ $versiondisplay='Version: '.$thisversion.
+ ' (most recent version: '.$currentversion.')';
+} else {
+ $versiondisplay='Version: '.$currentversion;
+}
+my $bodytag=&Apache::loncommon::bodytag
+ ('Catalog Information','','','',$resdomain);
$r->print(<Catalog Information
-
-Catalog Information
+$bodytag
$content{'title'}
-Author(s): $content{'author'}
-Subject: $content{'subject'}
-Keyword(s): $content{'keywords'}
-Notes: $content{'notes'}
-Abstract:
-$content{'abstract'}
-
-MIME Type: $content{'mime'}
-Language: $content{'language'}
-Creation Date: $content{'creationdate'}
-Last Revision Date: $content{'lastrevisiondate'}
-Publisher/Owner: $content{'owner'}
-Copyright/Distribution: $content{'copyright'}
-
+$disuri
+$versiondisplay
+
+Author(s) |
+$content{'author'} |
+Subject |
+$content{'subject'} |
+Keyword(s) |
+$content{'keywords'} |
+Notes |
+$content{'notes'} |
+Abstract |
+$content{'abstract'} |
+MIME Type |
+$mime ($content{'mime'}) |
+Language |
+$language |
+Creation Date |
+$creationdate |
+
+Last Revision Date | $lastrevisiondate |
+Publisher/Owner |
+$content{'owner'} |
+Copyright/Distribution |
+$content{'copyright'}
+ |
ENDHEAD
delete($content{'title'});
delete($content{'author'});
@@ -93,13 +262,164 @@ ENDHEAD
delete($content{'lastrevisiondate'});
delete($content{'owner'});
delete($content{'copyright'});
- map {
- my ($value,$name)=split(/\_\_dis\_\_/,$content{$_});
- unless ($name) { $name=$_; }
- $r->print(''.$name.': '.$value.'
');
- } sort keys %content;
- $r->print('