Home
last modified time | relevance | path

Searched refs:vcal (Results 1 – 25 of 94) sorted by relevance

1234

/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Recur/EventIterator/
DMainTest.php14 $vcal = new VCalendar();
15 $ev = $vcal->createComponent('VEVENT');
18 $dtStart = $vcal->createProperty('DTSTART');
23 $vcal->add($ev);
25 $it = new EventIterator($vcal, (string)$ev->UID);
37 $vcal = new VCalendar();
38 $ev = $vcal->createComponent('VEVENT');
41 $dtStart = $vcal->createProperty('DTSTART');
45 $vcal->add($ev);
47 $it = new EventIterator($vcal, (string)$ev->UID);
[all …]
DExpandFloatingTimesTest.php27 $vcal = Reader::read($input);
28 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal);
30 $vcal = $vcal->expand(new DateTime('2015-01-01'), new DateTime('2015-01-31'));
61 $this->assertVObjectEqualsVObject($output, $vcal);
79 $vcal = Reader::read($input);
80 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal);
82 $vcal = $vcal->expand(
118 $this->assertVObjectEqualsVObject($output, $vcal);
DOverrideFirstEventTest.php32 $vcal = Reader::read($input);
33 $vcal = $vcal->expand(new DateTime('2014-08-01'), new DateTime('2014-09-01'));
73 $vcal
94 $vcal = Reader::read($input);
95 $vcal = $vcal->expand(new DateTime('2014-08-01'), new DateTime('2014-08-19'));
117 $vcal
DInfiniteLoopProblemTest.php14 $this->vcal = new VCalendar();
24 $ev = $this->vcal->createComponent('VEVENT');
38 $ev = $this->vcal->createComponent('VEVENT');
52 $this->vcal->add($ev);
54 $it = new Recur\EventIterator($this->vcal, 'uuid');
85 $ev = $this->vcal->createComponent('VEVENT');
89 $this->vcal->add($ev);
91 $it = new Recur\EventIterator($this->vcal, 'uuid');
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Recur/EventIterator/
DMainTest.php14 $vcal = new VCalendar();
15 $ev = $vcal->createComponent('VEVENT');
18 $dtStart = $vcal->createProperty('DTSTART');
23 $vcal->add($ev);
25 $it = new EventIterator($vcal,(string)$ev->uid);
37 $vcal = new VCalendar();
38 $ev = $vcal->createComponent('VEVENT');
41 $dtStart = $vcal->createProperty('DTSTART');
45 $vcal->add($ev);
47 $it = new EventIterator($vcal,(string)$ev->uid);
[all …]
DExpandFloatingTimesTest.php26 $vcal = Reader::read($input);
27 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal);
29 $vcal->expand(new DateTime('2015-01-01'), new DateTime('2015-01-31'));
31 $result = $vcal->serialize();
81 $vcal = Reader::read($input);
82 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal);
84 …$vcal->expand(new DateTime('2015-01-01'), new DateTime('2015-01-31'), new \DateTimeZone('Europe/Be…
86 $result = $vcal->serialize();
DInfiniteLoopProblemTest.php15 $this->vcal = new VCalendar();
25 $ev = $this->vcal->createComponent('VEVENT');
39 $ev = $this->vcal->createComponent('VEVENT');
53 $this->vcal->add($ev);
55 $it = new Recur\EventIterator($this->vcal,'uuid');
86 $ev = $this->vcal->createComponent('VEVENT');
90 $this->vcal->add($ev);
92 $it = new Recur\EventIterator($this->vcal,'uuid');
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Recur/EventIterator/
DMainTest.php14 $vcal = new VCalendar();
15 $ev = $vcal->createComponent('VEVENT');
18 $dtStart = $vcal->createProperty('DTSTART');
23 $vcal->add($ev);
25 $it = new EventIterator($vcal,(string)$ev->uid);
37 $vcal = new VCalendar();
38 $ev = $vcal->createComponent('VEVENT');
41 $dtStart = $vcal->createProperty('DTSTART');
45 $vcal->add($ev);
47 $it = new EventIterator($vcal,(string)$ev->uid);
[all …]
DExpandFloatingTimesTest.php26 $vcal = Reader::read($input);
27 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal);
29 $vcal->expand(new DateTime('2015-01-01'), new DateTime('2015-01-31'));
31 $result = $vcal->serialize();
81 $vcal = Reader::read($input);
82 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal);
84 …$vcal->expand(new DateTime('2015-01-01'), new DateTime('2015-01-31'), new \DateTimeZone('Europe/Be…
86 $result = $vcal->serialize();
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Recur/EventIterator/
H A DMainTest.php14 $vcal = new VCalendar();
15 $ev = $vcal->createComponent('VEVENT');
18 $dtStart = $vcal->createProperty('DTSTART');
23 $vcal->add($ev);
25 $it = new EventIterator($vcal,(string)$ev->uid);
37 $vcal = new VCalendar();
38 $ev = $vcal->createComponent('VEVENT');
41 $dtStart = $vcal->createProperty('DTSTART');
45 $vcal->add($ev);
47 $it = new EventIterator($vcal,(string)$ev->uid);
[all …]
H A DExpandFloatingTimesTest.php25 $vcal = Reader::read($input);
26 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal);
28 $vcal->expand(new DateTime('2015-01-01'), new DateTime('2015-01-31'));
30 $result = $vcal->serialize();
79 $vcal = Reader::read($input);
80 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal);
82 …$vcal->expand(new DateTime('2015-01-01'), new DateTime('2015-01-31'), new \DateTimeZone('Europe/Be…
84 $result = $vcal->serialize();
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Component/
DVCalendarTest.php17 $vcal = VObject\Reader::read($input);
21 $vcal = $vcal->expand(
30 $this->assertVObjectEqualsVObject($output, $vcal->serialize());
348 $vcal = VObject\Reader::read($input);
349 $vcal->expand(
378 $vcal = VObject\Reader::read($input);
379 $this->assertEquals([], $vcal->validate(), 'Got an error');
396 $vcal = VObject\Reader::read($input);
397 $this->assertEquals(1, count($vcal->validate()));
415 $vcal = VObject\Reader::read($input);
[all …]
DVAvailabilityTest.php18 $vcal = <<<VCAL
24 $document = Reader::read($vcal);
32 $vcal = <<<VCAL
41 $document = Reader::read($vcal);
55 $vcal = <<<VCAL
64 $document = Reader::read($vcal);
78 $vcal = <<<VCAL
85 $document = Reader::read($vcal);
98 $vcal = <<<VCAL
105 $document = Reader::read($vcal);
[all …]
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Component/
DVCalendarTest.php15 $vcal = VObject\Reader::read($input);
19 $vcal->expand(
28 $this->assertEquals($output, $vcal->serialize());
312 $vcal = VObject\Reader::read($input);
313 $vcal->expand(
342 $vcal = VObject\Reader::read($input);
343 $this->assertEquals(array(), $vcal->validate(), 'Got an error');
360 $vcal = VObject\Reader::read($input);
361 $this->assertEquals(1, count($vcal->validate()));
379 $vcal = VObject\Reader::read($input);
[all …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Component/
DVCalendarTest.php15 $vcal = VObject\Reader::read($input);
19 $vcal->expand(
28 $this->assertEquals($output, $vcal->serialize());
312 $vcal = VObject\Reader::read($input);
313 $vcal->expand(
342 $vcal = VObject\Reader::read($input);
343 $this->assertEquals(array(), $vcal->validate(), 'Got an error');
360 $vcal = VObject\Reader::read($input);
361 $this->assertEquals(1, count($vcal->validate()));
379 $vcal = VObject\Reader::read($input);
[all …]
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Component/
H A DVCalendarTest.php15 $vcal = VObject\Reader::read($input);
19 $vcal->expand(
28 $this->assertEquals($output, $vcal->serialize());
311 $vcal = VObject\Reader::read($input);
312 $vcal->expand(
341 $vcal = VObject\Reader::read($input);
342 $this->assertEquals(array(), $vcal->validate(), 'Got an error');
359 $vcal = VObject\Reader::read($input);
360 $this->assertEquals(1, count($vcal->validate()));
378 $vcal = VObject\Reader::read($input);
[all …]
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/
DDocumentTest.php23 $vcal = new Component\VCalendar([], false);
25 $event = $vcal->createComponent('VEVENT');
28 $vcal->add($event);
30 $prop = $vcal->createProperty('X-PROP', '1234256', ['X-PARAM' => '3']);
40 $out = $vcal->serialize();
47 $vcal = new Component\VCalendar([], false);
49 $event = $vcal->create('VEVENT');
52 $prop = $vcal->create('CALSCALE');
59 $vcal = new Component\VCalendar([], false);
60 …$this->assertEquals('Sabre\\VObject\\Property\\Text', $vcal->getClassNameForPropertyValue('TEXT'));
[all …]
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Property/ICalendar/
DDateTimeTest.php9 protected $vcal; variable in Sabre\\VObject\\Property\\ICalendar\\DateTimeTest
13 $this->vcal = new VCalendar();
23 $elem = $this->vcal->createProperty('DTSTART');
40 $elem = $this->vcal->createProperty('DTSTART');
55 $elem = $this->vcal->createProperty('DTSTART');
69 $elem = $this->vcal->createProperty('DTSTART');
84 $elem = $this->vcal->createProperty('DTSTART');
99 $elem = $this->vcal->createProperty('DTSTART');
116 $elem = $this->vcal->createProperty('DTSTART');
135 $elem = $this->vcal->createProperty('DTSTART');
[all …]
DRecurTest.php15 $vcal = new VCalendar();
16 $recur = $vcal->add('RRULE', 'FREQ=Daily');
32 $vcal = new VCalendar();
33 $recur = $vcal->add('RRULE', 'FREQ=Daily');
39 $vcal = new VCalendar();
40 $recur = $vcal->add('RRULE', 'FREQ=Daily');
59 $vcal = Reader::read($input);
60 $rrule = $vcal->VEVENT->RRULE;
68 $vcal = new VCalendar();
69 $recur = $vcal->add('RRULE', ['FREQ' => 'DAILY', 'BYDAY' => 'mo,tu', 'BYMONTH' => [0, 1]]);
[all …]
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Property/ICalendar/
DDateTimeTest.php11 protected $vcal; variable in Sabre\\VObject\\Property\\ICalendar\\DateTimeTest
15 $this->vcal = new VCalendar();
25 $elem = $this->vcal->createProperty('DTSTART');
42 $elem = $this->vcal->createProperty('DTSTART');
57 $elem = $this->vcal->createProperty('DTSTART');
72 $elem = $this->vcal->createProperty('DTSTART');
87 $elem = $this->vcal->createProperty('DTSTART');
104 $elem = $this->vcal->createProperty('DTSTART');
123 $elem = $this->vcal->createProperty('DTSTART');
142 $elem = $this->vcal->createProperty('DTSTART');
[all …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Property/ICalendar/
DDateTimeTest.php11 protected $vcal; variable in Sabre\\VObject\\Property\\ICalendar\\DateTimeTest
15 $this->vcal = new VCalendar();
25 $elem = $this->vcal->createProperty('DTSTART');
42 $elem = $this->vcal->createProperty('DTSTART');
57 $elem = $this->vcal->createProperty('DTSTART');
72 $elem = $this->vcal->createProperty('DTSTART');
87 $elem = $this->vcal->createProperty('DTSTART');
104 $elem = $this->vcal->createProperty('DTSTART');
123 $elem = $this->vcal->createProperty('DTSTART');
142 $elem = $this->vcal->createProperty('DTSTART');
[all …]
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Property/ICalendar/
H A DDateTimeTest.php11 protected $vcal; variable in Sabre\\VObject\\Property\\ICalendar\\DateTimeTest
15 $this->vcal = new VCalendar();
25 $elem = $this->vcal->createProperty('DTSTART');
42 $elem = $this->vcal->createProperty('DTSTART');
57 $elem = $this->vcal->createProperty('DTSTART');
72 $elem = $this->vcal->createProperty('DTSTART');
87 $elem = $this->vcal->createProperty('DTSTART');
104 $elem = $this->vcal->createProperty('DTSTART');
123 $elem = $this->vcal->createProperty('DTSTART');
142 $elem = $this->vcal->createProperty('DTSTART');
[all …]
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/
DDocumentTest.php23 $vcal = new Component\VCalendar(array(), false);
25 $event = $vcal->createComponent('VEVENT');
28 $vcal->add($event);
30 $prop = $vcal->createProperty('X-PROP','1234256',array('X-PARAM' => '3'));
40 $out = $vcal->serialize();
47 $vcal = new Component\VCalendar(array(), false);
49 $event = $vcal->create('VEVENT');
52 $event = $vcal->create('CALSCALE');
59 $vcal = new Component\VCalendar(array(), false);
60 …$this->assertEquals('Sabre\\VObject\\Property\\Text', $vcal->getClassNameForPropertyValue('TEXT'));
[all …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/
DDocumentTest.php23 $vcal = new Component\VCalendar(array(), false);
25 $event = $vcal->createComponent('VEVENT');
28 $vcal->add($event);
30 $prop = $vcal->createProperty('X-PROP','1234256',array('X-PARAM' => '3'));
40 $out = $vcal->serialize();
47 $vcal = new Component\VCalendar(array(), false);
49 $event = $vcal->create('VEVENT');
52 $event = $vcal->create('CALSCALE');
59 $vcal = new Component\VCalendar(array(), false);
60 …$this->assertEquals('Sabre\\VObject\\Property\\Text', $vcal->getClassNameForPropertyValue('TEXT'));
[all …]
/plugin/davcal/vendor/sabre/vobject/tests/VObject/
H A DDocumentTest.php23 $vcal = new Component\VCalendar(array(), false);
25 $event = $vcal->createComponent('VEVENT');
28 $vcal->add($event);
30 $prop = $vcal->createProperty('X-PROP','1234256',array('X-PARAM' => '3'));
40 $out = $vcal->serialize();
47 $vcal = new Component\VCalendar(array(), false);
49 $event = $vcal->create('VEVENT');
52 $event = $vcal->create('CALSCALE');
59 $vcal = new Component\VCalendar(array(), false);
60 …$this->assertEquals('Sabre\\VObject\\Property\\Text', $vcal->getClassNameForPropertyValue('TEXT'));
[all …]

1234