GithubHelp home page GithubHelp logo

net-dav-server's Introduction

NAME
    Net::DAV::Server - Provide a DAV Server

SYNOPSIS
      my $filesys = Filesys::Virtual::Plain->new({root_path => $cwd});
      my $webdav = Net::DAV::Server->new();
      $webdav->filesys($filesys);

      my $d = HTTP::Daemon->new(
        LocalAddr => 'localhost',
        LocalPort => 4242,
        ReuseAddr => 1) || die;
      print "Please contact me at: ", $d->url, "\n";
      while (my $c = $d->accept) {
        while (my $request = $c->get_request) {
          my $response = $webdav->run($request);
          $c->send_response ($response);
        }
        $c->close;
        undef($c);
      }

DESCRIPTION
    This module provides a WebDAV server. WebDAV stands for "Web-based
    Distributed Authoring and Versioning". It is a set of extensions to the
    HTTP protocol which allows users to collaboratively edit and manage
    files on remote web servers.

    Net::DAV::Server provides a WebDAV server and exports a filesystem for
    you using the Filesys::Virtual suite of modules. If you simply want to
    export a local filesystem, use Filesys::Virtual::Plain as above.

    This module doesn't currently provide a full WebDAV implementation.
    However, I am working through the WebDAV server protocol compliance test
    suite (litmus, see http://www.webdav.org/neon/litmus/) and will provide
    more compliance in future. The important thing is that it supports
    cadaver and the Mac OS X Finder as clients.

AUTHOR
    Leon Brocard <[email protected]>

COPYRIGHT
    Copyright (C) 2004, Leon Brocard

    This module is free software; you can redistribute it or modify it under
    the same terms as Perl itself.

net-dav-server's People

Contributors

cpanelwade avatar gwadej avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

cpanel

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.