Home
last modified time | relevance | path

Searched refs:Node (Results 51 – 75 of 567) sorted by last modified time

12345678910>>...23

/plugin/prosemirror/parser/
H A DQuoteNode.php5 class QuoteNode extends Node
7 /** @var Node[] */
12 public function __construct($data, Node $parent)
21 error_log("************ Unknown Node type: " . $nodeData['type'] . " ************");
H A DRSSNode.php5 class RSSNode extends Node
11 public function __construct($data, Node $parent)
H A DRootNode.php11 class RootNode extends Node
14 /** @var Node[] */
19 public function __construct($data, Node $ignored = null)
H A DCodeBlockNode.php5 class CodeBlockNode extends Node
11 public function __construct($data, Node $parent)
H A DHeadingNode.php11 class HeadingNode extends Node
18 public function __construct($data, Node $parent)
H A DHruleNode.php5 class HruleNode extends Node
19 * @param Node $parent
21 public function __construct($data, Node $parent)
H A DHtmlPhpNode.php
H A DImageNode.php5 class ImageNode extends Node implements InlineNodeInterface
8 /** @var Node */
15 public function __construct($data, Node $parent, Node $previousNode = null)
76 $node = new \dokuwiki\plugin\prosemirror\schema\Node('image');
101 \dokuwiki\plugin\prosemirror\schema\Node $node,
H A DLinkNode.php7 abstract class LinkNode extends Node implements InlineNodeInterface
14 /** @var Node */
22 public function __construct($data, Node $parent, Node $previousNode = null)
90 $linkNode = new \dokuwiki\plugin\prosemirror\schema\Node('link');
H A DPreformattedNode.php5 class PreformattedNode extends Node
11 public function __construct($data, Node $parent)
H A DSmileyNode.php6 class SmileyNode extends Node implements InlineNodeInterface
15 public function __construct($data, Node $parent, Node $previous = null)
H A DTableCellNode.php5 class TableCellNode extends Node
10 /** @var Node[] */
13 public function __construct($data, Node $parent = null)
H A DTableNode.php5 class TableNode extends Node
13 public function __construct($data, Node $parent = null)
H A DTableRowNode.php5 class TableRowNode extends Node
14 public function __construct($data, Node $parent)
H A DTextNode.php5 class TextNode extends Node implements InlineNodeInterface
11 /** @var Node */
19 public function __construct($data, Node $parent, Node $previous = null)
/plugin/prosemirror/
H A Drenderer.php11 use dokuwiki\plugin\prosemirror\schema\Node; alias
43 public function addToNodestackTop(Node $node)
48 public function addToNodestack(Node $node)
106 $this->nodestack->addTop(new Node('paragraph'));
121 $this->nodestack->addTop(new Node('blockquote'));
142 $this->nodestack->addTop(new Node('bullet_list'));
158 $this->nodestack->addTop(new Node('ordered_list'));
170 $this->nodestack->addTop(new Node('list_item'));
172 $paragraphNode = new Node('paragraph');
193 $this->nodestack->addTop(new Node('tabl
[all...]
H A DREADME.md43 - `renderer.php` uses the classes `NodeStack` `Node` and `Mark` in `schema` to do its job
45 - to keep information about a Node in as few places as possible,
48 `script/schema.js` and creates its `doc`-Node from it.
81 - if a Node cannot be simply rendered and edited by ProseMirror, it needs a NodeView
/plugin/prosemirror/schema/
H A DNodeStack.php8 /** @var Node[] */
14 /** @var Node the root node */
22 $node = new Node('doc');
28 * @return Node
38 * @return Node
48 * @return Node
58 * @param Node $node
60 protected function top(Node $node)
69 * @param Node $node
71 public function addTop(Node
[all...]
/plugin/edittable/lib/
H A Dhandsontable.full.js184 if (element.host && element.nodeType === Node.DOCUMENT_FRAGMENT_NODE) {
206 …if (element.nodeType === Node.ELEMENT_NODE && (nodes.indexOf(element.nodeName) > -1 || nodes.index…
209 if (element.host && element.nodeType === Node.DOCUMENT_FRAGMENT_NODE) {
238 if (element.host && element.nodeType === Node.DOCUMENT_FRAGMENT_NODE) {
291 … return element.nodeType === Node.ELEMENT_NODE && element.nodeName === hotTableName.toUpperCase();
298 } else if (parentNode.host && parentNode.nodeType === Node.DOCUMENT_FRAGMENT_NODE) {
600 } else if (next.nodeType === Node.DOCUMENT_FRAGMENT_NODE) {
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DNode.php5 use Elastica\Node\Info;
6 use Elastica\Node\Stats;
13 class Node class
28 * Node name.
30 * @var string Node name
35 * Node stats.
37 * @var Stats|null Node Stats
42 * Node info.
44 * @var Info|null Node info
H A DCluster.php111 * @return Node[]
119 $nodes[] = new Node($id, $this->getClient());
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dnamespaces.asciidoc13 | `nodes()` | Node-centric stats and info
32 // Node Stats
H A Dselectors.asciidoc16 This selector returns connections in a round-robin fashion. Node #1 is selected
17 on the first request, Node #2 on the second request, and so on. This ensures an
38 repeatedly. For example, Node #1 is chosen on the first request. Node #1 will
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md674 - remove _shutdown for Node and Cluster as deprecated
1054 - Node information is retrieved based on id instead of name as multiple nodes can have the same name. [#852](https://github.com/ruflin/Elastica/pull/852)
1335 - Update Node Info to use plugins instead of plugin (https://github.com/elasticsearch/elasticsearch/pull/5072)
1651 - Add getPlugins and hasPlugin methods to Node\Info
1810 - Node info call update. The receive os info and more, param is needed. By default, only basics are returned
2026 - Node object added
/plugin/elasticsearch/vendor/react/promise/
H A DREADME.md602 // Execute a Node.js-style function using the callback pattern

12345678910>>...23