/dokuwiki/_test/tests/lib/exe/ |
D | ajax_requests.test.php | 34 * @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/ |
D | input.test.php | 89 $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/ |
D | TestRequest.php | 20 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/ |
D | Export.php | 46 $post = ''; 81 $post .= '</div>' . DOKU_LF; 82 $post .= '</body>' . DOKU_LF; 83 $post .= '</html>' . DOKU_LF; 111 echo $pre . $data['output'] . $post;
|
D | Resendpwd.php | 140 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/ |
D | admin.php | 34 …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/ |
D | Draft.php | 77 !$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'),
|
D | Ajax.php | 52 $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')), ':');
|
D | auth.php | 1000 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/ |
D | doku.php | 53 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/ |
D | UserRegister.php | 42 ->val($INPUT->post->str('login')); 56 ->val($INPUT->post->str('fullname')); 61 ->val($INPUT->post->str('email'));
|
D | Subscribe.php | 91 $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/ |
D | edit_and_save.test.php | 24 $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/ |
D | algol68.php | 66 $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/ |
D | index.js | 3 jQuery.post(
|
/dokuwiki/inc/lang/et/ |
D | registermail.txt | 5 E-post : @NEWEMAIL@
|
/dokuwiki/inc/lang/no/ |
D | registermail.txt | 5 E-post : @NEWEMAIL@
|
/dokuwiki/_test/tests/general/ |
D | general_html.test.php | 45 $result = $http->post('https://validator.w3.org/nu/?out=json&level=error', $html);
|
/dokuwiki/inc/lang/sv/ |
D | registermail.txt | 5 E-post : @NEWEMAIL@
|
/dokuwiki/inc/lang/fo/ |
D | register.txt | 3 …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/ |
D | InputElementTest.php | 32 $INPUT->post->set('foo', 'a new text'); 47 $INPUT->post->set('foo', '');
|
/dokuwiki/inc/Parsing/Lexer/ |
D | ParallelRegex.php | 127 … [$pre, $post] = preg_split($this->patterns[$idx] . $this->getPerlMatchingFlags(), $subject, 2); 128 $split = [$pre, $matches[0], $post];
|
/dokuwiki/inc/Input/ |
D | Input.php | 17 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/ |
D | import.txt | 7 Et passord vil bli laget, og sendt via e-post til alle bruker som ble importert.
|
/dokuwiki/_test/tests/Feed/ |
D | FeedCreatorValidationTest.php | 29 $result = $http->post('https://validator.w3.org/feed/check.cgi', [
|