home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-12-13 | 235 b | 12 lines | [TEXT/McPL] |
- # NOTE: Derived from :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;
-