summaryrefslogtreecommitdiff
path: root/www/ap-dav
AgeCommit message (Collapse)AuthorFilesLines
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg1-3/+1
2008-06-12Add DESTDIR support.joerg1-8/+9
2007-05-23Reindent.ghen1-2/+2
2006-06-02Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*,joerg1-5/+3
all PEAR packages to php?-pear-* and all Apache packages to ap13-* or ap2-* respectively. Add new variables to simplify the Makefile handling. Add CONFLICTS on the old names. Reset revisions of bumped packages. ap-php will now depend on the default Apache and PHP version. All programs using it have an implicit option of the Apache version as well. OK from jlam@ and adrianp@.
2006-04-06Over 1200 files touched but no revisions bumped :)reed1-2/+2
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2006-01-24Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 becausewiz1-2/+2
of the shlib major bump. PKGREVISION++ for the dependencies.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-2/+2
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-06-17Create directories before installing files into them.jlam1-1/+2
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 checksums.wiz1-1/+2
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-2/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-04-25Convert to buildlink3.snj1-4/+4
2004-04-24Relinquish maintainership of packages to tech-pkg@NetBSD.org.jlam1-2/+2
2003-10-11bump PKGREVISIONs after bump of expat BUILDLINK_DEPENDS.grant1-1/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2002-09-25Close PR 18095: INSTALL_DATA_DIR does not take more than one argumentwiz1-2/+3
on Solaris. Patch by Julien T. Letessier.
2002-09-24Complete standardization of messages according to latest pkglint.wiz1-3/+3
2002-08-26format and word Apache module MESSAGEs consistently.grant1-7/+4
2002-08-25Merge packages from the buildlink2 branch back into the main trunk thatjlam4-50/+8
have been converted to USE_BUILDLINK2.
2002-08-13Fix comment to note that we must have apache<2.0.jlam1-2/+2
2002-03-06Update www/ap-dav to 1.0.3. Major bugfixes and changes fromjlam7-70/+44
version 1.0.2 include: * ignore Depth: Infinity for non-collection resources in a PROPFIND; this prevents a bogus error when someone has not used the "DAVDepthInfinity On" directive * fix for Web Folders not recognizing the last-modified date in PROPFIND responses (Joe Orton) * tweak to also allow recognition of the creationdate * fix copying of collection properties during a Depth:0 operation (Keith Wannamaker) * return 507 (Insufficient Space) for quota errors (on Linux, at least) (Joe) * fix moving/copying of a collection over a non-collection (found by Joe's interop testing tool) * LOCK with a missing intermediate collection now returns a standard 409 (Conflict) response rather than 500 (Internal Server Error) (Keith, reported by Dan Brotsky) * fix problems with empty URIs in xmlns attributes (fixes from Joe and Greg, reported by Julian Reschke)
2002-02-28* Fix the build against expat as the apache xml headers are not correct forjlam5-7/+104
the library routines we will use when loaded into httpd. * This package won't work with apache-2.*, so ensure that it won't match the apache dependency.
2001-11-01Move pkg/ files into package's toplevel directoryzuntum3-2/+2
2001-05-20Make all the ap-* packages work with apache6 as well as apachejonb1-2/+2
(except for ap-ssl, of course)
2001-05-16ap-dav -- Apache WebDAV modulejlam5-0/+66
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. mod_dav is an Apache module to provide DAV capabilities (RFC 2518) for the Apache web server. mod_dav currently implements a Class 1 and Class 2 DAV server. This means that it provides all the basic DAV facilities for manipulating resources (files) on the target web server, along with manipulating properties on those resources. In addition, it handles the (un)locking of resources so that clients can have exclusive access to modify resources.