Bug 181984 - Update www/baikal to 0.2.6.
Summary: Update www/baikal to 0.2.6.
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Adam Weinberger
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-09-10 10:50 UTC by Mathieu Arnold
Modified: 2013-10-03 15:30 UTC (History)
0 users

See Also:


Attachments
www_baikal.diff (65.79 KB, patch)
2013-09-10 10:50 UTC, Mathieu Arnold
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Mathieu Arnold freebsd_committer freebsd_triage 2013-09-10 10:50:03 UTC

    
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-09-10 10:50:42 UTC
Responsible Changed
From-To: freebsd-ports-bugs->adamw

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-10-03 15:19:54 UTC
Author: mat
Date: Thu Oct  3 14:19:44 2013
New Revision: 329197
URL: http://svnweb.freebsd.org/changeset/ports/329197

Log:
  - Update to 0.2.6.[1]
  - Convert to staging.
  
  maintainer timeout.
  
  PR:		181984[1]
  Submitted by:	mat[1]

Modified:
  head/www/baikal/Makefile
  head/www/baikal/distinfo
  head/www/baikal/pkg-plist

Modified: head/www/baikal/Makefile
==============================================================================
--- head/www/baikal/Makefile	Thu Oct  3 14:17:24 2013	(r329196)
+++ head/www/baikal/Makefile	Thu Oct  3 14:19:44 2013	(r329197)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=		baikal
-PORTVERSION=	0.2.4
-PORTREVISION=	2
+PORTVERSION=	0.2.6
 CATEGORIES=		www
 MASTER_SITES=	http://baikal-server.com/get/
 DISTNAME=		${PORTNAME}-regular-${PORTVERSION}
@@ -12,6 +11,8 @@ EXTRACT_SUFX=	.tgz
 MAINTAINER=		adamw@FreeBSD.org
 COMMENT=		Lightweight CalDAV/CardDAV server
 
+LICENSE=		GPLv3
+
 USE_PHP=		ctype filter xml pdo_sqlite session mbstring dom
 
 WRKSRC=			${WRKDIR}/${PORTNAME}-regular
@@ -24,7 +25,6 @@ SUB_FILES=		pkg-install pkg-message
 PORTDOCS=		*
 PORTEXAMPLES=	*
 
-NO_STAGE=	yes
 .include <bsd.port.options.mk>
 post-patch:
 	${FIND} ${WRKSRC} -type f -not -name '*.php' -exec ${CHMOD} ${SHAREMODE} {} \;
@@ -35,33 +35,29 @@ post-patch:
 	${CHMOD} 644 ${WRKSRC}/Specific/db/db.sqlite-dist
 # I can't decide whether to include this file or forbid it.
 #	${ECHO_CMD} "platypus" > ${WRKSRC}/Specific/ENABLE_INSTALL
-	${RM} ${WRKSRC}/Specific/ENABLE_INSTALL
+	${RM} -f ${WRKSRC}/Specific/ENABLE_INSTALL
 	${REINPLACE_CMD} -e 's,/var/www/dav.mydomain.com,${WWWDIR},g' \
 		${WRKSRC}/Specific/virtualhosts/baikal.*
 
 do-install:
-	${MKDIR} ${WWWDIR}
-.for DIR in Core html
+	${MKDIR} ${STAGEDIR}${WWWDIR}
+.for DIR in Core html vendor
 	cd ${WRKSRC} && ${FIND} ${DIR} | \
-		${CPIO} -pdmu -R ${BINOWN}:${BINGRP} --quiet ${WWWDIR}
+		${CPIO} -pdmu -R ${BINOWN}:${BINGRP} --quiet ${STAGEDIR}${WWWDIR}
 .endfor
 	cd ${WRKSRC} && ${FIND} Specific -not -path '*/virtualhosts*' | \
-		${CPIO} -pdmu -R ${WWWOWN}:${WWWGRP} --quiet ${WWWDIR}
-
+		${CPIO} -pdmu -R ${WWWOWN}:${WWWGRP} --quiet ${STAGEDIR}${WWWDIR}
 .if ${PORT_OPTIONS:MDOCS}
-	${MKDIR} ${DOCSDIR} ${EXAMPLESDIR}
+	${MKDIR} ${STAGEDIR}${DOCSDIR}
 .for f in INSTALL.md LICENSE.txt README.md TROUBLESHOOTING.md
