Help for this page

Select Code to Download


  1. or download this
    package main;
    use webdav;
    ...
    @ISA = qw(Exporter);
    
    @EXPORT = qw( get_content ...);            # replace this
    
  2. or download this
    # same as above
    
    @EXPORT_OK = qw( get_content ...);         # with this
    
  3. or download this
    use webdav qw( get_content ...);