Home
last modified time | relevance | path

Searched full:input (Results 126 – 150 of 4718) sorted by relevance

12345678910>>...189

/plugin/webdavclient/vendor/sabre/vobject/lib/Parser/
H A DParser.php41 * Optionally, it's possible to parse the input stream here.
43 * @param mixed $input
47 public function __construct($input = null, $options = 0) { argument
49 if (!is_null($input)) {
50 $this->setInput($input);
61 * If either input or options are not supplied, the defaults will be used.
63 * @param mixed $input
67 abstract public function parse($input = null, $options = null); argument
70 * Sets the input data
72 * @param mixed $input
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/Parser/
H A DParser.php41 * Optionally, it's possible to parse the input stream here.
43 * @param mixed $input
47 public function __construct($input = null, $options = 0) { argument
49 if (!is_null($input)) {
50 $this->setInput($input);
61 * If either input or options are not supplied, the defaults will be used.
63 * @param mixed $input
67 abstract public function parse($input = null, $options = null); argument
70 * Sets the input data
72 * @param mixed $input
[all …]
/plugin/textinsert/
H A Dadmin.php133 ptln("<input type = 'hidden' name='encoded[$macro]' value='$encoded'>");
166 * @param el input element which has been changed
167 * @desc if an encode hidden input already exists, its value
168 * is re-encoded from the text input's value
169 * If not, a new encoded hidden input is created with the encoded
170 * value. The encode input value is used to substitute the new edit values
181 var encoder = document.createElement('input');
249 ptln(' <input type="hidden" name="do" value="admin" />');
256 ptln('<tr><td> <input type="text" name="macro[A]" id="m_A" value="" /></td>');
258 ptln('<tr><td> <input type="text" name="macro[B]" id="m_B" value="" /></td>');
[all …]
/template/congrid/css/themes/
H A Dtss.css83 #dokuwiki__site.TSS input,
103 #dokuwiki__site.TSS input,
112 #dokuwiki__site.TSS input:active,
113 #dokuwiki__site.TSS input:focus,
123 #dokuwiki__site.TSS input[type=radio],
125 #dokuwiki__site.TSS input[type=image] {
132 #dokuwiki__site.TSS input[type=submit],
134 #dokuwiki__site.TSS input[type=reset],
135 #dokuwiki__site.TSS input.button,
174 #dokuwiki__site.TSS input[disabled],
[all …]
/plugin/combo/vendor/symfony/process/
H A DInputStream.php17 * Provides a way to continuously write to the input of a Process until the InputStream is closed.
27 private $input = []; variable in Symfony\\Component\\Process\\InputStream
39 * Appends an input to the write buffer.
41 * @param resource|string|int|float|bool|\Traversable|null $input The input to append as scalar,
44 public function write($input) argument
46 if (null === $input) {
52 $this->input[] = ProcessUtils::validateInput(__METHOD__, $input);
79 while ($this->open || $this->input) {
[all...]
/dokuwiki/inc/Ui/
H A DUserRegister.php25 global $INPUT;
41 $input = $form->addTextInput('login', $lang['user'])->attrs($base_attrs)->addClass('edit')
42 ->val($INPUT->post->str('login'));
43 $input->getLabel()->attr('class', 'block');
47 $input = $form->addPasswordInput('pass', $lang['pass'])->attrs($base_attrs)->addClass('edit');
48 $input->getLabel()->attr('class', 'block');
50 $input = $form->addPasswordInput('passchk', $lang['passchk'])->attrs($base_attrs)->addClass('edit');
51 $input->getLabel()->attr('class', 'block');
55 $input = $form->addTextInput('fullname', $lang['fullname'])->attrs($base_attrs)->addClass('edit')
56 ->val($INPUT
[all...]
H A DUserProfile.php28 global $INPUT;
32 'name' => $INPUT->post->str('fullname', $INFO['userinfo']['name'], true),
33 'mail' => $INPUT->post->str('email', $INFO['userinfo']['mail'], true),
63 $input = $form->addPasswordInput('oldpass', $lang['oldpass'])->attrs($attr)
65 $input->getLabel()->attr('class', 'block');
87 $input = $form->addTextInput('login', $lang['user'])
91 $input->getLabel()->attr('class', 'block');
96 $input = $form->addTextInput('fullname', $lang['fullname'])
100 $input->getLabel()->attr('class', 'block');
105 $input
[all...]
/plugin/darcs/
H A Dadmin.php110 '<input type="hidden" name="id" value="'.$ID.'" />'.
113 '<input type="hidden" name="darcs_do" value="apply_all" />'.
127 '<input type="hidden" name="id" value="'.$ID.'" />'.
174 '<input type="hidden" name="id" value="'.$ID.'" />'.
177 '<input type="hidden" name="darcs_do" value="get_plugin" />'.
178 '<input name="plugin_url" value="http://" />'.
234 '<input type="hidden" name="id" value="'.$ID.'" />'.
237 '<input type="hidden" name="darcs_do" value="do_remove"/>'.
246 '<html><input type="checkbox" checked="checked"'.
270 '<input type="hidden" name="id" value="'.$ID.'" />'.
[all …]
/plugin/iphelper/
H A Dscript.js37 console.log('CIDR in input address is out of range');
86 document.forms.input.in_address.value = turladdr;
87 document.forms.input.in_subnet.value = tinSubnet;
92 if (document.forms.input.in_address.value.indexOf('/') > -1)
94 var tcidr = (document.forms.input.in_address.value).substring(document.forms.input.in_address.value.indexOf('/') + 1);
97 document.forms.input.in_subnet.value = cidrTosubnets[(parseInt(tcidr,10))];
107 if (document.forms.input.in_address.value.indexOf('/') > -1)
109 var address = (document.forms.input.in_address.value).substring(0,document.forms.input
[all...]
/plugin/structcombolookup/
H A Dscript.js36 this.input = $( "<input>" )
40 ….addClass( "custom-structcombolookup-input ui-widget ui-widget-content ui-state-default ui-corner-…
52 this._on( this.input, {
65 var input = this.input,
82 wasOpen = input.autocomplete( "widget" ).is( ":visible" );
85 input.trigger( "focus" );
93 input.autocomplete( "search", "" );
118 var value = this.input.val(),
134 this.input
140 this.input.tooltip( "close" ).attr( "title", "" );
[all …]
/plugin/eventline/
H A Dscript.js24 var input = document.createElement("input");
25 input.type = "text";
26 SimileAjax.DOM.registerEvent(input, "keypress", handler);
27 td.appendChild(input);
32 input = document.createElement("input");
33 input.type = "text";
34 input.size = "15";
35 SimileAjax.DOM.registerEvent(input, "keypress", handler);
36 td.appendChild(input);
84 var input = tr.cells[x].firstChild;
[all …]
/plugin/ckgdoku/fckeditor/editor/filemanager/connectors/php/
H A Dinput_utils.php3 * Connector to Dokuwiki Input class
9 require_once(DOKU_INC.'inc/Input.class.php');
10 global $INPUT;
11 if(!isset($INPUT)) {
12 $INPUT = new Input(); variable
16 global $INPUT;
18 $val = $INPUT->str($which);
/plugin/dwcommits/
H A Dadmin.php194 ptln(' <input type="hidden" name="do" value="admin" />');
195 ptln(' <input type="hidden" name="page" value="'.$this->getPluginName().'" />');
214 …ptln('&nbsp;&nbsp;<input type="submit" name="cmd[init]" value="'.$this->getLang('btn_init').'" />…
222 …ptln('&nbsp;&nbsp;<input type="submit" name="cmd[update]" value="'.$this->getLang('btn_update').'…
242 …ptln('<td>&nbsp;&nbsp;<input type="submit" name="cmd[pull]" value="'.$this->getLang('btn_pull').'…
251 . '&nbsp;<input type="text" name="remote_url_name" size="80" value="'
275 …ptln('<td align="right"><input type="submit" name="cmd[merge]" value="'. $this->getLang('btn_merg…
342 ptln('&nbsp;&nbsp;AND <input type="RADIO" value="AND" name="dwc_query[OP_1]"></TD>');
346 … ptln('&nbsp;&nbsp;AND <input type="radio" value="AND" CHECKED name="dwc_query[OP_2]"></TD>');
358 …ptln('&nbsp;&nbsp;<input type ="radio" name="output_type" value="plain">' . $this->getLang('q_plai…
[all …]
/template/templar/less/
H A Dreset.less101 input,
109 input {
120 input[type="reset"],
121 input[type="submit"] {
128 input[type="button"],
129 input[type="reset"],
130 input[type="submit"],
131 input[type="radio"],
132 input[type="checkbox"] {
139 input[type="search"]::-webkit-search-decoration,
[all …]
/template/breeze/bower_components/gumby/js/libs/ui/
H A Dgumby.radiobtn.js13 this.$input = this.$el.find('input[type=radio]');
23 if (scope.$input.is('[disabled]')) {
35 if(this.$input.prop('checked') || this.$el.hasClass('checked')) {
44 …if(this.$el.hasClass('checked') && this.$input.prop('checked') && this.$el.find('i.icon-dot').leng…
52 group = 'input[name="'+this.$input.attr('name')+'"]';
54 // uncheck radio buttons in same group - uncheck input, remove checked class, remove <i>
56 .find('input').prop('checked', false).end()
59 // check this radio button - check input, add checked class, append <i>
60 this.$input.prop('checked', true);
/template/twentyfifteen/css/
H A Dresponsive.less73 input,
86 input[type="button"],
87 input[type="reset"],
88 input[type="submit"] {
94 input[type="text"],
95 input[type="email"],
96 input[type="url"],
98 input[type="search"],
402 input,
425 input[type="url"],
[all …]
/plugin/advanced/admin/
H A Dexport.php40 global $INPUT;
42 if (!$INPUT->has('cmd')) {
50 $cmd = $INPUT->extract('cmd')->str('cmd');
62 global $INPUT;
89 global $INPUT;
160 global $INPUT;
173 … $pages = $this->getPagesFromNamespace($INPUT->str('ns'), ($INPUT->str('include-sub-ns') ? 1 : 0));
176 echo sprintf('<input type="hidden" value="%s" name="ns" />', $INPUT->str('ns'));
232 global $INPUT;
237 switch ($INPUT->str('step')) {
[all …]
/template/bs4simple/css/
H A Dbasic.less369 input,
401 input,
410 input:active,
411 input:focus,
420 input[type=radio],
422 input[type=image] {
429 input[type=submit],
431 input[type=reset],
432 input.button,
528 input[disabled],
[all …]
/template/parallax/lib/bootstrap/css/
H A Dbootstrap.css1235 input:-ms-input-placeholder,
1665 .input-append input,
1666 .input-prepend input,
1676 .input-append input,
1677 .input-prepend input,
1691 .input-append input:focus,
1692 .input-prepend input:focus,
1746 .input-append input,
1776 .input-prepend.input-append input,
1778 .input-prepend.input-append .uneditable-input {
[all …]
H A Dbootstrap.min.css89 label, select, button, input[type="button"], input[type="reset"], input[type="submit"], input[type=…
984input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"],
1006input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"],
1034 input[type="file"], input[type="image"], input[type="submit"], input[type="reset"], input[type="but…
1403input-append input, .input-prepend input, .input-append select, .input-prepend select, .input-appe…
1407input-append input, .input-prepend input, .input-append select, .input-prepend select, .input-appe…
1417input-append input:focus, .input-prepend input:focus, .input-append select:focus, .input-prepend s…
1458 .input-append input, .input-append select, .input-append .uneditable-input {
1480 .input-prepend.input-append input, .input-prepend.input-append select, .input-prepend.input-append …
1486 .input-prepend.input-append input + .btn-group .btn, .input-prepend.input-append select + .btn-grou…
[all …]
/plugin/noticeboard/
H A Dsyntax.php99 <input type='hidden' name='id' value='".$ID."' />
100 <input type='hidden' name='noticeboard_mode' value='list' />
111 <input type='hidden' name='id' value='".$ID."' />
122 <input type='hidden' name='id' value='".$ID."' />
130 <input type='hidden' name='parent' value='".$ID."' />
141 <input type='hidden' name='id' value='".$ID."' />
142 <input type='hidden' name='noticeboard_get_ical' value='1' />
238 <input type='hidden' name='id' value='".$ID."' />
300 <input type='hidden' name='id' value='".$ID."' />
349 <input type='hidden' name='id' value='".$ID."' />
[all …]
/plugin/noticeboard/noticeboard/
H A Dsyntax.php99 <input type='hidden' name='id' value='".$ID."' />
100 <input type='hidden' name='noticeboard_mode' value='list' />
111 <input type='hidden' name='id' value='".$ID."' />
122 <input type='hidden' name='id' value='".$ID."' />
130 <input type='hidden' name='parent' value='".$ID."' />
141 <input type='hidden' name='id' value='".$ID."' />
142 <input type='hidden' name='noticeboard_get_ical' value='1' />
238 <input type='hidden' name='id' value='".$ID."' />
300 <input type='hidden' name='id' value='".$ID."' />
349 <input type='hidden' name='id' value='".$ID."' />
[all …]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerATNSimulator.php51 * The line number 1..n within the input.
121 public function match(CharStream $input, int $mode) : int argument
132 $mark = $input->mark();
135 $this->startIndex = $input->getIndex();
141 return $this->matchATN($input);
143 return $this->execATN($input, $dfa->s0);
145 $input->release($mark);
158 protected function matchATN(CharStream $input) : int argument
168 $s0_closure = $this->computeStartState($input, $startState);
178 $predict = $this->execATN($input,
187 execATN(CharStream $input, DFAState $ds0) global() argument
295 computeTargetState(CharStream $input, DFAState $s, int $t) global() argument
319 failOrAccept(SimState $prevAccept, CharStream $input, ATNConfigSet $reach, int $t) global() argument
359 getReachableConfigSet(CharStream $input, ATNConfigSet $closure, ATNConfigSet $reach, int $t) global() argument
418 accept(CharStream $input, LexerActionExecutor $lexerActionExecutor, int $startIndex, int $index, int $line, int $charPos) global() argument
448 computeStartState(CharStream $input, ATNState $p) global() argument
472 closure(CharStream $input, LexerATNConfig $config, ATNConfigSet $configs, bool $currentAltReachedAcceptState, bool $speculative, bool $treatEofAsEpsilon) global() argument
559 getEpsilonTarget(CharStream $input, LexerATNConfig $config, Transition $t, ATNConfigSet $configs, bool $speculative, bool $treatEofAsEpsilon) global() argument
692 evaluatePredicate(CharStream $input, int $ruleIndex, int $predIndex, bool $speculative) global() argument
719 captureSimState(SimState $settings, CharStream $input, DFAState $dfaState) global() argument
836 getText(CharStream $input) global() argument
842 consume(CharStream $input) global() argument
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/
H A DLexerNoViableAltException.php15 * Matching attempted at what input index?
22 * Which configurations did we try at $input->index() that couldn't match $input->LA(1)?
28 public function __construct(Lexer $lexer, CharStream $input, int $startIndex, ATNConfigSet $deadEndConfigs) argument
30 parent::__construct($lexer, $input, null);
44 $input = $this->getInputStream();
46 if (!$input instanceof CharStream) {
50 if ($input !== null && $this->startIndex >= 0 && $this->startIndex < $input->getLength()) {
51 $symbol = $input
[all...]
/dokuwiki/
H A Ddoku.php9 * @global Input $INPUT
23 global $ACT, $INPUT, $QUERY, $ID, $REV, $DATE_AT, $IDX,
41 $INPUT->set('id', str_replace("\xC2\xAD", '', $INPUT->str('id'))); //soft-hyphen
42 $QUERY = trim($INPUT->str('q'));
45 $REV = $INPUT->int('rev');
46 $DATE_AT = $INPUT->str('at');
47 $IDX = $INPUT->str('idx');
48 $DATE = $INPUT
[all...]

12345678910>>...189