Home
last modified time | relevance | path

Searched refs:newProperty (Results 1 – 9 of 9) sorted by relevance

/plugin/webdav/vendor/sabre/vobject/lib/
DVCardConverter.php89 $newProperty = $output->createProperty(
98 $newProperty = $this->convertUriToBinary($output, $newProperty);
110 $newProperty->setValue($newValue);
111 $newProperty['X-APPLE-OMIT-YEAR'] = '1604';
114 if ('ANNIVERSARY' == $newProperty->name) {
116 $newProperty->name = 'X-ANNIVERSARY';
126 … $output->add('ITEM'.$x.'.X-ABDATE', $newProperty->getValue(), ['VALUE' => 'DATE-AND-OR-TIME']);
135 $newProperty = $output->createProperty('X-ABSHOWAS', 'COMPANY');
144 $newProperty = $output->createProperty('X-ADDRESSBOOKSERVER-KIND', 'GROUP');
155 $newProperty = $this->convertBinaryToUri($output, $newProperty, $parameters);
[all …]
/plugin/davcard/vendor/sabre/vobject/lib/
DVCardConverter.php87 $newProperty = $output->createProperty(
99 $newProperty = $this->convertUriToBinary($output, $newProperty);
113 $newProperty->setValue($newValue);
114 $newProperty['X-APPLE-OMIT-YEAR'] = '1604';
117 if ($newProperty->name == 'ANNIVERSARY') {
119 $newProperty->name = 'X-ANNIVERSARY';
129 …$output->add('ITEM' . $x . '.X-ABDATE', $newProperty->getValue(), array('VALUE' => 'DATE-AND-OR-TI…
140 $newProperty = $output->createProperty('X-ABSHOWAS','COMPANY');
149 $newProperty = $output->createProperty('X-ADDRESSBOOKSERVER-KIND','GROUP');
165 $newProperty = $this->convertBinaryToUri($output, $newProperty, $parameters);
[all …]
/plugin/webdavclient/vendor/sabre/vobject/lib/
DVCardConverter.php87 $newProperty = $output->createProperty(
99 $newProperty = $this->convertUriToBinary($output, $newProperty);
113 $newProperty->setValue($newValue);
114 $newProperty['X-APPLE-OMIT-YEAR'] = '1604';
117 if ($newProperty->name == 'ANNIVERSARY') {
119 $newProperty->name = 'X-ANNIVERSARY';
129 …$output->add('ITEM' . $x . '.X-ABDATE', $newProperty->getValue(), array('VALUE' => 'DATE-AND-OR-TI…
140 $newProperty = $output->createProperty('X-ABSHOWAS','COMPANY');
149 $newProperty = $output->createProperty('X-ADDRESSBOOKSERVER-KIND','GROUP');
165 $newProperty = $this->convertBinaryToUri($output, $newProperty, $parameters);
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/
DVCardConverter.php91 $newProperty = $output->createProperty(
103 $newProperty = $this->convertUriToBinary($output, $newProperty);
117 $newProperty->setValue($newValue);
118 $newProperty['X-APPLE-OMIT-YEAR'] = '1604';
121 if ($newProperty->name == 'ANNIVERSARY') {
123 $newProperty->name = 'X-ANNIVERSARY';
133 …$output->add('ITEM' . $x . '.X-ABDATE', $newProperty->getValue(), ['VALUE' => 'DATE-AND-OR-TIME']);
144 $newProperty = $output->createProperty('X-ABSHOWAS', 'COMPANY');
153 $newProperty = $output->createProperty('X-ADDRESSBOOKSERVER-KIND', 'GROUP');
169 $newProperty = $this->convertBinaryToUri($output, $newProperty, $parameters);
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/
H A DVCardConverter.php87 $newProperty = $output->createProperty(
99 $newProperty = $this->convertUriToBinary($output, $newProperty);
113 $newProperty->setValue($newValue);
114 $newProperty['X-APPLE-OMIT-YEAR'] = '1604';
117 if ($newProperty->name == 'ANNIVERSARY') {
119 $newProperty->name = 'X-ANNIVERSARY';
129 …$output->add('ITEM' . $x . '.X-ABDATE', $newProperty->getValue(), array('VALUE' => 'DATE-AND-OR-TI…
140 $newProperty = $output->createProperty('X-ABSHOWAS','COMPANY');
149 $newProperty = $output->createProperty('X-ADDRESSBOOKSERVER-KIND','GROUP');
165 $newProperty = $this->convertBinaryToUri($output, $newProperty, $parameters);
[all …]
/plugin/asciidocjs/node_modules/clean-css/lib/optimizer/level-2/properties/
Dmerge-into-shorthands.js143 var newProperty = wrapSingle(newValuePlaceholder);
148 populateComponents([newProperty], validator, []);
154 if (!everyValuesPair(mayOverride.bind(null, validator), newProperty.components[i], component)) {
218 var newProperty = isLonghandsShorter ? viaLonghands[1] : viaShorthand[1];
226 newProperty.position = all.length;
227 newProperty.shorthand = true;
228 newProperty.dirty = true;
229 newProperty.all = all;
230 newProperty.all.push(newTokensSequence[0]);
232 properties.push(newProperty);
[all …]
/plugin/dirtylittlehelper/mermaid/editor/docs/
D4.4.js.map1newProperty = JSON.stringify(lastSegment) + \": \" + JSON.stringify(value);\n var index…
Djson.worker.js.map1newProperty = JSON.stringify(lastSegment) + \": \" + JSON.stringify(value);\n var index…
/plugin/bpmnioeditor/vendor/bpmnio-js/
Dbpmn-modeler.development.js7653 DescriptorBuilder.prototype.replaceProperty = function(oldProperty, newProperty, replace) { argument
7658 rename = oldProperty.name !== newProperty.name;
7661 if (!newProperty.isId) {
7663 'property <' + newProperty.ns.name + '> must be id property ' +
7667 this.setIdProperty(newProperty, false);
7672 if (!newProperty.isBody) {
7674 'property <' + newProperty.ns.name + '> must be body property ' +
7679 this.setBodyProperty(newProperty, false);
7696 this.addProperty(newProperty, replace ? undefined : idx, rename);
7699 propertiesByName[oldNameNs.name] = propertiesByName[oldNameNs.localName] = newProperty;