Home
last modified time | relevance | path

Searched refs:objects (Results 101 – 125 of 248) sorted by last modified time

12345678910

/plugin/webdav/vendor/sabre/xml/
H A DCHANGELOG.md42 related to serializing value objects with array children.
43 * When serializing value objects, properties that have a null value or an
46 * Serializing array properties in value objects was broken.
194 * Added: Throwing exception when invalid objects are written.
/plugin/webdav/vendor/sabre/vobject/lib/
H A DFreeBusyGenerator.php33 protected $objects = []; variable in Sabre\\VObject\\FreeBusyGenerator
89 * @param mixed $objects
96 if ($objects) {
97 $this->setObjects($objects);
137 * @param mixed $objects
139 public function setObjects($objects) argument
141 if (!is_array($objects)) {
142 $objects = [$objects];
145 $this->objects = [];
146 foreach ($objects as $object) {
[all …]
/plugin/webdav/vendor/sabre/vobject/
H A DCHANGELOG.md108 vcards or iCalendar objects semantically.
184 * #254: The parser threw an `E_NOTICE` for certain invalid objects. It now
215 such as large iCalendar objects.
218 objects.
408 objects.
422 * #114: VTIMEZONE is retained when generating new REQUEST objects.
441 a user made on objects.
467 * Fixed: vobject repair. It was not working for iCalendar objects.
508 * Fixed: Issue #83. Creating new VALUE=DATE objects using php's DateTime.
815 iCalendar objects.
[all …]
H A DREADME.md5 and [vCard](https://tools.ietf.org/html/rfc6350) objects using PHP.
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DInbox.php189 $objects = $this->caldavBackend->getSchedulingObjects($this->principalUri);
190 foreach ($objects as $object) {
/plugin/jplayer/vendor/kriswallsmith/assetic/
H A DREADME.md170 If you'd rather not create all these objects by hand, you can use the asset
/plugin/jplayer/vendor/james-heinrich/getid3/
H A Dchangelog.txt633 * Bugfix: module objects (e.g. getid3_riff) that are instantiated
/plugin/backup/
H A Dadmin.php26 $objects = scandir($dir);
28 foreach ($objects as $object) {
/plugin/codemirror/dist/
H A Dscripts.min.js.map1objects for setSelection & friends\n var sel_dontScroll = {scroll: false}, sel_mouse = {origin: \…
/plugin/codemirror/dist/modes/
H A Dvbscript.min.js.map1 …MIT license: https://codemirror.net/LICENSE\n\n/*\nFor extra ASP classic objects, initialize CodeM…
H A Derlang.min.js.map1 … }\n }\n\n function d(stack,tt) {\n // stack is a stack of Token objects.\n // tt is an…
H A Dhaxe.min.js.map1 …ariables to communicate multiple values without\n // consing up tons of objects.\n var type, con…
H A Djavascript.min.js.map1 …ariables to communicate multiple values without\n // consing up tons of objects.\n var type, con…
H A Dtoml.min.js.map1 …pTo(']')) {\n stream.next();//skip closing ]\n // array of objects has an extra open…
/plugin/codemirror/dist/keymaps/
H A Dvim.min.js.map1objects (input state, counter) implementation\n * and instantiation\n * 5. Key handler (the m…
/plugin/pdfjs/pdfjs/build/
H A Dpdf.js.map1objects; see\n // http://docs.nwjs.io/en/latest/For%20Users/Advanced/JavaScript%20Contexts%20in%2…
H A Dpdf.worker.js38927 this.objects = [];
38934 this.objects.push(data);
38938 this.objects[index] = data;
38941 return this.objects[index];
38945 return this.objects.length;
39604 var objects = index.objects;
39605 var count = objects.length;
39616 lastOffset += objects[i].length;
39645 if (objects[i]) {
39656 data.push(objects[i][j]);
[all …]
H A Dpdf.worker.js.map1objects","lastOffset","ISOAdobeCharset","ExpertCharset","ExpertSubsetCharset","ExpertEncoding","Ma…
/plugin/pdfjs/pdfjs/web/
H A Dviewer.js.map1objects. For full spec compliance, you may wish to configure your\n // minifier not to mangle the…
/plugin/syntaxhighlighter4/dist/
H A Dsyntaxhighlighter.js.map1objects.\n */\n findElements: function(globalParams, element)\n {\n var elements = element …
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DFreeBusyGenerator.php31 protected $objects; variable in Sabre\\VObject\\FreeBusyGenerator
77 * @param mixed $objects
87 if ($objects) {
88 $this->setObjects($objects);
121 * @param mixed $objects
124 public function setObjects($objects) { argument
126 if (!is_array($objects)) {
127 $objects = array($objects);
130 $this->objects = array();
131 foreach($objects as $object) {
[all …]
/plugin/webdavclient/
H A Dhelper.php956 $objects = $this->getRemoteObjectsByEtag($conn, $worklist['fetch']);
957 if($objects === false)
963 dbglog($objects);
964 $this->insertObjects($conn, $objects);
984 * @param array $objects A list of objects to insert
988 private function insertObjects($conn, $objects) argument
990 foreach($objects as $href => $data)
1259 * @param mixed $objects SimpleXML Objects to recurse
1263 private function recursiveXmlToArray($objects) argument
1266 foreach($objects as $object)
/plugin/webdavclient/vendor/sabre/vobject/
H A DREADME.md5 and [vCard](https://tools.ietf.org/html/rfc6350) objects using PHP.
H A DChangeLog.md80 * #217: Initializing vCard `DATE` objects with a PHP DateTime object will now
118 * #168: Expanding calendars now removes objects with recurrence rules that
181 * #133: Splitter objects will throw exceptions when receiving incompatible
182 objects.
191 * Changed: It's now possible to pass DateTime objects when using the magic
196 * #114: VTIMEZONE is retained when generating new REQUEST objects.
215 a user made on objects.
241 * Fixed: vobject repair. It was not working for iCalendar objects.
282 * Fixed: Issue #83. Creating new VALUE=DATE objects using php's DateTime.
589 iCalendar objects.
[all …]
/plugin/webdavclient/vendor/sabre/vobject/lib/Splitter/
H A DICalendar.php37 protected $objects = array(); variable in Sabre\\VObject\\Splitter\\ICalendar
75 if (!array_key_exists($uid, $this->objects)) {
76 $this->objects[$uid] = new VCalendar();
79 $this->objects[$uid]->add(clone $component);
94 if($object=array_shift($this->objects)) {

12345678910