Home
last modified time | relevance | path

Searched refs:post (Results 1 – 25 of 45) sorted by relevance

12

/dokuwiki/_test/tests/lib/exe/
Dajax_requests.test.php34 * @param array $post
37 public function test_defaultCallsExist($call, $post, $regexp) { argument
40 $response = $request->post(['call'=> $call]+$post, '/lib/exe/ajax.php');
50 $response = $request->post([], '/lib/exe/ajax.php');
57 $response = $request->post(['call'=> $call], '/lib/exe/ajax.php');
84 $postTriggered = $GLOBALS['INPUT']->post->str('q');
97 $postTriggered_AFTER = $GLOBALS['INPUT']->post->str('q');
105 $response = $request->post(['call'=> $call, 'q' => 'some-post-param'], '/lib/exe/ajax.php');
/dokuwiki/_test/tests/inc/
Dinput.test.php89 $this->assertSame('foo', $INPUT->post->str('string'));
90 $this->assertSame('', $INPUT->post->str('none'));
91 $this->assertSame('', $INPUT->post->str('empty'));
92 $this->assertSame('foo', $INPUT->post->str('none', 'foo'));
93 $this->assertSame('', $INPUT->post->str('empty', 'foo'));
94 $this->assertSame('foo', $INPUT->post->str('empty', 'foo', true));
96 $this->assertSame(false, $INPUT->post->str('get', false));
97 $this->assertSame('1', $INPUT->post->str('post', false));
130 $this->assertSame(17, $INPUT->post->int('int'));
131 $this->assertSame(0, $INPUT->post->int('none'));
[all …]
/dokuwiki/_test/core/
DTestRequest.php20 protected $post = array(); variable in TestRequest
66 return $this->post[$key];
115 $this->post[$key] = $value;
131 $post = $_POST;
148 $_POST = $this->post;
175 $_POST = $post;
222 * @param array $post all the POST parameters to use
226 public function post($post = array(), $uri = '/doku.php') { function in TestRequest
227 $this->post = array_merge($this->post, $post);
/dokuwiki/inc/Action/
DExport.php46 $post = '';
81 $post .= '</div>' . DOKU_LF;
82 $post .= '</body>' . DOKU_LF;
83 $post .= '</html>' . DOKU_LF;
111 echo $pre . $data['output'] . $post;
DResendpwd.php140 if (!$INPUT->post->bool('save')) return false;
142 if (!$INPUT->post->str('login')) {
146 $user = trim($auth->cleanUser($INPUT->post->str('login')));
/dokuwiki/lib/plugins/extension/
Dadmin.php34 …if (!$INPUT->post->has('fn') && !$INPUT->post->str('installurl') && !isset($_FILES['installfile'])…
40 $installer = new Installer($INPUT->post->bool('overwrite'));
42 foreach ($INPUT->post->arr('fn') as $action => $extensions) {
63 if ($INPUT->post->str('installurl')) {
64 $installer->installFromURL($INPUT->post->str('installurl'));
/dokuwiki/inc/
DDraft.php77 !$INPUT->post->has('wikitext') &&
84 'prefix' => substr($INPUT->post->str('prefix'), 0, -1),
85 'text' => $INPUT->post->str('wikitext'),
86 'suffix' => $INPUT->post->str('suffix'),
87 'date' => $INPUT->post->int('date'),
DAjax.php52 $query = $INPUT->post->str('q');
97 $query = cleanID($INPUT->post->str('q'));
135 $ID = cleanID($INPUT->post->str('id'));
196 $ns = cleanID($INPUT->post->str('ns'));
219 $NS = cleanID($INPUT->post->str('ns'));
220 $sort = $INPUT->post->bool('recent') ? 'date' : 'natural';
221 if ($INPUT->post->str('do') == 'media') {
276 $id = $INPUT->post->str('mediaid', $_FILES['qqfile']['name']);
329 $ns = cleanID($INPUT->post->str('idx'));
354 $q = ltrim(trim($INPUT->post->str('q')), ':');
Dauth.php1000 if (!$INPUT->post->bool('save')) return false;
1004 $login = trim($auth->cleanUser($INPUT->post->str('login')));
1005 $fullname = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $INPUT->post->str('fullname')));
1006 $email = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $INPUT->post->str('email')));
1007 $pass = $INPUT->post->str('pass');
1008 $passchk = $INPUT->post->str('passchk');
1073 if (!$INPUT->post->bool('save')) return false;
1082 $changes['pass'] = $INPUT->post->str('newpass');
1083 $changes['name'] = $INPUT->post->str('fullname');
1084 $changes['mail'] = $INPUT->post->str('email');
[all …]
/dokuwiki/
Ddoku.php53 if ($INPUT->post->has('wikitext')) {
54 $TEXT = cleanText($INPUT->post->str('wikitext'));
56 $PRE = cleanText(substr($INPUT->post->str('prefix'), 0, -1));
57 $SUF = cleanText($INPUT->post->str('suffix'));
58 $SUM = $INPUT->post->str('summary');
/dokuwiki/inc/Ui/
DUserRegister.php42 ->val($INPUT->post->str('login'));
56 ->val($INPUT->post->str('fullname'));
61 ->val($INPUT->post->str('email'));
DSubscribe.php91 $value = (array_key_exists($INPUT->post->str('sub_target'), $targets)) ?
101 $value = (array_key_exists($INPUT->post->str('sub_style'), $styles)) ?
/dokuwiki/_test/tests/test/
Dedit_and_save.test.php24 $response = $request->post($input);
57 $response = $request->post($input, '/doku.php');
80 $response = $request->post($input, '/doku.php');
107 $response = $request->post($input);
140 $response = $request->post($input, '/doku.php');
163 $response = $request->post($input, '/doku.php');
/dokuwiki/vendor/geshi/geshi/src/geshi/
Dalgol68.php66 $post='?(?![0-9a-z]|\.(?:[eE][+\-]?)?\d)';
67 $post=""; # assuming the RegEx is greedy #
79 $prebits=$pre; $postbits=$post;
88 $preint=$pre; $postint=$post;
102 $prereal=$pre; $postreal=$post;
/dokuwiki/lib/scripts/
Dindex.js3 jQuery.post(
/dokuwiki/inc/lang/et/
Dregistermail.txt5 E-post : @NEWEMAIL@
/dokuwiki/inc/lang/no/
Dregistermail.txt5 E-post : @NEWEMAIL@
/dokuwiki/_test/tests/general/
Dgeneral_html.test.php45 $result = $http->post('https://validator.w3.org/nu/?out=json&level=error', $html);
/dokuwiki/inc/lang/sv/
Dregistermail.txt5 E-post : @NEWEMAIL@
/dokuwiki/inc/lang/fo/
Dregister.txt3 …i at upprætta eina konti í hesu wiki. Minst til at nýta eina **galdandi t-post-adressu** - títt lo…
/dokuwiki/_test/tests/Form/
DInputElementTest.php32 $INPUT->post->set('foo', 'a new text');
47 $INPUT->post->set('foo', '');
/dokuwiki/inc/Parsing/Lexer/
DParallelRegex.php127 … [$pre, $post] = preg_split($this->patterns[$idx] . $this->getPerlMatchingFlags(), $subject, 2);
128 $split = [$pre, $matches[0], $post];
/dokuwiki/inc/Input/
DInput.php17 public $post; variable in dokuwiki\\Input\\Input
36 $this->post = new Post();
99 if (isset($this->post) && isset($_POST[$name])) {
/dokuwiki/lib/plugins/usermanager/lang/no/
Dimport.txt7 Et passord vil bli laget, og sendt via e-post til alle bruker som ble importert.
/dokuwiki/_test/tests/Feed/
DFeedCreatorValidationTest.php29 $result = $http->post('https://validator.w3.org/feed/check.cgi', [

12