Home
last modified time | relevance | path

Searched refs:node (Results 151 – 175 of 709) sorted by last modified time

12345678910>>...29

/plugin/indexmenu/scripts/
H A Dindexmenu.js54 * @param {string} dokuid page id of node
55 * @param {number} id node id
56 * @param {number} pid parent node id
65 this.dokuid = dokuid; // page id of node
67 this.id = id; // id number of node
69 this.pid = pid; // id number of parent node
79 this._io = false; // is node open
97 this.icon = ''; // icon of closed node
99 this.iconOpen = ''; // icon of opened node
129 node
89 node: objImg + 'page.' + objExt, global() property in dTree.icon
234 noderr(node, nodeId) global() argument
247 node(node, nodeId) global() argument
295 indent(node, nodeId) global() argument
322 setCS(node) global() argument
[all...]
/plugin/indexmenu/
H A Dstyle.css8 a.node Namespace without url link js
46 .dtree a.node, .dtree a.nodeSel a.navSel {
98 .dtree a.node:hover {
/plugin/indexmenu/syntax/
H A Dindexmenu.php576 * @param int $max the node at $max level will retrieve all its child nodes through the AJAX mechanism
633 //add root node
683 //Current open node
695 foreach ($nodes as $i => $node) {
698 while (isset($nodes[end($q) - 1]) && $node['level'] <= $nodes[end($q) - 1]['level']) {
702 //till i found its father node
703 if ($node['level'] == 1) {
704 //root node
707 //Father node
710 //add node an
[all...]
/plugin/indexmenu/images/thread2/
H A Dstyle.css8 a.node Namespace without url link js
/plugin/actionrenderer/
H A Drenderer.php237 public function listitem_open($level, $node = false) argument
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/Slack/
H A DSlackRecord.php371 $node = &$record;
374 if (!isset($node[$key])) {
378 unset($node[$key]);
381 $node = &$node[$key];
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DXML.php158 $node = $nodes->item(0);
159 $ns_name = $node->lookupPrefix($ns);
161 $node->removeAttributeNS($ns, $ns_name);
163 return $dom->saveXML($node);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TrafficDirectorService/
H A DClientConfig.php31 public function setNode(Node $node) argument
33 $this->node = $node;
40 return $this->node;
/plugin/c3chart/assets/
H A Dc3.min.js2node().getTotalLength()-2*w.outerTickSize)/T.g.selectAll("line").size();return t===1/0?0:t},T.tick…
H A Dd3.min.js2node:function(){for(var t=this._groups,n=0,e=t.length;n<e;++n)for(var r=t[n],i=0,o=r.length;i<o;++… property in Et
/plugin/tablelayout/
H A Dyarn.lock882 node-pre-gyp "^0.9.0"
1686 node-pre-gyp@^0.9.0:
1688 …resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.9.1.tgz#f11c07516dd92f87199db…
/plugin/gemini/
H A Drenderer.php117 public function listitem_open($level, $node = false) argument
/plugin/bpmnioeditor/vendor/bpmnio-js/
H A Dbpmn-modeler.development.js1420 return node;
10276 var node = { class in AnonymousFunctionf8d14cd111c00
21906 this._node = node;
21922 if (node) {
22974 while (node) {
22978 node = node.parentNode;
25513 return node;
56972 node: node property in self._results
56994 if (node) {
57007 if (!node || node === this._getCurrentResult()) {
[all …]
H A Dbpmn-modeler.production.min.js28 …e=null},Ko.prototype._fire=function(e){this._eventBus.fire("keyboard."+e,{node:this._node})},Ko.pr…
34 …=e.element.id,i=t._createResultNode(e,n);t._results[n]={element:e.element,node:i}}));var i=le(ry.R… property in t._results
/plugin/popupviewer/
H A Dscript.js195 var success = function(node) argument
197 var popupScriptNode = node;
199 popupScriptNode = jQuery('<div/>').append(node.find('popupscript'));
200 node = node.find('div.dokuwiki,body').first();
203 node.waitForImages({
316 _.propagateClickHandler = function(node, popupData) { argument
317 node.find('a[href],form[action]').
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Inline/
H A DFootnoteRefRenderer.php33 public function render(Node $node, ChildNodeRendererInterface $DWRenderer)
35 FootnoteRef::assertInstanceOf($node);
37 $attrs = $node->data->getData('attributes');
40 $document = $node->parent()->parent();
45 $title = $node->getReference()->getLabel();
48 $node = $event->getNode();
49 if ($node instanceof Footnote && $title == $node->getReference()->getLabel()) {
50 $text = $DWRenderer->renderNode($node->children()[0]);
/plugin/commonmark/vendor/league/commonmark/src/Extension/HeadingPermalink/
H A DHeadingPermalinkProcessor.php61 foreach ($e->getDocument()->iterator(NodeIterator::FLAG_BLOCKS_ONLY) as $node) {
62 if ($node instanceof Heading && $node->getLevel() >= $min && $node->getLevel() <= $max) {
63 $this->addHeadingLink($node, $slugLength, $idPrefix, $applyToHeading, $headingClass);
72 'node' => $heading,
115 getChildText(Node $node) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/TableOfContents/
H A DTableOfContentsBuilder.php75 foreach ($document->iterator(NodeIterator::FLAG_BLOCKS_ONLY) as $node) {
76 if (! $node instanceof Heading) {
80 foreach ($node->children() as $child) {
82 $node->insertBefore($toc);
92 foreach ($document->iterator(NodeIterator::FLAG_BLOCKS_ONLY) as $node) {
94 if (! $node instanceof TableOfContentsPlaceholder) {
98 $node->replaceWith(clone $toc);
H A DTableOfContentsGenerator.php142 foreach ($document->iterator(NodeIterator::FLAG_BLOCKS_ONLY) as $node) {
143 if (! $node instanceof Heading) {
147 foreach ($node->children() as $child) {
/plugin/commonmark/vendor/league/commonmark/src/Inline/Parser/
H A DOpenBracketParser.php
H A DBangParser.php
/plugin/commonmark/vendor/league/commonmark/src/
H A DDocParser.php
H A DInlineParserEngine.php
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Event/
H A DAnonymousFootnotesListener.php34 foreach ($document->iterator() as $node) {
35 if (! $node instanceof FootnoteRef || ($text = $node->getContent()) === null) {
40 $existingReference = $node->getReference();
H A DNumberFootnotesListener.php30 foreach ($document->iterator() as $node) {
31 if (! $node instanceof FootnoteRef) {
35 $existingReference = $node->getReference();
58 $node->setReference($newReference);

12345678910>>...29