Annotation of loncom/interface/lonmeta.pm, revision 1.92
1.1 www 1: # The LearningOnline Network with CAPA
1.8 albertel 2: # Metadata display handler
3: #
1.92 ! albertel 4: # $Id: lonmeta.pm,v 1.91 2005/02/10 22:01:40 banghart Exp $
1.8 albertel 5: #
6: # Copyright Michigan State University Board of Trustees
7: #
8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
9: #
10: # LON-CAPA is free software; you can redistribute it and/or modify
11: # it under the terms of the GNU General Public License as published by
12: # the Free Software Foundation; either version 2 of the License, or
13: # (at your option) any later version.
1.1 www 14: #
1.8 albertel 15: # LON-CAPA is distributed in the hope that it will be useful,
16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18: # GNU General Public License for more details.
19: #
20: # You should have received a copy of the GNU General Public License
21: # along with LON-CAPA; if not, write to the Free Software
22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23: #
24: # /home/httpd/html/adm/gpl.txt
25: #
26: # http://www.lon-capa.org/
1.44 www 27:
1.1 www 28:
29: package Apache::lonmeta;
30:
31: use strict;
1.63 matthew 32: use LONCAPA::lonmetadata();
1.1 www 33: use Apache::Constants qw(:common);
1.3 www 34: use Apache::lonnet();
1.10 www 35: use Apache::loncommon();
1.46 www 36: use Apache::lonhtmlcommon();
1.23 www 37: use Apache::lonmsg;
38: use Apache::lonpublisher;
1.35 www 39: use Apache::lonlocal;
1.43 www 40: use Apache::lonmysql;
1.49 www 41: use Apache::lonmsg;
1.1 www 42:
1.44 www 43:
1.80 matthew 44: ############################################################
45: ############################################################
46: ##
47: ## &get_dynamic_metadata_from_sql($url)
48: ##
49: ## Queries sql database for dynamic metdata
50: ## Returns a hash of hashes, with keys of urls which match $url
51: ## Returned fields are given below.
52: ##
53: ## Examples:
54: ##
55: ## %DynamicMetadata = &Apache::lonmeta::get_dynmaic_metadata_from_sql
56: ## ('/res/msu/korte/');
57: ##
58: ## $DynamicMetadata{'/res/msu/korte/example.problem'}->{$field}
59: ##
60: ############################################################
61: ############################################################
62: sub get_dynamic_metadata_from_sql {
63: my ($url) = shift();
64: my ($authordom,$author)=($url=~m:^/res/(\w+)/(\w+)/:);
65: if (! defined($authordom)) {
66: $authordom = shift();
67: }
68: if (! defined($author)) {
69: $author = shift();
70: }
71: if (! defined($authordom) || ! defined($author)) {
72: return ();
73: }
1.83 www 74: my @Fields = ('url','count','course',
1.80 matthew 75: 'goto','goto_list',
76: 'comefrom','comefrom_list',
77: 'sequsage','sequsage_list',
78: 'stdno','stdno_list',
1.83 www 79: 'dependencies',
1.80 matthew 80: 'avetries','avetries_list',
81: 'difficulty','difficulty_list',
82: 'disc','disc_list',
83: 'clear','technical','correct',
84: 'helpful','depth');
85: #
86: my $query = 'SELECT '.join(',',@Fields).
87: ' FROM metadata WHERE url LIKE "'.$url.'%"';
88: my $server = &Apache::lonnet::homeserver($author,$authordom);
89: my $reply = &Apache::lonnet::metadata_query($query,undef,undef,
90: ,[$server]);
91: return () if (! defined($reply) || ref($reply) ne 'HASH');
92: my $filename = $reply->{$server};
93: if (! defined($filename) || $filename =~ /^error/) {
94: return ();
95: }
96: my $max_time = time + 10; # wait 10 seconds for results at most
97: my %ReturnHash;
98: #
99: # Look for results
100: my $finished = 0;
101: while (! $finished && time < $max_time) {
102: my $datafile=$Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/'.$filename;
103: if (! -e "$datafile.end") { next; }
104: my $fh;
105: if (!($fh=Apache::File->new($datafile))) { next; }
106: while (my $result = <$fh>) {
107: chomp($result);
108: next if (! $result);
109: my @Data =
110: map {
111: &Apache::lonnet::unescape($_);
112: } split(',',$result);
113: my $url = $Data[0];
114: for (my $i=0;$i<=$#Fields;$i++) {
115: $ReturnHash{$url}->{$Fields[$i]}=$Data[$i];
116: }
117: }
118: $finished = 1;
119: }
120: #
121: return %ReturnHash;
122: }
123:
124:
1.64 matthew 125: # Fetch and evaluate dynamic metadata
1.9 www 126: sub dynamicmeta {
127: my $url=&Apache::lonnet::declutter(shift);
128: $url=~s/\.meta$//;
129: my ($adomain,$aauthor)=($url=~/^(\w+)\/(\w+)\//);
1.19 www 130: my $regexp=$url;
1.9 www 131: $regexp=~s/(\W)/\\$1/g;
1.10 www 132: $regexp='___'.$regexp.'___';
1.16 albertel 133: my %evaldata=&Apache::lonnet::dump('nohist_resevaldata',$adomain,
134: $aauthor,$regexp);
1.63 matthew 135: my %DynamicData = &LONCAPA::lonmetadata::process_reseval_data(\%evaldata);
136: my %Data = &LONCAPA::lonmetadata::process_dynamic_metadata($url,
137: \%DynamicData);
1.40 matthew 138: #
1.46 www 139: # Deal with 'count' separately
1.63 matthew 140: $Data{'count'} = &access_count($url,$aauthor,$adomain);
1.67 matthew 141: #
142: # Debugging code I will probably need later
143: if (0) {
144: &Apache::lonnet::logthis('Dynamic Metadata');
145: while(my($k,$v)=each(%Data)){
146: &Apache::lonnet::logthis(' "'.$k.'"=>"'.$v.'"');
147: }
148: &Apache::lonnet::logthis('-------------------');
149: }
1.63 matthew 150: return %Data;
1.40 matthew 151: }
152:
153: sub access_count {
154: my ($src,$author,$adomain) = @_;
155: my %countdata=&Apache::lonnet::dump('nohist_accesscount',$adomain,
156: $author,$src);
157: if (! exists($countdata{$src})) {
1.47 www 158: return &mt('Not Available');
1.40 matthew 159: } else {
160: return $countdata{$src};
161: }
1.25 www 162: }
163:
1.64 matthew 164: # Try to make an alt tag if there is none
1.25 www 165: sub alttag {
1.26 www 166: my ($base,$src)=@_;
167: my $fullpath=&Apache::lonnet::hreflocation($base,$src);
168: my $alttag=&Apache::lonnet::metadata($fullpath,'title').' '.
1.64 matthew 169: &Apache::lonnet::metadata($fullpath,'subject').' '.
170: &Apache::lonnet::metadata($fullpath,'abstract');
1.26 www 171: $alttag=~s/\s+/ /gs;
172: $alttag=~s/\"//gs;
173: $alttag=~s/\'//gs;
174: $alttag=~s/\s+$//gs;
175: $alttag=~s/^\s+//gs;
1.64 matthew 176: if ($alttag) {
177: return $alttag;
178: } else {
179: return &mt('No information available');
180: }
1.9 www 181: }
1.1 www 182:
1.64 matthew 183: # Author display
1.29 www 184: sub authordisplay {
185: my ($aname,$adom)=@_;
1.64 matthew 186: return &Apache::loncommon::aboutmewrapper
187: (&Apache::loncommon::plainname($aname,$adom),
188: $aname,$adom,'preview').' <tt>['.$aname.'@'.$adom.']</tt>';
1.29 www 189: }
190:
1.64 matthew 191: # Pretty display
1.12 www 192: sub evalgraph {
193: my $value=shift;
1.65 matthew 194: if (! $value) {
195: return '';
196: }
1.12 www 197: my $val=int($value*10.+0.5)-10;
1.71 matthew 198: my $output='<table border="0" cellpadding="0" cellspacing="0"><tr>';
1.12 www 199: if ($val>=20) {
1.71 matthew 200: $output.='<td width="20" bgcolor="#555555">  </td>';
1.12 www 201: } else {
1.71 matthew 202: $output.='<td width="'.($val).'" bgcolor="#555555"> </td>'.
203: '<td width="'.(20-$val).'" bgcolor="#FF3333"> </td>';
1.12 www 204: }
205: $output.='<td bgcolor="#FFFF33"> </td>';
206: if ($val>20) {
1.71 matthew 207: $output.='<td width="'.($val-20).'" bgcolor="#33FF33"> </td>'.
208: '<td width="'.(40-$val).'" bgcolor="#555555"> </td>';
1.12 www 209: } else {
1.71 matthew 210: $output.='<td width="20" bgcolor="#555555">  </td>';
1.12 www 211: }
1.71 matthew 212: $output.='<td> ('.sprintf("%5.2f",$value).') </td></tr></table>';
1.12 www 213: return $output;
214: }
215:
216: sub diffgraph {
217: my $value=shift;
1.65 matthew 218: if (! $value) {
219: return '';
220: }
1.12 www 221: my $val=int(40.0*$value+0.5);
1.13 www 222: my @colors=('#FF9933','#EEAA33','#DDBB33','#CCCC33',
223: '#BBDD33','#CCCC33','#DDBB33','#EEAA33');
1.71 matthew 224: my $output='<table border="0" cellpadding="0" cellspacing="0"><tr>';
1.12 www 225: for (my $i=0;$i<8;$i++) {
226: if ($val>$i*5) {
1.71 matthew 227: $output.='<td width="5" bgcolor="'.$colors[$i].'"> </td>';
1.12 www 228: } else {
1.71 matthew 229: $output.='<td width="5" bgcolor="#555555"> </td>';
1.12 www 230: }
231: }
1.71 matthew 232: $output.='<td> ('.sprintf("%3.2f",$value).') </td></tr></table>';
1.12 www 233: return $output;
234: }
235:
1.44 www 236:
1.64 matthew 237: # The field names
1.45 www 238: sub fieldnames {
1.90 banghart 239: my $file_type=shift;
240: if ($file_type eq 'portfolio') {
241: return &Apache::lonlocal::texthash
242: (
243: 'title' => 'Title',
244: 'author' =>'Author(s)',
245: 'authorspace' => 'Author Space',
246: 'modifyinguser' => 'Last Modifying User',
247: 'subject' => 'Subject',
1.91 banghart 248: 'keywords' => 'Keyword(s)',
249: 'notes' => 'Notes',
250: 'abstract' => 'Abstract',
251: 'lowestgradelevel' => 'Lowest Grade Level',
252: 'highestgradelevel' => 'Highest Grade Level');
1.90 banghart 253: } else {
1.64 matthew 254: return &Apache::lonlocal::texthash
255: (
256: 'title' => 'Title',
257: 'author' =>'Author(s)',
258: 'authorspace' => 'Author Space',
259: 'modifyinguser' => 'Last Modifying User',
260: 'subject' => 'Subject',
261: 'keywords' => 'Keyword(s)',
262: 'notes' => 'Notes',
263: 'abstract' => 'Abstract',
264: 'lowestgradelevel' => 'Lowest Grade Level',
265: 'highestgradelevel' => 'Highest Grade Level',
266: 'standards' => 'Standards',
267: 'mime' => 'MIME Type',
268: 'language' => 'Language',
269: 'creationdate' => 'Creation Date',
270: 'lastrevisiondate' => 'Last Revision Date',
271: 'owner' => 'Publisher/Owner',
272: 'copyright' => 'Copyright/Distribution',
273: 'customdistributionfile' => 'Custom Distribution File',
1.84 banghart 274: 'sourceavail' => 'Source Available',
1.78 taceyjo1 275: 'sourcerights' => 'Source Custom Distribution File',
1.64 matthew 276: 'obsolete' => 'Obsolete',
277: 'obsoletereplacement' => 'Suggested Replacement for Obsolete File',
278: 'count' => 'Network-wide number of accesses (hits)',
279: 'course' => 'Network-wide number of courses using resource',
280: 'course_list' => 'Network-wide courses using resource',
281: 'sequsage' => 'Number of resources using or importing resource',
282: 'sequsage_list' => 'Resources using or importing resource',
283: 'goto' => 'Number of resources that follow this resource in maps',
284: 'goto_list' => 'Resources that follow this resource in maps',
285: 'comefrom' => 'Number of resources that lead up to this resource in maps',
286: 'comefrom_list' => 'Resources that lead up to this resource in maps',
287: 'clear' => 'Material presented in clear way',
288: 'depth' => 'Material covered with sufficient depth',
289: 'helpful' => 'Material is helpful',
290: 'correct' => 'Material appears to be correct',
291: 'technical' => 'Resource is technically correct',
292: 'avetries' => 'Average number of tries till solved',
293: 'stdno' => 'Total number of students who have worked on this problem',
1.73 matthew 294: 'difficulty' => 'Degree of difficulty',
295: 'disc' => 'Degree of discrimination',
1.83 www 296: 'dependencies' => 'Resources used by this resource',
1.64 matthew 297: );
1.90 banghart 298: }
1.45 www 299: }
1.46 www 300:
1.64 matthew 301: # Pretty printing of metadata field
1.46 www 302:
303: sub prettyprint {
1.82 www 304: my ($type,$value,$target,$prefix,$form,$noformat)=@_;
305: # $target,$prefix,$form are optional and for filecrumbs only
1.65 matthew 306: if (! defined($value)) {
307: return ' ';
308: }
1.64 matthew 309: # Title
1.46 www 310: if ($type eq 'title') {
311: return '<font size="+1" face="arial">'.$value.'</font>';
312: }
1.64 matthew 313: # Dates
1.46 www 314: if (($type eq 'creationdate') ||
315: ($type eq 'lastrevisiondate')) {
1.55 www 316: return ($value?&Apache::lonlocal::locallocaltime(
317: &Apache::lonmysql::unsqltime($value)):
318: &mt('not available'));
1.46 www 319: }
1.64 matthew 320: # Language
1.46 www 321: if ($type eq 'language') {
322: return &Apache::loncommon::languagedescription($value);
323: }
1.64 matthew 324: # Copyright
1.46 www 325: if ($type eq 'copyright') {
326: return &Apache::loncommon::copyrightdescription($value);
327: }
1.78 taceyjo1 328: # Copyright
329: if ($type eq 'sourceavail') {
330: return &Apache::loncommon::source_copyrightdescription($value);
331: }
1.64 matthew 332: # MIME
1.46 www 333: if ($type eq 'mime') {
1.64 matthew 334: return '<img src="'.&Apache::loncommon::icon($value).'" /> '.
335: &Apache::loncommon::filedescription($value);
336: }
337: # Person
1.46 www 338: if (($type eq 'author') ||
339: ($type eq 'owner') ||
340: ($type eq 'modifyinguser') ||
341: ($type eq 'authorspace')) {
342: $value=~s/(\w+)(\:|\@)(\w+)/&authordisplay($1,$3)/gse;
343: return $value;
344: }
1.64 matthew 345: # Gradelevel
1.48 www 346: if (($type eq 'lowestgradelevel') ||
347: ($type eq 'highestgradelevel')) {
348: return &Apache::loncommon::gradeleveldescription($value);
349: }
1.64 matthew 350: # Only for advance users below
1.65 matthew 351: if (! $ENV{'user.adv'}) {
352: return '<i>- '.&mt('not displayed').' -</i>';
353: }
1.64 matthew 354: # File
1.46 www 355: if (($type eq 'customdistributionfile') ||
356: ($type eq 'obsoletereplacement') ||
357: ($type eq 'goto_list') ||
358: ($type eq 'comefrom_list') ||
1.82 www 359: ($type eq 'sequsage_list') ||
1.83 www 360: ($type eq 'dependencies')) {
1.82 www 361: return '<ul><font size="-1">'.join("\n",map {
1.70 matthew 362: my $url = &Apache::lonnet::clutter($_);
1.72 matthew 363: my $title = &Apache::lonnet::gettitle($url);
364: if ($title eq '') {
365: $title = 'Untitled';
366: if ($url =~ /\.sequence$/) {
367: $title .= ' Sequence';
368: } elsif ($url =~ /\.page$/) {
369: $title .= ' Page';
370: } elsif ($url =~ /\.problem$/) {
371: $title .= ' Problem';
372: } elsif ($url =~ /\.html$/) {
373: $title .= ' HTML document';
374: } elsif ($url =~ m:/syllabus$:) {
375: $title .= ' Syllabus';
376: }
377: }
1.82 www 378: $_ = '<li>'.$title.' '.
379: &Apache::lonhtmlcommon::crumbs($url,$target,$prefix,$form,'-1',$noformat).
380: '</li>'
381: } split(/\s*\,\s*/,$value)).'</ul></font>';
1.46 www 382: }
1.64 matthew 383: # Evaluations
1.46 www 384: if (($type eq 'clear') ||
385: ($type eq 'depth') ||
386: ($type eq 'helpful') ||
387: ($type eq 'correct') ||
388: ($type eq 'technical')) {
389: return &evalgraph($value);
390: }
1.64 matthew 391: # Difficulty
1.73 matthew 392: if ($type eq 'difficulty' || $type eq 'disc') {
1.46 www 393: return &diffgraph($value);
394: }
1.64 matthew 395: # List of courses
1.46 www 396: if ($type=~/\_list/) {
1.72 matthew 397: my @Courses = split(/\s*\,\s*/,$value);
398: my $Str;
399: foreach my $course (@Courses) {
400: my %courseinfo = &Apache::lonnet::coursedescription($course);
401: if (! exists($courseinfo{'num'}) || $courseinfo{'num'} eq '') {
402: next;
403: }
404: if ($Str ne '') { $Str .= '<br />'; }
405: $Str .= '<a href="/public/'.$courseinfo{'domain'}.'/'.
406: $courseinfo{'num'}.'/syllabus" target="preview">'.
407: $courseinfo{'description'}.'</a>';
408: }
409: return $Str;
1.46 www 410: }
1.64 matthew 411: # No pretty print found
1.46 www 412: return $value;
413: }
414:
1.64 matthew 415: # Pretty input of metadata field
1.54 www 416: sub direct {
417: return shift;
418: }
419:
1.48 www 420: sub selectbox {
421: my ($name,$value,$functionref,@idlist)=@_;
1.65 matthew 422: if (! defined($functionref)) {
423: $functionref=\&direct;
424: }
1.48 www 425: my $selout='<select name="'.$name.'">';
426: foreach (@idlist) {
427: $selout.='<option value=\''.$_.'\'';
428: if ($_ eq $value) {
429: $selout.=' selected>'.&{$functionref}($_).'</option>';
430: }
431: else {$selout.='>'.&{$functionref}($_).'</option>';}
432: }
433: return $selout.'</select>';
434: }
435:
1.54 www 436: sub relatedfield {
437: my ($show,$relatedsearchflag,$relatedsep,$fieldname,$relatedvalue)=@_;
1.65 matthew 438: if (! $relatedsearchflag) {
439: return '';
440: }
441: if (! defined($relatedsep)) {
442: $relatedsep=' ';
443: }
444: if (! $show) {
445: return $relatedsep.' ';
446: }
1.54 www 447: return $relatedsep.'<input type="checkbox" name="'.$fieldname.'_related"'.
448: ($relatedvalue?' checked="1"':'').' />';
449: }
1.48 www 450:
1.46 www 451: sub prettyinput {
1.54 www 452: my ($type,$value,$fieldname,$formname,
1.74 matthew 453: $relatedsearchflag,$relatedsep,$relatedvalue,$size)=@_;
1.75 matthew 454: if (! defined($size)) {
455: $size = 80;
456: }
1.64 matthew 457: # Language
1.48 www 458: if ($type eq 'language') {
459: return &selectbox($fieldname,
460: $value,
461: \&Apache::loncommon::languagedescription,
1.54 www 462: (&Apache::loncommon::languageids)).
1.64 matthew 463: &relatedfield(0,$relatedsearchflag,$relatedsep);
1.48 www 464: }
1.64 matthew 465: # Copyright
1.48 www 466: if ($type eq 'copyright') {
467: return &selectbox($fieldname,
468: $value,
469: \&Apache::loncommon::copyrightdescription,
1.54 www 470: (&Apache::loncommon::copyrightids)).
1.64 matthew 471: &relatedfield(0,$relatedsearchflag,$relatedsep);
1.48 www 472: }
1.78 taceyjo1 473: # Source Copyright
474: if ($type eq 'sourceavail') {
475: return &selectbox($fieldname,
476: $value,
477: \&Apache::loncommon::source_copyrightdescription,
478: (&Apache::loncommon::source_copyrightids)).
479: &relatedfield(0,$relatedsearchflag,$relatedsep);
480: }
1.64 matthew 481: # Gradelevels
1.48 www 482: if (($type eq 'lowestgradelevel') ||
483: ($type eq 'highestgradelevel')) {
1.54 www 484: return &Apache::loncommon::select_level_form($value,$fieldname).
1.64 matthew 485: &relatedfield(0,$relatedsearchflag,$relatedsep);
1.48 www 486: }
1.64 matthew 487: # Obsolete
1.48 www 488: if ($type eq 'obsolete') {
489: return '<input type="checkbox" name="'.$fieldname.'"'.
1.54 www 490: ($value?' checked="1"':'').' />'.
1.64 matthew 491: &relatedfield(0,$relatedsearchflag,$relatedsep);
1.48 www 492: }
1.64 matthew 493: # Obsolete replacement file
1.48 www 494: if ($type eq 'obsoletereplacement') {
495: return '<input type="text" name="'.$fieldname.
496: '" size="60" value="'.$value.'" /><a href="javascript:openbrowser'.
497: "('".$formname."','".$fieldname."'".
1.54 www 498: ",'')\">".&mt('Select').'</a>'.
1.64 matthew 499: &relatedfield(0,$relatedsearchflag,$relatedsep);
500: }
501: # Customdistribution file
1.48 www 502: if ($type eq 'customdistributionfile') {
503: return '<input type="text" name="'.$fieldname.
504: '" size="60" value="'.$value.'" /><a href="javascript:openbrowser'.
505: "('".$formname."','".$fieldname."'".
1.54 www 506: ",'rights')\">".&mt('Select').'</a>'.
1.64 matthew 507: &relatedfield(0,$relatedsearchflag,$relatedsep);
1.48 www 508: }
1.78 taceyjo1 509: # Source Customdistribution file
510: if ($type eq 'sourcerights') {
511: return '<input type="text" name="'.$fieldname.
512: '" size="60" value="'.$value.'" /><a href="javascript:openbrowser'.
513: "('".$formname."','".$fieldname."'".
514: ",'rights')\">".&mt('Select').'</a>'.
515: &relatedfield(0,$relatedsearchflag,$relatedsep);
516: }
1.64 matthew 517: # Dates
1.48 www 518: if (($type eq 'creationdate') ||
519: ($type eq 'lastrevisiondate')) {
1.64 matthew 520: return
521: &Apache::lonhtmlcommon::date_setter($formname,$fieldname,$value).
522: &relatedfield(0,$relatedsearchflag,$relatedsep);
1.48 www 523: }
1.64 matthew 524: # No pretty input found
1.48 www 525: $value=~s/^\s+//gs;
526: $value=~s/\s+$//gs;
527: $value=~s/\s+/ /gs;
1.77 matthew 528: $value=~s/\"/\"\;/gs;
1.54 www 529: return
1.74 matthew 530: '<input type="text" name="'.$fieldname.'" size="'.$size.'" '.
1.64 matthew 531: 'value="'.$value.'" />'.
532: &relatedfield(1,$relatedsearchflag,$relatedsep,$fieldname,
533: $relatedvalue);
1.46 www 534: }
535:
1.64 matthew 536: # Main Handler
1.1 www 537: sub handler {
1.64 matthew 538: my $r=shift;
539: #
1.67 matthew 540: my $uri=$r->uri;
541: #
542: # Set document type
543: &Apache::loncommon::content_type($r,'text/html');
544: $r->send_http_header;
545: return OK if $r->header_only;
1.64 matthew 546: #
1.76 matthew 547: my ($resdomain,$resuser)=
548: (&Apache::lonnet::declutter($uri)=~/^(\w+)\/(\w+)\//);
1.92 ! albertel 549: my $html=&Apache::lonxml::xmlbegin();
! 550: $r->print($html.'<head><title>'.
1.67 matthew 551: 'Catalog Information'.
552: '</title></head>');
1.66 matthew 553: if ($uri=~m:/adm/bombs/(.*)$:) {
1.67 matthew 554: $r->print(&Apache::loncommon::bodytag('Error Messages'));
1.66 matthew 555: # Looking for all bombs?
556: &report_bombs($r,$uri);
1.89 banghart 557: } elsif ($uri=~/\/portfolio\//) {
558: $r->print(&Apache::loncommon::bodytag
559: ('Edit Portfolio File Information','','','',$resdomain));
1.90 banghart 560: &present_editable_metadata($r,$uri,'portfolio');
1.89 banghart 561:
1.66 matthew 562: } elsif ($uri=~/^\/\~/) {
563: # Construction space
1.67 matthew 564: $r->print(&Apache::loncommon::bodytag
565: ('Edit Catalog Information','','','',$resdomain));
1.66 matthew 566: &present_editable_metadata($r,$uri);
567: } else {
1.67 matthew 568: $r->print(&Apache::loncommon::bodytag
1.85 albertel 569: ('Catalog Information','','','',$resdomain));
1.66 matthew 570: &present_uneditable_metadata($r,$uri);
571: }
1.67 matthew 572: $r->print('</body></html>');
1.66 matthew 573: return OK;
574: }
575:
1.67 matthew 576: #####################################################
577: #####################################################
578: ### ###
579: ### Report Bombs ###
580: ### ###
581: #####################################################
582: #####################################################
1.66 matthew 583: sub report_bombs {
584: my ($r,$uri) = @_;
585: # Set document type
1.67 matthew 586: $uri =~ s:/adm/bombs/::;
587: $uri = &Apache::lonnet::declutter($uri);
1.66 matthew 588: $r->print('<h1>'.&Apache::lonnet::clutter($uri).'</h1>');
589: my ($domain,$author)=($uri=~/^(\w+)\/(\w+)\//);
590: if (&Apache::loncacc::constructaccess('/~'.$author.'/',$domain)) {
1.67 matthew 591: my %brokenurls =
592: &Apache::lonmsg::all_url_author_res_msg($author,$domain);
593: foreach (sort(keys(%brokenurls))) {
1.66 matthew 594: if ($_=~/^\Q$uri\E/) {
1.70 matthew 595: $r->print
596: ('<a href="'.&Apache::lonnet::clutter($_).'">'.$_.'</a>'.
597: &Apache::lonmsg::retrieve_author_res_msg($_).
598: '<hr />');
1.64 matthew 599: }
600: }
1.66 matthew 601: } else {
602: $r->print(&mt('Not authorized'));
603: }
604: return;
605: }
606:
1.67 matthew 607: #####################################################
608: #####################################################
609: ### ###
610: ### Uneditable Metadata Display ###
611: ### ###
612: #####################################################
613: #####################################################
1.66 matthew 614: sub present_uneditable_metadata {
615: my ($r,$uri) = @_;
616: #
617: my %content=();
618: # Read file
619: foreach (split(/\,/,&Apache::lonnet::metadata($uri,'keys'))) {
620: $content{$_}=&Apache::lonnet::metadata($uri,$_);
621: }
622: # Render Output
623: # displayed url
624: my ($thisversion)=($uri=~/\.(\d+)\.(\w+)\.meta$/);
625: $uri=~s/\.meta$//;
626: my $disuri=&Apache::lonnet::clutter($uri);
627: # version
628: my $currentversion=&Apache::lonnet::getversion($disuri);
629: my $versiondisplay='';
630: if ($thisversion) {
631: $versiondisplay=&mt('Version').': '.$thisversion.
632: ' ('.&mt('most recent version').': '.
633: ($currentversion>0 ?
634: $currentversion :
635: &mt('information not available')).')';
636: } else {
637: $versiondisplay='Version: '.$currentversion;
638: }
1.72 matthew 639: # crumbify displayed URL uri target prefix form size
640: $disuri=&Apache::lonhtmlcommon::crumbs($disuri,undef, undef, undef,'+1');
641: $disuri =~ s:<br />::g;
1.66 matthew 642: # obsolete
643: my $obsolete=$content{'obsolete'};
644: my $obsoletewarning='';
645: if (($obsolete) && ($ENV{'user.adv'})) {
646: $obsoletewarning='<p><font color="red">'.
647: &mt('This resource has been marked obsolete by the author(s)').
648: '</font></p>';
649: }
650: #
651: my %lt=&fieldnames();
652: my $table='';
1.72 matthew 653: my $title = $content{'title'};
654: if (! defined($title)) {
655: $title = 'Untitled Resource';
656: }
1.66 matthew 657: foreach ('title',
658: 'author',
659: 'subject',
660: 'keywords',
661: 'notes',
662: 'abstract',
663: 'lowestgradelevel',
664: 'highestgradelevel',
665: 'standards',
666: 'mime',
667: 'language',
668: 'creationdate',
669: 'lastrevisiondate',
670: 'owner',
671: 'copyright',
1.78 taceyjo1 672: 'customdistributionfile',
673: 'sourceavail',
674: 'sourcerights',
1.66 matthew 675: 'obsolete',
676: 'obsoletereplacement') {
677: $table.='<tr><td bgcolor="#AAAAAA">'.$lt{$_}.
678: '</td><td bgcolor="#CCCCCC">'.
679: &prettyprint($_,$content{$_}).'</td></tr>';
680: delete $content{$_};
681: }
682: #
683: $r->print(<<ENDHEAD);
1.72 matthew 684: <h2>$title</h2>
685: <p>
686: $disuri<br />
1.36 www 687: $obsoletewarning
1.72 matthew 688: $versiondisplay
689: </p>
1.88 banghart 690: <table cellspacing="2" border="0">
1.45 www 691: $table
1.11 www 692: </table>
1.1 www 693: ENDHEAD
1.66 matthew 694: if ($ENV{'user.adv'}) {
1.68 matthew 695: &print_dynamic_metadata($r,$uri,\%content);
1.67 matthew 696: }
697: return;
698: }
699:
700: sub print_dynamic_metadata {
1.68 matthew 701: my ($r,$uri,$content) = @_;
702: #
1.69 matthew 703: my %content = %$content;
1.68 matthew 704: my %lt=&fieldnames();
1.67 matthew 705: #
706: my $description = 'Dynamic Metadata (updated periodically)';
707: $r->print('<h3>'.&mt($description).'</h3>'.
1.70 matthew 708: &mt('Processing'));
1.67 matthew 709: $r->rflush();
710: my %items=&fieldnames();
711: my %dynmeta=&dynamicmeta($uri);
712: #
713: # General Access and Usage Statistics
1.70 matthew 714: if (exists($dynmeta{'count'}) ||
715: exists($dynmeta{'sequsage'}) ||
716: exists($dynmeta{'comefrom'}) ||
717: exists($dynmeta{'goto'}) ||
718: exists($dynmeta{'course'})) {
719: $r->print('<h4>'.&mt('Access and Usage Statistics').'</h4>'.
1.88 banghart 720: '<table cellspacing="2" border="0">');
1.70 matthew 721: foreach ('count',
722: 'sequsage','sequsage_list',
723: 'comefrom','comefrom_list',
724: 'goto','goto_list',
725: 'course','course_list') {
726: $r->print('<tr><td bgcolor="#AAAAAA">'.$lt{$_}.'</td>'.
727: '<td bgcolor="#CCCCCC">'.
728: &prettyprint($_,$dynmeta{$_})."</td></tr>\n");
729: }
730: $r->print('</table>');
731: } else {
732: $r->print('<h4>'.&mt('No Access or Usages Statistics are available for this resource.').'</h4>');
1.67 matthew 733: }
1.69 matthew 734: #
735: # Assessment statistics
1.73 matthew 736: if ($uri=~/\.(problem|exam|quiz|assess|survey|form)$/) {
737: if (exists($dynmeta{'stdno'}) ||
738: exists($dynmeta{'avetries'}) ||
739: exists($dynmeta{'difficulty'}) ||
740: exists($dynmeta{'disc'})) {
741: # This is an assessment, print assessment data
742: $r->print('<h4>'.
743: &mt('Overall Assessment Statistical Data').
744: '</h4>'.
1.88 banghart 745: '<table cellspacing="2" border="0">');
1.73 matthew 746: $r->print('<tr><td bgcolor="#AAAAAA">'.$lt{'stdno'}.'</td>'.
1.66 matthew 747: '<td bgcolor="#CCCCCC">'.
1.73 matthew 748: &prettyprint('stdno',$dynmeta{'stdno'}).
749: '</td>'."</tr>\n");
750: foreach ('avetries','difficulty','disc') {
751: $r->print('<tr><td bgcolor="#AAAAAA">'.$lt{$_}.'</td>'.
752: '<td bgcolor="#CCCCCC">'.
753: &prettyprint($_,sprintf('%5.2f',$dynmeta{$_})).
754: '</td>'."</tr>\n");
755: }
756: $r->print('</table>');
757: }
758: if (exists($dynmeta{'stats'})) {
759: #
760: # New assessment statistics
761: $r->print('<h4>'.
762: &mt('Detailed Assessment Statistical Data').
763: '</h4>');
1.88 banghart 764: my $table = '<table cellspacing="2" border="0">'.
1.73 matthew 765: '<tr>'.
766: '<th>Course</th>'.
767: '<th>Section(s)</th>'.
768: '<th>Num Students</th>'.
769: '<th>Mean Tries</th>'.
770: '<th>Degree of Difficulty</th>'.
771: '<th>Degree of Discrimination</th>'.
772: '<th>Time of computation</th>'.
773: '</tr>'.$/;
774: foreach my $identifier (sort(keys(%{$dynmeta{'stats'}}))) {
775: my $data = $dynmeta{'stats'}->{$identifier};
776: my $course = $data->{'course'};
777: my %courseinfo = &Apache::lonnet::coursedescription($course);
778: if (! exists($courseinfo{'num'}) || $courseinfo{'num'} eq '') {
779: &Apache::lonnet::logthis('lookup for '.$course.' failed');
780: next;
781: }
782: $table .= '<tr>';
783: $table .=
784: '<td><nobr>'.$courseinfo{'description'}.'</nobr></td>';
785: $table .=
786: '<td align="right">'.$data->{'sections'}.'</td>';
787: $table .=
788: '<td align="right">'.$data->{'stdno'}.'</td>';
789: foreach ('avetries','difficulty','disc') {
790: $table .= '<td align="right">';
791: if (exists($data->{$_})) {
792: $table .= sprintf('%.2f',$data->{$_}).' ';
793: } else {
794: $table .= '';
795: }
796: $table .= '</td>';
797: }
798: $table .=
799: '<td><nobr>'.
800: &Apache::lonlocal::locallocaltime($data->{'timestamp'}).
801: '</nobr></td>';
802: $table .=
803: '</tr>'.$/;
804: }
805: $table .= '</table>'.$/;
806: $r->print($table);
807: } else {
808: $r->print('No new dynamic data found.');
1.66 matthew 809: }
1.70 matthew 810: } else {
1.73 matthew 811: $r->print('<h4>'.
812: &mt('No Assessment Statistical Data is available for this resource').
813: '</h4>');
1.67 matthew 814: }
1.73 matthew 815:
816: #
817: #
1.70 matthew 818: if (exists($dynmeta{'clear'}) ||
819: exists($dynmeta{'depth'}) ||
820: exists($dynmeta{'helpful'}) ||
821: exists($dynmeta{'correct'}) ||
822: exists($dynmeta{'technical'})){
823: $r->print('<h4>'.&mt('Evaluation Data').'</h4>'.
1.88 banghart 824: '<table cellspacing="2" border="0">');
1.70 matthew 825: foreach ('clear','depth','helpful','correct','technical') {
826: $r->print('<tr><td bgcolor="#AAAAAA">'.$lt{$_}.'</td>'.
827: '<td bgcolor="#CCCCCC">'.
828: &prettyprint($_,$dynmeta{$_})."</td></tr>\n");
829: }
830: $r->print('</table>');
831: } else {
832: $r->print('<h4>'.&mt('No Evaluation Data is available for this resource.').'</h4>');
1.67 matthew 833: }
834: $uri=~/^\/res\/(\w+)\/(\w+)\//;
835: if ((($ENV{'user.domain'} eq $1) && ($ENV{'user.name'} eq $2))
836: || ($ENV{'user.role.ca./'.$1.'/'.$2})) {
1.70 matthew 837: if (exists($dynmeta{'comments'})) {
838: $r->print('<h4>'.&mt('Evaluation Comments').' ('.
839: &mt('visible to author and co-authors only').
840: ')</h4>'.
841: '<blockquote>'.$dynmeta{'comments'}.'</blockquote>');
842: } else {
843: $r->print('<h4>'.&mt('There are no Evaluation Comments on this resource.').'</h4>');
844: }
845: my $bombs = &Apache::lonmsg::retrieve_author_res_msg($uri);
846: if (defined($bombs) && $bombs ne '') {
847: $r->print('<a name="bombs" /><h4>'.&mt('Error Messages').' ('.
848: &mt('visible to author and co-authors only').')'.
849: '</h4>'.$bombs);
850: } else {
851: $r->print('<h4>'.&mt('There are currently no Error Messages for this resource.').'</h4>');
852: }
1.67 matthew 853: }
1.69 matthew 854: #
1.67 matthew 855: # All other stuff
856: $r->print('<h3>'.
857: &mt('Additional Metadata (non-standard, parameters, exports)').
1.81 www 858: '</h3><table border="0" cellspacing="1">');
1.67 matthew 859: foreach (sort(keys(%content))) {
860: my $name=$_;
861: if ($name!~/\.display$/) {
862: my $display=&Apache::lonnet::metadata($uri,
863: $name.'.display');
864: if (! $display) {
865: $display=$name;
866: };
867: my $otherinfo='';
868: foreach ('name','part','type','default') {
869: if (defined(&Apache::lonnet::metadata($uri,
870: $name.'.'.$_))) {
871: $otherinfo.=' '.$_.'='.
872: &Apache::lonnet::metadata($uri,
873: $name.'.'.$_).'; ';
874: }
1.64 matthew 875: }
1.81 www 876: $r->print('<tr><td bgcolor="#bbccbb"><font size="-1" color="#556655">'.$display.'</font></td><td bgcolor="#ccddcc"><font size="-1" color="#556655">'.$content{$name});
1.67 matthew 877: if ($otherinfo) {
878: $r->print(' ('.$otherinfo.')');
1.64 matthew 879: }
1.81 www 880: $r->print("</font></td></tr>\n");
1.64 matthew 881: }
1.66 matthew 882: }
1.81 www 883: $r->print("</table>");
1.67 matthew 884: return;
1.66 matthew 885: }
886:
1.67 matthew 887: #####################################################
888: #####################################################
889: ### ###
890: ### Editable metadata display ###
891: ### ###
892: #####################################################
893: #####################################################
1.66 matthew 894: sub present_editable_metadata {
1.90 banghart 895: my ($r,$uri, $file_type) = @_;
1.66 matthew 896: # Construction Space Call
897: # Header
898: my $disuri=$uri;
899: my $fn=&Apache::lonnet::filelocation('',$uri);
900: $disuri=~s/^\/\~/\/priv\//;
901: $disuri=~s/\.meta$//;
902: my $target=$uri;
903: $target=~s/^\/\~/\/res\/$ENV{'request.role.domain'}\//;
904: $target=~s/\.meta$//;
905: my $bombs=&Apache::lonmsg::retrieve_author_res_msg($target);
906: if ($bombs) {
907: if ($ENV{'form.delmsg'}) {
908: if (&Apache::lonmsg::del_url_author_res_msg($target) eq 'ok') {
909: $bombs=&mt('Messages deleted.');
910: } else {
911: $bombs=&mt('Error deleting messages');
1.64 matthew 912: }
1.66 matthew 913: }
914: my $del=&mt('Delete Messages');
915: $r->print(<<ENDBOMBS);
1.52 www 916: <h1>$disuri</h1>
917: <form method="post" name="defaultmeta">
1.59 www 918: <input type="submit" name="delmsg" value="$del" />
1.52 www 919: <br />$bombs
920: ENDBOMBS
1.66 matthew 921: } else {
922: my $displayfile='Catalog Information for '.$disuri;
923: if ($disuri=~/\/default$/) {
924: my $dir=$disuri;
925: $dir=~s/default$//;
926: $displayfile=
927: &mt('Default Cataloging Information for Directory').' '.
928: $dir;
929: }
930: %Apache::lonpublisher::metadatafields=();
931: %Apache::lonpublisher::metadatakeys=();
932: &Apache::lonpublisher::metaeval(&Apache::lonnet::getfile($fn));
933: $r->print(<<ENDEDIT);
1.23 www 934: <h1>$displayfile</h1>
1.48 www 935: <form method="post" name="defaultmeta">
1.23 www 936: ENDEDIT
1.66 matthew 937: $r->print('<script language="JavaScript">'.
1.86 albertel 938: &Apache::loncommon::browser_and_searcher_javascript().
1.66 matthew 939: '</script>');
1.90 banghart 940: my %lt=&fieldnames($file_type);
1.87 albertel 941: my $output;
1.90 banghart 942: my @fields;
943: if ($file_type eq 'portfolio') {
1.91 banghart 944: @fields = ('author','title','subject','keywords','abstract','notes','lowestgradelevel',
945: 'highestgradelevel');
1.90 banghart 946: } else {
947: @fields = ('author','title','subject','keywords','abstract','notes',
1.66 matthew 948: 'copyright','customdistributionfile','language',
949: 'standards',
1.78 taceyjo1 950: 'lowestgradelevel','highestgradelevel','sourceavail','sourcerights',
1.90 banghart 951: 'obsolete','obsoletereplacement');
952: }
953: foreach (@fields) {
1.66 matthew 954: if (defined($ENV{'form.new_'.$_})) {
955: $Apache::lonpublisher::metadatafields{$_}=
956: $ENV{'form.new_'.$_};
957: }
958: if (! $Apache::lonpublisher::metadatafields{'copyright'}) {
959: $Apache::lonpublisher::metadatafields{'copyright'}=
960: 'default';
1.64 matthew 961: }
1.87 albertel 962: $output.=('<p>'.$lt{$_}.': '.
963: &prettyinput($_,
964: $Apache::lonpublisher::metadatafields{$_},
965: 'new_'.$_,'defaultmeta').'</p>');
1.66 matthew 966: }
967: if ($ENV{'form.store'}) {
968: my $mfh;
969: if (! ($mfh=Apache::File->new('>'.$fn))) {
1.87 albertel 970: $r->print('<p><font color="red">'.
1.66 matthew 971: &mt('Could not write metadata').', '.
1.87 albertel 972: &mt('FAIL').'</font></p>');
1.66 matthew 973: } else {
974: foreach (sort keys %Apache::lonpublisher::metadatafields) {
1.67 matthew 975: next if ($_ =~ /\./);
976: my $unikey=$_;
977: $unikey=~/^([A-Za-z]+)/;
978: my $tag=$1;
979: $tag=~tr/A-Z/a-z/;
980: print $mfh "\n\<$tag";
981: foreach (split(/\,/,
1.64 matthew 982: $Apache::lonpublisher::metadatakeys{$unikey})
1.67 matthew 983: ) {
984: my $value=
985: $Apache::lonpublisher::metadatafields{$unikey.'.'.$_};
986: $value=~s/\"/\'\'/g;
987: print $mfh ' '.$_.'="'.$value.'"';
1.64 matthew 988: }
1.67 matthew 989: print $mfh '>'.
990: &HTML::Entities::encode
991: ($Apache::lonpublisher::metadatafields{$unikey},
992: '<>&"').
993: '</'.$tag.'>';
1.64 matthew 994: }
1.87 albertel 995: $r->print('<p><font color="blue">'.&mt('Wrote Metadata').
996: ' '.&Apache::lonlocal::locallocaltime(time).
997: '</font></p>');
1.64 matthew 998: }
999: }
1.87 albertel 1000: $r->print($output.'<br /><input type="submit" name="store" value="'.
1.67 matthew 1001: &mt('Store Catalog Information').'">');
1.64 matthew 1002: }
1.67 matthew 1003: $r->print('</form>');
1.66 matthew 1004: return;
1.1 www 1005: }
1.64 matthew 1006:
1.1 www 1007: 1;
1008: __END__
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>