Home
last modified time | relevance | path

Searched refs:document (Results 476 – 500 of 2062) sorted by last modified time

1...<<11121314151617181920>>...83

/plugin/bpmnioeditor/vendor/bpmnio-js/
H A Dbpmn-modeler.production.min.js2document.DOCUMENT_NODE&&i.nodeType!==document.DOCUMENT_FRAGMENT_NODE;){if(J(i,t))return i;i=i.pare…
7 …on(e){var t=(e=F({},{width:"100%",height:"100%"},e)).container||document.body,n=document.createEle…
28document.body.removeChild(_r)}))),document.body.appendChild(_r),e.preventDefault()})),this._init(t…
33document)}(ba);var xa=ba.exports,_a=["mousedown","mouseup","mouseover","mouseout","click","dblclic…
34document.execCommand("insertText",!1,e)||this._insertTextIE(e)},gc.prototype._insertTextIE=functio…
/plugin/popupviewer/
H A Dscript.js49 $(document).keydown(internal.globalKeyHandler);
413 var xOffset = viewerIsFixed ? 0 : $(document).scrollLeft() || 0;
414 var yOffset = viewerIsFixed ? 0 : $(document).scrollTop() || 0;
/plugin/xcom/
H A Dscript.js8 var fn_sel = document.getElementById('xcom_sel');
114 var fn_sel = document.getElementById('xcom_sel');
197 var d = document.getElementById(id);
617 var d = document.getElementById(which);
622 var d = document.getElementById(which);
643 document.getElementById(which).innerHTML= '';
663 var d = document.getElementById(item);
670 var d = document.getElementById(item);
679 var d = document.getElementById(id);
720 jQuery( document ).ready(function() {
[all …]
/plugin/newpagetemplate/
H A Dscript.js5 document.getElementById(which).innerHTML = "";
/plugin/instantpage/
H A DLICENSE7 of this license document, but changing it is not allowed.
/plugin/instantpage/lib/
H A D5.1.0.js2document.createElement("link"),i=o.relList&&o.relList.supports&&o.relList.supports("prefetch")&&wi…
/plugin/pureldap/
H A DLICENSE7 of this license document, but changing it is not allowed.
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/
H A DCommonmark.php46 $document = $parser->parse($markdownOnly);
47 $renderResult = $DWRenderer->renderNode($document);
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Inline/
H A DFootnoteRefRenderer.php39 # get parents iteratively until get top-level document
40 $document = $node->parent()->parent();
41 while (get_class($document)!='League\CommonMark\Node\Block\Document'){
42 $document = $document->parent();
44 $walker = $document->walker();
/plugin/pagebuttons/
H A Dscript.js68 document.activeElement.blur();
105 var folder = document.getElementsByName("new_folder_name")[0].value;
124 document.activeElement.blur();
161 var newpage = document.getElementsByName("new_page_name")[0].value;
180 document.activeElement.blur();
H A DLICENSE7 of this license document, but changing it is not allowed.
/plugin/include/
H A DCOPYING7 of this license document, but changing it is not allowed.
/plugin/move/lang/fr/
H A Dmove.txt3 Cette extension permet de déplacer et/ou renommer le document courant ou la catégorie courante, avec les limitations suivantes :
5 * Il faut avoir les droits d'édition sur le document/tous les documents de la catégorie
8 * Il est impossible de déplacer le document vers une catégorie où un document du même nom existe déjà.
/plugin/commonmark/vendor/league/commonmark/src/Extension/HeadingPermalink/
H A DHeadingPermalinkProcessor.php85 addHeadingLink(Heading $heading, Document $document) global() argument
129 ensureUnique(string $proposed, Document $document) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/TableOfContents/
H A DTableOfContentsBuilder.php38 $document = $event->getDocument();
48 $toc = $generator->generate($document);
63 $document->prependChild($toc);
65 $this->insertBeforeFirstLinkedHeading($document, $toc);
67 $this->replacePlaceholders($document, $toc);
73 private function insertBeforeFirstLinkedHeading(Document $document, TableOfContents $toc): void
75 foreach ($document->iterator(NodeIterator::FLAG_BLOCKS_ONLY) as $node) {
90 private function replacePlaceholders(Document $document, TableOfContents $toc): void
92 foreach ($document->iterator(NodeIterator::FLAG_BLOCKS_ONLY) as $node) {
94 insertBeforeFirstLinkedHeading(Document $document, TableOfContents $toc) global() argument
106 replacePlaceholders(Document $document, TableOfContents $toc) global() argument
H A DTableOfContentsGeneratorInterface.php21 public function generate(Document $document): ?TableOfContents;
19 generate(Document $document) global() argument
H A DTableOfContentsGenerator.php70 public function generate(Document $document): ?TableOfContents
72 $toc = $this->createToc($document);
78 foreach ($this->getHeadingLinks($document) as $headingLink) {
117 private function createToc(Document $document): TableOfContents
131 $toc->setStartLine($document->getStartLine());
132 $toc->setEndLine($document->getEndLine()); argument
140 private function getHeadingLinks(Document $document): iterable
142 foreach ($document->iterator(NodeIterator::FLAG_BLOCKS_ONLY) as $node) {
56 generate(Document $document) global() argument
107 createToc(Document $document) global() argument
/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG.md299 - Added `slug_normalizer/unique` option to control whether unique slugs should be generated per-document or per-environment
405 - Re-implemented the GFM Autolink extension using the new inline parser approach instead of document processors
/plugin/commonmark/vendor/league/commonmark/src/
H A DDocParser.php
H A DContext.php
/plugin/commonmark/vendor/league/commonmark/src/Event/
H A DDocumentPreParsedEvent.php20 * Event dispatched when the document is about to be parsed
25 private Document $document;
29 public function __construct(Document $document, MarkdownInputInterface $markdown)
31 $this->document = $document;
37 return $this->document;
23 private $document; global() variable in League\\CommonMark\\Event\\DocumentPreParsedEvent
28 __construct(Document $document, MarkdownInputInterface $markdown) global() argument
H A DDocumentParsedEvent.php19 * Event dispatched when the document has been fully parsed
24 private Document $document; argument
26 public function __construct(Document $document)
28 $this->document = $document;
33 return $this->document;
22 private $document; global() variable in League\\CommonMark\\Event\\DocumentParsedEvent
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Event/
H A DAnonymousFootnotesListener.php33 $document = $event->getDocument();
34 foreach ($document->iterator() as $node) {
54 $document->appendChild($footnote);
H A DNumberFootnotesListener.php25 $document = $event->getDocument();
30 foreach ($document->iterator() as $node) {
59 $document->getReferenceMap()->add($newReference);
62 * Store created references in document for
65 $document->data->append($existingReference->getDestination(), $newReference);
H A DGatherFootnotesListener.php33 $document = $event->getDocument();
36 foreach ($document->iterator(NodeIterator::FLAG_BLOCKS_ONLY) as $node) {
42 $ref = $document->getReferenceMap()->get($node->getReference()->getLabel());
52 if ($document->data->has($key)) {
53 $this->createBackrefs($node, $document->data->get($key));
62 $container = $this->getFootnotesContainer($document);
70 private function getFootnotesContainer(Document $document): FootnoteContainer
73 $document->appendChild($footnoteContainer);
88 getFootnotesContainer(Document $document) global() argument

1...<<11121314151617181920>>...83