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:
Text File  |  1997-08-10  |  250 b   |  12 lines

  1. # NOTE: Derived from blib\lib\URI\URL.pm.  Changes made here will be lost.
  2. package URI::URL;
  3.  
  4. sub newlocal
  5. {
  6.     require URI::URL::file;
  7.     my($class, $path) = @_;
  8.     newlocal URI::URL::file $path;  # pass it on the the file class
  9. }
  10.  
  11. 1;
  12.