Home
last modified time | relevance | path

Searched refs:node (Results 126 – 150 of 709) sorted by last modified time

12345678910>>...29

/plugin/davcal/vendor/sabre/dav/tests/Sabre/CardDAV/Backend/
H A DAbstractPDOTest.php270 foreach($check as $index=>$node) {
272 foreach($node as $k=>$v) {
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CardDAV/
H A DPluginTest.php78 $node = $this->server->tree->getNodeForPath('addressbooks/user1/book1');
79 $this->plugin->propFindEarly($propFind, $node);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DAbstractServer.php49 foreach(scandir($path) as $node) {
51 if ($node=='.' || $node=='.svn' || $node=='..') continue;
52 $myPath = $path.'/'. $node;
H A DServerRangeTest.php152 $node = $this->server->tree->getNodeForPath('test.txt');
158 'HTTP_IF_RANGE' => $node->getETag(),
187 $node = $this->server->tree->getNodeForPath('test.txt');
193 'HTTP_IF_RANGE' => $node->getETag() . 'blabla',
221 $node = $this->server->tree->getNodeForPath('test.txt');
256 $node = $this->server->tree->getNodeForPath('test.txt');
H A DServerUpdatePropertiesTest.php73 function updatePropFail(&$propertyDelta, &$result, $node) { argument
114 function updatePropSuccess(&$propertyDelta, &$result, $node) { argument
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/PartialUpdate/
H A DPluginTest.php12 protected $node; variable in Sabre\\DAV\\PartialUpdate\\PluginTest
17 $this->node = new FileMock();
18 $this->tree[] = $this->node;
43 $this->node->put('00000000');
56 $this->node->put('00000000');
69 $this->node->put('00000000');
82 $this->node->put('00000000');
95 $this->node->put('00000000');
108 $this->node->put('00000000');
122 $this->node->put('00000');
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/
H A DPrincipalPropertySearchTest.php387 function getCurrentUserPrivilegeSet($node) { argument
H A DACLMethodTest.php283 $node = new MockACLNode('test',$oldACL),
321 ), $node->getACL());
/plugin/davcal/datetimepicker-2.4.5/
H A Djquery.datetimepicker.js890 setCaretPos = function (node, pos) { argument
891node = (typeof node === "string" || node instanceof String) ? document.getElementById(node) : node;
892 if (!node) {
895 if (node.createTextRange) {
896 var textRange = node.createTextRange();
903 if (node.setSelectionRange) {
904 node.setSelectionRange(pos, pos);
1838 node = datetimepicker[0];
1840 node = node.parentNode;
1841 …if (window.getComputedStyle(node).getPropertyValue('position') === 'relative' && $(window).width()…
[all …]
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Notifications/
H A DPlugin.php146 $node->getNotificationType()->xmlSerializeFull($writer);
150 $response->setHeader('ETag', $node->getETag());
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DPlugin.php77 if ($node instanceof DAV\IExtendedCollection) {
79 $node->getChild($name);
142 $node = $this->server->tree->getNodeForPath($uri);
145 if ($node instanceof ICalendarObjectContainer || $node instanceof ICalendarObject) {
149 if ($node instanceof ICalendar) {
325 if ($node instanceof DAVACL\IPrincipal) {
327 $principalUrl = $node->getPrincipalUrl();
392 if ($node instanceof ICalendarObject) {
398 $val = $node->get();
720 if (!$node instanceof ICalendarObject)
[all …]
H A DICSExportPlugin.php66 $server->on('browserButtonActions', function($path, $node, &$actions) {
67 if ($node instanceof ICalendar) {
88 $node = $this->server->getProperties($path, [
96 …if (!isset($node['{DAV:}resourcetype']) || !$node['{DAV:}resourcetype']->is('{' . Plugin::NS_CALDA…
102 $properties = $node;
215 foreach ($nodes as $node) {
216 if (isset($node[200][$calDataProp])) {
217 $blobs[$node['href']] = $node[200][$calDataProp];
/plugin/davcal/vendor/sabre/vobject/
H A DChangeLog.md381 * Changed: Component::remove() will throw an exception when trying to a node
/plugin/davcal/vendor/sabre/vobject/lib/
H A DCli.php358 if ($warn['node'] instanceof Property) {
404 if ($warn['node'] instanceof Property) {
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/
H A DPlugin.php121 if ($node instanceof IAddressBook || $node instanceof ICard) {
143 if ($node instanceof IAddressBook) {
154 if ($node instanceof DAVACL\IPrincipal) {
168 if ($node instanceof ICard) {
174 $val = $node->get();
290 if (!$node instanceof ICard)
412 foreach ($candidateNodes as $node) {
414 if (!$node instanceof ICard)
417 $blob = $node->get();
426 $validNodes[] = $node;
[all …]
H A DVCFExportPlugin.php41 $server->on('browserButtonActions', function($path, $node, &$actions) {
42 if ($node instanceof IAddressBook) {
62 $node = $this->server->tree->getNodeForPath($path);
64 if (!($node instanceof IAddressBook)) return;
97 foreach ($nodes as $node) {
99 if (!isset($node[200]['{' . Plugin::NS_CARDDAV . '}address-data'])) {
102 $nodeData = $node[200]['{' . Plugin::NS_CARDDAV . '}address-data'];
/plugin/davcal/vendor/sabre/dav/lib/DAV/Browser/
H A DGuessContentType.php70 * @param INode $node
73 function propFind(PropFind $propFind, INode $node) { argument
H A DMapGetToPropFind.php49 $node = $this->server->tree->getNodeForPath($request->getPath());
50 if ($node instanceof DAV\IFile) return;
/plugin/davcal/vendor/sabre/dav/tests/Sabre/
H A DTestUtil.php21 foreach(scandir($path) as $node) {
23 if ($node=='.' || $node=='..') continue;
24 $myPath = $path.'/'. $node;
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DCorePlugin.php81 if (!$node instanceof IFile) return;
83 $body = $node->get();
772 if ($node instanceof IProperties) {
773 $node->propPatch($propPatch);
784 * @param INode $node
790 $lm = $node->getLastModified();
796 if ($node instanceof IFile) {
802 if ($node instanceof IQuota) {
805 $quotaInfo = $node->getQuotaInfo();
841 * @param INode $node
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Property/
H A DSupportedReportSetTest.php67 $this->server->on('propFind', function(DAV\PropFind $propFind, DAV\INode $node) {
/plugin/text/
H A Drenderer.php302 * @param bool $node true when a node; false when a leaf
304 function listitem_open($level, $node=false) { argument
/plugin/indexmenu/images/human.png/
H A Dstyle.css8 a.node Namespace without url link js
/plugin/indexmenu/scripts/
H A Dcontextmenu.js5 * node.hns = headpage id;
6 * node.isdir = node is namespace;
7 * node.dokuid = the DW id (namespace parent in case of headpage);
8 * id = the DW id of the selected node (headpage id in case of headpage);
66 * indexmenu_contextmenu['all']['pg']['view'].splice(1, 0, ['Input new page', '"javascript: IndexmenuContextmenu.reqpage(\'"+index.config.urlbase+"\',\'"+index.config.sepchar+"\',\'"+node.dokuid+"\');"']);
84 [LANG.plugins.indexmenu.tocpreview, '"javascript: IndexmenuContextmenu.createTocMenu(\'call=indexmenu&req=toc&id="+id+"\',\'picker_"+index.treeName+"\',\'s"+index.treeName+node.id+"\');"']
96 [LANG.plugins.indexmenu.search, '"javascript: IndexmenuContextmenu.srchpage(\'"+index.config.urlbase+"\',\'"+index.config.sepchar+"\',\'"+node.isdir+"\',\'"+node.dokuid+"\');"', LANG.plugins.indexmenu.searchtooltip]
109 [LANG.plugins.indexmenu.headpage, '"javascript: IndexmenuContextmenu.reqpage(\'"+index.config.urlbase+"\',\'"+index.config.sepchar+"\',\'"+node
302 var node = index.aNodes[n]; global() variable
[all...]
H A Dcontextmenu.local.js.example22 //indexmenu_contextmenu['all']['pg']['view'].splice(1, 0, ['Input new page', '"javascript: IndexmenuContextmenu.reqpage(\'"+index.config.urlbase+"\',\'"+index.config.sepchar+"\',\'"+node.dokuid+"\');"']);

12345678910>>...29