Home
last modified time | relevance | path

Searched refs:html (Results 1 – 25 of 65) sorted by path

123

/dokuwiki/conf/
H A Dinterwiki.conf28 rfc https://tools.ietf.org/html/rfc
/dokuwiki/data/
H A Ddeleted.files625 lib/tpl/default/footer.html
687 lib/_fla/index.html
/dokuwiki/data/pages/wiki/
H A Ddokuwiki.txt60 The DokuWiki engine is licensed under [[https://www.gnu.org/licenses/gpl.html|GNU General Public License]] Version 2. If you use DokuWiki in your company, consider [[doku>donate|donating]] a few bucks ;-).
H A Dsyntax.txt420 The following language strings are currently recognized: //4cs 6502acme 6502kickass 6502tasm 68000devpac abap actionscript3 actionscript ada aimms algol68 apache applescript apt_sources arm asm asp asymptote autoconf autohotkey autoit avisynth awk bascomavr bash basic4gl batch bf biblatex bibtex blitzbasic bnf boo caddcl cadlisp ceylon cfdg cfm chaiscript chapel cil c_loadrunner clojure c_mac cmake cobol coffeescript c cpp cpp-qt cpp-winapi csharp css cuesheet c_winapi dart dcl dcpu16 dcs delphi diff div dos dot d ecmascript eiffel email epc e erlang euphoria ezt f1 falcon fo fortran freebasic freeswitch fsharp gambas gdb genero genie gettext glsl gml gnuplot go groovy gwbasic haskell haxe hicest hq9plus html html4strict html5 icon idl ini inno intercal io ispfpanel java5 java javascript jcl j jquery julia kixtart klonec klonecpp kotlin latex lb ldif lisp llvm locobasic logtalk lolcode lotusformulas lotusscript lscript lsl2 lua m68k magiksf make mapbasic mathematica matlab mercury metapost mirc mk-61 mmix modula2 modula3 mpasm mxml mysql nagios netrexx newlisp nginx nimrod nsis oberon2 objc objeck ocaml-brief ocaml octave oobas oorexx oracle11 oracle8 oxygene oz parasail parigp pascal pcre perl6 perl per pf phix php-brief php pic16 pike pixelbender pli plsql postgresql postscript povray powerbuilder powershell proftpd progress prolog properties providex purebasic pycon pys60 python qbasic qml q racket rails rbs rebol reg rexx robots roff rpmspec rsplus ruby rust sas sass scala scheme scilab scl sdlbasic smalltalk smarty spark sparql sql sshconfig standardml stonescript swift systemverilog tclegg tcl teraterm texgraph text thinbasic tsql twig typoscript unicon upc urbi uscript vala vbnet vb vbscript vedit verilog vhdl vim visualfoxpro visualprolog whitespace whois winbatch wolfram xbasic xml xojo xorg_conf xpp yaml z80 zxbasic//
/dokuwiki/inc/ChangeLog/
H A DRevisionInfo.php158 $html = '<bdi>' . editorinfo($this->val('user')) . '</bdi>';
160 $html .= ' <bdo dir="ltr">(' . $this->val('ip') . ')</bdo>';
163 $html = '<bdo dir="ltr">' . $this->val('ip') . '</bdo>';
165 return '<span class="user">' . $html . '</span>';
/dokuwiki/inc/Extension/
H A DAdminPlugin.php10 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
81 * Output html of the admin page
83 abstract public function html();
74 abstract public function html(); global() function in dokuwiki\\Extension\\AdminPlugin
/dokuwiki/inc/Form/
H A DDropdownElement.php189 $html = '<select ' . buildAttributes($attr) . '>';
190 $html = array_reduce(
192 static fn($html, OptGroup $optGroup) => $html . $optGroup->toHTML(),
193 $html
195 $html .= '</select>';
197 return $html;
H A DFieldsetOpenElement.php34 $html = '<fieldset ' . buildAttributes($this->attrs()) . '>';
36 if ($legend) $html .= DOKU_LF . '<legend>' . hsc($legend) . '</legend>';
37 return $html;
H A DForm.php307 * @param string $html
311 public function addButtonHTML($name, $html, $pos = -1) argument
313 return $this->addElement(new ButtonElement($name, $html), $pos);
356 * @param string $html
360 public function addHTML($html, $pos = -1) argument
362 return $this->addElement(new HTMLElement($html), $pos);
485 $html = '<form ' . buildAttributes($this->attrs()) . '>';
488 $html .= '<input type="hidden" name="' . $name . '" value="' . formText($value) . '" />';
492 $html .= $element->toHTML();
495 $html
[all...]
H A DHTMLElement.php15 * @param string $html
17 public function __construct($html) argument
19 parent::__construct('html', $html);
H A DOptGroup.php98 $html = '<optgroup ' . buildAttributes($this->attrs()) . '>';
99 $html .= $this->renderOptions();
100 $html .= '</optgroup>';
101 return $html;
109 $html = '';
116 $html .= '<option' . $selected . ' value="' . hsc($key) . '" ' . $attrs . '>';
117 $html .= hsc($val['label']);
118 $html .= '</option>';
120 return $html;
/dokuwiki/inc/
H A DMailer.class.php24 protected $html = '';
33 protected $replacements = ['text' => [], 'html' => []];
199 * @param string $html the HTML body, leave null to create it from $text
202 public function setBody($text, $textrep = null, $htmlrep = null, $html = null, $wrap = true)
209 if ($html === null) {
210 $html = $text;
211 $html = hsc($html);
212 $html = preg_replace('/^----+$/m', '<hr >', $html);
21 protected $html = ''; global() variable in Mailer
192 setBody($text, $textrep = null, $htmlrep = null, $html = null, $wrap = true) global() argument
256 setHTML($html) global() argument
[all...]
H A Dhtml.php6 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
143 * @return string html
163 $html = '<div class="secedit editbutton_' . $data['target'] . ' editbutton_' . $secid . '">';
164 $html .= html_btn('secedit', $ID, '', $params, 'post', $name);
165 $html .= '</div>';
166 return $html;
174 * @return string html
223 $html = '<form class="button btn_' . $name . '" method="' . $method . '" action="' . $script . '"><div class="no">';
227 $html .= '<input type="hidden" name="' . $key . '" value="' . hsc($val) . '" />';
233 $html
277 html_hilight($html, $phrases) global() argument
[all...]
H A Dtemplate.php6 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
83 * outputfunction(s) from html.php
171 $html = html_TOC($toc);
172 if ($return) return $html;
173 echo $html;
205 $plugin->html();
321 'type' => 'text/html',
475 * @param bool $return if true return the link html, otherwise print
476 * @return bool|string html of the link, or true if printed
541 * @return bool|string html, o
[all...]
/dokuwiki/inc/Menu/
H A DAbstractMenu.php82 $html = '';
90 $html .= "<li$class>";
91 $html .= $item->asHtmlLink(false, $svg);
92 $html .= '</li>';
94 return $html;
H A DMobileMenu.php64 $html = '<form action="' . script() . '" method="get" accept-charset="utf-8">';
65 $html .= '<div class="no">';
66 $html .= '<input type="hidden" name="id" value="' . $ID . '" />';
67 if ($REV) $html .= '<input type="hidden" name="rev" value="' . $REV . '" />';
69 $html .= '<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />';
72 $html .= '<select name="do" class="edit quickselect" title="' . $lang['tools'] . '">';
73 $html .= '<option value="">' . $empty . '</option>';
77 $html .= '<optgroup label="' . $lang[$tools . '_tools'] . '">';
80 $html .= '<option value="' . $params['do'] . '">';
81 $html
[all...]
/dokuwiki/inc/Menu/Item/
H A DAbstractItem.php160 $html = "<a $attr>";
162 $html .= '<span>' . hsc($this->getLabel()) . '</span>';
163 $html .= inlineSVG($this->getSvg());
165 $html .= hsc($this->getLabel());
167 $html .= "</a>";
169 return $html;
/dokuwiki/inc/Ui/
H A DIndex.php41 * Build html of sitemap, unordered list of pages under the namespace
81 $html = '';
87 $html .= '<a href="' . $link . '" title="' . $item['id'] . '" class="idx_dir"' . $nofollow . '><strong>';
88 $html .= $base;
89 $html .= '</strong></a>';
92 $html .= html_wikilink(':' . $item['id'], useHeading('navigation') ? null : noNS($item['id']));
94 return $html;
105 * @return string html
H A DMediaRevisions.php89 $html = implode(' ', [
100 $form->addHTML($html);
H A DPageRevisions.php91 $html = implode(' ', [
100 $form->addHTML($html);
H A DPageView.php56 $html = html_secedit(p_render('xhtml', p_get_instructions($this->text), $info), $secedit);
57 if ($INFO['prependTOC']) $html = tpl_toc(true) . $html;
58 echo $html;
67 $html = p_wiki_xhtml($ID, $REV, true, $DATE_AT);
68 $html = html_secedit($html, $secedit);
69 if ($INFO['prependTOC']) $html = tpl_toc(true) . $html;
70 $html
[all...]
H A DRecent.php85 $html = implode(' ', [
95 $form->addHTML($html);
179 * @return string html
186 $html = '<div class="pagenav">';
189 $html .= '<div class="pagenav-prev">';
190 $html .= '<button type="submit" name="first[' . $first . ']" accesskey="n"'
194 $html .= '</div>';
197 $html .= '<div class="pagenav-next">';
198 $html .= '<button type="submit" name="first[' . $last . ']" accesskey="p"'
202 $html
[all...]
H A DRevisions.php91 * @return string html
97 $html = '<div class="pagenav">';
101 $html .= '<div class="pagenav-prev">';
102 $html .= html_btn('newer', $this->id, "p", $callback($first));
103 $html .= '</div>';
106 $html .= '<div class="pagenav-next">';
107 $html .= html_btn('older', $this->id, "n", $callback($last));
108 $html .= '</div>';
110 $html .= '</div>';
111 return $html;
[all...]
H A DSearch.php507 $html = '<div class="search_quickresult">';
508 $html .= '<h2>' . $lang['quickhits'] . ':</h2>';
509 $html .= '<ul class="search_quickhits">';
521 $html .= '<li>' . implode('', $eventData['listItemContent']) . '</li>';
523 $html .= '</ul> ';
525 $html .= '<div class="clearer"></div>';
526 $html .= '</div>';
528 return $html;
547 $html = '<div class="search_fulltextresult">';
548 $html
[all...]
/dokuwiki/inc/lang/pt-br/
H A Dstopwords.txt4 # Essa lista é baseada na encontrada em http://www.ranks.nl/stopwords/portugese.html

123