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

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

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