Home
last modified time | relevance | path

Searched full:close (Results 1 – 25 of 168) sorted by relevance

1234567

/dokuwiki/inc/Parsing/ParserMode/
H A DGfmCode.php25 * Column-0 fences only (no indent tolerance, no body dedent). The close
35 * best we could do is "close at EOF" — a partial implementation that
37 * because we can't close at the blockquote boundary). Doing a degraded
88 // (?:(?!CLOSE).)*+ — body: any char (DOTALL) that isn't
89 // the start of a close-fence line. The
91 // CLOSE (the lookahead fails there), so
96 // consumes to EOF, CLOSE fails, and the
102 // CLOSE = \nF{3,}[ \t]*(?=\n) — close fence, required.
105 $close = '\n' . $this->fenceChar . '{3,}[ \t]*(?=\n)';
108 . '(?:(?!' . $close . ').)*+' . $close,
[all …]
H A DGfmEmphasisStrong.php53 * open/close pair — we need two each.
/dokuwiki/inc/
H A Dtoolbar.php35 'close' => '**',
44 'close' => '//',
53 'close' => '__',
62 'close' => "''",
71 'close' => '</del>',
113 'close' => ' ======\n'
121 'close' => ' =====\n'
129 'close' => ' ====\n'
137 'close' => ' ===\n'
145 'close' => ' ==\n'
[all …]
/dokuwiki/inc/Parsing/Handler/
H A DNest.php19 …* @param string $close closing instruction name, this is required to properly termin…
22 public function __construct(CallWriterInterface $CallWriter, $close = "nest_close") argument
25 $this->closingInstruction = $close;
H A DAbstractListsRewriter.php70 * Handle a list_item event: close the previous item, open the next one,
100 // Shallower: close the current item and list, unwind to the
133 * Close all open items and lists in response to a list_close event.
212 * Emit a complete item close: listcontent_close + listitem_close.
223 * Emit a list close (list_X_close) for the current top of the stack
H A DBlock.php75 * Close a paragraph if needed
143 * Processes the whole instruction stack to open and close paragraphs
181 // To make sure next paragraph is correctly started, let close go first.
220 // close last paragraph
/dokuwiki/lib/scripts/
H A Dtoolbar.js83 fixtxt(props.close),
108 props.close = fixtxt(props.close);
117 endofs: props.close.length
121 sample = sample.split("\n").join(props.close+"\n"+props.open);
122 sample = props.open+sample+props.close;
265 * Close all open pickers
288 // Skip close when focus is moving to a picker toggle button; the click
H A Dtree.js26 * Open or close a subtree using AJAX
53 // if already open, close by hiding the sublist
67 // Only show if user didn’t close the list since starting
H A Dscript.js22 * Handler to close all open Popups
H A Dlinkwiz.js28 close: ']]'
74 jQuery('#link__wiz .ui-dialog-titlebar-close').on('click', () => this.hide());
289 if (this.val.close) {
290 link += this.val.close;
291 endofs = this.val.close.length;
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DArchive.php99 * Close the archive, close all file handles
104 abstract public function close(); function in splitbrain\\PHPArchive\\Archive
109 * This implicitly calls close() on the Archive
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DANSI.php448 $close = $open = '';
454 $close = '</span>' . $close;
462 $close = '</span>' . $close;
469 $close = '</b>' . $close;
476 $close = '</u>' . $close;
483 $close = '</blink>' . $close;
486 $output .= $close . $open;
512 // close any remaining open tags
/dokuwiki/_test/core/
H A DTestUtils.php40 $dh->close();
61 $dh->close();
/dokuwiki/lib/exe/
H A Dtaskrunner.php17 session_write_close(); //close session
H A Dxmlrpc.php12 session_write_close(); //close session
H A Djsonrpc.php8 session_write_close(); //close session
H A Dajax.php16 //close session
H A Ddetail.php24 //close session
/dokuwiki/inc/Form/
H A DTagOpenElement.php8 * Creates an open HTML tag. You have to make sure you close it
H A DTagCloseElement.php8 * Creates an HTML close tag. You have to make sure it has been opened
H A DForm.php380 * Be sure to close it again!
418 * Close a fieldset
443 //close previous fieldset
453 // either right after the last close or at the begining
463 // close open fieldset at the end
/dokuwiki/inc/parser/
H A Drenderer.php214 * Close the current section
237 * Close a paragraph
377 * Close an unordered list
407 * Close an ordered list
424 * Close a list item
775 * Close a table
791 * Close a table header
805 * Close a table body
819 * Close a table footer
833 * Close a table row
[all …]
/dokuwiki/vendor/splitbrain/lesserphp/src/
H A DFormatterClassic.php21 public $close = '}'; variable in LesserPHP\\FormatterClassic
108 echo $pre . $this->close . $this->break;
/dokuwiki/inc/Ui/
H A DEditor.php115 $form->addTagClose('div'); // close div editButtons class
130 $form->addTagClose('div'); // close div summary class
133 $form->addTagClose('div'); // close div editBar class
181 echo '</div>'; // close div editBox class
/dokuwiki/lib/plugins/styling/
H A Dpopup.php5 //close session

1234567