Home
last modified time | relevance | path

Searched refs:input (Results 201 – 225 of 1436) sorted by path

12345678910>>...58

/plugin/ckgedit/ckeditor/skins/moono/
H A Deditor_iequirks.css5input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disab…
/plugin/ckgedit/fckeditor/editor/filemanager/browser/default/
H A Dbrowser.css48 body, td, input, select selector
205 input.closebut {
/plugin/ckgedit/fckeditor/editor/filemanager/browser/default/js/
H A Dlanguage.js68 var input = d.getElementsByTagName('input');
69 for(i=0; i<input.length; i++) {
70 if(input[i].getAttribute("fckLang")) {
71 var val = input[i].getAttribute("fckLang");
74 input[i].value = translation;
/plugin/ckgedit/scripts/
H A Dparse_wiki.js.unc389 …jQuery('#dw__editform').append('<input type="hidden" id="linkintbl" name="linkintbl" value="del" /…
1630 …jQuery('#dw__editform').append('<input type="hidden" id="formatdel" name="formatdel" value="del" /…
1645 …jQuery('#dw__editform').append('<input type="hidden" id="formatdel" name="formatdel" value="del" /…
1814 … jQuery('#dw__editform').append('<input type="hidden" id="fontdel" name="fontdel" value="del" />');
1830 … jQuery('#dw__editform').append('<input type="hidden" id="fontdel" name="fontdel" value="del" />');
1840 …jQuery('#dw__editform').append('<input type="hidden" id="formatdel" name="formatdel" value="del" /…
1931 jQuery(document).on("keydown", "input#edit__summary", function(e) {
/plugin/ckgedit/
H A Dstyle.css5 .editButtons input { margin-bottom: 5px; }
/plugin/code3/styles/
H A Dstyles.css4 div.PSyHi_Container input {
12 div.PSyHi_Container input.toggleLineNumbers {
16 div.PSyHi_Container input.toggleSource {
20 div.PSyHi_Container input.toggleAbout {
24 div.PSyHi_Container input.clipboardCopy {
28 div.PSyHi_Container input.expandSource {
32 div.PSyHi_Container input.collapseSource {
/plugin/codebutton2/
H A Dadmin.php63 ptln('<input type="hidden" name="do" value="admin" />');
64 ptln('<input type="hidden" name="page" value="'.$this->getPluginName().'" />');
65 ptln('<input type="hidden" name="id" value="'.$ID.'" />');
69 ptln('<br><input type=submit value="Save"></form>');
/plugin/codehighlight/cp/engines/
H A Dgecko.js119 x = x.replace(Language.syntax[i].input,Language.syntax[i].output);
136 if(snippets[i].input == trigger) {
157 if(complete[i].input == trigger) {
168 cChars += '|'+Language.complete[i].input;
203 if(Language.shortcuts[i].input == cCode)
H A Dmsie.js135 x = x.replace(Language.syntax[i].input,Language.syntax[i].output);
145 if(snippets[i].input == trigger) {
164 if(complete[i].input == trigger) {
175 cChars += '|'+Language.complete[i].input;
210 if(Language.shortcuts[i].input == cCode)
H A Dopera.js118 x = x.replace(Language.syntax[i].input,Language.syntax[i].output);
136 if(snippets[i].input == trigger) {
157 if(complete[i].input == trigger) {
168 cChars += '|'+Language.complete[i].input;
178 if(Language.shortcuts[i].input == cCode)
/plugin/codehighlight/cp/languages/
H A Dasp.js18 { input : /(&lt;%)/g, output : '<strong>$1' },
20 { input : /(%&gt;)/g, output : '$1</strong>' },
73 { input : 'resend', output : 'Response.End'},
106 { input : '"', output : '"$0"' },
107 { input : '(', output : '\($0\)' },
108 { input : '[', output : '\[$0\]' },
109 { input : '{', output : '{\n\t$0\n}' }
113 { input : '[space]', output : '&nbsp;' },
114 { input : '[enter]', output : '<br />' } ,
115 { input : '[j]', output : 'testing' },
[all …]
H A Dautoit.js8 { input : /({|}|\(|\))/g, output : '<b>$1</b>' }, // Brackets
9 { input : /(\*|\+|-)/g, output : '<b>$1</b>' }, // Operator
12 { input : /\b([\d]+)\b/g, output : '<ins>$1</ins>' }, // Numbers
14 { input : /(\$[\w\.]*)/g, output : '<var>$1</var>' }, // vars
15 { input : /(_[\w\.]*)/g, output : '<a>$1</a>' }, // underscored word
16 { input : /(\@[\w\.]*)/g, output : '<em>$1</em>' }, // Macros
25 { input : '\'',output : '\'$0\'' },
26 { input : '"', output : '"$0"' },
27 { input : '(', output : '\($0\)' },
28 { input : '[', output : '\[$0\]' },
[all …]
H A Dcsharp.js7 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote
8 { input : /\'(.?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single quote
9 …{ input : /\b(abstract|as|base|break|case|catch|checked|continue|default|delegate|do|else|event|ex…
10 …{ input : /\b(bool|byte|char|class|double|float|int|interface|long|string|struct|void)\b/g, output…
11 { input : /([^:]|^)\/\/(.*?)(<br|<\/P)/g, output : '$1<i>//$2</i>$3' }, // comments //
12 { input : /\/\*(.*?)\*\//g, output : '<i>/*$1*/</i>' } // comments /* */
18 {input : '\'',output : '\'$0\'' },
19 {input : '"', output : '"$0"' },
20 {input : '(', output : '\($0\)' },
21 {input : '[', output : '\[$0\]' },
[all …]
H A Dcss.js7 { input : /(.*?){(.*?)}/g,output : '<b>$1</b>{<u>$2</u>}' }, // tags, ids, classes, values
8 { input : /([\w-]*?):([^\/])/g,output : '<a>$1</a>:$2' }, // keys
9 { input : /\((.*?)\)/g,output : '(<s>$1</s>)' }, // parameters
10 { input : /\/\*(.*?)\*\//g,output : '<i>/*$1*/</i>'} // comments
16 { input : '\'',output : '\'$0\'' },
17 { input : '"', output : '"$0"' },
18 { input : '(', output : '\($0\)' },
19 { input : '[', output : '\[$0\]' },
20 { input : '{', output : '{\n\t$0\n}' }
H A Dgeneric.js7 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote
8 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single quote
9 …{ input : /\b(abstract|continue|for|new|switch|default|goto|boolean|do|if|private|this|break|doubl…
10 { input : /([\(\){}])/g, output : '<em>$1</em>' }, // special chars;
11 { input : /([^:]|^)\/\/(.*?)(<br|<\/P)/g, output : '$1<i>//$2</i>$3' }, // comments //
12 { input : /\/\*(.*?)\*\//g, output : '<i>/*$1*/</i>' } // comments /* */
18 { input : '\'', output : '\'$0\'' },
19 { input : '"', output : '"$0"' },
20 { input : '(', output : '\($0\)' },
21 { input : '[', output : '\[$0\]' },
[all …]
H A Dhtml.js21 { input : 'h1', output : '<h1>$0</h1>' },
22 { input : 'h2', output : '<h2>$0</h2>' },
23 { input : 'h3', output : '<h3>$0</h3>' },
24 { input : 'h4', output : '<h4>$0</h4>' },
25 { input : 'h5', output : '<h5>$0</h5>' },
26 { input : 'h6', output : '<h6>$0</h6>' },
43 { input : 'p', output : '<p>$0</p>' },
52 { input : '\'',output : '\'$0\'' },
53 { input : '"', output : '"$0"' },
54 { input : '(', output : '\($0\)' },
[all …]
H A Djava.js7 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>'}, // strings double quote
8 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>'}, // strings single quote
9 …{ input : /\b(abstract|continue|for|new|switch|assert|default|goto|package|synchronized|boolean|do…
10 { input : /([^:]|^)\/\/(.*?)(<br|<\/P)/g, output : '$1<i>//$2</i>$3'}, // comments //
11 { input : /\/\*(.*?)\*\//g, output : '<i>/*$1*/</i>' }// comments /* */
17 { input : '\'',output : '\'$0\'' },
18 { input : '"', output : '"$0"' },
19 { input : '(', output : '\($0\)' },
20 { input : '[', output : '\[$0\]' },
21 { input : '{', output : '{\n\t$0\n}' }
H A Djavascript.js7 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote
12 { input : /\/\*(.*?)\*\//g, output : '<i>/*$1*/</i>' } // comments /* */
16 { input : 'dw', output : 'document.write(\'$0\');' },
17 { input : 'getid', output : 'document.getElementById(\'$0\')' },
18 { input : 'fun', output : 'function $0(){\n\t\n}' },
19 { input : 'func', output : 'function $0(){\n\t\n}' }
23 { input : '\'',output : '\'$0\'' },
24 { input : '"', output : '"$0"' },
25 { input : '(', output : '\($0\)' },
26 { input : '[', output : '\[$0\]' },
[all …]
H A Dperl.js8 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote
9 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single quote
10 { input : /([\$\@\%][\w\.]*)/g, output : '<a>$1</a>' }, // vars
11 { input : /(sub\s+)([\w\.]*)/g, output : '$1<em>$2</em>' }, // functions
13 { input : /([\(\){}])/g, output : '<u>$1</u>' }, // special chars
14 { input : /#(.*?)(<br>|<\/P>)/g, output : '<i>#$1</i>$2' } // comments
20 { input : '\'',output : '\'$0\'' },
21 { input : '"', output : '"$0"' },
22 { input : '(', output : '\($0\)' },
23 { input : '[', output : '\[$0\]' },
[all …]
H A Dphp.js43 { input : 'ret', output : 'return $0;' },
45 { input : '<?', output : 'php\n$0\n?>' }
49 { input : '\'', output : '\'$0\'' },
50 { input : '"', output : '"$0"' },
51 { input : '(', output : '\($0\)' },
52 { input : '[', output : '\[$0\]' },
53 { input : '{', output : '{\n\t$0\n}' }
57 { input : '[space]', output : '&nbsp;' },
58 { input : '[enter]', output : '<br />' } ,
59 { input : '[j]', output : 'testing' },
[all …]
H A Druby.js7 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote
8 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single quote
9 { input : /([\$\@\%]+)([\w\.]*)/g, output : '<a>$1$2</a>' }, // vars
10 { input : /(def\s+)([\w\.]*)/g, output : '$1<em>$2</em>' }, // functions
12 { input : /([\(\){}])/g, output : '<u>$1</u>' }, // special chars
13 { input : /#(.*?)(<br>|<\/P>)/g, output : '<i>#$1</i>$2' } // comments
19 { input : '\'',output : '\'$0\'' },
20 { input : '"', output : '"$0"' },
21 { input : '(', output : '\($0\)' },
22 { input : '[', output : '\[$0\]' },
[all …]
H A Dsql.js8 { input : /\'(.*?)(\')/g, output : '<s>\'$1$2</s>' }, // strings single quote
9 …{ input : /\b(add|after|aggregate|alias|all|and|as|authorization|between|by|cascade|cache|cache|ca…
10 …{ input : /\b(bigint|bigserial|bit|boolean|box|bytea|char|character|cidr|circle|date|decimal|doubl…
11 …{ input : /\b(abort|alter|analyze|begin|checkpoint|close|cluster|comment|commit|copy|create|deallo…
12 { input : /([^:]|^)\-\-(.*?)(<br|<\/P)/g, output: '$1<i>--$2</i>$3' } // comments //
16 { input : 'select', output : 'select $0 from where ' }
20 { input : '\'', output : '\'$0\'' },
21 { input : '"', output : '"$0"' },
22 { input : '(', output : '\($0\)' },
23 { input : '[', output : '\[$0\]' },
[all …]
H A Dvbscript.js18 { input : /(&lt;%)/g, output : '<strong>$1' },
20 { input : /(%&gt;)/g, output : '$1</strong>' },
73 { input : 'resend', output : 'Response.End'},
106 { input : '"', output : '"$0"' },
107 { input : '(', output : '\($0\)' },
108 { input : '[', output : '\[$0\]' },
109 { input : '{', output : '{\n\t$0\n}' }
113 { input : '[space]', output : '&nbsp;' },
114 { input : '[enter]', output : '<br />' } ,
115 { input : '[j]', output : 'testing' },
[all …]
H A Dxsl.js8 input : /(&lt;[^!]*?&gt;)/g,
11 input : /(&lt;a.*?&gt;|&lt;\/a&gt;)/g,
14 input : /(&lt;img .*?&gt;)/g,
29 input : /=(".*?")/g,
32 input : /=('.*?')/g,
35 input : /(&lt;!--.*?--&gt.)/g,
73 {input : 'br', output : '<br />' },
96 {input : '\'',output : '\'$0\'' },
97 {input : '"', output : '"$0"' },
98 {input : '(', output : '\($0\)' },
[all …]
/plugin/codemirror/dist/keymaps/
H A Demacs.min.js.map1input\") {\n var one = event.text.join(\"\\n\"), txt = \"\";\n for (var i = 1; i < dup; …

12345678910>>...58