Annotation of loncom/interface/lonmeta.pm, revision 1.184

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

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