File:  [LON-CAPA] / loncom / interface / lonmeta.pm
Revision 1.209: download - view: text, annotated - select for diffs
Fri Jun 15 23:01:07 2007 UTC (16 years, 11 months ago) by albertel
Branches: MAIN
CVS tags: version_2_6_1, version_2_6_0, version_2_5_X, version_2_5_99_1, version_2_5_99_0, version_2_5_2, version_2_5_1, version_2_5_0, version_2_4_99_0, HEAD
- seed the author field with the users name

    1: # The LearningOnline Network with CAPA
    2: # Metadata display handler
    3: #
    4: # $Id: lonmeta.pm,v 1.209 2007/06/15 23:01:07 albertel Exp $
    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.
   14: #
   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/
   27: 
   28: 
   29: package Apache::lonmeta;
   30: 
   31: use strict;
   32: use LONCAPA::lonmetadata();
   33: use Apache::Constants qw(:common);
   34: use Apache::lonnet;
   35: use Apache::loncommon();
   36: use Apache::lonhtmlcommon(); 
   37: use Apache::lonmsg;
   38: use Apache::lonpublisher;
   39: use Apache::lonlocal;
   40: use Apache::lonmysql;
   41: use Apache::lonmsg;
   42: use LONCAPA qw(:DEFAULT :match);
   43: 
   44: 
   45: ############################################################
   46: ############################################################
   47: ##
   48: ## &get_dynamic_metadata_from_sql($url)
   49: ## 
   50: ## Queries sql database for dynamic metdata
   51: ## Returns a hash of hashes, with keys of urls which match $url
   52: ## Returned fields are given below.
   53: ##
   54: ## Examples:
   55: ## 
   56: ## %DynamicMetadata = &Apache::lonmeta::get_dynmaic_metadata_from_sql
   57: ##     ('/res/msu/korte/');
   58: ##
   59: ## $DynamicMetadata{'/res/msu/korte/example.problem'}->{$field}
   60: ##
   61: ############################################################
   62: ############################################################
   63: sub get_dynamic_metadata_from_sql {
   64:     my ($url) = shift();
   65:     my ($authordom,$author)=($url=~m{^/res/($match_domain)/($match_username)/});
   66:     if (! defined($authordom)) {
   67:         $authordom = shift();
   68:     }
   69:     if  (! defined($author)) { 
   70:         $author = shift();
   71:     }
   72:     if (! defined($authordom) || ! defined($author)) {
   73:         return ();
   74:     }
   75:     my $query = 'SELECT * FROM metadata WHERE url LIKE "'.$url.'%"';
   76:     my $server = &Apache::lonnet::homeserver($author,$authordom);
   77:     my $reply = &Apache::lonnet::metadata_query($query,undef,undef,
   78:                                                 ,[$server]);
   79:     return () if (! defined($reply) || ref($reply) ne 'HASH');
   80:     my $filename = $reply->{$server};
   81:     if (! defined($filename) || $filename =~ /^error/) {
   82:         return ();
   83:     }
   84:     my $max_time = time + 10; # wait 10 seconds for results at most
   85:     my %ReturnHash;
   86:     #
   87:     # Look for results
   88:     my $finished = 0;
   89:     while (! $finished && time < $max_time) {
   90:         my $datafile=$Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/'.$filename;
   91:         if (! -e "$datafile.end") { next; }
   92:         my $fh;
   93:         if (!($fh=Apache::File->new($datafile))) { next; }
   94:         while (my $result = <$fh>) {
   95:             chomp($result);
   96:             next if (! $result);
   97:             my %hash=&LONCAPA::lonmetadata::metadata_col_to_hash('metadata',
   98: 								 map { &unescape($_) } split(/\,/,$result));
   99:             foreach my $key (keys(%hash)) {
  100:                 $ReturnHash{$hash{'url'}}->{$key}=$hash{$key};
  101:             }
  102:         }
  103:         $finished = 1;
  104:     }
  105:     #
  106:     return %ReturnHash;
  107: }
  108: 
  109: 
  110: # Fetch and evaluate dynamic metadata
  111: sub dynamicmeta {
  112:     my $url=&Apache::lonnet::declutter(shift);
  113:     $url=~s/\.meta$//;
  114:     my ($adomain,$aauthor)=($url=~/^($match_domain)\/($match_username)\//);
  115:     my $regexp=$url;
  116:     $regexp=~s/(\W)/\\$1/g;
  117:     $regexp='___'.$regexp.'___';
  118:     my %evaldata=&Apache::lonnet::dump('nohist_resevaldata',$adomain,
  119: 				       $aauthor,$regexp);
  120:     my %DynamicData = &LONCAPA::lonmetadata::process_reseval_data(\%evaldata);
  121:     my %Data = &LONCAPA::lonmetadata::process_dynamic_metadata($url,
  122:                                                                \%DynamicData);
  123:     #
  124:     # Deal with 'count' separately
  125:     $Data{'count'} = &access_count($url,$aauthor,$adomain);
  126:     #
  127:     # Debugging code I will probably need later
  128:     if (0) {
  129:         &Apache::lonnet::logthis('Dynamic Metadata');
  130:         while(my($k,$v)=each(%Data)){
  131:             &Apache::lonnet::logthis('    "'.$k.'"=>"'.$v.'"');
  132:         }
  133:         &Apache::lonnet::logthis('-------------------');
  134:     }
  135:     return %Data;
  136: }
  137: 
  138: sub access_count {
  139:     my ($src,$author,$adomain) = @_;
  140:     my %countdata=&Apache::lonnet::dump('nohist_accesscount',$adomain,
  141:                                         $author,$src);
  142:     if (! exists($countdata{$src})) {
  143:         return &mt('Not Available');
  144:     } else {
  145:         return $countdata{$src};
  146:     }
  147: }
  148: 
  149: # Try to make an alt tag if there is none
  150: sub alttag {
  151:     my ($base,$src)=@_;
  152:     my $fullpath=&Apache::lonnet::hreflocation($base,$src);
  153:     my $alttag=&Apache::lonnet::metadata($fullpath,'title').' '.
  154:         &Apache::lonnet::metadata($fullpath,'subject').' '.
  155:         &Apache::lonnet::metadata($fullpath,'abstract');
  156:     $alttag=~s/\s+/ /gs;
  157:     $alttag=~s/\"//gs;
  158:     $alttag=~s/\'//gs;
  159:     $alttag=~s/\s+$//gs;
  160:     $alttag=~s/^\s+//gs;
  161:     if ($alttag) { 
  162:         return $alttag; 
  163:     } else { 
  164:         return &mt('No information available'); 
  165:     }
  166: }
  167: 
  168: # Author display
  169: sub authordisplay {
  170:     my ($aname,$adom)=@_;
  171:     return &Apache::loncommon::aboutmewrapper
  172:         (&Apache::loncommon::plainname($aname,$adom),
  173:          $aname,$adom,'preview').' <tt>['.$aname.':'.$adom.']</tt>';
  174: }
  175: 
  176: # Pretty display
  177: sub evalgraph {
  178:     my $value=shift;
  179:     if (! $value) { 
  180:         return '';
  181:     }
  182:     my $val=int($value*10.+0.5)-10;
  183:     my $output='<table border="0" cellpadding="0" cellspacing="0"><tr>';
  184:     if ($val>=20) {
  185: 	$output.='<td width="20" bgcolor="#555555">&nbsp&nbsp;</td>';
  186:     } else {
  187:         $output.='<td width="'.($val).'" bgcolor="#555555">&nbsp;</td>'.
  188:                  '<td width="'.(20-$val).'" bgcolor="#FF3333">&nbsp;</td>';
  189:     }
  190:     $output.='<td bgcolor="#FFFF33">&nbsp;</td>';
  191:     if ($val>20) {
  192: 	$output.='<td width="'.($val-20).'" bgcolor="#33FF33">&nbsp;</td>'.
  193:                  '<td width="'.(40-$val).'" bgcolor="#555555">&nbsp;</td>';
  194:     } else {
  195:         $output.='<td width="20" bgcolor="#555555">&nbsp&nbsp;</td>';
  196:     }
  197:     $output.='<td> ('.sprintf("%5.2f",$value).') </td></tr></table>';
  198:     return $output;
  199: }
  200: 
  201: sub diffgraph {
  202:     my $value=shift;
  203:     if (! $value) { 
  204:         return '';
  205:     }
  206:     my $val=int(40.0*$value+0.5);
  207:     my @colors=('#FF9933','#EEAA33','#DDBB33','#CCCC33',
  208:                 '#BBDD33','#CCCC33','#DDBB33','#EEAA33');
  209:     my $output='<table border="0" cellpadding="0" cellspacing="0"><tr>';
  210:     for (my $i=0;$i<8;$i++) {
  211: 	if ($val>$i*5) {
  212:             $output.='<td width="5" bgcolor="'.$colors[$i].'">&nbsp;</td>';
  213:         } else {
  214: 	    $output.='<td width="5" bgcolor="#555555">&nbsp;</td>';
  215: 	}
  216:     }
  217:     $output.='<td> ('.sprintf("%3.2f",$value).') </td></tr></table>';
  218:     return $output;
  219: }
  220: 
  221: 
  222: # The field names
  223: sub fieldnames {
  224:     my $file_type=shift;
  225:     my %fields = 
  226:         ('title' => 'Title',
  227:          'author' =>'Author(s)',
  228:          'authorspace' => 'Author Space',
  229:          'modifyinguser' => 'Last Modifying User',
  230:          'subject' => 'Subject',
  231:          'standards' => 'Standards',
  232:          'keywords' => 'Keyword(s)',
  233:          'notes' => 'Notes',
  234:          'abstract' => 'Abstract',
  235:          'lowestgradelevel' => 'Lowest Grade Level',
  236:          'highestgradelevel' => 'Highest Grade Level');
  237:     
  238:     if ( !defined($file_type) || ($file_type ne 'portfolio' && $file_type ne 'groups') ) {
  239:         %fields = 
  240:         (%fields,
  241:          'domain' => 'Domain',
  242:          'mime' => 'MIME Type',
  243:          'language' => 'Language',
  244:          'creationdate' => 'Creation Date',
  245:          'lastrevisiondate' => 'Last Revision Date',
  246:          'owner' => 'Publisher/Owner',
  247:          'copyright' => 'Copyright/Distribution',
  248:          'customdistributionfile' => 'Custom Distribution File',
  249:          'sourceavail' => 'Source Available',
  250:          'sourcerights' => 'Source Custom Distribution File',
  251:          'obsolete' => 'Obsolete',
  252:          'obsoletereplacement' => 'Suggested Replacement for Obsolete File',
  253:          'count'      => 'Network-wide number of accesses (hits)',
  254:          'course'     => 'Network-wide number of courses using resource',
  255:          'course_list' => 'Network-wide courses using resource',
  256:          'sequsage'      => 'Number of resources using or importing resource',
  257:          'sequsage_list' => 'Resources using or importing resource',
  258:          'goto'       => 'Number of resources that follow this resource in maps',
  259:          'goto_list'  => 'Resources that follow this resource in maps',
  260:          'comefrom'   => 'Number of resources that lead up to this resource in maps',
  261:          'comefrom_list' => 'Resources that lead up to this resource in maps',
  262:          'clear'      => 'Material presented in clear way',
  263:          'depth'      => 'Material covered with sufficient depth',
  264:          'helpful'    => 'Material is helpful',
  265:          'correct'    => 'Material appears to be correct',
  266:          'technical'  => 'Resource is technically correct', 
  267:          'avetries'   => 'Average number of tries till solved',
  268:          'stdno'      => 'Statistics calculated for number of students',
  269:          'difficulty' => 'Degree of difficulty',
  270:          'disc'       => 'Degree of discrimination',
  271: 	     'dependencies' => 'Resources used by this resource',
  272:          );
  273:     }
  274:     return &Apache::lonlocal::texthash(%fields);
  275: }
  276: 
  277: sub portfolio_linked_path {
  278:     my ($path,$group,$port_path) = @_;
  279: 
  280:     my $start = 'portfolio';
  281:     if ($group) {
  282: 	$start = "groups/$group/".$start;
  283:     }
  284:     my %anchor_fields = (
  285:         'selectfile'  => $start,
  286:         'currentpath' => '/'
  287:     );
  288:     my $result = &Apache::portfolio::make_anchor($port_path,\%anchor_fields,$start);
  289:     my $fullpath = '/';
  290:     my (undef,@tree) = split('/',$path);
  291:     my $filename = pop(@tree);
  292:     foreach my $dir (@tree) {
  293: 	$fullpath .= $dir.'/';
  294: 	$result .= '/';
  295: 	my %anchor_fields = (
  296:             'selectfile'  => $dir,
  297:             'currentpath' => $fullpath
  298:         );
  299: 	$result .= &Apache::portfolio::make_anchor($port_path,\%anchor_fields,$dir);
  300:     }
  301:     $result .= "/$filename";
  302:     return $result;
  303: }
  304: 
  305: sub get_port_path_and_group {
  306:     my ($uri)=@_;
  307: 
  308:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
  309:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
  310: 
  311:     my ($port_path,$group);
  312:     if ($uri =~ m{^/editupload/\Q$cdom\E/\Q$cnum\E/groups/}) {
  313: 	$group = (split('/',$uri))[5];
  314: 	$port_path = '/adm/coursegrp_portfolio';
  315:     } else {
  316: 	$port_path = '/adm/portfolio';
  317:     }
  318:     if ($env{'form.group'} ne $group) {
  319: 	$env{'form.group'} = $group;
  320:     }
  321:     return ($port_path,$group);
  322: }
  323: 
  324: sub portfolio_display_uri {
  325:     my ($uri,$as_links)=@_;
  326: 
  327:     my ($port_path,$group) = &get_port_path_and_group($uri);
  328: 
  329:     $uri =~ s|.*/(portfolio/.*)$|$1|;
  330:     my ($res_uri,$meta_uri) = ($uri,$uri);
  331:     if ($uri =~ /\.meta$/) {
  332: 	$res_uri =~ s/\.meta//;
  333:     } else {
  334: 	$meta_uri .= '.meta';
  335:     }
  336: 
  337:     my ($path) = ($res_uri =~ m|^portfolio(.*/)[^/]*$|);
  338:     if ($as_links) {
  339: 	$res_uri = &portfolio_linked_path($res_uri,$group,$port_path);
  340: 	$meta_uri = &portfolio_linked_path($meta_uri,$group,$port_path);
  341:     }
  342:     return ($res_uri,$meta_uri,$path);
  343: }
  344: 
  345: sub pre_select_course {
  346:     my ($r,$uri) = @_;
  347:     my $output;
  348:     my $fn=&Apache::lonnet::filelocation('',$uri);
  349:     my ($res_uri,$meta_uri,$path) = &portfolio_display_uri($uri);
  350:     %Apache::lonpublisher::metadatafields=();
  351:     %Apache::lonpublisher::metadatakeys=();
  352:     my $result=&Apache::lonnet::getfile($fn);
  353:     if ($result == -1){
  354:         $r->print(&mt('Creating new file [_1]'),$meta_uri);
  355:     } else {
  356:         &Apache::lonpublisher::metaeval($result);
  357:     }
  358:     $r->print('<hr /><form method="post" action="" >');
  359:     $r->print('<p>'.&mt('If you would like to associate this resource ([_1]) with a current or previous course, please select one from the list below, otherwise select, \'None\'','<tt>'.$res_uri.'</tt>').'</p>');
  360:     $output = &select_course();
  361:     $r->print($output.'<br /><input type="submit" name="store" value="'.
  362:                   &mt('Associate Resource With Selected Course').'" />');
  363:     $r->print('<input type="hidden" name="currentpath" value="'.$env{'form.currentpath'}.'" />');
  364:     $r->print('<input type="hidden" name="associate" value="true" />');
  365:     $r->print('</form>');
  366:     
  367:     my ($port_path,$group) = &get_port_path_and_group($uri);
  368:     my $group_input;
  369:     if ($group) {
  370:         $group_input = '<input type="hidden" name="group" value="'.$group.'" />';
  371:     } 
  372:     $r->print('<br /><br /><form method="post" action="'.$port_path.'">'.
  373:               '<input type="hidden" name="currentpath" value="'.$path.'" />'.
  374: 	      $group_input.
  375: 	      '<input type="submit" name="cancel" value="'.&mt('Cancel').'" />'.
  376: 	      '</form>');
  377: 
  378:     return;
  379: }
  380: sub select_course {
  381:     my $output=$/;
  382:     my $current_restriction=
  383: 	$Apache::lonpublisher::metadatafields{'courserestricted'};
  384:     my $selected = ($current_restriction eq 'none' ? 'selected="selected"' 
  385: 		                                   : '');
  386:     if ($current_restriction =~ /^course\.($match_domain\_$match_courseid)$/) {
  387:         my $assoc_crs = $1;
  388:         my $added_metadata_fields = &Apache::lonparmset::get_added_meta_fieldnames($assoc_crs);
  389:         if (ref($added_metadata_fields) eq 'HASH') {
  390:             if (keys(%{$added_metadata_fields}) > 0) {
  391:                 my $transfernotes;
  392:                 foreach my $field_name (keys(%{$added_metadata_fields})) {
  393:                     my $value = $Apache::lonpublisher::metadatafields{$field_name};
  394:                     if ($value) {
  395:                         $transfernotes .= 
  396:                             &Apache::loncommon::start_data_table_row(). 
  397:                             '<td><input type="checkbox" name="transfer_'.
  398:                             $field_name.'" value="1" /></td><td>'.
  399:                             $field_name.'</td><td>'.$value.'</td>'.
  400:                             &Apache::loncommon::end_data_table_row();
  401:                     }
  402:                 }
  403:                 if ($transfernotes ne '') {
  404:                     my %courseinfo = &Apache::lonnet::coursedescription($assoc_crs,{'one_time' => 1});
  405:                     my $assoc_crs_description = $courseinfo{'description'};
  406:                     $output .= &mt('This resource is currently associated with a course ([_1]) which includes added metadata fields specific to the course.',$assoc_crs_description).'<br />'."\n".
  407:                     &mt('You can choose to transfer data from the added fields to the "Notes" field if you are planning to change the course association.').'<br /><br />'.
  408:                     &Apache::loncommon::start_data_table().
  409:                     &Apache::loncommon::start_data_table_header_row().
  410:                     '<th>Copy to notes?</th>'."\n".
  411:                     '<th>Field name</th>'."\n".
  412:                     '<th>Values</th>'."\n".
  413:                     &Apache::loncommon::end_data_table_header_row().
  414:                     $transfernotes.
  415:                     &Apache::loncommon::end_data_table().'<br />';
  416:                 }
  417:             }
  418:         }
  419:     }
  420:     $output .= '<select name="new_courserestricted" >';
  421:     $output .= '<option value="none" '.$selected.'>'.
  422: 	&mt('None').'</option>'.$/;
  423:     my %courses;
  424:     foreach my $key (keys(%env)) {
  425:         if ($key !~ m/^course\.(.+)\.description$/) { next; }
  426: 	my $cid = $1;
  427:         if ($env{$key} !~ /\S/) { next; }
  428: 	$courses{$key} = $cid;
  429:     }
  430:     foreach my $key (sort { lc($env{$a}) cmp lc($env{$b}) } (keys(%courses))) {
  431: 	my $cid = 'course.'.$courses{$key};
  432: 	my $selected = ($current_restriction eq $cid ? 'selected="selected"' 
  433: 		                                     : '');
  434:         if ($env{$key} !~ /\S/) { next; }
  435: 	$output .= '<option value="'.$cid.'" '.$selected.'>';
  436: 	$output .= $env{$key};
  437: 	$output .= '</option>'.$/;
  438: 	$selected = '';
  439:     }
  440:     $output .= '</select><br />';
  441:     return ($output);
  442: }
  443: # Pretty printing of metadata field
  444: 
  445: sub prettyprint {
  446:     my ($type,$value,$target,$prefix,$form,$noformat)=@_;
  447: # $target,$prefix,$form are optional and for filecrumbs only
  448:     if (! defined($value)) { 
  449:         return '&nbsp;'; 
  450:     }
  451:     # Title
  452:     if ($type eq 'title') {
  453: 	return '<font size="+1" face="arial">'.$value.'</font>';
  454:     }
  455:     # Dates
  456:     if (($type eq 'creationdate') ||
  457: 	($type eq 'lastrevisiondate')) {
  458: 	return ($value?&Apache::lonlocal::locallocaltime(
  459: 			  &Apache::lonmysql::unsqltime($value)):
  460: 		&mt('not available'));
  461:     }
  462:     # Language
  463:     if ($type eq 'language') {
  464: 	return &Apache::loncommon::languagedescription($value);
  465:     }
  466:     # Copyright
  467:     if ($type eq 'copyright') {
  468: 	return &Apache::loncommon::copyrightdescription($value);
  469:     }
  470:     # Copyright
  471:     if ($type eq 'sourceavail') {
  472: 	return &Apache::loncommon::source_copyrightdescription($value);
  473:     }
  474:     # MIME
  475:     if ($type eq 'mime') {
  476:         return '<img src="'.&Apache::loncommon::icon($value).'" />&nbsp;'.
  477:             &Apache::loncommon::filedescription($value);
  478:     }
  479:     # Person
  480:     if (($type eq 'author') || 
  481: 	($type eq 'owner') ||
  482: 	($type eq 'modifyinguser') ||
  483: 	($type eq 'authorspace')) {
  484: 	$value=~s/($match_username)(\:|\@)($match_domain)/&authordisplay($1,$3)/gse;
  485: 	return $value;
  486:     }
  487:     # Gradelevel
  488:     if (($type eq 'lowestgradelevel') ||
  489: 	($type eq 'highestgradelevel')) {
  490: 	return &Apache::loncommon::gradeleveldescription($value);
  491:     }
  492:     # Only for advance users below
  493:     if (! $env{'user.adv'}) { 
  494:         return '<i>- '.&mt('not displayed').' -</i>';
  495:     }
  496:     # File
  497:     if (($type eq 'customdistributionfile') ||
  498: 	($type eq 'obsoletereplacement') ||
  499: 	($type eq 'goto_list') ||
  500: 	($type eq 'comefrom_list') ||
  501: 	($type eq 'sequsage_list') ||
  502: 	($type eq 'dependencies')) {
  503: 	return '<font size="-1"><ul>'.join("\n",map {
  504:             my $url = &Apache::lonnet::clutter_with_no_wrapper($_);
  505:             my $title = &Apache::lonnet::gettitle($url);
  506:             if ($title eq '') {
  507:                 $title = 'Untitled';
  508:                 if ($url =~ /\.sequence$/) {
  509:                     $title .= ' Sequence';
  510:                 } elsif ($url =~ /\.page$/) {
  511:                     $title .= ' Page';
  512:                 } elsif ($url =~ /\.problem$/) {
  513:                     $title .= ' Problem';
  514:                 } elsif ($url =~ /\.html$/) {
  515:                     $title .= ' HTML document';
  516:                 } elsif ($url =~ m:/syllabus$:) {
  517:                     $title .= ' Syllabus';
  518:                 } 
  519:             }
  520:             $_ = '<li>'.$title.' '.
  521: 		&Apache::lonhtmlcommon::crumbs($url,$target,$prefix,$form,'-1',$noformat).
  522:                 '</li>'
  523: 	    } split(/\s*\,\s*/,$value)).'</ul></font>';
  524:     }
  525:     # Evaluations
  526:     if (($type eq 'clear') ||
  527: 	($type eq 'depth') ||
  528: 	($type eq 'helpful') ||
  529: 	($type eq 'correct') ||
  530: 	($type eq 'technical')) {
  531: 	return &evalgraph($value);
  532:     }
  533:     # Difficulty
  534:     if ($type eq 'difficulty' || $type eq 'disc') {
  535: 	return &diffgraph($value);
  536:     }
  537:     # List of courses
  538:     if ($type=~/\_list/) {
  539:         my @Courses = split(/\s*\,\s*/,$value);
  540:         my $Str='<font size="-1"><ul>';
  541: 	my %descriptions;
  542:         foreach my $course (@Courses) {
  543:             my %courseinfo =
  544: 		&Apache::lonnet::coursedescription($course,
  545: 						   {'one_time' => 1});
  546:             if (! exists($courseinfo{'num'}) || $courseinfo{'num'} eq '') {
  547:                 next;
  548:             }
  549: 	    $descriptions{join('\0',@courseinfo{'domain','description'})} .= 
  550: 		'<li><a href="/public/'.$courseinfo{'domain'}.'/'.
  551:                 $courseinfo{'num'}.'/syllabus" target="preview">'.
  552:                 $courseinfo{'description'}.' ('.$courseinfo{'domain'}.
  553: 		')</a></li>';
  554:         }
  555: 	foreach my $course (sort {lc($a) cmp lc($b)} (keys(%descriptions))) {
  556: 	    $Str .= $descriptions{$course};
  557: 	}
  558: 
  559: 	return $Str.'</ul></font>';
  560:     }
  561:     # No pretty print found
  562:     return $value;
  563: }
  564: 
  565: # Pretty input of metadata field
  566: sub direct {
  567:     return shift;
  568: }
  569: 
  570: sub selectbox {
  571:     my ($name,$value,$functionref,@idlist)=@_;
  572:     if (! defined($functionref)) {
  573:         $functionref=\&direct;
  574:     }
  575:     my $selout='<select name="'.$name.'">';
  576:     foreach (@idlist) {
  577:         $selout.='<option value=\''.$_.'\'';
  578:         if ($_ eq $value) {
  579: 	    $selout.=' selected>'.&{$functionref}($_).'</option>';
  580: 	}
  581:         else {$selout.='>'.&{$functionref}($_).'</option>';}
  582:     }
  583:     return $selout.'</select>';
  584: }
  585: 
  586: sub relatedfield {
  587:     my ($show,$relatedsearchflag,$relatedsep,$fieldname,$relatedvalue)=@_;
  588:     if (! $relatedsearchflag) { 
  589:         return '';
  590:     }
  591:     if (! defined($relatedsep)) {
  592:         $relatedsep=' ';
  593:     }
  594:     if (! $show) {
  595:         return $relatedsep.'&nbsp;';
  596:     }
  597:     return $relatedsep.'<input type="checkbox" name="'.$fieldname.'_related"'.
  598: 	($relatedvalue?' checked="1"':'').' />';
  599: }
  600: 
  601: sub prettyinput {
  602:     my ($type,$value,$fieldname,$formname,
  603: 	$relatedsearchflag,$relatedsep,$relatedvalue,$size,$course_key)=@_;
  604:     if (! defined($size)) {
  605:         $size = 80;
  606:     }
  607:     my $output;
  608:     if (defined($course_key) 
  609: 	&& exists($env{$course_key.'.metadata.'.$type.'.options'})) {
  610:         my $stu_add;
  611:         my $only_one;
  612:         my %meta_options;
  613:         my @cur_values_inst;
  614:         my $cur_values_stu;
  615:         my $values = $env{$course_key.'.metadata.'.$type.'.values'};
  616:         if ($env{$course_key.'.metadata.'.$type.'.options'} =~ m/stuadd/) {
  617:             $stu_add = 'true';
  618:         }
  619:         if ($env{$course_key.'.metadata.'.$type.'.options'} =~ m/onlyone/) {
  620:             $only_one = 'true';
  621:         }
  622:         # need to take instructor values out of list where instructor and student
  623:         # values may be mixed.
  624:         if ($values) {
  625:             foreach my $item (split(/,/,$values)) {
  626:                 $item =~ s/^\s+//;
  627:                 $meta_options{$item} = $item;
  628:             }
  629:             foreach my $item (split(/,/,$value)) {
  630:                 $item =~ s/^\s+//;
  631:                 if ($meta_options{$item}) {
  632:                     push(@cur_values_inst,$item);
  633:                 } else {
  634:                     if ($item ne '') {
  635:                         $cur_values_stu .= $item.',';
  636:                     }
  637:                 }
  638:             }
  639:              $cur_values_stu =~ s/,$//;
  640:             my @key_order = sort(keys(%meta_options));
  641:             unshift(@key_order,'');
  642:             $meta_options{''} = 'Not specified';
  643:             $meta_options{'select_form_order'} = \@key_order;
  644:         } else {
  645:             $cur_values_stu = $value;
  646:         }
  647:         if ($type eq 'courserestricted') {
  648:             return (&select_course());
  649:             # return ('<input type="hidden" name="new_courserestricted" value="'.$course_key.'" />');
  650:         }
  651:         if (($type eq 'keywords') || ($type eq 'subject')
  652:              || ($type eq 'author')||($type eq  'notes')
  653:              || ($type eq  'abstract')|| ($type eq  'title')|| ($type eq  'standards')
  654:              || (exists($env{$course_key.'.metadata.'.$type.'.added'}))) {
  655:             
  656:             if ($values) {
  657:                 if ($only_one) {
  658:                     $output .= (&Apache::loncommon::select_form($cur_values_inst[0],'new_'.$type,%meta_options));
  659:                 } else {
  660:                     $output .= (&Apache::loncommon::multiple_select_form('new_'.$type,\@cur_values_inst,undef,\%meta_options));
  661:                 }
  662:             }
  663:             if ($stu_add) {
  664:                 $output .= '<input type="text" name="'.$fieldname.'" size="'.$size.'" '.
  665:                 'value="'.$cur_values_stu.'" />'.
  666:                 &relatedfield(1,$relatedsearchflag,$relatedsep,$fieldname,
  667:                       $relatedvalue); 
  668:             }
  669:             return ($output);
  670:         } 
  671:         if (($type eq 'lowestgradelevel') ||
  672: 	    ($type eq 'highestgradelevel')) {
  673: 	    return &Apache::loncommon::select_level_form($value,$fieldname).
  674:             &relatedfield(0,$relatedsearchflag,$relatedsep); 
  675:         }
  676:         return(); 
  677:     }
  678:     # Language
  679:     if ($type eq 'language') {
  680: 	return &selectbox($fieldname,
  681: 			  $value,
  682: 			  \&Apache::loncommon::languagedescription,
  683: 			  (&Apache::loncommon::languageids)).
  684:                               &relatedfield(0,$relatedsearchflag,$relatedsep);
  685:     }
  686:     # Copyright
  687:     if ($type eq 'copyright') {
  688: 	return &selectbox($fieldname,
  689: 			  $value,
  690: 			  \&Apache::loncommon::copyrightdescription,
  691: 			  (&Apache::loncommon::copyrightids)).
  692:                               &relatedfield(0,$relatedsearchflag,$relatedsep);
  693:     }
  694:     # Source Copyright
  695:     if ($type eq 'sourceavail') {
  696: 	return &selectbox($fieldname,
  697: 			  $value,
  698: 			  \&Apache::loncommon::source_copyrightdescription,
  699: 			  (&Apache::loncommon::source_copyrightids)).
  700:                               &relatedfield(0,$relatedsearchflag,$relatedsep);
  701:     }
  702:     # Gradelevels
  703:     if (($type eq 'lowestgradelevel') ||
  704: 	($type eq 'highestgradelevel')) {
  705: 	return &Apache::loncommon::select_level_form($value,$fieldname).
  706:             &relatedfield(0,$relatedsearchflag,$relatedsep);
  707:     }
  708:     # Obsolete
  709:     if ($type eq 'obsolete') {
  710: 	return '<input type="checkbox" name="'.$fieldname.'"'.
  711: 	    ($value?' checked="1"':'').' />'.
  712:             &relatedfield(0,$relatedsearchflag,$relatedsep); 
  713:     }
  714:     # Obsolete replacement file
  715:     if ($type eq 'obsoletereplacement') {
  716: 	return '<input type="text" name="'.$fieldname.
  717: 	    '" size="60" value="'.$value.'" /><a href="javascript:openbrowser'.
  718: 	    "('".$formname."','".$fieldname."'".
  719: 	    ",'')\">".&mt('Select').'</a>'.
  720:             &relatedfield(0,$relatedsearchflag,$relatedsep); 
  721:     }
  722:     # Customdistribution file
  723:     if ($type eq 'customdistributionfile') {
  724: 	return '<input type="text" name="'.$fieldname.
  725: 	    '" size="60" value="'.$value.'" /><a href="javascript:openbrowser'.
  726: 	    "('".$formname."','".$fieldname."'".
  727: 	    ",'rights')\">".&mt('Select').'</a>'.
  728:             &relatedfield(0,$relatedsearchflag,$relatedsep); 
  729:     }
  730:     # Source Customdistribution file
  731:     if ($type eq 'sourcerights') {
  732: 	return '<input type="text" name="'.$fieldname.
  733: 	    '" size="60" value="'.$value.'" /><a href="javascript:openbrowser'.
  734: 	    "('".$formname."','".$fieldname."'".
  735: 	    ",'rights')\">".&mt('Select').'</a>'.
  736:             &relatedfield(0,$relatedsearchflag,$relatedsep); 
  737:     }
  738:     if ($type eq 'courserestricted') {
  739:         return (&select_course());
  740:         #return ('<input type="hidden" name="new_courserestricted" value="'.$course_key.'" />');
  741:     }
  742: 
  743:     # Dates
  744:     if (($type eq 'creationdate') ||
  745: 	($type eq 'lastrevisiondate')) {
  746: 	return 
  747:             &Apache::lonhtmlcommon::date_setter($formname,$fieldname,$value).
  748:             &relatedfield(0,$relatedsearchflag,$relatedsep);
  749:     }
  750:     # No pretty input found
  751:     $value=~s/^\s+//gs;
  752:     $value=~s/\s+$//gs;
  753:     $value=~s/\s+/ /gs;
  754:     $value=~s/\"/\&quot\;/gs;
  755:     return 
  756:         '<input type="text" name="'.$fieldname.'" size="'.$size.'" '.
  757:         'value="'.$value.'" />'.
  758:         &relatedfield(1,$relatedsearchflag,$relatedsep,$fieldname,
  759:                       $relatedvalue); 
  760: }
  761: 
  762: # Main Handler
  763: sub handler {
  764:     my $r=shift;
  765:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
  766:          ['currentpath','changecourse']);
  767:     my $uri=$r->uri;
  768:     #
  769:     # Set document type
  770:     &Apache::loncommon::content_type($r,'text/html');
  771:     $r->send_http_header;
  772:     return OK if $r->header_only;
  773:     my ($resdomain,$resuser)=
  774:         (&Apache::lonnet::declutter($uri)=~/^($match_domain)\/($match_username)\//);
  775:     if ($uri=~m:/adm/bombs/(.*)$:) {
  776:         $r->print(&Apache::loncommon::start_page('Error Messages'));
  777:         # Looking for all bombs?
  778:         &report_bombs($r,$uri);
  779:     } elsif ($uri=~m|^/editupload/[^/]+/[^/]+/portfolio/|) {
  780: 	    ($resdomain,$resuser)=
  781: 		(&Apache::lonnet::declutter($uri)=~m|^($match_domain)/($match_name)/portfolio|);
  782:         $r->print(&Apache::loncommon::start_page('Edit Portfolio File Catalog Information',
  783: 						 undef,
  784: 						 {'domain' => $resdomain,}));
  785:         if ($env{'form.store'}) {
  786:             &present_editable_metadata($r,$uri,'portfolio');
  787:         } else {
  788:             my $fn=&Apache::lonnet::filelocation('',$uri);
  789:             %Apache::lonpublisher::metadatafields=();
  790:             %Apache::lonpublisher::metadatakeys=();
  791:             my $result=&Apache::lonnet::getfile($fn);
  792:             &Apache::lonpublisher::metaeval($result);
  793:             if ((!$Apache::lonpublisher::metadatafields{'courserestricted'}) ||
  794:                 ($env{'form.changecourse'} eq 'true')) {
  795:                 &pre_select_course($r,$uri);
  796:             } else {
  797:                 &present_editable_metadata($r,$uri,'portfolio');
  798:             }
  799:         }
  800:     } elsif ($uri=~m|^/editupload/[^/]+/[^/]+/groups/|) {
  801:         $r->print(&Apache::loncommon::start_page('Edit Group Portfolio File Catalog Information',
  802: 						 undef,
  803: 						 {'domain' => $resdomain,}));
  804:         &present_editable_metadata($r,$uri,'groups');    
  805:     } elsif ($uri=~m|^/~|) { 
  806:         # Construction space
  807:         $r->print(&Apache::loncommon::start_page('Edit Catalog Information',
  808: 						"\n".'<script type="text/javascript">'."\n".
  809:                                                 &Apache::loncommon::browser_and_searcher_javascript().
  810:                                                 "\n".'</script>',
  811: 						 {'domain' => $resdomain,}));
  812:         &present_editable_metadata($r,$uri);
  813:     } else {
  814:         $r->print(&Apache::loncommon::start_page('Catalog Information',
  815: 						 undef,
  816: 						 {'domain' => $resdomain,}));
  817:         &present_uneditable_metadata($r,$uri);
  818:     }
  819:     $r->print(&Apache::loncommon::end_page());
  820:     return OK;
  821: }
  822: 
  823: #####################################################
  824: #####################################################
  825: ###                                               ###
  826: ###                Report Bombs                   ###
  827: ###                                               ###
  828: #####################################################
  829: #####################################################
  830: sub report_bombs {
  831:     my ($r,$uri) = @_;
  832:     # Set document type
  833:     $uri =~ s:/adm/bombs/::;
  834:     $uri = &Apache::lonnet::declutter($uri);
  835:     $r->print('<h1>'.&Apache::lonnet::clutter($uri).'</h1>');
  836:     my ($domain,$author)=($uri=~/^($match_domain)\/($match_username)\//);
  837:     if (&Apache::loncacc::constructaccess('/~'.$author.'/',$domain)) {
  838: 	if ($env{'form.clearbombs'}) {
  839: 	    &Apache::lonmsg::clear_author_res_msg($uri);
  840: 	}
  841:         my $clear=&mt('Clear all Messages in Subdirectory');
  842: 	$r->print(<<ENDCLEAR);
  843: <form method="post">
  844: <input type="submit" name="clearbombs" value="$clear" />
  845: </form>
  846: ENDCLEAR
  847:         my %brokenurls = 
  848:             &Apache::lonmsg::all_url_author_res_msg($author,$domain);
  849:         foreach (sort(keys(%brokenurls))) {
  850:             if ($_=~/^\Q$uri\E/) {
  851:                 $r->print
  852:                     ('<a href="'.&Apache::lonnet::clutter($_).'">'.$_.'</a>'.
  853:                      &Apache::lonmsg::retrieve_author_res_msg($_).
  854:                      '<hr />');
  855:             }
  856:         }
  857:     } else {
  858:         $r->print(&mt('Not authorized'));
  859:     }
  860:     return;
  861: }
  862: 
  863: #####################################################
  864: #####################################################
  865: ###                                               ###
  866: ###        Uneditable Metadata Display            ###
  867: ###                                               ###
  868: #####################################################
  869: #####################################################
  870: sub present_uneditable_metadata {
  871:     my ($r,$uri) = @_;
  872:     #
  873:     my $uploaded = ($uri =~ m|/uploaded/|);
  874:     my %content=();
  875:     # Read file
  876:     foreach (split(/\,/,&Apache::lonnet::metadata($uri,'keys'))) {
  877:         $content{$_}=&Apache::lonnet::metadata($uri,$_);
  878:     }
  879:     # Render Output
  880:     # displayed url
  881:     my ($thisversion)=($uri=~/\.(\d+)\.(\w+)\.meta$/);
  882:     $uri=~s/\.meta$//;
  883:     my $disuri=&Apache::lonnet::clutter_with_no_wrapper($uri);
  884:     # version
  885:     my $versiondisplay='';
  886:     if (!$uploaded) {
  887: 	my $currentversion=&Apache::lonnet::getversion($disuri);
  888: 	if ($thisversion) {
  889: 	    $versiondisplay=&mt('Version').': '.$thisversion.
  890: 		' ('.&mt('most recent version').': '.
  891: 		($currentversion>0 ? 
  892: 		 $currentversion   :
  893: 		 &mt('information not available')).')';
  894: 	} else {
  895: 	    $versiondisplay='Version: '.$currentversion;
  896: 	}
  897:     }
  898:     # crumbify displayed URL               uri     target prefix form  size
  899:     $disuri=&Apache::lonhtmlcommon::crumbs($disuri,undef, undef, undef,'+1');
  900:     $disuri =~ s:<br />::g;
  901:     # obsolete
  902:     my $obsolete=$content{'obsolete'};
  903:     my $obsoletewarning='';
  904:     if (($obsolete) && ($env{'user.adv'})) {
  905:         $obsoletewarning='<p><font color="red">'.
  906:             &mt('This resource has been marked obsolete by the author(s)').
  907:             '</font></p>';
  908:     }
  909:     #
  910:     my %lt=&fieldnames();
  911:     my $table='';
  912:     my $title = $content{'title'};
  913:     if (! defined($title)) {
  914:         $title = 'Untitled Resource';
  915:     }
  916:     my @fields;
  917:     if ($uploaded) {
  918: 	@fields = ('title','author','subject','keywords','notes','abstract',
  919: 		   'lowestgradelevel','highestgradelevel','standards','mime',
  920: 		   'owner');
  921:     } else {
  922: 	@fields = ('title', 
  923: 		   'author', 
  924: 		   'subject', 
  925: 		   'keywords', 
  926: 		   'notes', 
  927: 		   'abstract',
  928: 		   'lowestgradelevel',
  929: 		   'highestgradelevel',
  930: 		   'standards', 
  931: 		   'mime', 
  932: 		   'language', 
  933: 		   'creationdate', 
  934: 		   'lastrevisiondate', 
  935: 		   'owner', 
  936: 		   'copyright', 
  937: 		   'customdistributionfile',
  938: 		   'sourceavail',
  939: 		   'sourcerights', 
  940: 		   'obsolete', 
  941: 		   'obsoletereplacement');
  942:     }
  943:     foreach my $field (@fields) {
  944:         $table.='<tr><td bgcolor="#AAAAAA">'.$lt{$field}.
  945:             '</td><td bgcolor="#CCCCCC">'.
  946:             &prettyprint($field,$content{$field}).'</td></tr>';
  947:         delete($content{$field});
  948:     }
  949:     #
  950:     $r->print(<<ENDHEAD);
  951: <h2>$title</h2>
  952: <p>
  953: $disuri<br />
  954: $obsoletewarning
  955: $versiondisplay
  956: </p>
  957: <table cellspacing="2" border="0">
  958: $table
  959: </table>
  960: ENDHEAD
  961:     if (!$uploaded && $env{'user.adv'}) {
  962:         &print_dynamic_metadata($r,$uri,\%content);
  963:     }
  964:     return;
  965: }
  966: 
  967: sub print_dynamic_metadata {
  968:     my ($r,$uri,$content) = @_;
  969:     #
  970:     my %content = %$content;
  971:     my %lt=&fieldnames();
  972:     #
  973:     my $description = 'Dynamic Metadata (updated periodically)';
  974:     $r->print('<h3>'.&mt($description).'</h3>'.
  975:               &mt('Processing'));
  976:     $r->rflush();
  977:     my %items=&fieldnames();
  978:     my %dynmeta=&dynamicmeta($uri);
  979:     #
  980:     # General Access and Usage Statistics
  981:     if (exists($dynmeta{'count'}) ||
  982:         exists($dynmeta{'sequsage'}) ||
  983:         exists($dynmeta{'comefrom'}) ||
  984:         exists($dynmeta{'goto'}) ||
  985:         exists($dynmeta{'course'})) {
  986:         $r->print('<h4>'.&mt('Access and Usage Statistics').'</h4>'.
  987:                   '<table cellspacing="2" border="0">');
  988:         foreach ('count',
  989:                  'sequsage','sequsage_list',
  990:                  'comefrom','comefrom_list',
  991:                  'goto','goto_list',
  992:                  'course','course_list') {
  993:             $r->print('<tr><td bgcolor="#AAAAAA">'.$lt{$_}.'</td>'.
  994:                       '<td bgcolor="#CCCCCC">'.
  995:                       &prettyprint($_,$dynmeta{$_})."</td></tr>\n");
  996:         }
  997:         $r->print('</table>');
  998:     } else {
  999:         $r->print('<h4>'.&mt('No Access or Usages Statistics are available for this resource.').'</h4>');
 1000:     }
 1001:     #
 1002:     # Assessment statistics
 1003:     if ($uri=~/\.(problem|exam|quiz|assess|survey|form)$/) {
 1004:         if (exists($dynmeta{'stdno'}) ||
 1005:             exists($dynmeta{'avetries'}) ||
 1006:             exists($dynmeta{'difficulty'}) ||
 1007:             exists($dynmeta{'disc'})) {
 1008:             # This is an assessment, print assessment data
 1009:             $r->print('<h4>'.
 1010:                       &mt('Overall Assessment Statistical Data').
 1011:                       '</h4>'.
 1012:                       '<table cellspacing="2" border="0">');
 1013:             $r->print('<tr><td bgcolor="#AAAAAA">'.$lt{'stdno'}.'</td>'.
 1014:                       '<td bgcolor="#CCCCCC">'.
 1015:                       &prettyprint('stdno',$dynmeta{'stdno'}).
 1016:                       '</td>'."</tr>\n");
 1017:             foreach ('avetries','difficulty','disc') {
 1018:                 $r->print('<tr><td bgcolor="#AAAAAA">'.$lt{$_}.'</td>'.
 1019:                           '<td bgcolor="#CCCCCC">'.
 1020:                           &prettyprint($_,sprintf('%5.2f',$dynmeta{$_})).
 1021:                           '</td>'."</tr>\n");
 1022:             }
 1023:             $r->print('</table>');    
 1024:         }
 1025:         if (exists($dynmeta{'stats'})) {
 1026:             #
 1027:             # New assessment statistics
 1028:             $r->print('<h4>'.
 1029:                       &mt('Recent Detailed Assessment Statistical Data').
 1030:                       '</h4>');
 1031:             my $table = '<table cellspacing="2" border="0">'.
 1032:                 '<tr>'.
 1033:                 '<th>'.&mt('Course').'</th>'.
 1034:                 '<th>'.&mt('Section(s)').'</th>'.
 1035:                 '<th>'.&mt('Num Student').'s</th>'.
 1036:                 '<th>'.&mt('Mean Tries').'</th>'.
 1037:                 '<th>'.&mt('Degree of Difficulty').'</th>'.
 1038:                 '<th>'.&mt('Degree of Discrimination').'</th>'.
 1039:                 '<th>'.&mt('Time of computation').'</th>'.
 1040:                 '</tr>'.$/;
 1041:             foreach my $identifier (sort(keys(%{$dynmeta{'stats'}}))) {
 1042:                 my $data = $dynmeta{'stats'}->{$identifier};
 1043:                 my $course = $data->{'course'};
 1044:                 my %courseinfo = 
 1045: 		    &Apache::lonnet::coursedescription($course,
 1046: 						       {'one_time' => 1});
 1047:                 if (! exists($courseinfo{'num'}) || $courseinfo{'num'} eq '') {
 1048:                     &Apache::lonnet::logthis('lookup for '.$course.' failed');
 1049:                     next;
 1050:                 }
 1051:                 $table .= '<tr>';
 1052:                 $table .= 
 1053:                     '<td><nobr>'.$courseinfo{'description'}.'</nobr></td>';
 1054:                 $table .= 
 1055:                     '<td align="right">'.$data->{'sections'}.'</td>';
 1056:                 $table .=
 1057:                     '<td align="right">'.$data->{'stdno'}.'</td>';
 1058:                 foreach ('avetries','difficulty','disc') {
 1059:                     $table .= '<td align="right">';
 1060:                     if (exists($data->{$_})) {
 1061:                         $table .= sprintf('%.2f',$data->{$_}).'&nbsp;';
 1062:                     } else {
 1063:                         $table .= '';
 1064:                     }
 1065:                     $table .= '</td>';
 1066:                 }
 1067:                 $table .=
 1068:                     '<td><nobr>'.
 1069:                     &Apache::lonlocal::locallocaltime($data->{'timestamp'}).
 1070:                     '</nobr></td>';
 1071:                 $table .=
 1072:                     '</tr>'.$/;
 1073:             }
 1074:             $table .= '</table>'.$/;
 1075:             $r->print($table);
 1076:         } else {
 1077:             $r->print('No new dynamic data found.');
 1078:         }
 1079:     } else {
 1080:         $r->print('<h4>'.
 1081:           &mt('No Assessment Statistical Data is available for this resource').
 1082:                   '</h4>');
 1083:     }
 1084: 
 1085:     #
 1086:     #
 1087:     if (exists($dynmeta{'clear'})   || 
 1088:         exists($dynmeta{'depth'})   || 
 1089:         exists($dynmeta{'helpful'}) || 
 1090:         exists($dynmeta{'correct'}) || 
 1091:         exists($dynmeta{'technical'})){ 
 1092:         $r->print('<h4>'.&mt('Evaluation Data').'</h4>'.
 1093:                   '<table cellspacing="2" border="0">');
 1094:         foreach ('clear','depth','helpful','correct','technical') {
 1095:             $r->print('<tr><td bgcolor="#AAAAAA">'.$lt{$_}.'</td>'.
 1096:                       '<td bgcolor="#CCCCCC">'.
 1097:                       &prettyprint($_,$dynmeta{$_})."</td></tr>\n");
 1098:         }
 1099:         $r->print('</table>');
 1100:     } else {
 1101:         $r->print('<h4>'.&mt('No Evaluation Data is available for this resource.').'</h4>');
 1102:     }
 1103:     $uri=~/^\/res\/($match_domain)\/($match_username)\//; 
 1104:     if ((($env{'user.domain'} eq $1) && ($env{'user.name'} eq $2))
 1105:         || ($env{'user.role.ca./'.$1.'/'.$2})) {
 1106:         if (exists($dynmeta{'comments'})) {
 1107:             $r->print('<h4>'.&mt('Evaluation Comments').' ('.
 1108:                       &mt('visible to author and co-authors only').
 1109:                       ')</h4>'.
 1110:                       '<blockquote>'.$dynmeta{'comments'}.'</blockquote>');
 1111:         } else {
 1112:             $r->print('<h4>'.&mt('There are no Evaluation Comments on this resource.').'</h4>');
 1113:         }
 1114:         my $bombs = &Apache::lonmsg::retrieve_author_res_msg($uri);
 1115:         if (defined($bombs) && $bombs ne '') {
 1116:             $r->print('<a name="bombs" /><h4>'.&mt('Error Messages').' ('.
 1117:                       &mt('visible to author and co-authors only').')'.
 1118:                       '</h4>'.$bombs);
 1119:         } else {
 1120:             $r->print('<h4>'.&mt('There are currently no Error Messages for this resource.').'</h4>');
 1121:         }
 1122:     }
 1123:     #
 1124:     # All other stuff
 1125:     $r->print('<h3>'.
 1126:               &mt('Additional Metadata (non-standard, parameters, exports)').
 1127:               '</h3><table border="0" cellspacing="1">');
 1128:     foreach (sort(keys(%content))) {
 1129:         my $name=$_;
 1130:         if ($name!~/\.display$/) {
 1131:             my $display=&Apache::lonnet::metadata($uri,
 1132:                                                   $name.'.display');
 1133:             if (! $display) { 
 1134:                 $display=$name;
 1135:             };
 1136:             my $otherinfo='';
 1137:             foreach ('name','part','type','default') {
 1138:                 if (defined(&Apache::lonnet::metadata($uri,
 1139:                                                       $name.'.'.$_))) {
 1140:                     $otherinfo.=' '.$_.'='.
 1141:                         &Apache::lonnet::metadata($uri,
 1142:                                                   $name.'.'.$_).'; ';
 1143:                 }
 1144:             }
 1145:             $r->print('<tr><td bgcolor="#bbccbb"><font size="-1" color="#556655">'.$display.'</font></td><td bgcolor="#ccddcc"><font size="-1" color="#556655">'.$content{$name});
 1146:             if ($otherinfo) {
 1147:                 $r->print(' ('.$otherinfo.')');
 1148:             }
 1149:             $r->print("</font></td></tr>\n");
 1150:         }
 1151:     }
 1152:     $r->print("</table>");
 1153:     return;
 1154: }
 1155: 
 1156: 
 1157: 
 1158: #####################################################
 1159: #####################################################
 1160: ###                                               ###
 1161: ###          Editable metadata display            ###
 1162: ###                                               ###
 1163: #####################################################
 1164: #####################################################
 1165: sub present_editable_metadata {
 1166:     my ($r,$uri,$file_type) = @_;
 1167:     # Construction Space Call
 1168:     # Header
 1169:     my $disuri=$uri;
 1170:     my $fn=&Apache::lonnet::filelocation('',$uri);
 1171:     $disuri=~s{^/\~}{/priv/};
 1172:     $disuri=~s/\.meta$//;
 1173:     my $meta_uri = $disuri;
 1174:     my $path;
 1175:     if ($disuri =~ m|/portfolio/|) {
 1176: 	($disuri, $meta_uri, $path) =  &portfolio_display_uri($disuri,1);
 1177:     }
 1178:     my $target=$uri;
 1179:     $target=~s{^/\~}{/res/$env{'request.role.domain'}/};
 1180:     $target=~s/\.meta$//;
 1181:     my $bombs=&Apache::lonmsg::retrieve_author_res_msg($target);
 1182:     if ($bombs) {
 1183:         my $showdel=1;
 1184:         if ($env{'form.delmsg'}) {
 1185:             if (&Apache::lonmsg::del_url_author_res_msg($target) eq 'ok') {
 1186:                 $bombs=&mt('Messages deleted.');
 1187: 		$showdel=0;
 1188:             } else {
 1189:                 $bombs=&mt('Error deleting messages');
 1190:             }
 1191:         }
 1192:         if ($env{'form.clearmsg'}) {
 1193: 	    my $cleardir=$target;
 1194: 	    $cleardir=~s/\/[^\/]+$/\//;
 1195:             if (&Apache::lonmsg::clear_author_res_msg($cleardir) eq 'ok') {
 1196:                 $bombs=&mt('Messages cleared.');
 1197: 		$showdel=0;
 1198:             } else {
 1199:                 $bombs=&mt('Error clearing messages');
 1200:             }
 1201:         }
 1202:         my $del=&mt('Delete Messages for this Resource');
 1203: 	my $clear=&mt('Clear all Messages in Subdirectory');
 1204: 	my $goback=&mt('Back to Source File');
 1205:         $r->print(<<ENDBOMBS);
 1206: <h1>$disuri</h1>
 1207: <form method="post" action="" name="defaultmeta">
 1208: ENDBOMBS
 1209:         if ($showdel) {
 1210: 	    $r->print(<<ENDDEL);
 1211: <input type="submit" name="delmsg" value="$del" />
 1212: <input type="submit" name="clearmsg" value="$clear" />
 1213: ENDDEL
 1214:         } else {
 1215:             $r->print('<p><a href="'.$disuri.'">'.$goback.'</a></p>');
 1216: 	    if ($env{'form.clearmsg'}) {
 1217: 		my ($diruri) = ($disuri =~ m{(.*/)[^/]*});
 1218: 		$r->print('<p><a href="'.$diruri.'">'.
 1219: 			  &mt('Back To Directory').'</a></p>');
 1220: 	    }
 1221: 	}
 1222: 	$r->print('<br />'.$bombs);
 1223:     } else {
 1224:         my $displayfile='Catalog Information for '.$disuri;
 1225:         if ($disuri=~/\/default$/) {
 1226:             my $dir=$disuri;
 1227:             $dir=~s/default$//;
 1228:             $displayfile=
 1229:                 &mt('Default Cataloging Information for Directory').' '.
 1230:                 $dir;
 1231:         }
 1232:         %Apache::lonpublisher::metadatafields=();
 1233:         %Apache::lonpublisher::metadatakeys=();
 1234:         my $result=&Apache::lonnet::getfile($fn);
 1235:         if ($result == -1){
 1236: 	    $r->print(&mt('Creating new file [_1]'),$meta_uri);
 1237:         } else {
 1238:             &Apache::lonpublisher::metaeval($result);
 1239:         }
 1240:         if ($env{'form.new_courserestricted'}) {
 1241:             my $new_assoc_course = $env{'form.new_courserestricted'};
 1242:             my $prev_courserestricted = $Apache::lonpublisher::metadatafields{'courserestricted'};
 1243:             if (($prev_courserestricted) && 
 1244:                 ($prev_courserestricted ne $new_assoc_course)) {
 1245:                 my $transfers = [];
 1246:                 foreach my $key (keys(%env)) {
 1247:                     if ($key =~ /^form\.transfer_(.+)$/) {
 1248:                         push(@{$transfers},$1);
 1249:                     }
 1250:                 }
 1251:                 if (@{$transfers} > 0) {
 1252:                     &store_transferred_addedfields($fn,$uri,$transfers);
 1253:                 }
 1254:             }
 1255:         }
 1256:         $r->print(<<ENDEDIT);
 1257: <h1>$displayfile</h1>
 1258: <form method="post" action="" name="defaultmeta">
 1259: ENDEDIT
 1260:         my %lt=&fieldnames($file_type);
 1261: 	my $output;
 1262: 	my @fields;
 1263: 	my $added_metadata_fields;
 1264: 	my @added_order;
 1265:         if ($file_type eq 'groups') {
 1266:             $Apache::lonpublisher::metadatafields{'courserestricted'}=
 1267:                 'course.'.$env{'request.course.id'};
 1268:         }
 1269:         if ((! $Apache::lonpublisher::metadatafields{'courserestricted'}) &&
 1270:                 (! $env{'form.new_courserestricted'}) && (! $file_type eq 'groups')) {
 1271:             $Apache::lonpublisher::metadatafields{'courserestricted'}=
 1272:                 'none';
 1273:         } elsif ($env{'form.new_courserestricted'}) {
 1274:             $Apache::lonpublisher::metadatafields{'courserestricted'}=
 1275:                 $env{'form.new_courserestricted'};
 1276:         }
 1277: 	if ($file_type eq 'portfolio' || $file_type eq 'groups') {
 1278: 	    if(exists ($env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.fieldlist'})) {
 1279: 	        # retrieve fieldnames (in order) from the course restricted list
 1280: 	        @fields = (split(/,/,$env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.fieldlist'}));
 1281: 	    } else {
 1282: 	        # no saved field list, use default list
 1283: 	        @fields =  ('author','title','subject','keywords','abstract',
 1284: 			    'notes','lowestgradelevel',
 1285: 	                    'highestgradelevel','standards');
 1286:                 if ($Apache::lonpublisher::metadatafields{'courserestricted'} =~ /^course\.($match_domain\_$match_courseid)$/) {
 1287:                     my $assoc_crs = $1;
 1288: 	            $added_metadata_fields = &Apache::lonparmset::get_added_meta_fieldnames($assoc_crs);
 1289: 	            if ($env{'course.'.$assoc_crs.'.metadata.addedorder'}) {
 1290: 	                @added_order = split(/,/,$env{'course.'.$assoc_crs.'.metadata.addedorder'});
 1291: 	            }
 1292: 	            $env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.fieldlist'} = join(",",@fields);
 1293:                 }
 1294: 	    }
 1295: 	} else {
 1296: 	    @fields = ('author','title','subject','keywords','abstract','notes',
 1297: 		       'copyright','customdistributionfile','language',
 1298: 		       'standards',
 1299: 		       'lowestgradelevel','highestgradelevel','sourceavail','sourcerights',
 1300: 		       'obsolete','obsoletereplacement');
 1301:         }
 1302:         if (! $Apache::lonpublisher::metadatafields{'copyright'}) {
 1303:                 $Apache::lonpublisher::metadatafields{'copyright'}=
 1304: 		    'default';
 1305:         }
 1306: 	if (($file_type eq 'portfolio') || ($file_type eq 'groups'))  {
 1307: 	    if (! $Apache::lonpublisher::metadatafields{'mime'}) {
 1308:                 ($Apache::lonpublisher::metadatafields{'mime'}) =
 1309: 		    ( $target=~/\.(\w+)$/ );
 1310: 	    }
 1311: 	    if (! $Apache::lonpublisher::metadatafields{'owner'}) {
 1312: 		$Apache::lonpublisher::metadatafields{'owner'} =
 1313: 		    $env{'user.name'}.':'.$env{'user.domain'};
 1314: 	    }
 1315: 	    if (! $Apache::lonpublisher::metadatafields{'author'}) {
 1316: 		$Apache::lonpublisher::metadatafields{'author'} =
 1317: 		    &Apache::loncommon::plainname($env{'user.name'},
 1318: 						  $env{'user.domain'});
 1319: 	    }
 1320: 	    if ($Apache::lonpublisher::metadatafields{'courserestricted'} ne 'none') {
 1321: 
 1322:                 if ($file_type eq 'portfolio') {
 1323: 		    $r->print(&mt('Associated with course [_1]',
 1324: 		        '<strong><a href="'.$uri.'?changecourse=true">'.
 1325: 		        $env{$Apache::lonpublisher::metadatafields{'courserestricted'}.
 1326: 		        ".description"}.
 1327: 			      '</a></strong>').'<br />');
 1328:                 } else {
 1329:                     $r->print(&mt('Associated with course [_1]',
 1330:                         '<strong>'.
 1331:   $env{$Apache::lonpublisher::metadatafields{'courserestricted'}.
 1332:                         ".description"}.'</strong>').'<br />');
 1333:                 }
 1334: 	    } else {
 1335: 		$r->print('<a href="'.$uri.'?changecourse=true">This resource is not associated with a course.</a><br />');
 1336: 	    }
 1337: 	}
 1338: 	if (@added_order) {
 1339: 	    foreach my $field_name (@added_order) {
 1340:                 push(@fields,$field_name);
 1341:                 $lt{$field_name} = $$added_metadata_fields{$field_name};
 1342: 	    }
 1343: 	} else {
 1344:             foreach my $field_name (keys(%$added_metadata_fields)) {
 1345:                 push(@fields,$field_name);
 1346:                 $lt{$field_name} = $$added_metadata_fields{$field_name};
 1347:             }
 1348:         }
 1349:         $output .= &Apache::loncommon::start_data_table();
 1350:         my $row_alt = 1;
 1351:         foreach my $field_name (@fields) {
 1352:             if (defined($env{'form.new_'.$field_name})) {
 1353:                 my @values = &Apache::loncommon::get_env_multiple('form.new_'.$field_name);
 1354:                 my $newvalue = '';
 1355:                 foreach my $item (@values) {
 1356:                     if ($item ne '') {
 1357:                         $newvalue .= $item.',';
 1358:                     }
 1359:                 }
 1360:                 $newvalue =~ s/,$//; 
 1361:                 $Apache::lonpublisher::metadatafields{$field_name}=$newvalue;
 1362:             }
 1363:             if ($Apache::lonpublisher::metadatafields{'courserestricted'} ne 'none'
 1364: 		&& exists($env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.'.$field_name.'.options'})) {
 1365:                 # handle restrictions here
 1366:                 if ((($env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.'.$field_name.'.options'} =~ m/active/) ||
 1367:                     ($field_name eq 'courserestricted'))&&
 1368:                     (!($env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.'.$field_name.'.options'} =~ m/deleted/))){
 1369:                     
 1370:                     $output .= "\n".&Apache::loncommon::start_data_table_row();
 1371:                     $output .= ('<td><span class="LC_metadata">'.$lt{$field_name}.':</span></td><td> '.
 1372:                               &prettyinput($field_name,
 1373: 				   $Apache::lonpublisher::metadatafields{$field_name},
 1374: 				                    'new_'.$field_name,'defaultmeta',
 1375: 				                    undef,undef,undef,undef,
 1376: 				                    $Apache::lonpublisher::metadatafields{'courserestricted'}).'</td>');
 1377:                     $output .= &Apache::loncommon::end_data_table_row();
 1378:                  }
 1379:             } else {
 1380: 
 1381:                     $output.=(&Apache::loncommon::start_data_table_row().'<td><span class="LC_metadata">'.$lt{$field_name}.':</span></td><td> '.
 1382: 			      &prettyinput($field_name,
 1383: 					   $Apache::lonpublisher::metadatafields{$field_name},
 1384: 					   'new_'.$field_name,'defaultmeta').'</td>'.&Apache::loncommon::end_data_table_row());
 1385:                
 1386:             }
 1387:         }
 1388:         $output .= &Apache::loncommon::end_data_table();
 1389: 	if ($env{'form.store'}) {
 1390:             my ($outcome,$result) = &store_metadata($fn,$uri,'store');
 1391:             $r->print($result);
 1392: 	}
 1393: 	$r->print($output.'<br /><input type="submit" name="store" value="'.
 1394:                   &mt('Save Catalog Information').'" />');
 1395: 
 1396: 	if ($file_type eq 'portfolio' || $file_type eq 'groups') {
 1397: 	    my ($port_path,$group) = &get_port_path_and_group($uri);
 1398:             if ($group ne '') {
 1399:                 $r->print('<input type="hidden" name="group" value="'.$group.'" />');
 1400:             }
 1401:             $r->print('<input type="hidden" name="currentpath" value="'.$env{'form.currentpath'}.'" />');
 1402: 	    $r->print('</form><br /><br /><form method="post" action="'.$port_path.'">');
 1403: 	    if ($group ne '') {
 1404: 	        $r->print('<input type="hidden" name="group" value="'.$group.'" />');
 1405:             }
 1406: 	    $r->print('<input type="hidden" name="currentpath" value="'.$path.'" />'.
 1407: 		      '<input type="submit" name="cancel" value="'.&mt('Discard Edits and Return to Portfolio').'" />');
 1408: 	}
 1409:     }
 1410:     
 1411:     $r->print('</form>');
 1412: 
 1413:     return;
 1414: }
 1415: 
 1416: sub store_metadata {
 1417:     my ($fn,$uri,$caller) = @_;
 1418:     my $mfh;
 1419:     my $formname='store';
 1420:     my ($file_content,$output,$outcome);
 1421:     if (&Apache::loncommon::get_env_multiple('form.new_keywords')) {
 1422:         $Apache::lonpublisher::metadatafields{'keywords'} =
 1423:             join (',', &Apache::loncommon::get_env_multiple('form.new_keywords'));
 1424:             }
 1425:     foreach my $field (sort(keys(%Apache::lonpublisher::metadatafields))) {
 1426:         next if ($field =~ /\./);
 1427:         my $unikey=$field;
 1428:         $unikey=~/^([A-Za-z_]+)/;
 1429:         my $tag=$1;
 1430:         $tag=~tr/A-Z/a-z/;
 1431:         $file_content.= "\n\<$tag";
 1432:         foreach my $key (split(/\,/,$Apache::lonpublisher::metadatakeys{$unikey})) {
 1433:             my $value = $Apache::lonpublisher::metadatafields{$unikey.'.'.$key};
 1434:             $value=~s/\"/\'\'/g;
 1435:             $file_content.=' '.$key.'="'.$value.'"' ;
 1436:         }
 1437:         $file_content.= '>'.
 1438:             &HTML::Entities::encode
 1439:                 ($Apache::lonpublisher::metadatafields{$unikey},'<>&"').
 1440:                 '</'.$tag.'>';
 1441:     }
 1442:     if ($fn =~ m|^$Apache::lonnet::perlvar{'lonDocRoot'}/userfiles|) {
 1443:         my ($path, $new_fn);
 1444:         if ($fn =~ m|$match_name/groups/\w+/portfolio/|) {
 1445:             ($path, $new_fn) = ($fn =~ m|/(groups/\w+/portfolio.*)/([^/]*)$|);
 1446:         } else {
 1447:             ($path, $new_fn) = ($fn =~ m|/(portfolio.*)/([^/]*)$|);
 1448:         }
 1449:         ($outcome,my $result) = 
 1450:             &store_portfolio_metadata($formname,$file_content,
 1451:                                       $path,$new_fn,$uri,$caller);
 1452:         $output .= $result;
 1453:     } else {
 1454:         if (! ($mfh=Apache::File->new('>'.$fn))) {
 1455:             $output .= '<p><font color="red">';
 1456:             if ($caller eq 'transfer') {
 1457:                 $output .= &mt('Could not transfer data in added fields to notes');
 1458:             } else { 
 1459:                 $output .= &mt('Could not write metadata');
 1460:             }
 1461:             $output .= ', '.&mt('FAIL').'</font></p>';
 1462:             $outcome = 'fail';
 1463:         } else {
 1464:             print $mfh ($file_content);
 1465:             close($mfh);
 1466:             &update_metadata_table($uri);
 1467:             $output .= '<p><font color="blue">';
 1468:             if ($caller eq 'transfer') {
 1469:                 $output .= &mt('Transferred data in added fields to notes');
 1470:             } else {
 1471:                 $output .= &mt('Wrote Metadata');
 1472:             }
 1473:             $output .= ' '.&Apache::lonlocal::locallocaltime(time).
 1474:                        '</font></p>';
 1475:             $outcome = 'ok';
 1476:         }
 1477:     }
 1478:     return ($outcome,$output);
 1479: }
 1480: 
 1481: sub store_transferred_addedfields {
 1482:     my ($fn,$uri,$transfers) = @_;
 1483:     foreach my $item (@{$transfers}) {
 1484:         $Apache::lonpublisher::metadatafields{'notes'} .= 
 1485:            ' '.$item.' = '.$Apache::lonpublisher::metadatafields{$item};
 1486:     }
 1487:     my ($outcome,$output) = &store_metadata($fn,$uri,'transfer');
 1488:     if ($outcome eq 'ok') {
 1489:         foreach my $item (@{$transfers}) {
 1490:             delete($Apache::lonpublisher::metadatafields{$item});
 1491:         }
 1492:     }
 1493: }
 1494: 
 1495: sub store_portfolio_metadata {
 1496:     my ($formname,$content,$path,$new_fn,$uri,$caller) = @_;
 1497:     my ($outcome,$output);
 1498:     $env{'form.'.$formname}=$content."\n";
 1499:     $env{'form.'.$formname.'.filename'}=$new_fn;
 1500:     my $result =&Apache::lonnet::userfileupload($formname,'',$path);
 1501:     if ($result =~ /(error|notfound)/) {
 1502:         $output = '<p><font color="red">';
 1503:         if ($caller eq 'transfer') {
 1504:             $output .= 
 1505:                 &mt('Could not transfer data in added fields to notes'); 
 1506:         } else {
 1507:             $output .= &mt('Could not write metadata');
 1508:         }
 1509:         $output .= ', '.&mt('FAIL').'</font></p>';
 1510:         $outcome = 'fail';
 1511:     } else {
 1512:         &update_metadata_table($uri);
 1513:         $output = '<p><font color="blue">';
 1514:         if ($caller eq 'transfer') {
 1515:             $output .= &mt('Transferred data in added fields to notes');
 1516:         } else {
 1517:             $output .= &mt('Wrote Metadata');
 1518:         }
 1519:         $output .= ' '.&Apache::lonlocal::locallocaltime(time).
 1520:                    '</font></p>';
 1521:         $outcome = 'ok';
 1522:     }
 1523:     return ($outcome,$output);
 1524: }
 1525: 
 1526: sub update_metadata_table {
 1527:     my ($uri) = @_;
 1528:     my ($type,$udom,$uname,$file_name,$group) =
 1529: 	&Apache::lonnet::parse_portfolio_url($uri);
 1530:     $file_name =~ s/\.meta$//;
 1531:     my $current_permissions =
 1532:         &Apache::lonnet::get_portfile_permissions($udom,$uname);
 1533:     my %access_controls =
 1534:         &Apache::lonnet::get_access_controls($current_permissions,$group,
 1535:                                              $file_name);
 1536:     my $access_hash = $access_controls{$file_name};
 1537:     my $available = 0;
 1538:     if (ref($access_hash) eq 'HASH') {
 1539:         foreach my $key (keys(%{$access_hash})) {
 1540:             my ($num,$scope,$end,$start) =
 1541:                 ($key =~ /^([^:]+):([a-z]+)_(\d*)_?(\d*)$/);
 1542:             if ($scope eq 'public' || $scope eq 'guest') {
 1543:                 $available = 1;
 1544:                 last;
 1545:             }
 1546:         }
 1547:     }
 1548:     if ($available) {
 1549:         my $result =
 1550:             &Apache::lonnet::update_portfolio_table($uname,$udom,
 1551:             $file_name,'portfolio_metadata',$group,'update');
 1552:     }
 1553: }
 1554: 
 1555: 
 1556: 1;
 1557: __END__
 1558: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>