Home
last modified time | relevance | path

Searched refs:response (Results 1 – 25 of 925) sorted by last modified time

12345678910>>...37

/plugin/diagrams/script/
H A DDiagramsForm.js194 const response = await fetch(
203 if (!response.ok) {
H A DDiagramsMediaManager.js46 const response = await fetch(
55 if (response.ok && (await response.json())[0] === svgLink.textContent) {
112 const response = await fetch(url, {
116 return response.json();
221 const response = await fetch(url, {
225 return response.json();
H A DDiagramsEditor.js59 const response = await fetch(DOKU_BASE + 'lib/exe/fetch.php?media=' + mediaid, {
64 if (response.ok) {
66 this.#svg = await response.text();
87 const response = await fetch(url, {
92 if (response.ok) {
94 this.#svg = await response.text();
126 const response = await fetch(uploadUrl, {
132 return response.ok;
156 const response = await fetch(uploadUrl, {
162 return response
[all...]
/plugin/openlayersmap/ol7/
H A Dol.js.map
/plugin/shell/
H A DP0wnyShell.js72 this.userName = response.username ? atob(response.username) : this.userName;
73 this.hostName = response.hostname ? atob(response.hostname) : this.hostName;
74 this.updateCwd(atob(response.cwd));
138 if (response.hasOwnProperty('file')) {
139 this.featureDownload(atob(response.name), response.file)
141 this.insertStdout(atob(response.stdout));
142 this.updateCwd(atob(response.cwd));
223 function (response) { argument
225 this.updateCwd(atob(response.cwd));
268 this.makeRequest("?feature=pwd", {}, function (response) { argument
[all …]
H A DP0wnyShell.php289 $response = NULL;
296 $response = $this->featureShell($cmd, $_POST["cwd"]);
299 $response = $this->featurePwd();
302 $response = $this->featureHint($_POST['filename'], $_POST['cwd'], $_POST['type']);
305 $response = $this->featureUpload($_POST['path'], $_POST['file'], $_POST['cwd']);
308 $response = $this->featureUserHost($_POST['cwd']);
313 echo json_encode($response);
/plugin/acknowledge/
H A Dscript.js10 source: function (request, response) {
14 }, response);
20 source: function (request, response) {
24 }, response);
76 response => {
78 if (response === '') {
/plugin/structstatus/
H A Dscript.js30 .done(function (response) { argument
31 const value = JSON.parse(response).value;
/plugin/aichat/Model/OpenAI/
H A DGPT35Turbo.php
/plugin/aichat/script/
H A DAIChatChat.js227 const response = await this.sendMessage(message);
228 this.#history.push([response.question, response.answer, response.sources]);
230 p.textContent = response.question; // replace original question with interpretation
232 this.displayMessage(response.answer, response.sources); // display the answer
243 * Called when waiting for the response has started
261 * Called when waiting for the response has finished
320 const response
[all...]
/plugin/bez/scripts/
H A Dtask.js212 _source: function( request, response ) { argument
214 response( this.element.children( "option" ).map(function() {
H A Dthread.js269 _source: function( request, response ) { argument
271 response( this.element.children( "option" ).map(function() {
/plugin/tagging/script/
H A Dadmin.js35 .done(jQuery.proxy(function(response) { argument
36 callback(response);
145 const callback = function(response) { argument
146 taggedPagesDialog.html(response)
H A Deditable.js201 .done($.proxy(function(response) { argument
204 if (response.status === 'error') {
211 this.options.success.call(this.options.scope, response, newValue);
214 this.$div.triggerHandler('save', {newValue: newValue, response: response});
/plugin/tagging/
H A Dscript.js57 function (response) { argument
58 jQuery('div.plugin_tagging_edit ul.tagging_cloud').html(response.html_cloud);
59 $form.find('textarea').val(response.tags_edit_value);
113 source: function (request, response) { argument
116 }, response);
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js55532 self.resolve(value).then(function (response) {
55535 handlers.resolve(promise, response);
/plugin/xlsx2dw/packages/jszip/
H A Djszip.js4568 self.resolve(value).then(function (response) { argument
4571 handlers.resolve(promise, response);
/plugin/api/_test/
H A Dpages.test.php68 $response = dokuwiki_plugin_api_util::getRequest($queryParameters);
69 $data = self::$JSON->decode($response->getContent());
131 $response = dokuwiki_plugin_api_util::getRequest($queryParameters);
132 $data = self::$JSON->decode($response->getContent());
/plugin/translation/_test/
H A DBasicTest.php126 $response = $request->get(array('id' => $input));
127 $actual = $response->getHeader('Location');
/plugin/bureaucracy/script/
H A Duser.js15 function ajaxsource(request, response, getterm) { argument
21 response(jQuery.map(data, function (name, user) {
44 source: function (request, response) { argument
45 ajaxsource(request, response, function (req) {
64 source: function (request, response) { argument
65 ajaxsource(request, response, function (req) {
/plugin/combo/ComboStrap/Api/
H A DApiRouter.php63 ->response()
71 ->response()
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/
H A DHttpCommandExecutor.php341 "JSON decoding of remote response failed.\n" .
343 "The response: '%s'\n",
381 $response = new WebDriverResponse($sessionId);
383 return $response
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, HttpCommandExecuto argument
[all...]
/plugin/combo/vendor/php-webdriver/webdriver/
H A DCHANGELOG.md79 - Disable JSON viewer in Firefox to let JSON response be rendered as-is.
/plugin/combo/vendor/php-webdriver/webdriver/lib/Firefox/
H A DFirefoxDriver.php54 $response = $executor->execute($newSessionCommand);
56 $returnedCapabilities = DesiredCapabilities::createFromW3cCapabilities($response->getValue()['capabilities']);
57 $sessionId = $response->getSessionID();

12345678910>>...37