Diff for /nsdl/lib/perl/Apache/LONCAPA/FromTheGateway.pm between versions 1.1 and 1.4

version 1.1, 2002/05/06 19:05:22 version 1.4, 2002/07/14 07:42:46
Line 12 Line 12
 # =================  # =================
 #  #
 # This module contains functionality for  # This module contains functionality for
 # transferring information from NSDL to the Gateway Server.  # transferring information to LON-CAPA from the Gateway Server.
 #  #
 # In terms of the overall data flow, the  # In terms of the overall data flow, the
 # '=====>' below indicates the role of this  # '=====>' below indicates the role of this
Line 46  my $VERSION = sprintf("%d.%02d", q$Revis Line 46  my $VERSION = sprintf("%d.%02d", q$Revis
     
 # ------------------------------- LONCAPA->search_or_browse_against_NSDLgateway  # ------------------------------- LONCAPA->search_or_browse_against_NSDLgateway
 sub search_or_browse_against_NSDLgateway {  sub search_or_browse_against_NSDLgateway {
 # Not yet implemented      my ($eref)=@_;
 # Need to specifically characterize INPUT arguments and OUTPUT data      return Apache::GATEWAY::ToLONCAPA::search_NSDLnetwork($eref);
 }  }
   
 # ------------------------------------------- LONCAPA->view_NSDLgateway_results  # ------------------------------------------- LONCAPA->view_NSDLgateway_results
 sub view_NSDLgateway_results {  sub view_NSDLgateway_results {
 # Not yet implemented      my ($eref)=@_;
 # Need to specifically characterize INPUT arguments and OUTPUT data      return Apache::GATEWAY::ToLONCAPA::view_NSDLnetwork_results($eref);
 }  }
   
 # ----------------------------------- LONCAPA->view_NSDLgateway_metadata_record  # ----------------------------------- LONCAPA->view_NSDLgateway_metadata_record
 sub view_NSDLgateway_metadata_record {  sub view_NSDLgateway_metadata_record {
 # Not yet implemented      my ($eref)=@_;
 # Need to specifically characterize INPUT arguments and OUTPUT data      return Apache::GATEWAY::ToLONCAPA::view_NSDLnetwork_metadata_record($eref);
 }  }
   
 # ---------------------------------------- LONCAPA->access_NSDLgateway_resource  # ---------------------------------------- LONCAPA->access_NSDLgateway_resource
 sub access_NSDLgateway_resource {  sub access_NSDLgateway_resource {
 # Not yet implemented      my ($eref)=@_;
 # Need to specifically characterize INPUT arguments and OUTPUT data      return Apache::GATEWAY::ToLONCAPA::access_NSDLnetwork_resource($eref);
 }  }
   
 1;  1;

Removed from v.1.1  
changed lines
  Added in v.1.4


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