Home
last modified time | relevance | path

Searched full:response (Results 1 – 25 of 51) sorted by relevance

123

/template/writr/.github/
H A Dno-response.yml1 # Configuration for probot-no-response - https://github.com/probot/no-response
3 # Number of days of inactivity before an Issue is closed for lack of response
5 # Label requiring a response
7 # Comment to post when closing an Issue for lack of response. Set to `false` to disable
9 This issue has been automatically closed because there has been no response
/template/strap/resources/snippet/js/
H A Dmetadata.js41 let response = await combo.DokuUrl
48 … await processResponse(response, () => openMetaViewer(modalViewer, modalManager, pageId));
67 * @param {Response} response
71 async function processResponse(response, callBack) { argument
73 if (response.status !== 200) {
74 modalMessage.push(`Error, unable to save. (return code: ${response.status})`);
77 let json = await response.json();
161 let response = await combo.DokuUrl.createAjax(metaManagerCall)
172 .then((response) => {
173 if (response.status !== 200) {
[all …]
H A Dsubscribe.js14 let response = await fetch(url, {
28 let data = await response.json();
34 if (response.status !== 200) {
H A Drailbar.js15 let response = await fetch(DOKU_BASE + 'lib/exe/ajax.php',
23 let htmlFragment = await response.text();
H A Dsearch.js10 let response = await fetch(DOKU_BASE + 'lib/exe/ajax.php',
18 let htmlSuggestedPages = await response.json();
/template/strap/ComboStrap/
H A DHttpRequest.php22 private HttpResponse $response; variable in ComboStrap\\HttpRequest
88 if (ExecutionContext::getActualOrCreateFromEnv()->response()->hasEnded()) {
91 * send back the response
123 $response = $testRequest->get($query, $path);
130 $response = $testRequest->post($this->postData, $path);
140 return HttpResponse::createFromDokuWikiResponse($response);
H A DHttpResponse.php18 const CANONICAL = "http:response";
93 public static function createFromDokuWikiResponse(\TestResponse $response): HttpResponse argument
95 $statusCode = $response->getStatusCode();
100 … $contentTypeHeader = Http::getFirstHeader(self::HEADER_CONTENT_TYPE, $response->getHeaders());
108 ->setBody($response->getContent(), $mime)
109 ->setHeaders($response->getHeaders())
110 ->setDokuWikiResponse($response);
171 …LogUtility::log2file("Bad Http Response: $this->status : {$this->getBody()}", LogUtility::LVL_MSG_…
368 private function setDokuWikiResponse(\TestResponse $response): HttpResponse argument
370 $this->dokuwikiResponseObject = $response;
H A DHttpResponseStatus.php17 // after a post, to redirect to a response page
/template/strap/vendor/php-webdriver/webdriver/lib/Chrome/
H A DChromeDriver.php59 $response = $executor->execute($newSessionCommand);
65 return static::createFromResponse($response, $executor);
84 $response = $this->executor->execute($command);
85 $value = $response->getValue();
91 $this->sessionID = $response->getSessionID();
/template/strap/ComboStrap/Api/
H A DMetaManagerHandler.php58 ->response()
68 $executionContext->response()
82 $executionContext->response()
105 ->response()->setStatus(HttpResponseStatus::UNSUPPORTED_MEDIA_TYPE)
124 ->response()
227 * Response
230 ->response()
249 ->response()
264 ->response()
295 ->response()
[all …]
H A DQualityMessageHandler.php52 $executingContext->response()
65 $executingContext->response()
79 $executingContext->response()
H A DApiRouter.php63 ->response()
71 ->response()
/template/strap/action/
H A Dstaticresource.php36 …* To mark a response as "never expires," an origin server sends an Expires date approximately one …
37 * from the time the response is sent.
127 ->response()
133 ->response()
155 ->response()
174 if (ExecutionContext::getActualOrCreateFromEnv()->response()->hasEnded()) {
276 $excutingContext->response()
297 ->response()
314 $excutingContext->response()
372 $excutingContext->response()
H A Ddocustom.php95 ->response()
106 LogUtility::info("ExecuteDoAction: The response has already be send (ended).");
129 $executionContext->response()
182 $executionContext->response()
196 $executionContext->response()
H A Dbacklinkmenuitem.php108 $executionContext->response()
123 ->response()
H A Dlinkwizard.php94 ->response()
150 ->response()
H A Drouter.php229 ->response()
422 // defend against HTTP Response Splitting
510 ->response()
522 ->response()
/template/strap/vendor/php-webdriver/webdriver/lib/Firefox/
H A DFirefoxDriver.php54 $response = $executor->execute($newSessionCommand);
56 …$returnedCapabilities = DesiredCapabilities::createFromW3cCapabilities($response->getValue()['capa…
57 $sessionId = $response->getSessionID();
/template/strap/vendor/php-webdriver/webdriver/lib/Remote/
H A DRemoteWebDriver.php131 $response = $executor->execute($command);
133 return static::createFromResponse($response, $executor);
387 $response = $this->execute(DriverCommand::STATUS);
389 return RemoteStatus::createFromResponse($response);
585 $response = $this->executor->execute($command);
587 return $response->getValue();
613 $response = $this->executor->execute($command);
615 return $response->getValue();
631 * Create instance based on response to NEW_SESSION command.
637 …protected static function createFromResponse(WebDriverResponse $response, HttpCommandExecutor $com… argument
[all …]
H A DRemoteTargetLocator.php127 $response = $this->executor->execute(DriverCommand::NEW_WINDOW, ['type' => $windowType]);
129 $this->window($response['handle']);
144 $response = $this->driver->execute(DriverCommand::GET_ACTIVE_ELEMENT, []);
147 …return new RemoteWebElement($method, JsonWireCompat::getElement($response), $this->isW3cCompliant);
/template/strap/.github/
H A Dbootstrap.sh42 response=$(curl -H "Authorization: token ${TOKEN}" -s -w "%{http_code}" -o "boot.sh" "$url")
46 if [ "$response" != "200" ]; then
48 echo "HTTP status was not 200 but $response"
/template/bootie/_test/
Dheader.test.php32 $response = $request->get(array('id' => $pageId, '/doku.php'));
35 $generator = $response->queryHTML('meta[name="generator"]');
/template/starterpjax/
Djquery.pjax.js20 // container - Where to stick the response body. Usually a String selector.
139 // Loads a URL with ajax, puts the response body inside a container,
147 // container - Where to stick the response body.
247 // If the new response is missing a body, hard load the page
590 // Internal: Extracts container and metadata from response.
594 // 3. Builds response Element and extracts fragment if set
596 // data - String response data
597 // xhr - XHR response
608 // Attempt to parse response html into elements
616 // If response data is empty, return fast
[all …]
/template/strap/vendor/salesforce/handlebars-php/
H A DCODE_OF_CONDUCT.md60 response to any instances of unacceptable behavior.
82 and will result in a response that is deemed necessary and appropriate to the
/template/minimalism/scripts/
Dsearch.js42 var data = ajax_qsearch.sack.response;

123