home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual Thematic 7: Programming
/
CDAT7.iso
/
Share
/
Editores
/
Perl5
/
perl
/
lib
/
site
/
auto
/
URI
/
URL
/
newlocal.al
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-08-10
|
250 b
|
12 lines
# NOTE: Derived from blib\lib\URI\URL.pm. Changes made here will be lost.
package URI::URL;
sub newlocal
{
require URI::URL::file;
my($class, $path) = @_;
newlocal URI::URL::file $path; # pass it on the the file class
}
1;