Lines Matching full:d
67 $xml->registerXPathNamespace('d','urn:DAV');
69 list($data) = $xml->xpath('/d:multistatus/d:response/d:href');
72 $data = $xml->xpath('/d:multistatus/d:response/d:propstat/d:prop/d:resourcetype');
81 <d:propfind xmlns:d="DAV:">
82 <d:prop>
83 <d:supportedlock />
84 </d:prop>
85 </d:propfind>';
94 $xml->registerXPathNamespace('d','urn:DAV');
96 … $data = $xml->xpath('/d:multistatus/d:response/d:propstat/d:prop/d:supportedlock/d:lockentry');
97 $this->assertEquals(16,count($data),'We expected sixteen \'d:lockentry\' tags');
99 …$data = $xml->xpath('/d:multistatus/d:response/d:propstat/d:prop/d:supportedlock/d:lockentry/d:loc…
100 $this->assertEquals(16,count($data),'We expected sixteen \'d:lockscope\' tags');
102 …$data = $xml->xpath('/d:multistatus/d:response/d:propstat/d:prop/d:supportedlock/d:lockentry/d:loc…
103 $this->assertEquals(16,count($data),'We expected sixteen \'d:locktype\' tags');
105 …$data = $xml->xpath('/d:multistatus/d:response/d:propstat/d:prop/d:supportedlock/d:lockentry/d:loc…
106 $this->assertEquals(8,count($data),'We expected eight \'d:shared\' tags');
108 …$data = $xml->xpath('/d:multistatus/d:response/d:propstat/d:prop/d:supportedlock/d:lockentry/d:loc…
109 $this->assertEquals(8,count($data),'We expected eight \'d:exclusive\' tags');
111 …$data = $xml->xpath('/d:multistatus/d:response/d:propstat/d:prop/d:supportedlock/d:lockentry/d:loc…
112 $this->assertEquals(16,count($data),'We expected sixteen \'d:write\' tags');
118 <d:propfind xmlns:d="DAV:">
119 <d:prop>
120 <d:lockdiscovery />
121 </d:prop>
122 </d:propfind>';
128 $xml->registerXPathNamespace('d','urn:DAV');
130 $data = $xml->xpath('/d:multistatus/d:response/d:propstat/d:prop/d:lockdiscovery');
131 $this->assertEquals(8,count($data),'We expected eight \'d:lockdiscovery\' tags');
138 <d:propfind xmlns:d="DAV:">
139 <d:prop>
140 <d:macaroni />
141 </d:prop>
142 </d:propfind>';
147 $xml->registerXPathNamespace('d','urn:DAV');
149 '/d:multistatus',
150 '/d:multistatus/d:response',
151 '/d:multistatus/d:response/d:propstat',
152 '/d:multistatus/d:response/d:propstat/d:status',
153 '/d:multistatus/d:response/d:propstat/d:prop',
154 '/d:multistatus/d:response/d:propstat/d:prop/d:macaroni',
160 $val = $xml->xpath('/d:multistatus/d:response/d:propstat/d:status');