Home
last modified time | relevance | path

Searched refs:status (Results 1 – 25 of 33) sorted by relevance

12

/dokuwiki/inc/Action/Exception/
DFatalException.php21 * @param int $status the HTTP status to send
24 public function __construct($message = 'A fatal error occured', $status = 500, $previous = null) argument
26 parent::__construct($message, $status, $previous);
/dokuwiki/_test/tests/inc/
Dhttpclient_mock.php46 if($this->status != -100 && $this->status != 408) break;
64 'Status' => $this->status,
Dhttpclient_http.test.php155 $data = $http->get($this->server . '/status/418');
/dokuwiki/lib/plugins/popularity/
Daction.php44 $status = $this->helper->sendData($this->helper->gatherAsString());
46 if ($status !== '') {
48 io_saveFile($this->helper->autosubmitErrorFile, $status);
Dhelper.php68 $status = $httpClient->sendRequest($this->submitUrl, ['data' => $data], 'POST');
69 if (! $status) {
/dokuwiki/lib/plugins/extension/
Dcli.php220 foreach ($processed as $id => $status) {
221 if ($status == Installer::STATUS_INSTALLED) {
223 } elseif ($status == Installer::STATUS_UPDATED) {
282 $status = '';
286 $status = 'i';
289 $status .= 'u';
293 if ($ext->isGitControlled()) $status = 'g';
295 $status = 'b';
303 $status .= 'd';
311 if ($filter && strpos($status, $filter) === false) {
[all …]
Dadmin.php74 foreach ($processed as $id => $status) {
75 if ($status == Installer::STATUS_INSTALLED) {
77 } elseif ($status == Installer::STATUS_UPDATED) {
79 } elseif ($status == Installer::STATUS_SKIPPED) {
81 } elseif ($status == Installer::STATUS_REMOVED) {
Dremote.php125 static fn($status) => (
126 $status == Installer::STATUS_INSTALLED || $status == Installer::STATUS_UPDATED
DInstaller.php163 $status = self::STATUS_UPDATED;
165 $status = self::STATUS_INSTALLED;
187 $this->processed[$extension->getId()] = $status;
302 … if ($data === false) throw new Exception('error_download', [$url, $http->error, $http->status]);
/dokuwiki/_test/tests/inc/parser/
Dparser_quotes.test.php187 $status = $this->getInaccessibleProperty($this->H, 'status');
188 $status['doublequote'] = 1;
190 $this->setInaccessibleProperty($this->H, 'status', $status);
210 $status = $this->getInaccessibleProperty($this->H, 'status');
211 $status['doublequote'] = 1;
213 $this->setInaccessibleProperty($this->H, 'status', $status);
233 $status = $this->getInaccessibleProperty($this->H, 'status');
234 $status['doublequote'] = 0;
236 $this->setInaccessibleProperty($this->H, 'status', $status);
/dokuwiki/_test/core/
DTestResponse.php84 $status = is_array($headers) ? array_pop($headers) : $headers;
86 preg_match('/^Status: ?(\d+)/', $status, $matches);
/dokuwiki/inc/parser/
Dhandler.php26 protected $status = [ variable in Doku_Handler
83 * @param string $status
86 public function getStatus($status) argument
88 if (!isset($this->status[$status])) return null;
89 return $this->status[$status];
95 * @param string $status
98 public function setStatus($status, $value) argument
100 $this->status[$status] = $value;
137 if ($this->status['section']) {
336 if ($this->status['section']) $this->addCall('section_close', [], $pos);
[all …]
/dokuwiki/inc/HTTP/
DHTTPClient.php42 public $status = 0; variable in dokuwiki\\HTTP\\HTTPClient
93 if ($this->status == 304 && $sloppy304) return $this->resp_body;
94 if ($this->status < 200 || $this->status > 206) return false;
137 if ($this->status < 200 || $this->status > 206) return false;
162 $this->status = 0;
204 $this->status = -200;
259 $this->status = -100;
273 $this->status = $e->getCode();
332 $this->status = $m[2];
354 if (in_array($this->status, [301, 302, 303, 307, 308])) {
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
DSFTP.php673 list($status) = Strings::unpackSSH2('N', $response);
674 if ($status != NET_SFTP_STATUS_OK) {
675 $this->logError($response, $status);
677 . ' Got ' . $status);
801 * @param int $status
803 private function logError($response, $status = -1) argument
805 if ($status == -1) {
806 list($status) = Strings::unpackSSH2('N', $response);
809 $error = self::$status_codes[$status];
1107 list($status) = Strings::unpackSSH2('N', $response);
[all …]
/dokuwiki/bin/
Dwantedpages.php144 $status = $this->dirFilter($entry, $dir);
145 if ($status == WantedPagesCLI::DIR_CONTINUE) {
147 } elseif ($status == WantedPagesCLI::DIR_NS) {
/dokuwiki/lib/plugins/config/_test/
DDocumentationTest.php52 $this->assertFalse($fail, $msg . ' ' . $http->status . ' ' . $http->error);
/dokuwiki/inc/Remote/IXR/
DClient.php57 … $this->handleError(-32300, 'transport error - HTTP status ' . $this->httpClient->status);
/dokuwiki/lib/plugins/authad/adLDAP/classes/
DadLDAPUsers.php330 $status = array();
380 $status['expiryts'] = bcsub(bcdiv($pwdExpire, '10000000'), '11644473600');
381 …$status['expiryformat'] = date('Y-m-d H:i:s', bcsub(bcdiv($pwdExpire, '10000000'), '11644473600'));
383 return $status;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
DPHP.php1337 $status = opcache_get_status();
1338 … if ($status && isset($status['jit']) && $status['jit']['enabled'] && $status['jit']['on']) {
/dokuwiki/inc/Search/
DIndexer.php947 $status = true;
955 $status = "removing the stale lock failed";
958 $status = "stale lock removed";
968 return $status;
/dokuwiki/vendor/splitbrain/lesserphp/
DREADME.md3 …cusSchwarz/lesserphp) has been mostly abandoned in 2021. There are other forks with dubious status.
/dokuwiki/vendor/simplepie/simplepie/src/HTTP/
DParser.php243 protected function status() function in SimplePie\\HTTP\\Parser
/dokuwiki/vendor/simplepie/simplepie/
DREADME.markdown84 Project status
/dokuwiki/vendor/splitbrain/php-cli/
DREADME.md131 you call backend code from your CLI that expects a Logger instance to produce any sensible status o…
/dokuwiki/lib/scripts/
Dfileuploader.js1217 if (xhr.status == 200){

12