-	${INSTALL_DATA} ${WRKSRC}/$f ${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/$f ${STAGEDIR}${DOCSDIR}
 .endfor
 .endif
 .if ${PORT_OPTIONS:MEXAMPLES}
+	${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
 .for f in apache2 nginx
-	${INSTALL_DATA} ${WRKSRC}/Specific/virtualhosts/baikal.$f ${EXAMPLESDIR}
+	${INSTALL_DATA} ${WRKSRC}/Specific/virtualhosts/baikal.$f ${STAGEDIR}${EXAMPLESDIR}
 .endfor
 .endif
 
-post-install:
-	@${SH} ${PKGINSTALL} POST-INSTALL
-	@${CAT} ${PKGMESSAGE}
-
 .include <bsd.port.mk>

Modified: head/www/baikal/distinfo
==============================================================================
--- head/www/baikal/distinfo	Thu Oct  3 14:17:24 2013	(r329196)
+++ head/www/baikal/distinfo	Thu Oct  3 14:19:44 2013	(r329197)
@@ -1,2 +1,2 @@
-SHA256 (baikal-regular-0.2.4.tgz) = 5a8a57323d3662e167c8b45b5d10748139be94f54d4cc440aca8aff0159f9678
-SIZE (baikal-regular-0.2.4.tgz) = 868606
+SHA256 (baikal-regular-0.2.6.tgz) = af2fe868e3e74f4a32654f119521d6ddc208fcef67825f09cb605cd8e7644f94
+SIZE (baikal-regular-0.2.6.tgz) = 2271131

Modified: head/www/baikal/pkg-plist
==============================================================================
--- head/www/baikal/pkg-plist	Thu Oct  3 14:17:24 2013	(r329196)
+++ head/www/baikal/pkg-plist	Thu Oct  3 14:19:44 2013	(r329197)
@@ -1,5 +1,5 @@
 %%WWWDIR%%/Core/Distrib.php
-%%WWWDIR%%/Core/Frameworks/Baikal/Core/ClassLoader.php
+%%WWWDIR%%/Core/Frameworks/Baikal/Core/PDOBasicAuth.php
 %%WWWDIR%%/Core/Frameworks/Baikal/Core/Tools.php
 %%WWWDIR%%/Core/Frameworks/Baikal/Framework.php
 %%WWWDIR%%/Core/Frameworks/Baikal/Model/AddressBook.php
@@ -31,7 +31,6 @@
 %%WWWDIR%%/Core/Frameworks/BaikalAdmin/Controller/User/Calendars.php
 %%WWWDIR%%/Core/Frameworks/BaikalAdmin/Controller/Users.php
 %%WWWDIR%%/Core/Frameworks/BaikalAdmin/Core/Auth.php
-%%WWWDIR%%/Core/Frameworks/BaikalAdmin/Core/ClassLoader.php
 %%WWWDIR%%/Core/Frameworks/BaikalAdmin/Core/View.php
 %%WWWDIR%%/Core/Frameworks/BaikalAdmin/Framework.php
 %%WWWDIR%%/Core/Frameworks/BaikalAdmin/Resources/GlyphiconsPro/generate-sprite.php
@@ -84,7 +83,6 @@
 %%WWWDIR%%/Core/Frameworks/Flake/Controller/HtmlBlockTemplated.php
 %%WWWDIR%%/Core/Frameworks/Flake/Controller/Page.php
 %%WWWDIR%%/Core/Frameworks/Flake/Controller/Rpc.php
-%%WWWDIR%%/Core/Frameworks/Flake/Core/ClassLoader.php
 %%WWWDIR%%/Core/Frameworks/Flake/Core/Collection.php
 %%WWWDIR%%/Core/Frameworks/Flake/Core/CollectionTyped.php
 %%WWWDIR%%/Core/Frameworks/Flake/Core/Controller.php
@@ -272,7 +270,6 @@
 %%WWWDIR%%/Core/Frameworks/Flake/Util/Twig/lib/Twig/TokenParserInterface.php
 %%WWWDIR%%/Core/Frameworks/Flake/Util/Twig/lib/Twig/TokenStream.php
 %%WWWDIR%%/Core/Frameworks/Flake/config.php
-%%WWWDIR%%/Core/Frameworks/Formal/Core/ClassLoader.php
 %%WWWDIR%%/Core/Frameworks/Formal/Core/Message.php
 %%WWWDIR%%/Core/Frameworks/Formal/Element.php
 %%WWWDIR%%/Core/Frameworks/Formal/Element/Checkbox.php
@@ -282,258 +279,6 @@
 %%WWWDIR%%/Core/Frameworks/Formal/Form.php
 %%WWWDIR%%/Core/Frameworks/Formal/Form/Morphology.php
 %%WWWDIR%%/Core/Frameworks/Formal/Framework.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/ChangeLog
-%%WWWDIR%%/Core/Frameworks/SabreDAV/LICENSE
-%%WWWDIR%%/Core/Frameworks/SabreDAV/README.md
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Backend/AbstractBackend.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Backend/BackendInterface.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Backend/NotificationSupport.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Backend/PDO.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Backend/SharingSupport.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Calendar.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/CalendarObject.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/CalendarQueryParser.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/CalendarQueryValidator.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/CalendarRootNode.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Exception/InvalidComponentType.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/ICSExportPlugin.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/ICalendar.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/ICalendarObject.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/IShareableCalendar.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/ISharedCalendar.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Notifications/Collection.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Notifications/ICollection.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Notifications/INode.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Notifications/INotificationType.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Notifications/Node.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Notifications/Notification/Invite.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Notifications/Notification/InviteReply.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Notifications/Notification/SystemStatus.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Plugin.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Principal/Collection.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Principal/IProxyRead.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Principal/IProxyWrite.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Principal/ProxyRead.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Principal/ProxyWrite.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Principal/User.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Property/AllowedSharingModes.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Property/Invite.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Property/ScheduleCalendarTransp.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Property/SupportedCalendarComponentSet.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Property/SupportedCalendarData.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Property/SupportedCollationSet.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Schedule/IMip.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Schedule/IOutbox.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Schedule/Outbox.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/ShareableCalendar.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/SharedCalendar.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/SharingPlugin.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/UserCalendars.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CalDAV/Version.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CardDAV/AddressBook.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CardDAV/AddressBookQueryParser.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CardDAV/AddressBookRoot.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CardDAV/Backend/AbstractBackend.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CardDAV/Backend/BackendInterface.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CardDAV/Backend/PDO.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CardDAV/Card.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CardDAV/IAddressBook.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CardDAV/ICard.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CardDAV/IDirectory.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CardDAV/Plugin.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CardDAV/Property/SupportedAddressData.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CardDAV/UserAddressBooks.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CardDAV/VCFExportPlugin.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/CardDAV/Version.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Auth/Backend/AbstractBasic.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Auth/Backend/AbstractDigest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Auth/Backend/Apache.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Auth/Backend/BackendInterface.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Auth/Backend/File.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Auth/Backend/PDO.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Auth/Plugin.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Browser/GuessContentType.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Browser/MapGetToPropFind.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Browser/Plugin.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Browser/assets/favicon.ico
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Browser/assets/icons/addressbook.png
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Browser/assets/icons/calendar.png
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Browser/assets/icons/card.png
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Browser/assets/icons/collection.png
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Browser/assets/icons/file.png
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Browser/assets/icons/parent.png
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Browser/assets/icons/principal.png
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Client.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Collection.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Exception.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Exception/BadRequest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Exception/Conflict.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Exception/ConflictingLock.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Exception/FileNotFound.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Exception/Forbidden.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Exception/InsufficientStorage.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Exception/InvalidResourceType.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Exception/LockTokenMatchesRequestUri.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Exception/Locked.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Exception/MethodNotAllowed.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Exception/NotAuthenticated.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Exception/NotFound.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Exception/NotImplemented.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Exception/PaymentRequired.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Exception/PreconditionFailed.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Exception/ReportNotSupported.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Exception/RequestedRangeNotSatisfiable.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Exception/UnsupportedMediaType.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/FS/Directory.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/FS/File.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/FS/Node.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/FSExt/Directory.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/FSExt/File.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/FSExt/Node.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/File.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/ICollection.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/IExtendedCollection.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/IFile.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/INode.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/IProperties.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/IQuota.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Locks/Backend/AbstractBackend.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Locks/Backend/BackendInterface.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Locks/Backend/FS.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Locks/Backend/File.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Locks/Backend/PDO.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Locks/LockInfo.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Locks/Plugin.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Mount/Plugin.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Node.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/ObjectTree.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/PartialUpdate/IFile.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/PartialUpdate/Plugin.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Property.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Property/GetLastModified.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Property/Href.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Property/HrefList.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Property/IHref.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Property/LockDiscovery.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Property/ResourceType.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Property/Response.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Property/ResponseList.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Property/SupportedLock.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Property/SupportedReportSet.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/PropertyInterface.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Server.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/ServerPlugin.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/SimpleCollection.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/SimpleFile.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/StringUtil.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/TemporaryFileFilterPlugin.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Tree.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Tree/Filesystem.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/URLUtil.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/UUIDUtil.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/Version.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAV/XMLUtil.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/AbstractPrincipalCollection.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/Exception/AceConflict.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/Exception/NeedPrivileges.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/Exception/NoAbstract.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/Exception/NotRecognizedPrincipal.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/Exception/NotSupportedPrivilege.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/IACL.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/IPrincipal.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/IPrincipalCollection.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/Plugin.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/Principal.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/PrincipalBackend/AbstractBackend.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/PrincipalBackend/BackendInterface.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/PrincipalBackend/PDO.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/PrincipalCollection.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/Property/Acl.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/Property/AclRestrictions.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/Property/CurrentUserPrivilegeSet.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/Property/Principal.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/Property/SupportedPrivilegeSet.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/DAVACL/Version.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/HTTP/AWSAuth.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/HTTP/AbstractAuth.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/HTTP/BasicAuth.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/HTTP/DigestAuth.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/HTTP/Request.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/HTTP/Response.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/HTTP/Util.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/HTTP/Version.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/lib/Sabre/autoload.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/autoload.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/composer/ClassLoader.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/composer/autoload_classmap.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/composer/autoload_namespaces.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/composer/autoload_real.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/composer/installed.json
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/.travis.yml
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/ChangeLog
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/LICENSE
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/README.md
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/bin/vobjectvalidate.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/composer.json
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Component.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Component/VAlarm.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Component/VCalendar.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Component/VCard.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Component/VEvent.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Component/VFreeBusy.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Component/VJournal.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Component/VTodo.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/DateTimeParser.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/ElementList.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/FreeBusyGenerator.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Node.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Parameter.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/ParseException.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Property.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Property/Compound.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Property/DateTime.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Property/MultiDateTime.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Reader.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/RecurrenceIterator.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Splitter/ICalendar.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Splitter/SplitterInterface.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Splitter/VCard.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/StringUtil.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/TimeZoneUtil.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Version.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/includes.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/Component/VAlarmTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/Component/VCalendarTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/Component/VCardTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/Component/VEventTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/Component/VFreeBusyTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/Component/VJournalTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/Component/VTodoTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/ComponentTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/DateTimeParserTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/ElementListTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/EmClientTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/FreeBusyGeneratorTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/Issue153Test.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/Issue154Test.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/ParameterTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/Property/CompoundTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/Property/DateTimeTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/Property/MultiDateTimeTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/PropertyTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/ReaderTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/RecurrenceIteratorFifthTuesdayProblemTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/RecurrenceIteratorInfiniteLoopProblemTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/RecurrenceIteratorMinusOneProblemTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/RecurrenceIteratorTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/Splitter/ICalendarTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/Splitter/VCardTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/StringUtilTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/TimeZoneUtilTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/VersionTest.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/issue153.vcf
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/bootstrap.php
-%%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/phpunit.xml
 %%WWWDIR%%/Core/Frameworks/TwitterBootstrap/css/bootstrap-responsive.css
 %%WWWDIR%%/Core/Frameworks/TwitterBootstrap/css/bootstrap-responsive.min.css
 %%WWWDIR%%/Core/Frameworks/TwitterBootstrap/css/bootstrap.css
@@ -547,6 +292,7 @@
 %%WWWDIR%%/Core/Frameworks/TwitterBootstrap/js/bootstrap.min.js
 %%WWWDIR%%/Core/Frameworks/TwitterBootstrap/js/jquery-1.7.1.min.js
 %%WWWDIR%%/Core/Resources/Db/MySQL/db.sql
+%%WWWDIR%%/Core/Resources/Db/SQLite/db.sql
 %%WWWDIR%%/Core/Resources/Db/SQLite/db.sqlite
 %%WWWDIR%%/Core/Resources/System/htaccess-documentroot
 %%WWWDIR%%/Core/Resources/System/htaccess-specific
@@ -564,6 +310,599 @@
 %%WWWDIR%%/html/card.php
 %%WWWDIR%%/html/index.php
 %%WWWDIR%%/html/res/core
+%%WWWDIR%%/vendor/autoload.php
+%%WWWDIR%%/vendor/bin/sabredav
+%%WWWDIR%%/vendor/bin/vobjectvalidate.php
+%%WWWDIR%%/vendor/composer/ClassLoader.php
+%%WWWDIR%%/vendor/composer/autoload_classmap.php
+%%WWWDIR%%/vendor/composer/autoload_namespaces.php
+%%WWWDIR%%/vendor/composer/autoload_real.php
+%%WWWDIR%%/vendor/composer/installed.json
+%%WWWDIR%%/vendor/sabre/dav/.gitignore
+%%WWWDIR%%/vendor/sabre/dav/.travis.yml
+%%WWWDIR%%/vendor/sabre/dav/ChangeLog
+%%WWWDIR%%/vendor/sabre/dav/LICENSE
+%%WWWDIR%%/vendor/sabre/dav/README.md
+%%WWWDIR%%/vendor/sabre/dav/bin/googlecode_upload.py
+%%WWWDIR%%/vendor/sabre/dav/bin/migrateto17.php
+%%WWWDIR%%/vendor/sabre/dav/bin/naturalselection.py
+%%WWWDIR%%/vendor/sabre/dav/bin/sabredav
+%%WWWDIR%%/vendor/sabre/dav/bin/sabredav.php
+%%WWWDIR%%/vendor/sabre/dav/build.xml
+%%WWWDIR%%/vendor/sabre/dav/composer.json
+%%WWWDIR%%/vendor/sabre/dav/docs/caldav-ctag.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/caldav-notifications.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/caldav-proxy.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/caldav-sharing.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/draft-daboo-carddav-directory-gateway-02.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/draft-desruisseaux-caldav-sched-10.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/draft-ietf-httpbis-p1-messaging-11.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/draft-ietf-httpbis-p4-conditional-11.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/draft-ietf-httpbis-p5-range-11.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/draft-ietf-httpbis-p6-cache-11.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/draft-nottingham-http-new-status-04.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc2425.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc2426.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc2518.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc2616.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc2617.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc3253.pdf
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc3744.pdf
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc4437.pdf
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc4790.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc4791.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc4918.pdf
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc5051.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc5397.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc5545.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc5546.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc5689.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc5785.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc5789.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc6047.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc6321.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc6350.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc6351.txt
+%%WWWDIR%%/vendor/sabre/dav/docs/rfc6352.txt
+%%WWWDIR%%/vendor/sabre/dav/examples/addressbookserver.php
+%%WWWDIR%%/vendor/sabre/dav/examples/basicauth.php
+%%WWWDIR%%/vendor/sabre/dav/examples/calendarserver.php
+%%WWWDIR%%/vendor/sabre/dav/examples/digestauth.php
+%%WWWDIR%%/vendor/sabre/dav/examples/fileserver.php
+%%WWWDIR%%/vendor/sabre/dav/examples/groupwareserver.php
+%%WWWDIR%%/vendor/sabre/dav/examples/simplefsserver.php
+%%WWWDIR%%/vendor/sabre/dav/examples/sql/mysql.addressbook.sql
+%%WWWDIR%%/vendor/sabre/dav/examples/sql/mysql.calendars.sql
+%%WWWDIR%%/vendor/sabre/dav/examples/sql/mysql.locks.sql
+%%WWWDIR%%/vendor/sabre/dav/examples/sql/mysql.principals.sql
+%%WWWDIR%%/vendor/sabre/dav/examples/sql/mysql.users.sql
+%%WWWDIR%%/vendor/sabre/dav/examples/sql/pgsql.addressbook.sql
+%%WWWDIR%%/vendor/sabre/dav/examples/sql/pgsql.calendars.sql
+%%WWWDIR%%/vendor/sabre/dav/examples/sql/pgsql.locks.sql
+%%WWWDIR%%/vendor/sabre/dav/examples/sql/pgsql.principals.sql
+%%WWWDIR%%/vendor/sabre/dav/examples/sql/pgsql.users.sql
+%%WWWDIR%%/vendor/sabre/dav/examples/sql/sqlite.addressbooks.sql
+%%WWWDIR%%/vendor/sabre/dav/examples/sql/sqlite.calendars.sql
+%%WWWDIR%%/vendor/sabre/dav/examples/sql/sqlite.locks.sql
+%%WWWDIR%%/vendor/sabre/dav/examples/sql/sqlite.principals.sql
+%%WWWDIR%%/vendor/sabre/dav/examples/sql/sqlite.users.sql
+%%WWWDIR%%/vendor/sabre/dav/examples/webserver/apache2_htaccess.conf
+%%WWWDIR%%/vendor/sabre/dav/examples/webserver/apache2_vhost.conf
+%%WWWDIR%%/vendor/sabre/dav/examples/webserver/apache2_vhost_cgi.conf
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Backend/AbstractBackend.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Backend/BackendInterface.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Backend/NotificationSupport.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Backend/PDO.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Backend/SharingSupport.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Calendar.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/CalendarObject.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/CalendarQueryParser.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/CalendarQueryValidator.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/CalendarRootNode.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Exception/InvalidComponentType.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/ICSExportPlugin.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/ICalendar.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/ICalendarObject.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/IShareableCalendar.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/ISharedCalendar.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Notifications/Collection.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Notifications/ICollection.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Notifications/INode.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Notifications/INotificationType.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Notifications/Node.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Notifications/Notification/Invite.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Notifications/Notification/InviteReply.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Notifications/Notification/SystemStatus.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Plugin.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Principal/Collection.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Principal/IProxyRead.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Principal/IProxyWrite.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Principal/ProxyRead.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Principal/ProxyWrite.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Principal/User.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Property/AllowedSharingModes.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Property/Invite.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Property/ScheduleCalendarTransp.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Property/SupportedCalendarComponentSet.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Property/SupportedCalendarData.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Property/SupportedCollationSet.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Schedule/IMip.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Schedule/IOutbox.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Schedule/Outbox.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/ShareableCalendar.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/SharedCalendar.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/SharingPlugin.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/UserCalendars.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Version.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CardDAV/AddressBook.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CardDAV/AddressBookQueryParser.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CardDAV/AddressBookRoot.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CardDAV/Backend/AbstractBackend.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CardDAV/Backend/BackendInterface.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CardDAV/Backend/PDO.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CardDAV/Card.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CardDAV/IAddressBook.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CardDAV/ICard.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CardDAV/IDirectory.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CardDAV/Plugin.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CardDAV/Property/SupportedAddressData.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CardDAV/UserAddressBooks.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CardDAV/VCFExportPlugin.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CardDAV/Version.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Auth/Backend/AbstractBasic.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Auth/Backend/AbstractDigest.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Auth/Backend/Apache.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Auth/Backend/BackendInterface.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Auth/Backend/File.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Auth/Backend/PDO.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Auth/Plugin.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Browser/GuessContentType.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Browser/MapGetToPropFind.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Browser/Plugin.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Browser/assets/favicon.ico
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Browser/assets/icons/addressbook.png
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Browser/assets/icons/calendar.png
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Browser/assets/icons/card.png
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Browser/assets/icons/collection.png
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Browser/assets/icons/file.png
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Browser/assets/icons/parent.png
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Browser/assets/icons/principal.png
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Client.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Collection.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception/BadRequest.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception/Conflict.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception/ConflictingLock.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception/FileNotFound.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception/Forbidden.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception/InsufficientStorage.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception/InvalidResourceType.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception/LockTokenMatchesRequestUri.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception/Locked.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception/MethodNotAllowed.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception/NotAuthenticated.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception/NotFound.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception/NotImplemented.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception/PaymentRequired.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception/PreconditionFailed.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception/ReportNotSupported.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception/RequestedRangeNotSatisfiable.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception/ServiceUnavailable.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception/UnsupportedMediaType.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/FS/Directory.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/FS/File.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/FS/Node.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/FSExt/Directory.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/FSExt/File.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/FSExt/Node.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/File.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/ICollection.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/IExtendedCollection.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/IFile.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/INode.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/IProperties.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/IQuota.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Locks/Backend/AbstractBackend.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Locks/Backend/BackendInterface.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Locks/Backend/FS.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Locks/Backend/File.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Locks/Backend/PDO.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Locks/LockInfo.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Locks/Plugin.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Mount/Plugin.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Node.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/ObjectTree.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/PartialUpdate/IFile.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/PartialUpdate/Plugin.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Property.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Property/GetLastModified.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Property/Href.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Property/HrefList.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Property/IHref.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Property/LockDiscovery.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Property/ResourceType.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Property/Response.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Property/ResponseList.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Property/SupportedLock.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Property/SupportedReportSet.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/PropertyInterface.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Server.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/ServerPlugin.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/SimpleCollection.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/SimpleFile.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/StringUtil.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/TemporaryFileFilterPlugin.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Tree.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Tree/Filesystem.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/URLUtil.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/UUIDUtil.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Version.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/XMLUtil.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/AbstractPrincipalCollection.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/Exception/AceConflict.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/Exception/NeedPrivileges.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/Exception/NoAbstract.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/Exception/NotRecognizedPrincipal.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/Exception/NotSupportedPrivilege.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/IACL.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/IPrincipal.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/IPrincipalCollection.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/Plugin.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/Principal.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/PrincipalBackend/AbstractBackend.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/PrincipalBackend/BackendInterface.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/PrincipalBackend/PDO.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/PrincipalCollection.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/Property/Acl.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/Property/AclRestrictions.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/Property/CurrentUserPrivilegeSet.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/Property/Principal.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/Property/SupportedPrivilegeSet.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/Version.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/HTTP/AWSAuth.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/HTTP/AbstractAuth.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/HTTP/BasicAuth.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/HTTP/DigestAuth.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/HTTP/Request.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/HTTP/Response.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/HTTP/Util.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/HTTP/Version.php
+%%WWWDIR%%/vendor/sabre/dav/lib/Sabre/autoload.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/AbstractPDOTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/AbstractTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/Mock.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/PDOMySQLTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/PDOSqliteTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/CalendarObjectTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/CalendarQueryParserTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/CalendarQueryVAlarmTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/CalendarQueryValidatorTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/CalendarTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/ExpandEventsDTSTARTandDTENDTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/ExpandEventsDTSTARTandDTENDbyDayTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/ExpandEventsDoubleEventsTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/FreeBusyReportTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/FreeBusyRequestTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/GetEventsByTimerangeTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/ICSExportPluginTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Issue166Test.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Issue172Test.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Issue203Test.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Issue205Test.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Issue211Test.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Issue220Test.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Issue228Test.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Notifications/CollectionTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Notifications/NodeTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Notifications/Notification/InviteReplyTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Notifications/Notification/InviteTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Notifications/Notification/SystemStatusTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/OutboxPostTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/PluginTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Principal/CollectionTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Principal/ProxyReadTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Principal/ProxyWriteTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Principal/UserTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Property/AllowedSharingModesTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Property/InviteTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Property/ScheduleCalendarTranspTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Property/SupportedCalendarComponentSetTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Property/SupportedCalendarDataTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Property/SupportedCollationSetTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Schedule/IMip/Mock.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Schedule/OutboxTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/ShareableCalendarTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/SharedCalendarTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/SharingPluginTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/TestUtil.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/UserCalendarsSharedCalendarsTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/UserCalendarsTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/ValidateICalTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/VersionTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/AbstractPluginTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/AddressBookQueryParserTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/AddressBookQueryTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/AddressBookRootTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/AddressBookTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/Backend/AbstractPDOTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/Backend/Mock.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/Backend/PDOMySQLTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/Backend/PDOSqliteTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/CardTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/IDirectoryTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/MultiGetTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/PluginTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/Property/SupportedAddressDataTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/SogoStripContentTypeTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/TestUtil.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/UserAddressBooksTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/VCFExportTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/ValidateFilterTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/ValidateVCardTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/VersionTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/AbstractServer.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/AbstractBasicTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/AbstractDigestTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/AbstractPDOTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/ApacheTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/FileTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/Mock.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/PDOMySQLTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/PDOSqliteTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Auth/PluginTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/BasicNodeTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Browser/GuessContentTypeTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Browser/MapGetToPropFindTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Browser/PluginTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/ClientMock.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/ClientTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Exception/LockedTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Exception/PaymentRequiredTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/ExceptionTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/FSExt/FileTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/FSExt/NodeTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/FSExt/ServerTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/HTTPPreferParsingTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Issue33Test.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Locks/Backend/AbstractTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Locks/Backend/FSTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Locks/Backend/FileTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Locks/Backend/PDOMySQLTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Locks/Backend/PDOTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Locks/GetIfConditionsTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Locks/MSWordTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Locks/PluginTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Mount/PluginTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/ObjectTreeTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/PartialUpdate/FileMock.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/PartialUpdate/PluginTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Property/GetLastModifiedTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Property/HrefListTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Property/HrefTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Property/ResourceTypeTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Property/ResponseListTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Property/ResponseTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Property/SupportedReportSetTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/ServerCopyMoveTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/ServerEventsTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/ServerFinderBlockTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/ServerMKCOLTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/ServerPluginTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/ServerPreconditionTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/ServerPropsTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/ServerRangeTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/ServerSimpleTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/ServerUpdatePropertiesTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/SimpleFileTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/StringUtilTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/TemporaryFileFilterTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/TestPlugin.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Tree/FilesystemTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/TreeTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/URLUtilTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/UUIDUtilTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/XMLUtilTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/ACLMethodTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/AllowAccessTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/BlockAccessTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/Exception/AceConflictTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/Exception/NeedPrivilegesExceptionTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/Exception/NoAbstractTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/Exception/NotRecognizedPrincipalTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/Exception/NotSupportedPrivilegeTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/ExpandPropertiesTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/MockACLNode.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/MockPrincipal.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/PluginAdminTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/PluginPropertiesTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/PluginUpdatePropertiesTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalBackend/AbstractPDOTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalBackend/Mock.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalBackend/PDOMySQLTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalBackend/PDOSqliteTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalCollectionTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalPropertySearchTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalSearchPropertySetTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/Property/ACLRestrictionsTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/Property/ACLTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/Property/CurrentUserPrivilegeSetTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/Property/PrincipalTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/Property/SupportedPrivilegeSetTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/SimplePluginTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/VersionTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVServerTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/HTTP/AWSAuthTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/HTTP/BasicAuthTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/HTTP/DigestAuthTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/HTTP/RequestTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/HTTP/ResponseMock.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/HTTP/ResponseTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/HTTP/UtilTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/HTTP/VersionTest.php
+%%WWWDIR%%/vendor/sabre/dav/tests/Sabre/TestUtil.php
+%%WWWDIR%%/vendor/sabre/dav/tests/bootstrap.php
+%%WWWDIR%%/vendor/sabre/dav/tests/composer.vobject3.json
+%%WWWDIR%%/vendor/sabre/dav/tests/phpunit.xml
+%%WWWDIR%%/vendor/sabre/vobject/.gitignore
+%%WWWDIR%%/vendor/sabre/vobject/.travis.yml
+%%WWWDIR%%/vendor/sabre/vobject/ChangeLog
+%%WWWDIR%%/vendor/sabre/vobject/LICENSE
+%%WWWDIR%%/vendor/sabre/vobject/README.md
+%%WWWDIR%%/vendor/sabre/vobject/bin/bench.php
+%%WWWDIR%%/vendor/sabre/vobject/bin/generateicalendardata.php
+%%WWWDIR%%/vendor/sabre/vobject/bin/vobjectvalidate.php
+%%WWWDIR%%/vendor/sabre/vobject/composer.json
+%%WWWDIR%%/vendor/sabre/vobject/doc/DesignFor3_0.md
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Component.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Component/VAlarm.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Component/VCalendar.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Component/VCard.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Component/VEvent.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Component/VFreeBusy.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Component/VJournal.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Component/VTodo.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/DateTimeParser.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Document.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/ElementList.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/FreeBusyGenerator.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Node.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Parameter.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/ParseException.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Property.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Property/Compound.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Property/DateTime.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Property/MultiDateTime.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Reader.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/RecurrenceIterator.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Splitter/ICalendar.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Splitter/SplitterInterface.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Splitter/VCard.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/StringUtil.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/TimeZoneUtil.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Version.php
+%%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/includes.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/Component/VAlarmTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/Component/VCalendarTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/Component/VCardTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/Component/VEventTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/Component/VFreeBusyTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/Component/VJournalTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/Component/VTodoTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/ComponentTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/DateTimeParserTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/DocumentTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/ElementListTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/EmClientTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/FreeBusyGeneratorTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/Issue153Test.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/Issue154Test.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/ParameterTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/Property/CompoundTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/Property/DateTimeTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/Property/MultiDateTimeTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/PropertyTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/ReaderTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/RecurrenceIteratorFifthTuesdayProblemTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/RecurrenceIteratorInfiniteLoopProblemTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/RecurrenceIteratorMinusOneProblemTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/RecurrenceIteratorTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/Splitter/ICalendarTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/Splitter/VCardTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/StringUtilTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/TimeZoneUtilTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/VersionTest.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/issue153.vcf
+%%WWWDIR%%/vendor/sabre/vobject/tests/bootstrap.php
+%%WWWDIR%%/vendor/sabre/vobject/tests/phpunit.xml
+@dirrm %%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/Splitter
+@dirrm %%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/Property
+@dirrm %%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject/Component
+@dirrm %%WWWDIR%%/vendor/sabre/vobject/tests/Sabre/VObject
+@dirrm %%WWWDIR%%/vendor/sabre/vobject/tests/Sabre
+@dirrm %%WWWDIR%%/vendor/sabre/vobject/tests
+@dirrm %%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Splitter
+@dirrm %%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Property
+@dirrm %%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject/Component
+@dirrm %%WWWDIR%%/vendor/sabre/vobject/lib/Sabre/VObject
+@dirrm %%WWWDIR%%/vendor/sabre/vobject/lib/Sabre
+@dirrm %%WWWDIR%%/vendor/sabre/vobject/lib
+@dirrm %%WWWDIR%%/vendor/sabre/vobject/doc
+@dirrm %%WWWDIR%%/vendor/sabre/vobject/bin
+@dirrm %%WWWDIR%%/vendor/sabre/vobject
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/HTTP
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/Property
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalBackend
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL/Exception
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAVACL
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Tree
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Property
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/PartialUpdate
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Mount
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Locks/Backend
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Locks
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/FSExt
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Exception
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Browser
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV/Auth
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/DAV
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/Property
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV/Backend
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CardDAV
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Schedule/IMip
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Schedule
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Property
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Principal
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Notifications/Notification
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Notifications
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV/Backend
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre/CalDAV
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests/Sabre
+@dirrm %%WWWDIR%%/vendor/sabre/dav/tests
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/HTTP
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/Property
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/PrincipalBackend
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL/Exception
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAVACL
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Tree
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Property
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/PartialUpdate
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Mount
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Locks/Backend
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Locks
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/FSExt
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/FS
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Exception
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Browser/assets/icons
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Browser/assets
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Browser
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Auth/Backend
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV/Auth
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/DAV
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CardDAV/Property
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CardDAV/Backend
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CardDAV
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Schedule
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Property
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Principal
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Notifications/Notification
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Notifications
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Exception
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV/Backend
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre/CalDAV
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib/Sabre
+@dirrm %%WWWDIR%%/vendor/sabre/dav/lib
+@dirrm %%WWWDIR%%/vendor/sabre/dav/examples/webserver
+@dirrm %%WWWDIR%%/vendor/sabre/dav/examples/sql
+@dirrm %%WWWDIR%%/vendor/sabre/dav/examples
+@dirrm %%WWWDIR%%/vendor/sabre/dav/docs
+@dirrm %%WWWDIR%%/vendor/sabre/dav/bin
+@dirrm %%WWWDIR%%/vendor/sabre/dav
+@dirrm %%WWWDIR%%/vendor/sabre
+@dirrm %%WWWDIR%%/vendor/composer
+@dirrm %%WWWDIR%%/vendor/bin
+@dirrm %%WWWDIR%%/vendor
 @dirrm %%WWWDIR%%/html/res
 @dirrm %%WWWDIR%%/html/admin/install
 @dirrm %%WWWDIR%%/html/admin
@@ -580,57 +919,6 @@
 @dirrm %%WWWDIR%%/Core/Frameworks/TwitterBootstrap/img
 @dirrm %%WWWDIR%%/Core/Frameworks/TwitterBootstrap/css
 @dirrm %%WWWDIR%%/Core/Frameworks/TwitterBootstrap
-@dirrm %%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/Splitter
-@dirrm %%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/Property
-@dirrm %%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject/Component
-@dirrm %%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre/VObject
-@dirrm %%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests/Sabre
-@dirrm %%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/tests
-@dirrm %%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Splitter
-@dirrm %%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Property
-@dirrm %%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject/Component
-@dirrm %%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre/VObject
-@dirrm %%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib/Sabre
-@dirrm %%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/lib
-@dirrm %%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject/bin
-@dirrm %%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre/vobject
-@dirrm %%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/sabre
-@dirrm %%WWWDIR%%/Core/Frameworks/SabreDAV/vendor/composer
-@dirrm %%WWWDIR%%/Core/Frameworks/SabreDAV/vendor

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Mathieu Arnold freebsd_committer freebsd_triage 2013-10-03 15:20:50 UTC
State Changed
From-To: open->closed

Committed.