Home
last modified time | relevance | path

Searched full:tt (Results 1 – 25 of 464) sorted by relevance

12345678910>>...19

/plugin/html2pdf/html2pdf/html2ps/help/
Dconfiguration.html10 <p>Currently, configuration is done both via configuration file (<tt>html2ps.config</tt>)
11 and configuration constants inside the <tt>config.inc.php</tt> file.
14 <caption><p>Common directives in <tt>html2ps.config<br>
15 </tt></p></caption>
22 <td><tt>media</tt></td>
26 <li><tt>name</tt> &ndash; media name; you'll be able to refer to this media
28 <li><tt>width</tt> &ndash; media width in millimetres;</li>
29 <li><tt>height</tt> &ndash; media height in millimetres.</li>
37 <caption><p>Postscript-specific directives in <tt>html2ps.config<br></tt></p>
45 <td><tt>fonts</tt></td>
[all …]
/plugin/diff/
Dsyntax.php13 * <tt>syntax_plugin_diff.php </tt>- A PHP4 class that implements a
14 * plugin for highlighting <tt>diff</tt> output in <tt>DokuWiki</tt>
19 * a <tt>diff</tt> file into a Wiki page. While this could be done by
20 * using the <tt>code</tt> tag this plugin additionally provides some
25 * Three types of <tt>diff</tt> output formats are supported:
28 * <dt><tt>unified</tt></dt>
29 * <dd>The output of the <tt>diff</tt> program with the <tt>-u</tt>
31 * <dt><tt>context</tt></dt>
32 * <dd>The output of the <tt>diff</tt> program with the <tt>-c</tt>
34 * <dt><tt>context</tt></dt>
[all …]
/plugin/hr/
Dsyntax.php13 * <tt>syntax_plugin_hr.php </tt>- A PHP4 class that implements
14 * a <tt>DokuWiki</tt> plugin for <tt>horizonal rule</tt> (HR)
20 * <tt>----</tt>
39 * @version <tt>$Id: syntax_plugin_hr.php,v 1.4 2007/08/15 12:36:19 matthias Exp $</tt>
51 * <tt>$aMode</tt> within its own markup.
54 * @return Boolean <tt>TRUE</tt> unless <tt>$aMode</tt> is
55 * <tt>'plugin_hr'</tt> (which would result in a
56 * <tt>FALSE</tt> method result).
86 * <tt>YYYY-MM-DD</tt> format</dd>
119 * @return String <tt>'block'</tt>.
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/loose/
Dstatement.js3 import {getLineInfo, tokTypes as tt} from "acorn"
10 while (this.tok.type !== tt.eof) node.body.push(this.parseStatement())
22 starttype = tt._var
27 case tt._break: case tt._continue:
29 let isBreak = starttype === tt._break
33 node.label = this.tok.type === tt.name ? this.parseIdent() : null
38 case tt._debugger:
43 case tt._do:
46 node.test = this.eat(tt._while) ? this.parseParenExpression() : this.dummyIdent()
50 case tt._for:
[all …]
Dexpression.js3 import {tokTypes as tt} from "acorn"
26 if (this.tok.type === tt.comma) {
29 while (this.eat(tt.comma)) node.expressions.push(this.parseMaybeAssign(noIn))
37 this.expect(tt.parenL)
40 this.expect(tt.parenR)
48 …if (this.semicolon() || this.canInsertSemicolon() || (this.tok.type != tt.star && !this.tok.type.s…
52 node.delegate = this.eat(tt.star)
63 node.left = this.tok.type === tt.eq ? this.toAssignable(left) : this.checkLVal(left)
74 if (this.eat(tt.question)) {
78 node.alternate = this.expect(tt.colon) ? this.parseMaybeAssign(noIn) : this.dummyIdent()
[all …]
/plugin/asciidocjs/node_modules/acorn/src/loose/
Dstatement.js3 import {getLineInfo, tokTypes as tt} from "../index"
10 while (this.tok.type !== tt.eof) node.body.push(this.parseStatement())
22 starttype = tt._var
27 case tt._break: case tt._continue:
29 let isBreak = starttype === tt._break
33 node.label = this.tok.type === tt.name ? this.parseIdent() : null
38 case tt._debugger:
43 case tt._do:
46 node.test = this.eat(tt._while) ? this.parseParenExpression() : this.dummyIdent()
50 case tt._for:
[all …]
Dexpression.js3 import {tokTypes as tt} from "../index"
26 if (this.tok.type === tt.comma) {
29 while (this.eat(tt.comma)) node.expressions.push(this.parseMaybeAssign(noIn))
37 this.expect(tt.parenL)
40 this.expect(tt.parenR)
48 …if (this.semicolon() || this.canInsertSemicolon() || (this.tok.type != tt.star && !this.tok.type.s…
52 node.delegate = this.eat(tt.star)
63 node.left = this.tok.type === tt.eq ? this.toAssignable(left) : this.checkLVal(left)
74 if (this.eat(tt.question)) {
78 node.alternate = this.expect(tt.colon) ? this.parseMaybeAssign(noIn) : this.dummyIdent()
[all …]
/plugin/lang/
Dsyntax.php13 * <tt>syntax_plugin_lang.php </tt>- A PHP4 class that implements
14 * a <tt>DokuWiki</tt> plugin to specify an area using a different
19 * <tt>lang 2-letter-lang-code</tt>
37 * @version <tt>$Id: syntax_plugin_lang.php,v 1.4 2007/08/15 12:36:19 matthias Exp $</tt>
49 * <tt>$aMode</tt> within its own markup.
52 * @return Boolean <tt>TRUE</tt> unless <tt>$aMode</tt> is
53 * <tt>plugin_lang</tt> (which would result in a
54 * <tt>FALSE</tt> method result).
87 * <tt>YYYY-MM-DD</tt> format</dd>
110 * @return Integer <tt>498</tt> (doesn't really matter).
[all …]
/plugin/bomfix/
Dsyntax.php13 * <tt>syntax_plugin_bomfix.php </tt>- A PHP4 class that implements
14 * a <tt>DokuWiki</tt> plugin for <tt>UTF8 "magic" bytes</tt>.
32 * Actually that is the recommended approach <em>if</em> (i.e. <tt>if</tt>)
39 * presented to the end user (reader). Enter <tt>syntax_plugin_bomfix</tt>.
65 * @version <tt>$Id: syntax_plugin_bomfix.php,v 1.6 2010/02/22 10:49:59 matthias Exp $</tt>
77 * <tt>$aMode</tt> within its own markup.
80 * @return Boolean <tt>FALSE</tt> always since no nested markup
109 * <tt>YYYY-MM-DD</tt> format</dd>
132 * @return Integer <tt>380</tt> (doesn't really matter).
143 * @return String <tt>'substition'</tt> (i.e. 'substitution').
[all …]
/plugin/tip/
Dsyntax.php13 * <tt>syntax_plugin_tip.php </tt>- A PHP4 class that implements
14 * a <tt>DokuWiki</tt> plugin for <tt>small notes/tips fragments</tt>.
18 * <tt>&lt;tip [c|l|r] [u|e|d] [h|i|n|w]&gt;some text&lt;/tip&gt;</tt>
35 * @version <tt>$Id: syntax_plugin_tip.php,v 1.5 2007/08/15 12:36:19 matthias Exp $</tt>
46 * HTML special characters to replace in <tt>render()</tt>.
69 * <tt>$aMode</tt> within its own markup.
72 * @return Boolean <tt>TRUE</tt> unless <tt>$aMode</tt> is
73 * <tt>'plugin_tip'</tt> (which would result in a <tt>FALSE</tt>
124 * <tt>YYYY-MM-DD</tt> format</dd>
158 * @return String <tt>"normal"</tt> instead of the (correct) "block"
[all …]
/plugin/shy/
Dsyntax.php13 * <tt>syntax_plugin_shy.php </tt>- A PHP4 class that implements
14 * a <tt>DokuWiki</tt> plugin for so-called 'soft hyphens'.
18 * <tt>\\-</tt><br>
37 * @version <tt>$Id: syntax_plugin_shy.php,v 1.4 2010/02/22 10:49:59 matthias Exp $</tt>
49 * <tt>$aMode</tt> within its own markup.
52 * @return Boolean <tt>FALSE</tt> always.
82 * <tt>YYYY-MM-DD</tt> format</dd>
105 * @return Integer <tt>176</tt>.
116 * @return String <tt>'substition'</tt> (i.e. 'substitution').
128 * The <tt>$aState</tt> parameter gives the type of pattern
[all …]
/plugin/youtracklinks/
Dsyntax.php20 * @return String <tt>'substition'</tt> (i.e. 'substitution').
33 * @return Integer <tt>6</tt>.
59 * The <tt>$aState</tt> parameter gives the type of pattern
64 * <dd>a pattern set by <tt>addEntryPattern()</tt></dd>
66 * <dd>a pattern set by <tt>addPattern()</tt></dd>
68 * <dd> a pattern set by <tt>addExitPattern()</tt></dd>
70 * <dd>a pattern set by <tt>addSpecialPattern()</tt></dd>
106 * The method checks for the given <tt>$aFormat</tt> and returns
107 * <tt>FALSE</tt> when a format isn't supported. <tt>$aRenderer</tt>
109 * handling the rendering. The contents of <tt>$aData</tt> is the
[all …]
/plugin/acronym/
Dsyntax.php39 * @return String <tt>'substition'</tt> (i.e. 'substitution').
52 * @return Integer <tt>6</tt>.
85 * The <tt>$aState</tt> parameter gives the type of pattern
90 * <dd>a pattern set by <tt>addEntryPattern()</tt></dd>
92 * <dd>a pattern set by <tt>addPattern()</tt></dd>
94 * <dd> a pattern set by <tt>addExitPattern()</tt></dd>
96 * <dd>a pattern set by <tt>addSpecialPattern()</tt></dd>
132 * The method checks for the given <tt>$aFormat</tt> and returns
133 * <tt>FALSE</tt> when a format isn't supported. <tt>$aRenderer</tt>
135 * handling the rendering. The contents of <tt>$aData</tt> is the
[all …]
/plugin/docincluder/
Dsyntax.php25 * @return String <tt>'substition'</tt> (i.e. 'substitution').
54 * @return String <tt>'block'</tt>.
66 * @return Integer <tt>6</tt>.
97 * The <tt>$aState</tt> parameter gives the type of pattern
102 * <dd>a pattern set by <tt>addEntryPattern()</tt></dd>
104 * <dd>a pattern set by <tt>addPattern()</tt></dd>
106 * <dd> a pattern set by <tt>addExitPattern()</tt></dd>
108 * <dd>a pattern set by <tt>addSpecialPattern()</tt></dd>
142 * The method checks for the given <tt>$aFormat</tt> and returns
143 * <tt>FALSE</tt> when a format isn't supported. <tt>$aRenderer</tt>
[all …]
/plugin/literal_entities/
Dsyntax.php30 * <tt>YYYY-MM-DD</tt> format</dd>
56 * @return String <tt>'substition'</tt> (i.e. 'substitution').
68 * @return Integer <tt>6</tt>.
93 * The <tt>$aState</tt> parameter gives the type of pattern
98 * <dd>a pattern set by <tt>addEntryPattern()</tt></dd>
100 * <dd>a pattern set by <tt>addPattern()</tt></dd>
102 * <dd> a pattern set by <tt>addExitPattern()</tt></dd>
104 * <dd>a pattern set by <tt>addSpecialPattern()</tt></dd>
126 * The method checks for the given <tt>$aFormat</tt> and returns
127 * <tt>FALSE</tt> when a format isn't supported. <tt>$aRenderer</tt>
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/
Dstatement.js1 import {types as tt} from "./tokentype"
19 while (this.type !== tt.eof) {
37 if (this.type !== tt.name || this.options.ecmaVersion < 6 || this.value != "let") return false
61 starttype = tt._var
70 …case tt._break: case tt._continue: return this.parseBreakContinueStatement(node, starttype.keyword)
71 case tt._debugger: return this.parseDebuggerStatement(node)
72 case tt._do: return this.parseDoStatement(node)
73 case tt._for: return this.parseForStatement(node)
74 case tt._function:
77 case tt._class:
[all …]
Dtokencontext.js6 import {types as tt} from "./tokentype"
35 if (prevType === tt.colon) {
40 if (prevType === tt._return)
42 …if (prevType === tt._else || prevType === tt.semi || prevType === tt.eof || prevType === tt.parenR)
44 if (prevType == tt.braceL)
51 if (type.keyword && prevType == tt.dot)
61 tt.parenR.updateContext = tt.braceR.updateContext = function() {
77 tt.braceL.updateContext = function(prevType) {
82 tt.dollarBraceL.updateContext = function() {
87 tt.parenL.updateContext = function(prevType) {
[all …]
/plugin/asciidocjs/node_modules/acorn/src/
Dtokencontext.js6 import {types as tt} from "./tokentype"
35 if (prevType === tt.colon) {
40 if (prevType === tt._return)
42 …if (prevType === tt._else || prevType === tt.semi || prevType === tt.eof || prevType === tt.parenR)
44 if (prevType == tt.braceL)
51 if (type.keyword && prevType == tt.dot)
61 tt.parenR.updateContext = tt.braceR.updateContext = function() {
77 tt.braceL.updateContext = function(prevType) {
82 tt.dollarBraceL.updateContext = function() {
87 tt.parenL.updateContext = function(prevType) {
[all …]
Dstatement.js1 import {types as tt} from "./tokentype"
19 while (this.type !== tt.eof) {
33 if (this.type !== tt.name || this.options.ecmaVersion < 6 || this.value != "let") return false
50 if (this.type !== tt.name || this.options.ecmaVersion < 8 || this.value != "async")
72 starttype = tt._var
81 …case tt._break: case tt._continue: return this.parseBreakContinueStatement(node, starttype.keyword)
82 case tt._debugger: return this.parseDebuggerStatement(node)
83 case tt._do: return this.parseDoStatement(node)
84 case tt._for: return this.parseForStatement(node)
85 case tt._function:
[all …]
/plugin/heat/
Dsyntax.php30 * <tt>YYYY-MM-DD</tt> format</dd>
56 * @return String <tt>'substition'</tt> (i.e. 'substitution').
85 * @return String <tt>'block'</tt>.
97 * @return Integer <tt>6</tt>.
130 * The <tt>$aState</tt> parameter gives the type of pattern
135 * <dd>a pattern set by <tt>addEntryPattern()</tt></dd>
137 * <dd>a pattern set by <tt>addPattern()</tt></dd>
139 * <dd> a pattern set by <tt>addExitPattern()</tt></dd>
141 * <dd>a pattern set by <tt>addSpecialPattern()</tt></dd>
175 * The method checks for the given <tt>$aFormat</tt> and returns
[all …]
/plugin/spreadout/
Dsyntax.php13 * <tt>syntax_plugin_spreadout.php</tt>, a PHP class that lets the
46 * <tt>$aMode</tt> within its own markup.
49 * This method always returns <tt>FALSE</tt> since no other data
53 * @return Boolean <tt>FALSE</tt> always.
86 * <tt>YYYY-MM-DD</tt> format</dd>
109 * @return Integer <tt>174</tt>.
120 * @return String <tt>'substition'</tt> (a mispelled 'substitution').
133 * arguments) and just returns the given <tt>$aState</tt>.
140 * @return Integer The given <tt>$aState</tt> value.
153 * The method checks for the given <tt>$aMode</tt> and returns
[all …]
/plugin/deflist/
Dsyntax.php14 * <tt>syntax_plugin_deflist.php </tt>- A PHP4 class that implements
15 * a <tt>DokuWiki</tt> plugin for <tt>definition list</tt> elements.
19 * <tt>?? Term :: Term definition !!</tt>
46 * @version <tt>$Id: syntax_plugin_deflist.php,v 1.14 2007/08/15 12:36:20 matthias Exp $</tt>
57 * Convert the specified <tt>$aID</tt> to a valid XHTML
63 * <tt>[A-Za-z][A-Za-z0-9:_.-]*</tt> for valid identifiers. Here
64 * it's slightly reduced to <tt>[A-Za-z][A-Za-z0-9_]+</tt> i.e.
96 * <tt>$aMode</tt> within its own markup.
99 * This method mostly returns <tt>TRUE</tt> since all other types
100 * are allowed within a definition list's <tt>DD</tt> sections.
[all …]
/plugin/nstoc/
Dsyntax.php21 * <tt>syntax_plugin_nstoc.php </tt>- A PHP4 class that implements
22 * a <tt>DokuWiki</tt> plugin to generate a
27 * <tt>{{nstoc [namespace [maxdepth]]}}</tt>
44 * @version <tt>$Id: syntax_plugin_nstoc.php,v 1.17 2010/02/21 14:36:27 matthias Exp $</tt>
55 * Callback function for use by the global <tt>search()</tt> function.
63 * HTML special characters to replace in <tt>render()</tt>.
67 * inside the <tt>_doMarkup()</tt> loops.
80 * inside the <tt>_doMarkup()</tt> loops.
111 * Each entry of the given <tt>$aList</tt> (indexed by <em>page ID</em>)
113 * at index <tt>0</tt> (zero) and the headline's text at index
[all …]
/plugin/rtmchecklist/
Dsyntax.php27 * @return String <tt>'substition'</tt> (i.e. 'substitution').
39 * @return Integer <tt>999</tt>.
65 * The <tt>$aState</tt> parameter gives the type of pattern
70 * <dd>a pattern set by <tt>addEntryPattern()</tt></dd>
72 * <dd>a pattern set by <tt>addPattern()</tt></dd>
74 * <dd> a pattern set by <tt>addExitPattern()</tt></dd>
76 * <dd>a pattern set by <tt>addSpecialPattern()</tt></dd>
123 * The method checks for the given <tt>$aFormat</tt> and returns
124 * <tt>FALSE</tt> when a format isn't supported. <tt>$aRenderer</tt>
126 * handling the rendering. The contents of <tt>$aData</tt> is the
[all …]
/plugin/directions/syntax/
Dglobaldirections.php36 * <tt>YYYY-MM-DD</tt> format</dd>
62 * @return String <tt>'substition'</tt> (i.e. 'substitution').
92 * @return String <tt>'block'</tt>.
104 * @return Integer <tt>6</tt>.
132 * The <tt>$aState</tt> parameter gives the type of pattern
137 * <dd>a pattern set by <tt>addEntryPattern()</tt></dd>
139 * <dd>a pattern set by <tt>addPattern()</tt></dd>
141 * <dd> a pattern set by <tt>addExitPattern()</tt></dd>
143 * <dd>a pattern set by <tt>addSpecialPattern()</tt></dd>
190 * The method checks for the given <tt>$aFormat</tt> and returns
[all …]

12345678910>>...19