Home
last modified time | relevance | path

Searched refs:response (Results 776 – 800 of 925) sorted by path

1...<<31323334353637

/plugin/pdfjs/pdfjs/web/locale/en-CA/
H A Dviewer.properties227 unexpected_response_error=Unexpected server response.
/plugin/pdfjs/pdfjs/web/locale/en-GB/
H A Dviewer.properties227 unexpected_response_error=Unexpected server response.
/plugin/pdfjs/pdfjs/web/locale/en-US/
H A Dviewer.properties227 unexpected_response_error=Unexpected server response.
/plugin/pdfjs/pdfjs/web/locale/en-ZA/
H A Dviewer.properties156 unexpected_response_error=Unexpected server response.
/plugin/pdfjs/pdfjs/web/locale/ltg/
H A Dviewer.properties205 unexpected_response_error=Unexpected server response.
/plugin/pdfjs/pdfjs/web/
H A Dviewer.js1900 PDFViewerApplication.open(new Uint8Array(xhr.response));
14677 xhrLoadText(href, function (response) {
14678 gTextData += response;
14679 parseProperties(response, function (data) {
H A Dviewer.js.map1response.');\n } else {\n loadingErrorMessage = this.l10n.get('loading_error', null,\n…
/plugin/popupviewer/
H A Dscript.js193 … var wrapper = $('<div/>').load(popupData.src, popupData, function(response, status, xhr) { argument
/plugin/publish/_test/
H A Dpublish.test.php47 $response = $request->get(array('id' => 'foo'), '/doku.php?id=foo');
49 strpos($response->getContent(), '<div class="approval approved_no">') !== false,
61 $response = $request->get(array(), '/doku.php?id=foo&publish_approve=1');
63 strpos($response->getContent(), '<div class="approval approved_yes">') !== false,
78 $response = $request->get(array(), '/doku.php?id=foo&publish_approve=1');
81 strpos($response->getContent(), '<div class="approval') === false,
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Ad/
H A DDirSyncResponseControl.php25 * Represents a DirSync Response. Defined in MS-ADTS 3.1.1.3.4.1.3. The control value response definition is:
106 $response = self::decodeEncodedValue($type);
107 if (!$response instanceof SequenceType) {
110 $more = $response->getChild(0);
111 $unused = $response->getChild(1);
112 $cookie = $response->getChild(2);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/
H A DPwdPolicyResponseControl.php24 * Represents a password policy response. draft-behera-ldap-password-policy-09
104 $response = Asn1::sequence();
108 throw new ProtocolException('The password policy response cannot have both a time expiration and a grace auth value.');
122 $response->addChild($warning);
125 $response->addChild(Asn1::context(1, Asn1::enumerated($this->error)));
127 $this->controlValue = $response;
140 /** @var SequenceType $response */
141 $response = self::decodeEncodedValue($type);
148 foreach ($response->getChildren() as $child) {
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Sorting/
H A DSortingControl.php91 $response = self::decodeEncodedValue($type);
92 if (!$response instanceof SequenceType) {
97 foreach ($response->getChildren() as $sequence) {
H A DSortingResponseControl.php24 * A Server Side Sorting response control value. RFC 2891.
101 throw new ProtocolException('The server side sorting response is malformed.');
106 throw new ProtocolException('The server side sorting response is malformed.');
109 $response = new self(
114 return parent::mergeControlData($response, $type);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Vlv/
H A DVlvResponseControl.php91 throw new ProtocolException('The VLV response value contains an unexpected ASN1 type.');
99 throw new ProtocolException('The VLV response value contains an unexpected ASN1 type.');
102 throw new ProtocolException('The VLV response value contains an unexpected ASN1 type.');
105 throw new ProtocolException('The VLV response value contains an unexpected ASN1 type.');
108 throw new ProtocolException('The VLV response value contains an unexpected ASN1 type.');
111 $response = new self(
117 $response->contextId = $contextId->getValue();
120 return parent::mergeControlData($response, $type);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DLdapClient.php124 /** @var \FreeDSx\Ldap\Operation\Response\CompareResponse $response */
125 $response = $this->sendAndReceive(Operations::compare($dn, $attributeName, $value), ...$controls)->getResponse();
127 return $response->getResultCode() === ResultCode::COMPARE_TRUE;
140 $response = $this->sendAndReceive(Operations::add($entry), ...$controls);
143 return $response;
212 $response = $this->sendAndReceive(Operations::modify($entry->getDn(), ...$entry->changes()), ...$controls);
215 return $response;
246 * Send a search response and return the entries.
255 /** @var \FreeDSx\Ldap\Operation\Response\SearchResponse $response */
256 $response
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DBindResponse.php66 /** @var SequenceType $response */
67 $response = parent::toAsn1();
70 $response->addChild(Asn1::context(7, Asn1::octetString($this->saslCreds)));
73 return $response;
H A DIntermediateResponse.php76 throw new ProtocolException('The intermediate response is malformed');
98 $response = Asn1::sequence();
101 $response->addChild(Asn1::context(0, Asn1::octetString($this->responseName)));
104 $response->addChild(Asn1::context(1, Asn1::octetString($this->responseValue)));
107 return Asn1::application(self::TAG_NUMBER, $response);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ClientProtocolHandler/
H A DClientExtendedOperationHandler.php64 throw new OperationException('Expected an LDAP message response, but none was received.');
67 $response = $this->extendedResponseFactory->get(
71 $prop = (new ReflectionClass(LdapMessageResponse::class))->getProperty('response');
73 $prop->setValue($messageFrom, $response);
H A DClientReferralHandler.php68 $message = $result instanceof LdapResult ? $result->getDiagnosticMessage() : 'Referral response encountered.';
157 $response = $client->send($messageTo->getRequest(), ...$messageTo->controls());
159 return $response;
H A DClientSaslBindHandler.php86 /** @var LdapMessageResponse $response */
87 $response = $queue->getMessage($message->getMessageId());
88 $saslResponse = $response->getResponse();
91 'Expected a bind response during a SASL bind. But got: %s',
96 return $response;
98 $response = $this->processSaslChallenge($request, $queue, $saslResponse, $mech);
101 && $response !== null
102 && $response->getResponse() instanceof BindResponse
103 && $response->getResponse()->getResultCode() === ResultCode::SUCCESS
108 return $response;
153 isChallengeComplete(SaslContext $context, BindResponse $response) global() argument
[all...]
H A DClientSearchHandler.php73 $response = $messageFrom->getResponse();
74 if ($response instanceof SearchResultEntry) {
75 $entry = $response->getEntry();
H A DClientStartTlsHandler.php39 /** @var ExtendedResponse $response */
40 $response = $messageFrom->getResponse();
42 if ($response->getResultCode() !== ResultCode::SUCCESS) {
45 $response->getDiagnosticMessage()
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Factory/
H A DClientProtocolHandlerFactory.php23 * Retrieves the correct handler for a specific client protocol request / response.
49 * @param Response\ResponseInterface $response
52 public function forResponse(Request\RequestInterface $request, Response\ResponseInterface $response): ResponseHandlerInterface
54 if ($response instanceof Response\SearchResultDone || $response instanceof Response\SearchResultEntry || $response instanceof Response\SearchResultReference) {
56 } elseif ($response instanceof Operation\LdapResult && $response->getResultCode() === ResultCode::REFERRAL) {
60 } elseif ($response instanceof Response\ExtendedResponse) {
51 forResponse(Request\\RequestInterface $request, Response\\ResponseInterface $response) global() argument
H A DResponseFactory.php36 * For a specific request and result code/diagnostic, get the response object if possible.
43 * Retrieve the expected response type for the request that was given.
47 $response = null;
51 $response = new BindResponse(new LdapResult($resultCode, '', $diagnostic));
53 $response = new SearchResultDone($resultCode, '', $diagnostic);
55 $response = new AddResponse($resultCode, $request->getEntry()->getDn()->toString(), $diagnostic);
57 $response = new CompareResponse($resultCode, $request->getDn()->toString(), $diagnostic);
59 $response = new DeleteResponse($resultCode, $request->getDn()->toString(), $diagnostic);
61 $response = new ModifyDnResponse($resultCode, $request->getDn()->toString(), $diagnostic);
63 $response
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DLdapMessageResponse.php20 * The LDAP Message envelope PDU. This represents a message as a response from LDAP.
30 protected $response;
34 * @param ResponseInterface $response
37 public function __construct(int $messageId, ResponseInterface $response, Control ...$controls)
39 $this->response = $response;
48 return $this->response;
56 return $this->response->toAsn1();
29 protected $response; global() variable in FreeDSx\\Ldap\\Protocol\\LdapMessageResponse
36 __construct(int $messageId, ResponseInterface $response, Control...$controls) global() argument

1...<<31323334353637