ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/SCRAM/src/URL/URL_test.pm
Revision: 1.6
Committed: Fri Dec 14 09:04:16 2007 UTC (17 years, 4 months ago) by muzaffar
Content type: text/plain
Branch: MAIN
CVS Tags: V1_1_7, V1_1_6, V1_1_5, V1_2_0-cand3, V1_2_0-cand2, V1_2_0-cand1, V1_1_4, V1_1_3, V1_1_2, V1_1_0_reltag8, V1_1_0_reltag7, V1_1_0_reltag6, V1_1_1, V1_1_0_reltag5, V1_1_0_reltag4, V1_1_0_reltag3, V1_1_0_reltag2, V1_1_0_reltag1, V1_1_0_reltag, V1_1_0, V1_1_0_cand3, V1_1_0_cand2, V1_1_0_cand1
Branch point for: forBinLess_SCRAM
Changes since 1.5: +0 -0 lines
Log Message:
replace head with xml branch

File Contents

# User Rev Content
1 sashby 1.4 BEGIN
2     {
3     print "URL::URL_test: I AM used!!","\n";
4     };
5    
6 williamc 1.1 #
7     # standard url interface for testing - creates an empty file
8     #
9     # Interface
10     # ---------
11     # new() :
12     # get(url, destination) :
13    
14     package URL::URL_test;
15     require 5.001;
16     use File::Copy;
17 williamc 1.3 use URL::URL_base;
18     @ISA=qw(URL::URL_base);
19 williamc 1.1
20     sub get {
21     my $self=shift;
22     my $url=shift;
23     my $location=shift;
24    
25     my $filename=$url->fullfile();
26     return $filename;
27     }