Diff for /loncom/lonnet/perl/lonnet.pm between versions 1.111 and 1.117

version 1.111, 2001/03/22 13:29:05 version 1.117, 2001/03/27 13:37:43
Line 3 Line 3
 #  #
 # Functions for use by content handlers:  # Functions for use by content handlers:
 #  #
 # metadata_query(sql-query-string) : returns file handle of where sql  # metadata_query(sql-query-string,custom-metadata-regex) : 
 #                                    results will be stored for query  #                                    returns file handle of where sql and
   #                                    regex results will be stored for query
 # plaintext(short)   : plain text explanation of short term  # plaintext(short)   : plain text explanation of short term
 # fileembstyle(ext)  : embed style in page for file extension  # fileembstyle(ext)  : embed style in page for file extension
 # filedescription(ext) : descriptor text for file extension  # filedescription(ext) : descriptor text for file extension
Line 92 Line 93
 # 3/2 Gerd Kortemeyer  # 3/2 Gerd Kortemeyer
 # 3/15 Scott Harrison  # 3/15 Scott Harrison
 # 3/19,3/20 Gerd Kortemeyer  # 3/19,3/20 Gerd Kortemeyer
   # 3/22 Scott Harrison
   
 package Apache::lonnet;  package Apache::lonnet;
   
Line 1241  sub definerole { Line 1243  sub definerole {
 # ---------------- Make a metadata query against the network of library servers  # ---------------- Make a metadata query against the network of library servers
   
 sub metadata_query {  sub metadata_query {
       my ($query,$custom,$customshow)=@_;
       # need to put in a library server loop here and return list
       unless ($custom or $customshow) {
    my $reply=&reply("querysend:".&escape($query),'msul3');
    return $reply;
       }
       else {
    my $reply=&reply("querysend:".&escape($query).':'.
    &escape($custom).':'.&escape($customshow),'msul3');
    return $reply;
       }
     my ($query)=@_;      my ($query)=@_;
     # need to put in a loop here and return list  
     my $reply=&reply("querysend:".&escape($query),'msul3');      my $reply=&reply("querysend:".&escape($query),'msul3');
 }  }
   

Removed from v.1.111  
changed lines
  Added in v.1.117


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