Diff for /loncom/interface/lonmeta.pm between versions 1.109 and 1.254

version 1.109, 2005/10/06 22:16:32 version 1.254, 2014/06/22 19:46:48
Line 39  use Apache::lonpublisher; Line 39  use Apache::lonpublisher;
 use Apache::lonlocal;  use Apache::lonlocal;
 use Apache::lonmysql;  use Apache::lonmysql;
 use Apache::lonmsg;  use Apache::lonmsg;
   use LONCAPA qw(:DEFAULT :match);
   
   
 ############################################################  
 ############################################################  
 ##  
 ## &get_dynamic_metadata_from_sql($url)  
 ##   
 ## Queries sql database for dynamic metdata  
 ## Returns a hash of hashes, with keys of urls which match $url  
 ## Returned fields are given below.  
 ##  
 ## Examples:  
 ##   
 ## %DynamicMetadata = &Apache::lonmeta::get_dynmaic_metadata_from_sql  
 ##     ('/res/msu/korte/');  
 ##  
 ## $DynamicMetadata{'/res/msu/korte/example.problem'}->{$field}  
 ##  
 ############################################################  
 ############################################################  
 sub get_dynamic_metadata_from_sql {  sub get_dynamic_metadata_from_sql {
     my ($url) = shift();      my ($url) = shift();
     my ($authordom,$author)=($url=~m:^/res/(\w+)/(\w+)/:);      my ($authordom,$author)=($url=~m{^/res/($match_domain)/($match_username)/});
     if (! defined($authordom)) {      if (! defined($authordom)) {
         $authordom = shift();          $authordom = shift();
     }      }
Line 71  sub get_dynamic_metadata_from_sql { Line 54  sub get_dynamic_metadata_from_sql {
     if (! defined($authordom) || ! defined($author)) {      if (! defined($authordom) || ! defined($author)) {
         return ();          return ();
     }      }
     my @Fields = ('url','count','course',      my $query = 'SELECT * FROM metadata WHERE url LIKE "'.$url.'%"';
                   'goto','goto_list',  
                   'comefrom','comefrom_list',  
                   'sequsage','sequsage_list',  
                   'stdno','stdno_list',  
   'dependencies',  
                   'avetries','avetries_list',  
                   'difficulty','difficulty_list',  
                   'disc','disc_list',  
                   'clear','technical','correct',  
                   'helpful','depth');  
     #  
     my $query = 'SELECT '.join(',',@Fields).  
         ' FROM metadata WHERE url LIKE "'.$url.'%"';  
     my $server = &Apache::lonnet::homeserver($author,$authordom);      my $server = &Apache::lonnet::homeserver($author,$authordom);
     my $reply = &Apache::lonnet::metadata_query($query,undef,undef,      my $reply = &Apache::lonnet::metadata_query($query,undef,undef,
                                                 ,[$server]);                                                  ,[$server]);
Line 106  sub get_dynamic_metadata_from_sql { Line 76  sub get_dynamic_metadata_from_sql {
         while (my $result = <$fh>) {          while (my $result = <$fh>) {
             chomp($result);              chomp($result);
             next if (! $result);              next if (! $result);
             my @Data =               my %hash=&LONCAPA::lonmetadata::metadata_col_to_hash('metadata',
                 map {    map { &unescape($_) } split(/\,/,$result));
                     &Apache::lonnet::unescape($_);               foreach my $key (keys(%hash)) {
                 } split(',',$result);                  $ReturnHash{$hash{'url'}}->{$key}=$hash{$key};
             my $url = $Data[0];  
             for (my $i=0;$i<=$#Fields;$i++) {  
                 $ReturnHash{$url}->{$Fields[$i]}=$Data[$i];  
             }              }
         }          }
         $finished = 1;          $finished = 1;
Line 126  sub get_dynamic_metadata_from_sql { Line 93  sub get_dynamic_metadata_from_sql {
 sub dynamicmeta {  sub dynamicmeta {
     my $url=&Apache::lonnet::declutter(shift);      my $url=&Apache::lonnet::declutter(shift);
     $url=~s/\.meta$//;      $url=~s/\.meta$//;
     my ($adomain,$aauthor)=($url=~/^(\w+)\/(\w+)\//);      my ($adomain,$aauthor)=($url=~/^($match_domain)\/($match_username)\//);
     my $regexp=$url;      my $regexp=$url;
     $regexp=~s/(\W)/\\$1/g;      $regexp=~s/(\W)/\\$1/g;
     $regexp='___'.$regexp.'___';      $regexp='___'.$regexp.'___';
Line 185  sub authordisplay { Line 152  sub authordisplay {
     my ($aname,$adom)=@_;      my ($aname,$adom)=@_;
     return &Apache::loncommon::aboutmewrapper      return &Apache::loncommon::aboutmewrapper
         (&Apache::loncommon::plainname($aname,$adom),          (&Apache::loncommon::plainname($aname,$adom),
          $aname,$adom,'preview').' <tt>['.$aname.'@'.$adom.']</tt>';           $aname,$adom,'preview').' <tt>['.$aname.':'.$adom.']</tt>';
 }  }
   
 # Pretty display  # Pretty display
Line 197  sub evalgraph { Line 164  sub evalgraph {
     my $val=int($value*10.+0.5)-10;      my $val=int($value*10.+0.5)-10;
     my $output='<table border="0" cellpadding="0" cellspacing="0"><tr>';      my $output='<table border="0" cellpadding="0" cellspacing="0"><tr>';
     if ($val>=20) {      if ($val>=20) {
  $output.='<td width="20" bgcolor="#555555">&nbsp&nbsp;</td>';   $output.='<td width="20" bgcolor="#555555">'.('&nbsp;' x2).'</td>';
     } else {      } else {
         $output.='<td width="'.($val).'" bgcolor="#555555">&nbsp;</td>'.          $output.='<td width="'.($val).'" bgcolor="#555555">&nbsp;</td>'.
                  '<td width="'.(20-$val).'" bgcolor="#FF3333">&nbsp;</td>';                   '<td width="'.(20-$val).'" bgcolor="#FF3333">&nbsp;</td>';
Line 207  sub evalgraph { Line 174  sub evalgraph {
  $output.='<td width="'.($val-20).'" bgcolor="#33FF33">&nbsp;</td>'.   $output.='<td width="'.($val-20).'" bgcolor="#33FF33">&nbsp;</td>'.
                  '<td width="'.(40-$val).'" bgcolor="#555555">&nbsp;</td>';                   '<td width="'.(40-$val).'" bgcolor="#555555">&nbsp;</td>';
     } else {      } else {
         $output.='<td width="20" bgcolor="#555555">&nbsp&nbsp;</td>';          $output.='<td width="20" bgcolor="#555555">'.('&nbsp;' x2).'</td>';
     }      }
     $output.='<td> ('.sprintf("%5.2f",$value).') </td></tr></table>';      $output.='<td> ('.sprintf("%5.2f",$value).') </td></tr></table>';
     return $output;      return $output;
Line 243  sub fieldnames { Line 210  sub fieldnames {
          'authorspace' => 'Author Space',           'authorspace' => 'Author Space',
          'modifyinguser' => 'Last Modifying User',           'modifyinguser' => 'Last Modifying User',
          'subject' => 'Subject',           'subject' => 'Subject',
            'standards' => 'Standards',
          'keywords' => 'Keyword(s)',           'keywords' => 'Keyword(s)',
          'notes' => 'Notes',           'notes' => 'Notes',
          'abstract' => 'Abstract',           'abstract' => 'Abstract',
          'lowestgradelevel' => 'Lowest Grade Level',           'lowestgradelevel' => 'Lowest Grade Level',
          'highestgradelevel' => 'Highest Grade Level');           'highestgradelevel' => 'Highest Grade Level');
     if (! defined($file_type) || $file_type ne 'portfolio') {      
       if ( !defined($file_type) || ($file_type ne 'portfolio' && $file_type ne 'groups') ) {
         %fields =           %fields = 
         (%fields,          (%fields,
          'domain' => 'Domain',           'domain' => 'Domain',
          'standards' => 'Standards',  
          'mime' => 'MIME Type',           'mime' => 'MIME Type',
          'language' => 'Language',           'language' => 'Language',
          'creationdate' => 'Creation Date',           'creationdate' => 'Creation Date',
Line 279  sub fieldnames { Line 247  sub fieldnames {
          'correct'    => 'Material appears to be correct',           'correct'    => 'Material appears to be correct',
          'technical'  => 'Resource is technically correct',            'technical'  => 'Resource is technically correct', 
          'avetries'   => 'Average number of tries till solved',           'avetries'   => 'Average number of tries till solved',
          'stdno'      => 'Total number of students who have worked on this problem',           'stdno'      => 'Statistics calculated for number of students',
          'difficulty' => 'Degree of difficulty',           'difficulty' => 'Degree of difficulty',
          'disc'       => 'Degree of discrimination',           'disc'       => 'Degree of discrimination',
  'dependencies' => 'Resources used by this resource',       'dependencies' => 'Resources used by this resource',
          );           );
     }      }
     return &Apache::lonlocal::texthash(%fields);      return &Apache::lonlocal::texthash(%fields);
 }  }
   
   sub portfolio_linked_path {
       my ($path,$group,$port_path) = @_;
   
       my $start = 'portfolio';
       if ($group) {
    $start = "groups/$group/".$start;
       }
       my %anchor_fields = (
           'selectfile'  => $start,
           'currentpath' => '/'
       );
       my $result = &Apache::portfolio::make_anchor($port_path,\%anchor_fields,$start);
       my $fullpath = '/';
       my (undef,@tree) = split('/',$path);
       my $filename = pop(@tree);
       foreach my $dir (@tree) {
    $fullpath .= $dir.'/';
    $result .= '/';
    my %anchor_fields = (
               'selectfile'  => $dir,
               'currentpath' => $fullpath
           );
    $result .= &Apache::portfolio::make_anchor($port_path,\%anchor_fields,$dir);
       }
       $result .= "/$filename";
       return $result;
   }
   
   sub get_port_path_and_group {
       my ($uri)=@_;
   
       my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
       my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
   
       my ($port_path,$group);
       if ($uri =~ m{^/editupload/\Q$cdom\E/\Q$cnum\E/groups/}) {
    $group = (split('/',$uri))[5];
    $port_path = '/adm/coursegrp_portfolio';
       } else {
    $port_path = '/adm/portfolio';
       }
       if ($env{'form.group'} ne $group) {
    $env{'form.group'} = $group;
       }
       return ($port_path,$group);
   }
   
   sub portfolio_display_uri {
       my ($uri,$as_links)=@_;
   
       my ($port_path,$group) = &get_port_path_and_group($uri);
   
       $uri =~ s|.*/(portfolio/.*)$|$1|;
       my ($res_uri,$meta_uri) = ($uri,$uri);
       if ($uri =~ /\.meta$/) {
    $res_uri =~ s/\.meta//;
       } else {
    $meta_uri .= '.meta';
       }
   
       my ($path) = ($res_uri =~ m|^portfolio(.*/)[^/]*$|);
       if ($as_links) {
    $res_uri = &portfolio_linked_path($res_uri,$group,$port_path);
    $meta_uri = &portfolio_linked_path($meta_uri,$group,$port_path);
       }
       return ($res_uri,$meta_uri,$path);
   }
   
   sub pre_select_course {
       my ($r,$uri) = @_;
       my $output;
       my $fn=&Apache::lonnet::filelocation('',$uri);
       my ($res_uri,$meta_uri,$path) = &portfolio_display_uri($uri);
       %Apache::lonpublisher::metadatafields=();
       %Apache::lonpublisher::metadatakeys=();
       my $result=&Apache::lonnet::getfile($fn);
       if ($result == -1){
           $r->print(&mt('Creating new file [_1]'),$meta_uri);
       } else {
           &Apache::lonpublisher::metaeval($result);
       }
       $r->print('<hr /><form method="post" action="" >');
       $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>');
       $output = &select_course();
       $r->print($output.'<br /><input type="submit" name="store" value="'.
                     &mt('Associate Resource With Selected Course').'" />');
       $r->print('<input type="hidden" name="currentpath" value="'.$env{'form.currentpath'}.'" />');
       $r->print('<input type="hidden" name="associate" value="true" />');
       $r->print('</form>');
       
       my ($port_path,$group) = &get_port_path_and_group($uri);
       my $group_input;
       if ($group) {
           $group_input = '<input type="hidden" name="group" value="'.$group.'" />';
       } 
       $r->print(' <form method="post" action="'.$port_path.'">'.
                 '<input type="hidden" name="currentpath" value="'.$path.'" />'.
         $group_input.
         '<input type="submit" name="cancel" value="'.&mt('Cancel').'" />'.
         '</form>');
   
       return;
   }
 sub select_course {  sub select_course {
     my ($r)=@_;      my $output=$/;
     $r->print('<h3>Instructor Selected Meta-Data</h3><br />');      my $current_restriction=
     $r->print('<form action="" method="post">');   $Apache::lonpublisher::metadatafields{'courserestricted'};
     $r->print('Select your course<br />');      my $selected = ($current_restriction eq 'none' ? 'selected="selected"' 
     $r->print('<select name="metacourse" >');                                     : '');
     my $meta_not_found = 1;      if ($current_restriction =~ /^course\.($match_domain\_$match_courseid)$/) {
     foreach my $key (keys %env) {                  my $assoc_crs = $1;
         if ($key =~ /\.metadata\./) {          my $added_metadata_fields = &Apache::lonparmset::get_added_meta_fieldnames($assoc_crs);
             if ($meta_not_found) {          if (ref($added_metadata_fields) eq 'HASH') {
                 undef($meta_not_found);              if (keys(%{$added_metadata_fields}) > 0) {
                 $r->print('<h3>Instructor Selected Meta-Data</h3><br />');                  my $transfernotes;
                 $r->print('<form action="" method="post">');                  foreach my $field_name (keys(%{$added_metadata_fields})) {
                 $r->print('Select your course<br />');                      my $value = $Apache::lonpublisher::metadatafields{$field_name};
                 $r->print('<select name="metacourse" >');                      if ($value) {
             }                          $transfernotes .= 
             my $course_key = $key;                              &Apache::loncommon::start_data_table_row(). 
             $course_key =~ s/\.metadata\..*//;                              '<td><input type="checkbox" name="transfer_'.
             $r->print('<option value="'.$course_key.'">');                              $field_name.'" value="1" /></td><td>'.
             $r->print($env{$course_key.'.description'});                              $field_name.'</td><td>'.$value.'</td>'.
             $r->print('</option>');                              &Apache::loncommon::end_data_table_row();
         }                      }
     }                  }
     unless ($meta_not_found) {                  if ($transfernotes ne '') {
         $r->print('</select><br />');                      my %courseinfo = &Apache::lonnet::coursedescription($assoc_crs,{'one_time' => 1});
         $r->print('<input type="submit" value="Assign Instructor Metadata" />');                      my $assoc_crs_description = $courseinfo{'description'};
         $r->print('</form>');                      $output .= &mt('This resource is currently associated with a course ([_1]) which includes added metadata fields specific to the course.',$assoc_crs_description).'<br />'."\n".
                       &mt('You can choose to transfer data from the added fields to the "Notes" field if you are planning to change the course association.').'<br /><br />'.
                       &Apache::loncommon::start_data_table().
                       &Apache::loncommon::start_data_table_header_row().
                       '<th>'.&mt('Copy to notes?').'</th>'."\n".
                       '<th>'.&mt('Field Name').'</th>'."\n".
                       '<th>'.&mt('Values').'</th>'."\n".
                       &Apache::loncommon::end_data_table_header_row().
                       $transfernotes.
                       &Apache::loncommon::end_data_table().'<br />';
                   }
               }
           }
       }
       $output .= '<select name="new_courserestricted" >';
       $output .= '<option value="none" '.$selected.'>'.
    &mt('None').'</option>'.$/;
       my %courses;
       foreach my $key (keys(%env)) {
           if ($key !~ m/^course\.(.+)\.description$/) { next; }
    my $cid = $1;
           if ($env{$key} !~ /\S/) { next; }
    $courses{$key} = $cid;
       }
       foreach my $key (sort { lc($env{$a}) cmp lc($env{$b}) } (keys(%courses))) {
    my $cid = 'course.'.$courses{$key};
    my $selected = ($current_restriction eq $cid ? 'selected="selected"' 
                                        : '');
           if ($env{$key} !~ /\S/) { next; }
    $output .= '<option value="'.$cid.'" '.$selected.'>';
    $output .= $env{$key};
    $output .= '</option>'.$/;
    $selected = '';
     }      }
     return 'ok';      $output .= '</select><br />';
       return ($output);
 }  }
 # Pretty printing of metadata field  # Pretty printing of metadata field
   
 sub prettyprint {  sub prettyprint {
     my ($type,$value,$target,$prefix,$form,$noformat)=@_;      my ($type,$value,$target,$prefix,$form)=@_;
 # $target,$prefix,$form are optional and for filecrumbs only  # $target,$prefix,$form are optional and for filecrumbs only
     if (! defined($value)) {       if (! defined($value)) { 
         return '&nbsp;';           return '&nbsp;'; 
     }      }
     # Title      # Title
     if ($type eq 'title') {      if ($type eq 'title') {
  return '<font size="+1" face="arial">'.$value.'</font>';   return $value;
     }      }
     # Dates      # Dates
     if (($type eq 'creationdate') ||      if (($type eq 'creationdate') ||
Line 351  sub prettyprint { Line 455  sub prettyprint {
     }      }
     # MIME      # MIME
     if ($type eq 'mime') {      if ($type eq 'mime') {
         return '<img src="'.&Apache::loncommon::icon($value).'" />&nbsp;'.          return '<img src="'.&Apache::loncommon::icon($value).'" alt="" />&nbsp;'.
             &Apache::loncommon::filedescription($value);              &Apache::loncommon::filedescription($value);
     }      }
     # Person      # Person
Line 359  sub prettyprint { Line 463  sub prettyprint {
  ($type eq 'owner') ||   ($type eq 'owner') ||
  ($type eq 'modifyinguser') ||   ($type eq 'modifyinguser') ||
  ($type eq 'authorspace')) {   ($type eq 'authorspace')) {
  $value=~s/(\w+)(\:|\@)(\w+)/&authordisplay($1,$3)/gse;   $value=~s/($match_username)(\:|\@)($match_domain)/&authordisplay($1,$3)/gse;
  return $value;   return $value;
     }      }
     # Gradelevel      # Gradelevel
Line 378  sub prettyprint { Line 482  sub prettyprint {
  ($type eq 'comefrom_list') ||   ($type eq 'comefrom_list') ||
  ($type eq 'sequsage_list') ||   ($type eq 'sequsage_list') ||
  ($type eq 'dependencies')) {   ($type eq 'dependencies')) {
  return '<ul><font size="-1">'.join("\n",map {   return '<ul class="LC_fontsize_medium">'.join("\n",map {
             my $url = &Apache::lonnet::clutter($_);              my $url = &Apache::lonnet::clutter_with_no_wrapper($_);
             my $title = &Apache::lonnet::gettitle($url);              my $title = &Apache::lonnet::gettitle($url);
             if ($title eq '') {              if ($title eq '') {
                 $title = 'Untitled';                  $title = 'Untitled';
Line 396  sub prettyprint { Line 500  sub prettyprint {
                 }                   } 
             }              }
             $_ = '<li>'.$title.' '.              $_ = '<li>'.$title.' '.
  &Apache::lonhtmlcommon::crumbs($url,$target,$prefix,$form,'-1',$noformat).                   &Apache::lonhtmlcommon::crumbs($url,$target,$prefix,$form).
                 '</li>'                   '</li>'
     } split(/\s*\,\s*/,$value)).'</ul></font>';      } split(/\s*\,\s*/,$value)).'</ul>';
     }      }
     # Evaluations      # Evaluations
     if (($type eq 'clear') ||      if (($type eq 'clear') ||
Line 415  sub prettyprint { Line 519  sub prettyprint {
     # List of courses      # List of courses
     if ($type=~/\_list/) {      if ($type=~/\_list/) {
         my @Courses = split(/\s*\,\s*/,$value);          my @Courses = split(/\s*\,\s*/,$value);
         my $Str;          my $Str='<ul class="LC_fontsize_medium">';
    my %descriptions;
         foreach my $course (@Courses) {          foreach my $course (@Courses) {
             my %courseinfo = &Apache::lonnet::coursedescription($course);              my %courseinfo =
    &Apache::lonnet::coursedescription($course,
      {'one_time' => 1});
             if (! exists($courseinfo{'num'}) || $courseinfo{'num'} eq '') {              if (! exists($courseinfo{'num'}) || $courseinfo{'num'} eq '') {
                 next;                  next;
             }              }
             if ($Str ne '') { $Str .= '<br />'; }      $descriptions{join('\0',@courseinfo{'domain','description'})} .= 
             $Str .= '<a href="/public/'.$courseinfo{'domain'}.'/'.   '<li><a href="/public/'.$courseinfo{'domain'}.'/'.
                 $courseinfo{'num'}.'/syllabus" target="preview">'.                  $courseinfo{'num'}.'/syllabus" target="preview">'.
                 $courseinfo{'description'}.'</a>';                  $courseinfo{'description'}.' ('.$courseinfo{'domain'}.
    ')</a></li>';
         }          }
  return $Str;   foreach my $course (sort {lc($a) cmp lc($b)} (keys(%descriptions))) {
       $Str .= $descriptions{$course};
    }
   
    return $Str.'</ul>';
     }      }
     # No pretty print found      # No pretty print found
     return $value;      return $value;
Line 443  sub selectbox { Line 555  sub selectbox {
         $functionref=\&direct;          $functionref=\&direct;
     }      }
     my $selout='<select name="'.$name.'">';      my $selout='<select name="'.$name.'">';
     foreach (@idlist) {      foreach my $id (@idlist) {
         $selout.='<option value=\''.$_.'\'';          $selout.='<option value="'.$id.'"';
         if ($_ eq $value) {          if ($id eq $value) {
     $selout.=' selected>'.&{$functionref}($_).'</option>';      $selout.=' selected="selected">'.&{$functionref}($id).'</option>';
  }          } else {
         else {$selout.='>'.&{$functionref}($_).'</option>';}              $selout.='>'.&{$functionref}($id).'</option>';
           }
     }      }
     return $selout.'</select>';      return $selout.'</select>';
 }  }
Line 465  sub relatedfield { Line 578  sub relatedfield {
         return $relatedsep.'&nbsp;';          return $relatedsep.'&nbsp;';
     }      }
     return $relatedsep.'<input type="checkbox" name="'.$fieldname.'_related"'.      return $relatedsep.'<input type="checkbox" name="'.$fieldname.'_related"'.
  ($relatedvalue?' checked="1"':'').' />';   ($relatedvalue?' checked="checked"':'').' />';
 }  }
   
 sub prettyinput {  sub prettyinput {
     my ($type,$value,$fieldname,$formname,      my ($type,$value,$fieldname,$formname,
  $relatedsearchflag,$relatedsep,$relatedvalue,$size)=@_;   $relatedsearchflag,$relatedsep,$relatedvalue,$size,$course_key)=@_;
     if (! defined($size)) {      if (! defined($size)) {
         $size = 80;          $size = 80;
     }      }
       my $output;
       if (defined($course_key) 
    && exists($env{$course_key.'.metadata.'.$type.'.options'})) {
           my $stu_add;
           my $only_one;
           my %meta_options;
           my @cur_values_inst;
           my $cur_values_stu;
           my $values = $env{$course_key.'.metadata.'.$type.'.values'};
           if ($env{$course_key.'.metadata.'.$type.'.options'} =~ m/stuadd/) {
               $stu_add = 'true';
           }
           if ($env{$course_key.'.metadata.'.$type.'.options'} =~ m/onlyone/) {
               $only_one = 'true';
           }
           # need to take instructor values out of list where instructor and student
           # values may be mixed.
           if ($values) {
               foreach my $item (split(/,/,$values)) {
                   $item =~ s/^\s+//;
                   $meta_options{$item} = $item;
               }
               foreach my $item (split(/,/,$value)) {
                   $item =~ s/^\s+//;
                   if ($meta_options{$item}) {
                       push(@cur_values_inst,$item);
                   } else {
                       if ($item ne '') {
                           $cur_values_stu .= $item.',';
                       }
                   }
               }
                $cur_values_stu =~ s/,$//;
               my @key_order = sort(keys(%meta_options));
               unshift(@key_order,'');
               $meta_options{''} = 'Not specified';
               $meta_options{'select_form_order'} = \@key_order;
           } else {
               $cur_values_stu = $value;
           }
           if ($type eq 'courserestricted') {
               return (&select_course());
               # return ('<input type="hidden" name="new_courserestricted" value="'.$course_key.'" />');
           }
           if (($type eq 'keywords') || ($type eq 'subject')
                || ($type eq 'author')||($type eq  'notes')
                || ($type eq  'abstract')|| ($type eq  'title')|| ($type eq  'standards')
                || (exists($env{$course_key.'.metadata.'.$type.'.added'}))) {
               
               if ($values) {
                   if ($only_one) {
                       $output .= (&Apache::loncommon::select_form($cur_values_inst[0],'new_'.$type,\%meta_options));
                   } else {
                       $output .= (&Apache::loncommon::multiple_select_form('new_'.$type,\@cur_values_inst,undef,\%meta_options));
                   }
               }
               if ($stu_add) {
                   $output .= '<input type="text" name="'.$fieldname.'" size="'.$size.'" '.
                   'value="'.$cur_values_stu.'" />'.
                   &relatedfield(1,$relatedsearchflag,$relatedsep,$fieldname,
                         $relatedvalue); 
               }
               return ($output);
           } 
           if (($type eq 'lowestgradelevel') ||
       ($type eq 'highestgradelevel')) {
       return &Apache::loncommon::select_level_form($value,$fieldname).
               &relatedfield(0,$relatedsearchflag,$relatedsep); 
           }
           return(); 
       }
     # Language      # Language
     if ($type eq 'language') {      if ($type eq 'language') {
  return &selectbox($fieldname,   return &selectbox($fieldname,
Line 507  sub prettyinput { Line 691  sub prettyinput {
     # Obsolete      # Obsolete
     if ($type eq 'obsolete') {      if ($type eq 'obsolete') {
  return '<input type="checkbox" name="'.$fieldname.'"'.   return '<input type="checkbox" name="'.$fieldname.'"'.
     ($value?' checked="1"':'').' />'.      ($value?' checked="checked"':'').' />'.
             &relatedfield(0,$relatedsearchflag,$relatedsep);               &relatedfield(0,$relatedsearchflag,$relatedsep); 
     }      }
     # Obsolete replacement file      # Obsolete replacement file
Line 534  sub prettyinput { Line 718  sub prettyinput {
     ",'rights')\">".&mt('Select').'</a>'.      ",'rights')\">".&mt('Select').'</a>'.
             &relatedfield(0,$relatedsearchflag,$relatedsep);               &relatedfield(0,$relatedsearchflag,$relatedsep); 
     }      }
       if ($type eq 'courserestricted') {
           return (&select_course());
           #return ('<input type="hidden" name="new_courserestricted" value="'.$course_key.'" />');
       }
   
     # Dates      # Dates
     if (($type eq 'creationdate') ||      if (($type eq 'creationdate') ||
  ($type eq 'lastrevisiondate')) {   ($type eq 'lastrevisiondate')) {
Line 553  sub prettyinput { Line 742  sub prettyinput {
                       $relatedvalue);                         $relatedvalue); 
 }  }
   
   # Create pageheader
   sub pageheader {
       my $output = '';
       # No CSTR? Include breadcrumbs
       if ($env{'request.state'} ne 'construct') {
           # loncommon::bodytag already includes breadcrumbs for CSTR
           # by calling lonmenu::innerregister
           $output = &Apache::lonhtmlcommon::breadcrumbs();
       }
       # CSTR? Include CSTR header
       if ($env{'request.state'} eq 'construct') {
             $output .= &Apache::loncommon::head_subbox(
                            &Apache::loncommon::CSTR_pageheader());
       }
       return $output;
   }
   
 # Main Handler  # Main Handler
 sub handler {  sub handler {
     my $r=shift;      my $r=shift;
     #      &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
            ['currentpath','changecourse','modal']);
     my $uri=$r->uri;      my $uri=$r->uri;
     #      #
     # Set document type      # Set document type
     &Apache::loncommon::content_type($r,'text/html');      &Apache::loncommon::content_type($r,'text/html');
     $r->send_http_header;      $r->send_http_header;
     return OK if $r->header_only;      return OK if $r->header_only;
     #  
     my ($resdomain,$resuser)=      my ($resdomain,$resuser)=
         (&Apache::lonnet::declutter($uri)=~/^(\w+)\/(\w+)\//);          (&Apache::lonnet::declutter($uri)=~/^($match_domain)\/($match_username)\//);
     my $html=&Apache::lonxml::xmlbegin();  
     $r->print($html.'<head><title>'.      # Breadcrumbs
               'Catalog Information'.      &Apache::lonhtmlcommon::clear_breadcrumbs();
               '</title></head>');  
       if ($env{'request.state'} eq 'construct') {
           &Apache::lonhtmlcommon::add_breadcrumb({
               'text'  => 'Authoring Space',
               'href'  => &Apache::loncommon::authorspace($uri),
           });
       }
   
     if ($uri=~m:/adm/bombs/(.*)$:) {      if ($uri=~m:/adm/bombs/(.*)$:) {
         $r->print(&Apache::loncommon::bodytag('Error Messages'));          &Apache::lonhtmlcommon::add_breadcrumb({
               'text'  => 'Error Messages',
               'href'  => '',
           });
           $r->print(&Apache::loncommon::start_page('Error Messages'));
           $r->print(&pageheader());
         # Looking for all bombs?          # Looking for all bombs?
         &report_bombs($r,$uri);          &report_bombs($r,$uri);
     } elsif ($uri=~/\/portfolio\//) {      } elsif ($uri=~m|^/editupload/[^/]+/[^/]+/portfolio/|) {
  ($resdomain,$resuser)=          &Apache::lonhtmlcommon::add_breadcrumb({
     (&Apache::lonnet::declutter($uri)=~m|^(\w+)/(\w+)/portfolio|);              'text'  => 'Edit Portfolio File Metadata',
         $r->print(&Apache::loncommon::bodytag              'href'  => '',
           ('Edit Portfolio File Information','','','',$resdomain));          });
         &present_editable_metadata($r,$uri,'portfolio');      ($resdomain,$resuser)=
         &select_course($r);   (&Apache::lonnet::declutter($uri)=~m|^($match_domain)/($match_name)/portfolio|);
     } elsif ($uri=~/^\/\~/) {           $r->print(&Apache::loncommon::start_page('Edit Portfolio File Metadata',
         # Construction space   undef,
         $r->print(&Apache::loncommon::bodytag   {'domain' => $resdomain,}));
                   ('Edit Catalog Information','','','',$resdomain));          $r->print(&pageheader());
           if ($env{'form.store'}) {
               &present_editable_metadata($r,$uri,'portfolio');
           } else {
               my $fn=&Apache::lonnet::filelocation('',$uri);
               %Apache::lonpublisher::metadatafields=();
               %Apache::lonpublisher::metadatakeys=();
               my $result=&Apache::lonnet::getfile($fn);
               &Apache::lonpublisher::metaeval($result);
               if ((!$Apache::lonpublisher::metadatafields{'courserestricted'}) ||
                   ($env{'form.changecourse'} eq 'true')) {
                   &pre_select_course($r,$uri);
               } else {
                   &present_editable_metadata($r,$uri,'portfolio');
               }
           }
       } elsif ($uri=~m|^/editupload/[^/]+/[^/]+/groups/|) {
           &Apache::lonhtmlcommon::add_breadcrumb({
               'text'  => 'Edit Group Portfolio File Metadata',
               'href'  => '',
           });
           $r->print(&Apache::loncommon::start_page('Edit Group Portfolio File Metadata',
    undef,
    {'domain' => $resdomain,}));
           $r->print(&pageheader());
           &present_editable_metadata($r,$uri,'groups');    
       } elsif ($uri=~m|^/priv|) { 
           # Authoring space
           &Apache::lonhtmlcommon::add_breadcrumb({
               'text'  => 'Edit Metadata',
               'href'  => '',
           });
           $r->print(&Apache::loncommon::start_page('Edit Metadata',
    "\n".'<script type="text/javascript">'."\n".
                                                   &Apache::loncommon::browser_and_searcher_javascript().
                                                   "\n".'</script>',
    {'domain' => $resdomain,}));
           $r->print(&pageheader());
         &present_editable_metadata($r,$uri);          &present_editable_metadata($r,$uri);
     } else {      } else {
         $r->print(&Apache::loncommon::bodytag          &Apache::lonhtmlcommon::add_breadcrumb({
   ('Catalog Information','','','',$resdomain));              'text'  => 'Metadata',
               'href'  => '',
           });
           $r->print(
               &Apache::loncommon::start_page(
                   'Metadata',
                   undef,
                   {'domain' => $resdomain,
                   'only_body' => 1,})
              .'<h1>'.&mt('Metadata').'</h1>'
           );
           if ($env{'form.modal'}) {
               my $width = 500;
               my $height = 400;
               my $machine = &Apache::lonnet::absolute_url();
               $r->print(&Apache::loncommon::nicescroll_javascript('metadatawrapper',
                                                                   {cursorcolor => '#00F',
                                                                    railalign => 'right',
                                                                    railoffset => '{top:5,left:40}'},
                                                                    undef,1,$machine.$uri));
               $r->print('<div id="metadatawrapper" style="height:'.$height.'px; width:'.$width.'px; overflow: auto;">');
           }
         &present_uneditable_metadata($r,$uri);          &present_uneditable_metadata($r,$uri);
           if ($env{'form.modal'}) {
               $r->print('</div>');
           }
     }      }
     $r->print('</body></html>');      $r->print(&Apache::loncommon::end_page());
     return OK;      return OK;
 }  }
   
Line 607  sub report_bombs { Line 886  sub report_bombs {
     # Set document type      # Set document type
     $uri =~ s:/adm/bombs/::;      $uri =~ s:/adm/bombs/::;
     $uri = &Apache::lonnet::declutter($uri);      $uri = &Apache::lonnet::declutter($uri);
     $r->print('<h1>'.&Apache::lonnet::clutter($uri).'</h1>');      $r->print(
     my ($domain,$author)=($uri=~/^(\w+)\/(\w+)\//);          '<p>'.&mt('Folder: [_1]',
     if (&Apache::loncacc::constructaccess('/~'.$author.'/',$domain)) {                    '<span class="LC_filename">'.&Apache::lonnet::clutter($uri).'</span>')
  if ($env{'form.clearbombs'}) {         .'</p>'
     &Apache::lonmsg::clear_author_res_msg($uri);      );
  }      my ($domain,$author)=($uri=~/^($match_domain)\/($match_username)\//);
         my $clear=&mt('Clear all Messages in Subdirectory');      if (!&Apache::lonnet::constructaccess('/priv/'.$domain.'/'.$author.'/')) {
  $r->print(<<ENDCLEAR);          $r->print('<p class="LC_error">'.&mt('Not authorized').'</p>');
 <form method="post">          return;
 <input type="submit" name="clearbombs" value="$clear" />      }
 </form>  
 ENDCLEAR      my $showbuttons=1;
       my $message='';
       if ($env{'form.clearbombs'}) {
           my $rc=&Apache::lonmsg::clear_author_res_msg($uri);
           if ($rc eq 'ok') {
                   $message=&Apache::lonhtmlcommon::confirm_success(
                       &mt('Messages cleared.'));
                   $showbuttons=0;
           } else {
                   $message=&Apache::lonhtmlcommon::confirm_success(
                                &mt('Error clearing messages'),1)
                           .'<br />'.&mt('Error: [_1]',$rc);
           }
       }
   
       if ($message) {    
           $message=&Apache::loncommon::confirmwrapper($message);
           $r->print($message);
       }
   
       my $cancelurl=$uri;
       $cancelurl=~s/^\Q$domain\E/\/priv\/$domain/;
   
       if ($showbuttons) {
           $r->print(
               '<form method="post" action="">'.
               '<input type="submit" name="clearbombs" value="'.
                   &mt('Clear all Messages in Subdirectory').'" />'.
               ' <a href="'.$cancelurl.'">'.
                   &mt('Back to Source Directory').'</a>'.
               '</form><hr />'
           );
           # Display all bombs of subdirectory
         my %brokenurls =           my %brokenurls = 
             &Apache::lonmsg::all_url_author_res_msg($author,$domain);              &Apache::lonmsg::all_url_author_res_msg($author,$domain);
         foreach (sort(keys(%brokenurls))) {          foreach my $key (sort(keys(%brokenurls))) {
             if ($_=~/^\Q$uri\E/) {              if ($key=~/^\Q$uri\E/) {
                 $r->print                  $r->print
                     ('<a href="'.&Apache::lonnet::clutter($_).'">'.$_.'</a>'.                      ('<a href="'.&Apache::lonnet::clutter($key).'">'.$key.'</a>'.
                      &Apache::lonmsg::retrieve_author_res_msg($_).                       &Apache::lonmsg::retrieve_author_res_msg($key).
                      '<hr />');                       '<hr />');
             }              }
         }          }
     } else {      } else {
         $r->print(&mt('Not authorized'));              my $functions=&Apache::lonhtmlcommon::start_funclist('Actions');
               $functions.=&Apache::lonhtmlcommon::add_item_funclist(
                               '<a href="'.$cancelurl.'">'.
                               &mt('Back to Source Directory').'</a>');
               $functions .= &Apache::lonhtmlcommon::end_funclist();
               $r->print('<p>'.$functions.'</p>');
     }      }
     return;      return;
 }  }
Line 645  ENDCLEAR Line 961  ENDCLEAR
 sub present_uneditable_metadata {  sub present_uneditable_metadata {
     my ($r,$uri) = @_;      my ($r,$uri) = @_;
     #      #
       my $uploaded = ($uri =~ m|/uploaded/|);
     my %content=();      my %content=();
     # Read file      # Read file
     foreach (split(/\,/,&Apache::lonnet::metadata($uri,'keys'))) {      foreach my $key (split(/\,/,&Apache::lonnet::metadata($uri,'keys'))) {
         $content{$_}=&Apache::lonnet::metadata($uri,$_);          $content{$key}=&Apache::lonnet::metadata($uri,$key);
     }      }
     # Render Output      # Render Output
     # displayed url      # displayed url
     my ($thisversion)=($uri=~/\.(\d+)\.(\w+)\.meta$/);      my ($thisversion)=($uri=~/\.(\d+)\.(\w+)\.meta$/);
     $uri=~s/\.meta$//;      $uri=~s/\.meta$//;
     my $disuri=&Apache::lonnet::clutter($uri);      my $disuri=&Apache::lonnet::clutter_with_no_wrapper($uri);
     # version      # version
     my $currentversion=&Apache::lonnet::getversion($disuri);  
     my $versiondisplay='';      my $versiondisplay='';
     if ($thisversion) {      if (!$uploaded) {
         $versiondisplay=&mt('Version').': '.$thisversion.   my $currentversion=&Apache::lonnet::getversion($disuri);
             ' ('.&mt('most recent version').': '.   if ($thisversion) {
             ($currentversion>0 ?       $versiondisplay=&mt('Version').': '.$thisversion.
              $currentversion   :   ' ('.&mt('most recent version').': '.
              &mt('information not available')).')';   ($currentversion>0 ? 
     } else {   $currentversion   :
         $versiondisplay='Version: '.$currentversion;   &mt('information not available')).')';
    } else {
       $versiondisplay=&mt('Version: [_1]',$currentversion);
    }
     }      }
     # crumbify displayed URL               uri     target prefix form  size      # crumbify displayed URL               uri     target prefix form 
     $disuri=&Apache::lonhtmlcommon::crumbs($disuri,undef, undef, undef,'+1');      $disuri=&Apache::lonhtmlcommon::crumbs($disuri,undef, undef, undef);
     $disuri =~ s:<br />::g;  
     # obsolete      # obsolete
     my $obsolete=$content{'obsolete'};      my $obsolete=$content{'obsolete'};
     my $obsoletewarning='';      my $obsoletewarning='';
     if (($obsolete) && ($env{'user.adv'})) {      if (($obsolete) && ($env{'user.adv'})) {
         $obsoletewarning='<p><font color="red">'.          $obsoletewarning='<p><span class="LC_warning">'.
             &mt('This resource has been marked obsolete by the author(s)').              &mt('This resource has been marked obsolete by the author(s)').
             '</font></p>';              '</span></p>';
     }      }
     #      #
     my %lt=&fieldnames();      my %lt=&fieldnames();
     my $table='';      my $table='';
     my $title = $content{'title'};      my $title = $content{'title'};
     if (! defined($title)) {      if (! defined($title)) {
         $title = 'Untitled Resource';          $title = &mt('Untitled Resource');
     }      }
     foreach ('title',       my @fields;
              'author',       if ($uploaded) {
              'subject',    @fields = ('title','author','subject','keywords','notes','abstract',
              'keywords',      'lowestgradelevel','highestgradelevel','standards','mime',
              'notes',      'owner');
              'abstract',      } else {
              'lowestgradelevel',   @fields = ('title', 
              'highestgradelevel',     'author', 
              'standards',      'subject', 
              'mime',      'keywords', 
              'language',      'notes', 
              'creationdate',      'abstract',
              'lastrevisiondate',      'lowestgradelevel',
              'owner',      'highestgradelevel',
              'copyright',      'standards', 
              'customdistributionfile',     'mime', 
              'sourceavail',     'language', 
              'sourcerights',      'creationdate', 
              'obsolete',      'lastrevisiondate', 
              'obsoletereplacement') {     'owner', 
         $table.='<tr><td bgcolor="#AAAAAA">'.$lt{$_}.     'copyright', 
             '</td><td bgcolor="#CCCCCC">'.     'customdistributionfile',
             &prettyprint($_,$content{$_}).'</td></tr>';     'sourceavail',
         delete $content{$_};     'sourcerights', 
      'obsolete', 
      'obsoletereplacement');
       }
       my $rownum = 0;
       foreach my $field (@fields) {
           my $lastrow = '';
           $rownum ++;
           $lastrow = 1 if ($rownum == @fields); 
           $table.=&Apache::lonhtmlcommon::row_title($lt{$field})
                  .&prettyprint($field,$content{$field})
                  .&Apache::lonhtmlcommon::row_closure($lastrow);
           delete($content{$field});
     }      }
     #      #
     $r->print(<<ENDHEAD);      $r->print("<h2>$title</h2>"
 <h2>$title</h2>               .'<p>'
 <p>               .$disuri.'<br />'
 $disuri<br />               .$obsoletewarning
 $obsoletewarning               .$versiondisplay
 $versiondisplay               .'</p>'
 </p>               .&Apache::lonhtmlcommon::start_pick_box()
 <table cellspacing="2" border="0">               .$table
 $table               .&Apache::lonhtmlcommon::end_pick_box()
 </table>      );
 ENDHEAD      if (!$uploaded && $env{'user.adv'}) {
     if ($env{'user.adv'}) {  
         &print_dynamic_metadata($r,$uri,\%content);          &print_dynamic_metadata($r,$uri,\%content);
     }      }
     return;      return;
Line 742  sub print_dynamic_metadata { Line 1071  sub print_dynamic_metadata {
     my %dynmeta=&dynamicmeta($uri);      my %dynmeta=&dynamicmeta($uri);
     #      #
     # General Access and Usage Statistics      # General Access and Usage Statistics
       $r->print('<h4>'.&mt('Access and Usage Statistics').'</h4>');
     if (exists($dynmeta{'count'}) ||      if (exists($dynmeta{'count'}) ||
         exists($dynmeta{'sequsage'}) ||          exists($dynmeta{'sequsage'}) ||
         exists($dynmeta{'comefrom'}) ||          exists($dynmeta{'comefrom'}) ||
         exists($dynmeta{'goto'}) ||          exists($dynmeta{'goto'}) ||
         exists($dynmeta{'course'})) {          exists($dynmeta{'course'})) {
         $r->print('<h4>'.&mt('Access and Usage Statistics').'</h4>'.          $r->print(&Apache::lonhtmlcommon::start_pick_box());
                   '<table cellspacing="2" border="0">');          my @counts = ('count','sequsage','sequsage_list',
         foreach ('count',                        'comefrom','comefrom_list','goto',
                  'sequsage','sequsage_list',                        'goto_list','course','course_list');
                  'comefrom','comefrom_list',          my $rownum = 0;
                  'goto','goto_list',          foreach my $item (@counts) {
                  'course','course_list') {              my $lastrow = '';
             $r->print('<tr><td bgcolor="#AAAAAA">'.$lt{$_}.'</td>'.              $rownum ++;
                       '<td bgcolor="#CCCCCC">'.              $lastrow = 1 if ($rownum == @counts);
                       &prettyprint($_,$dynmeta{$_})."</td></tr>\n");              $r->print(&Apache::lonhtmlcommon::row_title($lt{$item})
                        .&prettyprint($item,$dynmeta{$item})
                        .&Apache::lonhtmlcommon::row_closure($lastrow)
               );
         }          }
         $r->print('</table>');          $r->print(&Apache::lonhtmlcommon::end_pick_box());
     } else {      } else {
         $r->print('<h4>'.&mt('No Access or Usages Statistics are available for this resource.').'</h4>');          $r->print('<p>'
                    .&mt('No Access or Usages Statistics are available for this resource.')
                    .'</p>'
           );
     }      }
     #      #
     # Assessment statistics      # Assessment statistics
     if ($uri=~/\.(problem|exam|quiz|assess|survey|form)$/) {      if ($uri=~/$LONCAPA::assess_re/) {
         if (exists($dynmeta{'stdno'}) ||          if (exists($dynmeta{'stdno'}) ||
             exists($dynmeta{'avetries'}) ||              exists($dynmeta{'avetries'}) ||
             exists($dynmeta{'difficulty'}) ||              exists($dynmeta{'difficulty'}) ||
Line 773  sub print_dynamic_metadata { Line 1109  sub print_dynamic_metadata {
             $r->print('<h4>'.              $r->print('<h4>'.
                       &mt('Overall Assessment Statistical Data').                        &mt('Overall Assessment Statistical Data').
                       '</h4>'.                        '</h4>'.
                       '<table cellspacing="2" border="0">');                        &Apache::lonhtmlcommon::start_pick_box());
             $r->print('<tr><td bgcolor="#AAAAAA">'.$lt{'stdno'}.'</td>'.              $r->print(&Apache::lonhtmlcommon::row_title($lt{'stdno'})
                       '<td bgcolor="#CCCCCC">'.                       .&prettyprint('stdno',$dynmeta{'stdno'})
                       &prettyprint('stdno',$dynmeta{'stdno'}).                       .&Apache::lonhtmlcommon::row_closure()
                       '</td>'."</tr>\n");              );
             foreach ('avetries','difficulty','disc') {              my @stats = ('avetries','difficulty','disc');
                 $r->print('<tr><td bgcolor="#AAAAAA">'.$lt{$_}.'</td>'.              my $rownum = 0;
                           '<td bgcolor="#CCCCCC">'.              foreach my $item (@stats) {
                           &prettyprint($_,sprintf('%5.2f',$dynmeta{$_})).                  my $lastrow = '';
                           '</td>'."</tr>\n");                  $rownum ++;
                   $lastrow = 1 if ($rownum == @stats);
                   $r->print(&Apache::lonhtmlcommon::row_title($lt{$item})
                            .&prettyprint($item,sprintf('%5.2f',$dynmeta{$item}))
                            .&Apache::lonhtmlcommon::row_closure($lastrow)
                   );
             }              }
             $r->print('</table>');                  $r->print(&Apache::lonhtmlcommon::end_pick_box());
         }          }
           #
           # New assessment statistics
           $r->print('<h4>'
                    .&mt('Recent Detailed Assessment Statistical Data')
                    .'</h4>'
           );
         if (exists($dynmeta{'stats'})) {          if (exists($dynmeta{'stats'})) {
             #              my $table=&Apache::loncommon::start_data_table()
             # New assessment statistics                       .&Apache::loncommon::start_data_table_header_row()
             $r->print('<h4>'.       .'<th>'.&mt('Domain').'</th>'
                       &mt('Detailed Assessment Statistical Data').                       .'<th>'.&mt('Course').'</th>'
                       '</h4>');                       .'<th>'.&mt('Section(s)').'</th>'
             my $table = '<table cellspacing="2" border="0">'.                       .'<th>'.&mt('Num Students').'</th>'
                 '<tr>'.                       .'<th>'.&mt('Part').'</th>'
                 '<th>Course</th>'.                       .'<th>'.&mt('Mean Tries').'</th>'
                 '<th>Section(s)</th>'.                       .'<th>'.&mt('Degree of Difficulty').'</th>'
                 '<th>Num Students</th>'.                       .'<th>'.&mt('Degree of Discrimination').'</th>'
                 '<th>Mean Tries</th>'.                       .'<th>'.&mt('Time of computation').'</th>'
                 '<th>Degree of Difficulty</th>'.                       .&Apache::loncommon::end_data_table_header_row().$/;
                 '<th>Degree of Discrimination</th>'.  
                 '<th>Time of computation</th>'.  
                 '</tr>'.$/;  
             foreach my $identifier (sort(keys(%{$dynmeta{'stats'}}))) {              foreach my $identifier (sort(keys(%{$dynmeta{'stats'}}))) {
                 my $data = $dynmeta{'stats'}->{$identifier};                  my $data = $dynmeta{'stats'}->{$identifier};
                 my $course = $data->{'course'};                  my $course = $data->{'course'};
                 my %courseinfo = &Apache::lonnet::coursedescription($course);                  my %courseinfo = 
       &Apache::lonnet::coursedescription($course,
          {'one_time' => 1});
                 if (! exists($courseinfo{'num'}) || $courseinfo{'num'} eq '') {                  if (! exists($courseinfo{'num'}) || $courseinfo{'num'} eq '') {
                     &Apache::lonnet::logthis('lookup for '.$course.' failed');                      &Apache::lonnet::logthis('lookup for '.$course.' failed');
                     next;                      next;
                 }                  }
                 $table .= '<tr>';                  $table .= &Apache::loncommon::start_data_table_row();
    $table .=
       '<td><span class="LC_nobreak">'.$courseinfo{'domain'}.'</span></td>';
                 $table .=                   $table .= 
                     '<td><nobr>'.$courseinfo{'description'}.'</nobr></td>';                      '<td><span class="LC_nobreak">'.$courseinfo{'description'}.'</span></td>';
                 $table .=                   $table .= 
                     '<td align="right">'.$data->{'sections'}.'</td>';                      '<td align="right">'.$data->{'sections'}.'</td>';
                 $table .=                  $table .=
                     '<td align="right">'.$data->{'stdno'}.'</td>';                      '<td align="right">'.$data->{'stdno'}.'</td>';
                 foreach ('avetries','difficulty','disc') {                  $table .=
                       '<td align="right">'.$data->{'part'}.'</td>';
                   foreach my $item ('avetries','difficulty','disc') {
                     $table .= '<td align="right">';                      $table .= '<td align="right">';
                     if (exists($data->{$_})) {                      if (exists($data->{$item})) {
                         $table .= sprintf('%.2f',$data->{$_}).'&nbsp;';                          $table .= sprintf('%.2f',$data->{$item}).'&nbsp;';
                     } else {                      } else {
                         $table .= '';                          $table .= '';
                     }                      }
                     $table .= '</td>';                      $table .= '</td>';
                 }                  }
                 $table .=                  $table .=
                     '<td><nobr>'.                      '<td><span class="LC_nobreak">'.
                     &Apache::lonlocal::locallocaltime($data->{'timestamp'}).                      &Apache::lonlocal::locallocaltime($data->{'timestamp'}).
                     '</nobr></td>';                      '</span></td>';
                 $table .=                  $table .= &Apache::loncommon::end_data_table_row().$/;
                     '</tr>'.$/;  
             }              }
             $table .= '</table>'.$/;              $table .= &Apache::loncommon::end_data_table().$/;
             $r->print($table);              $r->print($table);
         } else {          } else {
             $r->print('No new dynamic data found.');              $r->print('<p>'
                        .&mt('No new dynamic data found.')
                        .'</p>'
               );
         }          }
     } else {      } else {
         $r->print('<h4>'.          $r->print('<h4>'.
           &mt('No Assessment Statistical Data is available for this resource').            &mt('No Assessment Statistical Data is available for this resource').
                   '</h4>');                    '</h4>');
     }      }
   
     #  
     #      #
       # Evaluation Data
       $r->print('<h4>'.&mt('Evaluation Data').'</h4>');
     if (exists($dynmeta{'clear'})   ||       if (exists($dynmeta{'clear'})   || 
         exists($dynmeta{'depth'})   ||           exists($dynmeta{'depth'})   || 
         exists($dynmeta{'helpful'}) ||           exists($dynmeta{'helpful'}) || 
         exists($dynmeta{'correct'}) ||           exists($dynmeta{'correct'}) || 
         exists($dynmeta{'technical'})){           exists($dynmeta{'technical'})){ 
         $r->print('<h4>'.&mt('Evaluation Data').'</h4>'.          $r->print(&Apache::lonhtmlcommon::start_pick_box());
                   '<table cellspacing="2" border="0">');          my @criteria = ('clear','depth','helpful','correct','technical');
         foreach ('clear','depth','helpful','correct','technical') {          my $rownum = 0;
             $r->print('<tr><td bgcolor="#AAAAAA">'.$lt{$_}.'</td>'.          foreach my $item (@criteria) {
                       '<td bgcolor="#CCCCCC">'.              my $lastrow = '';
                       &prettyprint($_,$dynmeta{$_})."</td></tr>\n");              $rownum ++;
               $lastrow = 1 if ($rownum == @criteria);
               $r->print(&Apache::lonhtmlcommon::row_title($lt{$item})
                        .&prettyprint($item,$dynmeta{$item})
                        .&Apache::lonhtmlcommon::row_closure($lastrow)
               );
         }          }
         $r->print('</table>');          $r->print(&Apache::lonhtmlcommon::end_pick_box());
     } else {      } else {
         $r->print('<h4>'.&mt('No Evaluation Data is available for this resource.').'</h4>');          $r->print('<p>'
                    .&mt('No Evaluation Data is available for this resource.')
                    .'</p>'
           );
     }      }
     $uri=~/^\/res\/(\w+)\/(\w+)\//;       # Evaluation Comments
       $uri=~/^\/res\/($match_domain)\/($match_username)\//; 
     if ((($env{'user.domain'} eq $1) && ($env{'user.name'} eq $2))      if ((($env{'user.domain'} eq $1) && ($env{'user.name'} eq $2))
         || ($env{'user.role.ca./'.$1.'/'.$2})) {          || ($env{'user.role.ca./'.$1.'/'.$2})) {
           $r->print('<h4>'.&mt('Evaluation Comments').'</h4>'
                    .'<div>('
                    .&mt('visible to author and co-authors only')
                    .')</div>'
           );
         if (exists($dynmeta{'comments'})) {          if (exists($dynmeta{'comments'})) {
             $r->print('<h4>'.&mt('Evaluation Comments').' ('.              $r->print('<blockquote>'.$dynmeta{'comments'}.'</blockquote>');
                       &mt('visible to author and co-authors only').  
                       ')</h4>'.  
                       '<blockquote>'.$dynmeta{'comments'}.'</blockquote>');  
         } else {          } else {
             $r->print('<h4>'.&mt('There are no Evaluation Comments on this resource.').'</h4>');              $r->print('<p>'
                        .&mt('There are no Evaluation Comments on this resource.')
                        .'</p>'
               );
         }          }
         my $bombs = &Apache::lonmsg::retrieve_author_res_msg($uri);          my $bombs = &Apache::lonmsg::retrieve_author_res_msg($uri);
         if (defined($bombs) && $bombs ne '') {          if (defined($bombs) && $bombs ne '') {
             $r->print('<a name="bombs" /><h4>'.&mt('Error Messages').' ('.              $r->print('<a name="bombs" />'
                       &mt('visible to author and co-authors only').')'.                       .'<h4 class="LC_warning">'.&mt('Error Messages').'</h4>'
                       '</h4>'.$bombs);                       .'<div>('
         } else {                       .&mt('visible to author and co-authors only')
             $r->print('<h4>'.&mt('There are currently no Error Messages for this resource.').'</h4>');                       .')</div>'
         }                       .$bombs
               );
           } #else {
           #    $r->print('<h4>'.&mt('There are currently no Error Messages for this resource.').'</h4>');
           #}
     }      }
     #      #
     # All other stuff      # All other stuff
     $r->print('<h3>'.      $r->print('<h3>'.
               &mt('Additional Metadata (non-standard, parameters, exports)').                &mt('Additional Metadata (non-standard, parameters, exports)').
               '</h3><table border="0" cellspacing="1">');                '</h3>');
     foreach (sort(keys(%content))) {      $r->print(&Apache::lonhtmlcommon::start_pick_box());
         my $name=$_;      my @names;
         if ($name!~/\.display$/) {      foreach my $key (sort(keys(%content))) {
           if ($key!~/\.display$/) {
               push(@names,$key);
           }
       }
       if (@names > 0) {
           my $rownum = 0;
           foreach my $name (@names) {
               my $lastrow = '';
               $rownum ++;
               $lastrow = 1 if ($rownum == @names);
   
             my $display=&Apache::lonnet::metadata($uri,              my $display=&Apache::lonnet::metadata($uri,
                                                   $name.'.display');                                                    $name.'.display');
             if (! $display) {               if (! $display) { 
                 $display=$name;                  $display=$name;
             };              };
             my $otherinfo='';              my $otherinfo='';
             foreach ('name','part','type','default') {              foreach my $item ('name','part','type','default') {
                 if (defined(&Apache::lonnet::metadata($uri,                  if (defined(&Apache::lonnet::metadata($uri,
                                                       $name.'.'.$_))) {                                                        $name.'.'.$item))) {
                     $otherinfo.=' '.$_.'='.                      $otherinfo.=' '.$item.'='.
                         &Apache::lonnet::metadata($uri,                          &Apache::lonnet::metadata($uri,
                                                   $name.'.'.$_).'; ';                                                    $name.'.'.$item).'; ';
                 }                  }
             }              }
             $r->print('<tr><td bgcolor="#bbccbb"><font size="-1" color="#556655">'.$display.'</font></td><td bgcolor="#ccddcc"><font size="-1" color="#556655">'.$content{$name});              $r->print(&Apache::lonhtmlcommon::row_title($display)
                        .$content{$name}
               );
             if ($otherinfo) {              if ($otherinfo) {
                 $r->print(' ('.$otherinfo.')');                  $r->print(' ('.$otherinfo.')');
             }              }
             $r->print("</font></td></tr>\n");              $r->print(&Apache::lonhtmlcommon::row_closure($lastrow));
         }          }
     }      }
     $r->print("</table>");      $r->print(&Apache::lonhtmlcommon::end_pick_box());
     return;      return;
 }  }
   
Line 925  sub print_dynamic_metadata { Line 1308  sub print_dynamic_metadata {
 #####################################################  #####################################################
 #####################################################  #####################################################
 sub present_editable_metadata {  sub present_editable_metadata {
     my ($r,$uri, $file_type) = @_;      my ($r,$uri,$file_type) = @_;
     # Construction Space Call      # Authoring Space Call
     # Header      # Header
     my $disuri=$uri;      my $disuri=$uri;
     my $fn=&Apache::lonnet::filelocation('',$uri);      my $fn=&Apache::lonnet::filelocation('',$uri);
     $disuri=~s/^\/\~/\/priv\//;      $disuri=~s{^/\~}{/priv/};
     $disuri=~s/\.meta$//;      $disuri=~s/\.meta$//;
       my $meta_uri = $disuri;
       my $path;
       if ($disuri =~ m|/portfolio/|) {
    ($disuri, $meta_uri, $path) =  &portfolio_display_uri($disuri,1);
       }
     my $target=$uri;      my $target=$uri;
     $target=~s/^\/\~/\/res\/$env{'request.role.domain'}\//;      $target=~s{^/\~}{/res/$env{'request.role.domain'}/};
     $target=~s/\.meta$//;      $target=~s/\.meta$//;
     my $bombs=&Apache::lonmsg::retrieve_author_res_msg($target);      my $bombs=&Apache::lonmsg::retrieve_author_res_msg($target);
     if ($bombs) {      if ($bombs) {
         my $showdel=1;          # Display Bombs, not Metadata
           $r->print(
               '<h2>'.&mt('Error Messages').'</h2>'
              .'<p>'.&mt('Folder: [_1]',
                         '<span class="LC_filename">'.$disuri.'</span>')
              .'</p>'
           );
           my $showbuttons=1;
           my $message='';
           my $rc='';
         if ($env{'form.delmsg'}) {          if ($env{'form.delmsg'}) {
             if (&Apache::lonmsg::del_url_author_res_msg($target) eq 'ok') {              $rc=&Apache::lonmsg::del_url_author_res_msg($target);
                 $bombs=&mt('Messages deleted.');              if ($rc eq 'ok') {
  $showdel=0;                  $message=&Apache::lonhtmlcommon::confirm_success(
                                &mt('Messages deleted.'));
    $showbuttons=0;
             } else {              } else {
                 $bombs=&mt('Error deleting messages');                  $message=&Apache::lonhtmlcommon::confirm_success(
                                &mt('Error deleting messages'), 1)
                           .'<br />'.&mt('Error: [_1]',$rc);
             }              }
         }          }
         if ($env{'form.clearmsg'}) {          if ($env{'form.clearmsg'}) {
     my $cleardir=$target;      my $cleardir=$target;
     $cleardir=~s/\/[^\/]+$/\//;      $cleardir=~s/\/[^\/]+$/\//; # Extract dir: keep path, remove filename
             if (&Apache::lonmsg::clear_author_res_msg($cleardir) eq 'ok') {              $rc=&Apache::lonmsg::clear_author_res_msg($cleardir);
                 $bombs=&mt('Messages cleared.');              if ($rc eq 'ok') {
  $showdel=0;                  $message=&Apache::lonhtmlcommon::confirm_success(
                       &mt('Messages cleared.'));
    $showbuttons=0;
             } else {              } else {
                 $bombs=&mt('Error clearing messages');                  $message=&Apache::lonhtmlcommon::confirm_success(
                                &mt('Error clearing messages'),1)
                           .'<br />'.&mt('Error: [_1]',$rc);
             }              }
         }          }
         my $del=&mt('Delete Messages for this Resource');          if ($message) {
  my $clear=&mt('Clear all Messages in Subdirectory');              $message=&Apache::loncommon::confirmwrapper($message);
  my $goback=&mt('Back to Source File');              $r->print($message);
         $r->print(<<ENDBOMBS);          }
 <h1>$disuri</h1>  
 <form method="post" name="defaultmeta">          $r->print('<form method="post" action="" name="defaultmeta">');
 ENDBOMBS          if ($showbuttons) {
         if ($showdel) {              $r->print(
     $r->print(<<ENDDEL);                  '<input type="submit" name="delmsg" value="'.
 <input type="submit" name="delmsg" value="$del" />                  &mt('Delete Messages for this Resource').'" />'.
 <input type="submit" name="clearmsg" value="$clear" />                  '<input type="submit" name="clearmsg" value="'.
 ENDDEL                  &mt('Clear all Messages in Subdirectory').'" />'
                  .'<br />'.$bombs
               );
         } else {          } else {
             $r->print('<a href="'.$disuri.'" />'.$goback.'</a>');              my $functions=&Apache::lonhtmlcommon::start_funclist('Actions');
  }              $functions.=&Apache::lonhtmlcommon::add_item_funclist(
  $r->print('<br />'.$bombs);                              '<a href="'.$disuri.'">'.
                               &mt('Back to Source File').'</a>');
               my ($diruri) = ($disuri =~ m{(.*/)[^/]*});
               $functions.=&Apache::lonhtmlcommon::add_item_funclist(
                               '<a href="'.$diruri.'">'.
                               &mt('Back to Source Directory').'</a>');
               $functions .= &Apache::lonhtmlcommon::end_funclist();
               $r->print('<p>'.$functions.'</p>');
           }
     } else {      } else {
         my $displayfile='Catalog Information for '.$disuri;  
           # Display Metadata, not Bombs
           my $displayfile =
               &mt('Metadata for [_1]'
                  ,'<span class="LC_filename">'.$disuri.'</span>');
         if ($disuri=~/\/default$/) {          if ($disuri=~/\/default$/) {
             my $dir=$disuri;              my $dir=$disuri;
             $dir=~s/default$//;              $dir=~s/default$//;
             $displayfile=              $displayfile=&mt('Default Metadata for Directory [_1]'
                 &mt('Default Cataloging Information for Directory').' '.                              ,'<span class="LC_filename">'.$dir.'</span>');
                 $dir;  
         }          }
         %Apache::lonpublisher::metadatafields=();          %Apache::lonpublisher::metadatafields=();
         %Apache::lonpublisher::metadatakeys=();          %Apache::lonpublisher::metadatakeys=();
         my $result=&Apache::lonnet::getfile($fn);          my $result=&Apache::lonnet::getfile($fn);
         if ($result == -1){          if ($result == -1){
             $r->print('Creating new '.$fn);              my $message = &Apache::lonhtmlcommon::confirm_success(
                   &mt('Creating new file [_1]'
                      ,'<span class="LC_filename"'.$meta_uri.'</span>'));
               $message = &Apache::loncommon::confirmwrapper($message);
               $r->print($message);
         } else {          } else {
             &Apache::lonpublisher::metaeval($result);              &Apache::lonpublisher::metaeval($result);
         }          }
           if ($env{'form.new_courserestricted'}) {
               my $new_assoc_course = $env{'form.new_courserestricted'};
               my $prev_courserestricted = $Apache::lonpublisher::metadatafields{'courserestricted'};
               if (($prev_courserestricted) && 
                   ($prev_courserestricted ne $new_assoc_course)) {
                   my $transfers = [];
                   foreach my $key (keys(%env)) {
                       if ($key =~ /^form\.transfer_(.+)$/) {
                           push(@{$transfers},$1);
                       }
                   }
                   if (@{$transfers} > 0) {
                       &store_transferred_addedfields($fn,$uri,$transfers);
                   }
               }
           }
         $r->print(<<ENDEDIT);          $r->print(<<ENDEDIT);
 <h1>$displayfile</h1>  <h2>$displayfile</h2>
 <form method="post" name="defaultmeta">  <form method="post" action="" name="defaultmeta">
 ENDEDIT  ENDEDIT
         $r->print('<script language="JavaScript">'.  
                   &Apache::loncommon::browser_and_searcher_javascript().  
                   '</script>');  
         my %lt=&fieldnames($file_type);          my %lt=&fieldnames($file_type);
  my $output;   my $output;
  my @fields;   my @fields;
  if ($file_type eq 'portfolio') {   my $added_metadata_fields;
     @fields =  ('author','title','subject','keywords','abstract','notes','lowestgradelevel',   my @added_order;
                 'highestgradelevel');          if ($file_type eq 'groups') {
               $Apache::lonpublisher::metadatafields{'courserestricted'}=
                   'course.'.$env{'request.course.id'};
           }
           if ((! $Apache::lonpublisher::metadatafields{'courserestricted'}) &&
                   (! $env{'form.new_courserestricted'}) && (! $file_type eq 'groups')) {
               $Apache::lonpublisher::metadatafields{'courserestricted'}=
                   'none';
           } elsif ($env{'form.new_courserestricted'}) {
               $Apache::lonpublisher::metadatafields{'courserestricted'}=
                   $env{'form.new_courserestricted'};
           }
    if ($file_type eq 'portfolio' || $file_type eq 'groups') {
       if(exists ($env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.fieldlist'})) {
           # retrieve fieldnames (in order) from the course restricted list
           @fields = (split(/,/,$env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.fieldlist'}));
       } else {
           # no saved field list, use default list
           @fields =  ('title','author','subject','keywords','abstract',
       'notes','lowestgradelevel',
                       'highestgradelevel','standards');
                   if ($Apache::lonpublisher::metadatafields{'courserestricted'} =~ /^course\.($match_domain\_$match_courseid)$/) {
                       my $assoc_crs = $1;
               $added_metadata_fields = &Apache::lonparmset::get_added_meta_fieldnames($assoc_crs);
               if ($env{'course.'.$assoc_crs.'.metadata.addedorder'}) {
                   @added_order = split(/,/,$env{'course.'.$assoc_crs.'.metadata.addedorder'});
               }
               $env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.fieldlist'} = join(",",@fields);
                   }
       }
  } else {   } else {
     @fields = ('author','title','subject','keywords','abstract','notes',      @fields = ('title','author','subject','keywords','abstract','notes',
                  'copyright','customdistributionfile','language',         'copyright','customdistributionfile','language',
                  'standards',         'standards',
                  'lowestgradelevel','highestgradelevel','sourceavail','sourcerights',         'lowestgradelevel','highestgradelevel','sourceavail','sourcerights',
                  'obsolete','obsoletereplacement');         'obsolete','obsoletereplacement');
         }          }
         foreach (@fields) {          if (! $Apache::lonpublisher::metadatafields{'copyright'}) {
             if (defined($env{'form.new_'.$_})) {  
                 $Apache::lonpublisher::metadatafields{$_}=  
                     $env{'form.new_'.$_};  
             }  
             if (! $Apache::lonpublisher::metadatafields{'copyright'}) {  
                 $Apache::lonpublisher::metadatafields{'copyright'}=                  $Apache::lonpublisher::metadatafields{'copyright'}=
                     'default';      'default';
             }          }
             $output.=('<p>'.$lt{$_}.': '.   if (($file_type eq 'portfolio') || ($file_type eq 'groups'))  {
                       &prettyinput($_,      if (! $Apache::lonpublisher::metadatafields{'mime'}) {
    $Apache::lonpublisher::metadatafields{$_},                  ($Apache::lonpublisher::metadatafields{'mime'}) =
    'new_'.$_,'defaultmeta').'</p>');      ( $target=~/\.(\w+)$/ );
             if ($env{'form.metacourse'}) {      }
                 $r->print('This is the instructor metadata area<br />');      if (! $Apache::lonpublisher::metadatafields{'owner'}) {
                 # have to find all the metadata items, so we'll loop through and find them   $Apache::lonpublisher::metadatafields{'owner'} =
                 $r->print('<form method="post" action="" size="3" >');      $env{'user.name'}.':'.$env{'user.domain'};
                 $r->print('The course is: '.$env{'form.metacourse'}.'<br>');      }
                 foreach my $key (sort keys %env) {      if (! $Apache::lonpublisher::metadatafields{'author'}) {
                     if ($key=~m/^($env{'form.metacourse'}\.metadata\.)(\d+)\.title/) {   $Apache::lonpublisher::metadatafields{'author'} =
                         my $key_base = $1;      &Apache::loncommon::plainname($env{'user.name'},
                         my $item_num = $2;    $env{'user.domain'});
                         # found one, so let's display it      }
                         my $title = $env{$key_base.$item_num.'.title'};      if ($Apache::lonpublisher::metadatafields{'courserestricted'} ne 'none') {
                         my $type = $env{$key_base.$item_num.'.type'};  
                         my @choices = sort(split /, /,$env{$key_base.$item_num.'.values'});                  if ($file_type eq 'portfolio') {
                         $r->print($title.'<br />');                      $r->print(
                         $r->print($type.'<br />');                          &mt('Associated with course [_1]'
                                          ,'<strong>'
             foreach my $word (@choices) {                             .$env{$Apache::lonpublisher::metadatafields{'courserestricted'}
                 my $checked;                             .".description"}.'</strong>')
                 if ($Apache::lonpublisher::metadatafields{'coursekeyword'}=~ m/$word/) {                         .' <a href="'.$uri.'?changecourse=true">'
                     $checked = 1;                         .&mt('Change')
                          .'</a>'.'<br />'
                       );
   
                 } else {                  } else {
                     undef($checked);                      $r->print(&mt('Associated with course [_1]',
                           '<strong>'.
     $env{$Apache::lonpublisher::metadatafields{'courserestricted'}.
                           ".description"}.'</strong>').'<br />');
                 }                  }
                 $r->print(&Apache::lonhtmlcommon::checkbox('instmeta_'.$env{'form.metacourse'}.'_'.$item_num,$checked,$word).$word.'<br />');              } else {
                   $r->print(
                       &mt('This resource is not associated with a course.')
                     .' <a href="'.$uri.'?changecourse=true">'.&mt('Change').'</a><br />'
                   );
             }              }
         }          }
     }      if (@added_order) {
     $r->print('<br /><input type="submit" name="store" value="Assign Meta-data" />');      foreach my $field_name (@added_order) {
     $r->print('</form>');                  push(@fields,$field_name);
     return 'ok';                  $lt{$field_name} = $$added_metadata_fields{$field_name};
       }
    } else {
               foreach my $field_name (keys(%$added_metadata_fields)) {
                   push(@fields,$field_name);
                   $lt{$field_name} = $$added_metadata_fields{$field_name};
             }              }
         }          }
         if ($env{'form.store'}) {          $output .= &Apache::lonhtmlcommon::start_pick_box();
             my $mfh;          my $last = $#fields + 1;
             my $formname='store';           my $rowcount = 0;
             my $file_content;          foreach my $field_name (@fields) {
             foreach my $meta_field (keys %env) {              $rowcount++;
                 if ($meta_field=~m/^form.instmeta_(.+)_(\d+)$/) {              if (defined($env{'form.new_'.$field_name})) {
                     $r->print('Found a field<br>');                  my @values = &Apache::loncommon::get_env_multiple('form.new_'.$field_name);
                 }                  my $newvalue = '';
                 if (&Apache::loncommon::get_env_multiple('form.keywords')) {                  foreach my $item (@values) {
                 $Apache::lonpublisher::metadatafields{'coursekeyword'} =                       if ($item ne '') {
                         join (', ', &Apache::loncommon::get_env_multiple('form.keywords'));                          $newvalue .= $item.',';
                       }
                 }                  }
                   $newvalue =~ s/,$//; 
                   $Apache::lonpublisher::metadatafields{$field_name}=$newvalue;
             }              }
             foreach (sort keys %Apache::lonpublisher::metadatafields) {              if ($Apache::lonpublisher::metadatafields{'courserestricted'} ne 'none'
                 next if ($_ =~ /\./);   && exists($env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.'.$field_name.'.options'})) {
                 my $unikey=$_;                  # handle restrictions here
                 $unikey=~/^([A-Za-z]+)/;                  if ((($env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.'.$field_name.'.options'} =~ m/active/) ||
                 my $tag=$1;                      ($field_name eq 'courserestricted'))&&
                 $tag=~tr/A-Z/a-z/;                      (!($env{$Apache::lonpublisher::metadatafields{'courserestricted'}.'.metadata.'.$field_name.'.options'} =~ m/deleted/))){
                 $file_content.= "\n\<$tag";                      
                 foreach (split(/\,/,                      $output .= &Apache::lonhtmlcommon::row_title($lt{$field_name})
                              $Apache::lonpublisher::metadatakeys{$unikey})                                .&prettyinput($field_name,
                          ) {     $Apache::lonpublisher::metadatafields{$field_name},
                     my $value=                      'new_'.$field_name,'defaultmeta',
                      $Apache::lonpublisher::metadatafields{$unikey.'.'.$_};                      undef,undef,undef,undef,
                     $value=~s/\"/\'\'/g;                                                      $Apache::lonpublisher::metadatafields{'courserestricted'});
                     $file_content.=' '.$_.'="'.$value.'"' ;                      $output .= &Apache::lonhtmlcommon::row_closure($rowcount == $last?1:0);
                     # print $mfh ' '.$_.'="'.$value.'"';                   }
                 }  
                 $file_content.= '>'.  
                     &HTML::Entities::encode  
                     ($Apache::lonpublisher::metadatafields{$unikey},  
                      '<>&"').  
                      '</'.$tag.'>';  
             }  
             if ($fn =~ /\/portfolio\//) {  
                 $fn =~ /\/portfolio\/(.*)$/;  
                 my $new_fn = '/'.$1;  
                 $env{'form.'.$formname}=$file_content;  
                 $env{'form.'.$formname.'.filename'}=$new_fn;  
                 &Apache::lonnet::userfileupload('uploaddoc','',  
          'portfolio'.$env{'form.currentpath'});  
         my $status =&Apache::lonnet::userfileupload($formname,'','portfolio');  
                 if (&Apache::lonnet::userfileupload($formname,'','portfolio') eq 'error: no uploaded file') {  
                     $r->print('<p><font color="red">'.  
                       &mt('Could not write metadata').', '.  
                      &mt('FAIL').'</font></p>');  
                 } else {  
                     $r->print('<p><font color="blue">'.&mt('Wrote Metadata').  
   ' '.&Apache::lonlocal::locallocaltime(time).  
   '</font></p>');  
                 }  
             } else {              } else {
                 if (!  ($mfh=Apache::File->new('>'.$fn))) {  
                     $r->print('<p><font color="red">'.                      $output .= &Apache::lonhtmlcommon::row_title($lt{$field_name})
                         &mt('Could not write metadata').', '.                                .&prettyinput($field_name,
                         &mt('FAIL').'</font></p>');     $Apache::lonpublisher::metadatafields{$field_name},
                 } else {                                             'new_'.$field_name,'defaultmeta')
                     print $mfh $file_content;                                .&Apache::lonhtmlcommon::row_closure($rowcount == $last?1:0);
     $r->print('<p><font color="blue">'.&mt('Wrote Metadata').                 
       ' '.&Apache::lonlocal::locallocaltime(time).  
       '</font></p>');  
                 }  
             }              }
         }          }
  $r->print($output.'<br /><input type="submit" name="store" value="'.          $output .= &Apache::lonhtmlcommon::end_pick_box();
                   &mt('Store Catalog Information').'">');   if ($env{'form.store'}) {
               my ($outcome,$result) = &store_metadata($fn,$uri,'store');
               $r->print($result);
    }
           my $savebutton = '<p><input type="submit" name="store"'
                           .' value="'.&mt('Save').'" title="'.&mt('Save Metadata').'" /></p>';
           $r->print($savebutton.$output.$savebutton);
   
    if ($file_type eq 'portfolio' || $file_type eq 'groups') {
       my ($port_path,$group) = &get_port_path_and_group($uri);
               if ($group ne '') {
                   $r->print('<input type="hidden" name="group" value="'.$group.'" />');
               }
               $r->print('<input type="hidden" name="currentpath" value="'.$env{'form.currentpath'}.'" />');
       $r->print('</form><br /><br /><form method="post" action="'.$port_path.'">');
       if ($group ne '') {
           $r->print('<input type="hidden" name="group" value="'.$group.'" />');
               }
       $r->print('<input type="hidden" name="currentpath" value="'.$path.'" />'.
         '<input type="submit" name="cancel" value="'.&mt('Discard Edits and Return to Portfolio').'" />');
    }
     }      }
       
     $r->print('</form>');      $r->print('</form>');
   
     return;      return;
 }  }
   
   sub store_metadata {
       my ($fn,$uri,$caller) = @_;
       my $mfh;
       my $formname='store';
       my ($file_content,$output,$outcome);
       if (&Apache::loncommon::get_env_multiple('form.new_keywords')) {
           $Apache::lonpublisher::metadatafields{'keywords'} =
               join (',', &Apache::loncommon::get_env_multiple('form.new_keywords'));
               }
       foreach my $field (sort(keys(%Apache::lonpublisher::metadatafields))) {
           next if ($field =~ /\./);
           my $unikey=$field;
           $unikey=~/^([A-Za-z_]+)/;
           my $tag=$1;
           $tag=~tr/A-Z/a-z/;
           $file_content.= "\n\<$tag";
           foreach my $key (split(/\,/,$Apache::lonpublisher::metadatakeys{$unikey})) {
               my $value = $Apache::lonpublisher::metadatafields{$unikey.'.'.$key};
               $value=~s/\"/\'\'/g;
               $file_content.=' '.$key.'="'.$value.'"' ;
           }
           $file_content.= '>'.
               &HTML::Entities::encode
                   ($Apache::lonpublisher::metadatafields{$unikey},'<>&"').
                   '</'.$tag.'>';
       }
       if ($fn =~ m|^$Apache::lonnet::perlvar{'lonDocRoot'}/userfiles|) {
           my ($path, $new_fn);
           if ($fn =~ m|$match_name/groups/\w+/portfolio/|) {
               ($path, $new_fn) = ($fn =~ m|/(groups/\w+/portfolio.*)/([^/]*)$|);
           } else {
               ($path, $new_fn) = ($fn =~ m|/(portfolio.*)/([^/]*)$|);
           }
           ($outcome,my $result) = 
               &store_portfolio_metadata($formname,$file_content,
                                         $path,$new_fn,$uri,$caller);
           $output .= $result;
       } else {
           if (! ($mfh=Apache::File->new('>'.$fn))) {
               $output .= '<p class="LC_error">';
               if ($caller eq 'transfer') {
                   $output .= &mt('Could not transfer data in added fields to notes');
               } else { 
                   $output .= &mt('Could not write metadata');
               }
               $output .= ', '.&mt('FAIL').'</p>';
               $outcome = 'fail';
           } else {
               print $mfh ($file_content);
               close($mfh);
               &update_metadata_table($uri);
               my $confirmtext;
               if ($caller eq 'transfer') {
                   $confirmtext = &mt('Transferred data in added fields to notes');
               } else {
                   $confirmtext = &mt('Wrote Metadata');
               }
               $output .= &Apache::loncommon::confirmwrapper(
                              &Apache::lonhtmlcommon::confirm_success(
                                  $confirmtext.' '.&Apache::lonlocal::locallocaltime(time)));
               $outcome = 'ok';
           }
       }
       return ($outcome,$output);
   }
   
   sub store_transferred_addedfields {
       my ($fn,$uri,$transfers) = @_;
       foreach my $item (@{$transfers}) {
           $Apache::lonpublisher::metadatafields{'notes'} .= 
              ' '.$item.' = '.$Apache::lonpublisher::metadatafields{$item};
       }
       my ($outcome,$output) = &store_metadata($fn,$uri,'transfer');
       if ($outcome eq 'ok') {
           foreach my $item (@{$transfers}) {
               delete($Apache::lonpublisher::metadatafields{$item});
           }
       }
   }
   
   sub store_portfolio_metadata {
       my ($formname,$content,$path,$new_fn,$uri,$caller) = @_;
       my ($outcome,$output);
       $env{'form.'.$formname}=$content."\n";
       $env{'form.'.$formname.'.filename'}=$new_fn;
       my $result =&Apache::lonnet::userfileupload($formname,'',$path);
       if ($result =~ /(error|notfound)/) {
           $output = '<p class="LC_error">';
           if ($caller eq 'transfer') {
               $output .= 
                   &mt('Could not transfer data in added fields to notes'); 
           } else {
               $output .= &mt('Could not write metadata');
           }
           $output .= ', '.&mt('FAIL').'</p>';
           $outcome = 'fail';
       } else {
           &update_metadata_table($uri);
           $output = '<p class="LC_success">';
           if ($caller eq 'transfer') {
               $output .= &mt('Transferred data in added fields to notes');
           } else {
               $output .= &mt('Wrote Metadata');
           }
           $output .= ' '.&Apache::lonlocal::locallocaltime(time).
                      '</p>';
           $outcome = 'ok';
       }
       return ($outcome,$output);
   }
   
   sub update_metadata_table {
       my ($uri) = @_;
       my ($type,$udom,$uname,$file_name,$group) =
    &Apache::lonnet::parse_portfolio_url($uri);
       $file_name =~ s/\.meta$//;
       my $current_permissions =
           &Apache::lonnet::get_portfile_permissions($udom,$uname);
       my %access_controls =
           &Apache::lonnet::get_access_controls($current_permissions,$group,
                                                $file_name);
       my $access_hash = $access_controls{$file_name};
       my $available = 0;
       if (ref($access_hash) eq 'HASH') {
           foreach my $key (keys(%{$access_hash})) {
               my ($num,$scope,$end,$start) =
                   ($key =~ /^([^:]+):([a-z]+)_(\d*)_?(\d*)$/);
               if ($scope eq 'public' || $scope eq 'guest') {
                   $available = 1;
                   last;
               }
           }
       }
       if ($available) {
           my $result =
               &Apache::lonnet::update_portfolio_table($uname,$udom,
               $file_name,'portfolio_metadata',$group,'update');
       }
   }
   
   
 1;  1;
 __END__  __END__
   
        
   =head1 NAME
   
   Apache::lonmeta - display meta data
   
   =head1 SYNOPSIS
   
   Handler to display meta data
   
   This is part of the LearningOnline Network with CAPA project
   described at http://www.lon-capa.org.
   
   =head1 SUBROUTINES
   
   =over
   
   =item &get_dynamic_metadata_from_sql($url) :
   
   Queries sql database for dynamic metdata
   Returns a hash of hashes, with keys of urls which match $url
   Returned fields are given below.
   
   Examples:
   
       %DynamicMetadata = &Apache::lonmeta::get_dynmaic_metadata_from_sql
       ('/res/msu/korte/');
   
       $DynamicMetadata{'/res/msu/korte/example.problem'}->{$field}
   
   =item dynamicmeta()
   
   Fetch and evaluate dynamic metadata
   
   =item access_count()
   
   =item alttag()
   
   Try to make an alt tag if there is none
   
   =item authordisplay()
   
   Author display
   
   =item evalgraph()
   
   Pretty display
   
   =item diffgraph()
   
   =item fieldnames()
   
   =item portfolio_linked_path()
   
   =item get_port_path_and_group()
   
   =item portfolio_display_uri()
   
   =item pre_select_course()
   
   =item select_course()
   
   =item prettyprint()
   
   Pretty printing of metadata field
   
   =item direct()
   
   Pretty input of metadata field
   
   =item selectbox()
   
   =item relatedfield()
   
   =item prettyinput()
   
   =item report_bombs()
   
   =item present_uneditable_metadata()
   
   =item present_editable_metadata()
   
   =item store_metadata()
   
   =item store_transferred_addedfields()
   
   =item store_portfolio_metadata()
   
   =item update_metadata_table()
   
   =back
   
   =cut

Removed from v.1.109  
changed lines
  Added in v.1.254


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