Home
last modified time | relevance | path

Searched refs:node (Results 601 – 625 of 709) sorted by last modified time

1...<<212223242526272829

/plugin/icalevents/vendor/sabre/vobject/lib/
H A DComponent.php78 foreach ($nodes as $node) {
79 $this->add($node);
/plugin/icalevents/vendor/sabre/vobject/
H A DCHANGELOG.md586 * Changed: Component::remove() will throw an exception when trying to a node
/plugin/icalevents/vendor/sabre/xml/
H A DCHANGELOG.md170 * #25: Added `readText` to quickly grab all text from a node and advance the
171 reader to the next node.
218 a string (in case of a text-node), or an array (in case there were child
/plugin/medialist/
H A Dhelper.php259 foreach ($ins as $node) {
260 if ($node[0] == 'internalmedia') {
261 $id = cleanID($node[1][0]);
268 'type' => $node[0],
270 } elseif ($node[0] == 'externalmedia') {
272 'id' => $node[1][0],
275 'type' => $node[0],
/plugin/scrape/HTMLPurifier/ConfigSchema/schema/
H A DAutoFormat.RemoveEmpty.txt
H A DAutoFormat.AutoParagraph.txt
H A DFilter.ExtractStyleBlocks.Scope.txt
/plugin/scrape/HTMLPurifier/Lexer/
H A DPH5P.php
/plugin/scrape/
H A DHTMLPurifier.standalone.php
H A DphpQuery-onefile.php
/plugin/panoview/
H A Dscript.js278 for (var node = this.viewer; node; node = node.offsetParent) {
279 this.top += node.offsetTop;
280 this.left += node.offsetLeft;
/plugin/graphgear/
H A Dsyntax.php158 $node = array(
166 $node['link'] = $opts['url'];
168 $node['link'] = wl($opts['url']);
172 $node['image'] = ml($opts['image'],array('w'=>40,'h'=>40),true,'&');
174 …ond|trapezium|parallelogram|Msquare|box3d|component)$/',$opts['shape'])) $node['type'] = 'SquareNo…
176 $xml .= ' <node '.html_attbuild($node)." />\n";
198 list($node,$opts) = explode('[',$line,2);
203 $node = trim($node);
205 if($node) $this->nodes[$node] = $opts;
/plugin/markdownextra/
H A Dsyntax.php127 foreach($nodes as $node)
129 if (preg_match('/h([1-7])/',$node->tagName,$match))
132 $node->setAttribute('class', 'sectionedit'.$match[1]);
133 $hid = $renderer->_headerToLink($node->nodeValue,'true');
134 $node->setAttribute('id',$hid);
135 $renderer->toc_additem($hid, $node->nodeValue, $match[1]);
/plugin/topbarsyntax/
H A Dcsshover3.htc145 patch:function(node, type, className) {
151 if(node.style[property]) {
152 node.style[property] = null;
156 if(!node.csshover) node.csshover = [];
159 if(!node.csshover[className]) {
160 node.csshover[className] = true;
215 this.node = node;
221 this.deactivator = function(){ node.className = node.className.replace(replacer, ' '); };
239 this.node = null;
249 return function(node, type, className) {
[all …]
/plugin/freechat/phpfreechat/data/public/js/
H A Dxajax.js94 _nodeToObject:function(node){if(node.nodeName=='#cdata-section'){var data=node.data;while(node=node argument
96 else if(node.nodeName=='xjxobj'){var data=new Array();for(var j=0;j<node.childNodes.length;j++){var…
H A Dprototype.js2302 return node ? node.value : "";
2524 return node && node.specified;
3003 for (var i = 0, node; node = b[i]; i++)
3083 while (node = node.nextSibling)
3084 if (node.nodeType == 1) return node;
3089 while (node = node.previousSibling)
3090 if (node.nodeType == 1) return node;
3291 if (!node.disabled) results.push(node);
3297 if (node.disabled) results.push(node);
3303 if (node.checked) results.push(node);
[all …]
/plugin/abbrlist/
H A D.hg_archival.txt2 node: 8769b34699c71dd023e4cf2d1304c331c2f0568c
/plugin/datapopup/
H A D.hg_archival.txt2 node: 11ccac7668ece1f3f78162186486f9b88fc395c3
/plugin/orgchart/
H A Dstyle.css14 .google-visualization-orgchart-table .google-visualization-orgchart-node {
20 .google-visualization-orgchart-table .google-visualization-orgchart-node a {
23 .google-visualization-orgchart-table .google-visualization-orgchart-node strong {
28 .google-visualization-orgchart-table .google-visualization-orgchart-node img {
/plugin/jorgchart/
H A Dstyle.css31 /* node cell */
39 /* The node */
40 .jOrgChart .node {
H A D.hg_archival.txt
/plugin/bugzillaint/helper/
H A Dbugzillaclient.php419 private function xmlrpc_decode_node($node) { argument
420 if ( $node->getName() == 'int' ) {
421 return (int) $node->__toString();
423 else if ( $node->getName() == 'string' ) {
424 return $node->__toString();
426 else if ( $node->getName() == 'array' ) {
428 foreach ( $node->data->value as $i ) {
433 else if ( $node->getName() == 'struct' ) {
435 foreach ( $node->member as $i ) {
/plugin/header2/
H A Dsyntax.php133 $renderer->node[$level-1]++;
136 $renderer->node[$renderer->lastlevel-$i-1] = 0;
/plugin/zotero/
H A DImportZoteroFeedReader.php95 foreach ($r as $node)
97 $newNode = $dom->importNode($node, true);
H A DFeedZoteroRepository.php37 foreach ($r as $node)
39 $itemType = $this->parseItemType($node);
44 $e = $this->createEntry($node);
62 private function createEntry($node) argument
64 $zoteroId = $this->parseId($node);
66 $this->parseData($node, $e);
70 private function parseItemType($node) argument
80 private function parseId($node) argument
82 $item = $this->xpath->query("./zapi:key", $node)->item(0);
90 private function parseData($node, ZoteroEntry $e) argument
[all …]

1...<<212223242526272829