@@ -2,13 +2,13 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Sabre\CalDAV; |
| 4 | 4 | |
| 5 | +use DateTime; |
|
| 5 | 6 | use DateTimeZone; |
| 6 | 7 | use Sabre\DAV; |
| 7 | -use Sabre\VObject; |
|
| 8 | +use Sabre\DAV\Exception\BadRequest; |
|
| 8 | 9 | use Sabre\HTTP\RequestInterface; |
| 9 | 10 | use Sabre\HTTP\ResponseInterface; |
| 10 | -use Sabre\DAV\Exception\BadRequest; |
|
| 11 | -use DateTime; |
|
| 11 | +use Sabre\VObject; |
|
| 12 | 12 | |
| 13 | 13 | /** |
| 14 | 14 | * ICS Exporter |
@@ -3,11 +3,11 @@ |
||
| 3 | 3 | namespace Sabre\CalDAV\Notifications; |
| 4 | 4 | |
| 5 | 5 | use Sabre\DAV; |
| 6 | -use Sabre\DAV\PropFind; |
|
| 6 | +use Sabre\DAVACL; |
|
| 7 | 7 | use Sabre\DAV\INode as BaseINode; |
| 8 | -use Sabre\DAV\ServerPlugin; |
|
| 8 | +use Sabre\DAV\PropFind; |
|
| 9 | 9 | use Sabre\DAV\Server; |
| 10 | -use Sabre\DAVACL; |
|
| 10 | +use Sabre\DAV\ServerPlugin; |
|
| 11 | 11 | use Sabre\HTTP\RequestInterface; |
| 12 | 12 | use Sabre\HTTP\ResponseInterface; |
| 13 | 13 | |
@@ -4,15 +4,15 @@ |
||
| 4 | 4 | |
| 5 | 5 | use DateTimeZone; |
| 6 | 6 | use Sabre\DAV; |
| 7 | +use Sabre\DAVACL; |
|
| 7 | 8 | use Sabre\DAV\Exception\BadRequest; |
| 8 | 9 | use Sabre\DAV\MkCol; |
| 9 | 10 | use Sabre\DAV\Xml\Property\Href; |
| 10 | -use Sabre\DAVACL; |
|
| 11 | -use Sabre\VObject; |
|
| 12 | 11 | use Sabre\HTTP; |
| 13 | -use Sabre\Uri; |
|
| 14 | 12 | use Sabre\HTTP\RequestInterface; |
| 15 | 13 | use Sabre\HTTP\ResponseInterface; |
| 14 | +use Sabre\Uri; |
|
| 15 | +use Sabre\VObject; |
|
| 16 | 16 | |
| 17 | 17 | /** |
| 18 | 18 | * CalDAV plugin |
@@ -2,10 +2,10 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Sabre\CalDAV\Schedule; |
| 4 | 4 | |
| 5 | -use Sabre\DAV; |
|
| 6 | 5 | use Sabre\CalDAV; |
| 7 | -use Sabre\DAVACL; |
|
| 8 | 6 | use Sabre\CalDAV\Backend; |
| 7 | +use Sabre\DAV; |
|
| 8 | +use Sabre\DAVACL; |
|
| 9 | 9 | use Sabre\VObject; |
| 10 | 10 | |
| 11 | 11 | /** |
@@ -2,8 +2,8 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Sabre\CalDAV\Schedule; |
| 4 | 4 | |
| 5 | -use Sabre\DAV; |
|
| 6 | 5 | use Sabre\CalDAV; |
| 6 | +use Sabre\DAV; |
|
| 7 | 7 | use Sabre\DAVACL; |
| 8 | 8 | |
| 9 | 9 | /** |
@@ -3,27 +3,27 @@ |
||
| 3 | 3 | namespace Sabre\CalDAV\Schedule; |
| 4 | 4 | |
| 5 | 5 | use DateTimeZone; |
| 6 | -use Sabre\DAV\Server; |
|
| 7 | -use Sabre\DAV\ServerPlugin; |
|
| 6 | +use Sabre\CalDAV\ICalendar; |
|
| 7 | +use Sabre\CalDAV\ICalendarObject; |
|
| 8 | +use Sabre\CalDAV\Xml\Property\ScheduleCalendarTransp; |
|
| 9 | +use Sabre\DAVACL; |
|
| 10 | +use Sabre\DAV\Exception\BadRequest; |
|
| 11 | +use Sabre\DAV\Exception\Forbidden; |
|
| 12 | +use Sabre\DAV\Exception\NotFound; |
|
| 13 | +use Sabre\DAV\Exception\NotImplemented; |
|
| 14 | +use Sabre\DAV\INode; |
|
| 8 | 15 | use Sabre\DAV\PropFind; |
| 9 | 16 | use Sabre\DAV\PropPatch; |
| 10 | -use Sabre\DAV\INode; |
|
| 17 | +use Sabre\DAV\Server; |
|
| 18 | +use Sabre\DAV\ServerPlugin; |
|
| 11 | 19 | use Sabre\DAV\Xml\Property\Href; |
| 12 | 20 | use Sabre\HTTP\RequestInterface; |
| 13 | 21 | use Sabre\HTTP\ResponseInterface; |
| 14 | 22 | use Sabre\VObject; |
| 15 | -use Sabre\VObject\Reader; |
|
| 16 | 23 | use Sabre\VObject\Component\VCalendar; |
| 17 | 24 | use Sabre\VObject\ITip; |
| 18 | 25 | use Sabre\VObject\ITip\Message; |
| 19 | -use Sabre\DAVACL; |
|
| 20 | -use Sabre\CalDAV\ICalendar; |
|
| 21 | -use Sabre\CalDAV\ICalendarObject; |
|
| 22 | -use Sabre\CalDAV\Xml\Property\ScheduleCalendarTransp; |
|
| 23 | -use Sabre\DAV\Exception\NotFound; |
|
| 24 | -use Sabre\DAV\Exception\Forbidden; |
|
| 25 | -use Sabre\DAV\Exception\BadRequest; |
|
| 26 | -use Sabre\DAV\Exception\NotImplemented; |
|
| 26 | +use Sabre\VObject\Reader; |
|
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * CalDAV scheduling plugin. |
@@ -4,8 +4,8 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Sabre\DAV\INode; |
| 6 | 6 | use Sabre\DAV\PropFind; |
| 7 | -use Sabre\DAV\ServerPlugin; |
|
| 8 | 7 | use Sabre\DAV\Server; |
| 8 | +use Sabre\DAV\ServerPlugin; |
|
| 9 | 9 | |
| 10 | 10 | /** |
| 11 | 11 | * This plugin adds calendar-subscription support to your CalDAV server. |
@@ -2,12 +2,12 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Sabre\CalDAV\Subscriptions; |
| 4 | 4 | |
| 5 | +use Sabre\CalDAV\Backend\SubscriptionSupport; |
|
| 6 | +use Sabre\DAVACL\IACL; |
|
| 5 | 7 | use Sabre\DAV\Collection; |
| 6 | -use Sabre\DAV\Xml\Property\Href; |
|
| 7 | -use Sabre\DAV\PropPatch; |
|
| 8 | 8 | use Sabre\DAV\Exception\MethodNotAllowed; |
| 9 | -use Sabre\DAVACL\IACL; |
|
| 10 | -use Sabre\CalDAV\Backend\SubscriptionSupport; |
|
| 9 | +use Sabre\DAV\PropPatch; |
|
| 10 | +use Sabre\DAV\Xml\Property\Href; |
|
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | 13 | * Subscription Node |
@@ -2,11 +2,11 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Sabre\CalDAV\Xml\Filter; |
| 4 | 4 | |
| 5 | -use Sabre\Xml\Reader; |
|
| 6 | -use Sabre\Xml\XmlDeserializable; |
|
| 7 | -use Sabre\DAV\Exception\BadRequest; |
|
| 8 | 5 | use Sabre\CalDAV\Plugin; |
| 6 | +use Sabre\DAV\Exception\BadRequest; |
|
| 9 | 7 | use Sabre\VObject\DateTimeParser; |
| 8 | +use Sabre\Xml\Reader; |
|
| 9 | +use Sabre\Xml\XmlDeserializable; |
|
| 10 | 10 | |
| 11 | 11 | /** |
| 12 | 12 | * PropFilter parser. |