Home
last modified time | relevance | path

Searched refs:fetch (Results 51 – 75 of 229) sorted by path

12345678910

/plugin/combo/resources/snippet/js/
H A Drailbar.js15 let response = await fetch(DOKU_BASE + 'lib/exe/ajax.php',
H A Dsearch.js10 let response = await fetch(DOKU_BASE + 'lib/exe/ajax.php',
H A Dsubscribe.js14 let response = await fetch(url, {
H A Dsubscribe.min.js1 !function(e){"use strict";let t="subscribe";const a=`.${t}-cs`,o=document.querySelectorAll(`${a} form`);Array.from(o).forEach((o=>{o.addEventListener("submit",(async r=>{if(r.preventDefault(),r.stopPropagation(),o.checkValidity()){let s=new URL(o.getAttribute("action")),n=new FormData(o),c=await fetch(s,{body:n,method:"post"}),i=e.Html.createRandomIdWithPrefix(t),l=e.Modal.getOrCreate(i);let d,u=r.target.closest(a);l.setPlacementBottomToElement(u);try{d=(await c.json()).message}catch(e){}if(200!==c.status)l.setHeader("Error"),void 0===d&&(d="Sorry. The server seems to be down.");else{let e=o.getAttribute("data-success-header");null===e&&(e="Hurray!"),l.setHeader(e),d=o.getAttribute("data-success-content"),null===d&&(d="A validation email has been send. <br>Check your mailbox and click on the validation link.<br>If you don't find our email, check your spambox.")}l.addBody(d).show()}}),!1)}))}(combo);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DBufferedTokenStream.php66 * - {@see BufferedTokenStream::fetch()}: The check to prevent adding multiple
148 $fetched = $this->fetch($n);
156 public function fetch(int $n) : int function in Antlr\\Antlr4\\Runtime\\BufferedTokenStream
507 while ($this->fetch(1000) === 1000) {
/plugin/database2/
H A Ddatabase2.php881 $row = $st->fetch( PDO::FETCH_NUM );
1217 $record = $st->fetch( PDO::FETCH_ASSOC );
1557 $count = $st->fetch( PDO::FETCH_NUM );
2689 while ( ( $record = $st->fetch( PDO::FETCH_NUM ) ) !== false )
2729 $record = $st->fetch( PDO::FETCH_NUM );
3811 while ( is_array( $related = $resultset->fetch( PDO::FETCH_NUM ) ) )
4182 $row = $st->fetch( PDO::FETCH_NUM );
4383 $count = $st->fetch( PDO::FETCH_NUM );
H A Dmedia.php188 $media = $st->fetch( PDO::FETCH_NUM );
/plugin/davcal/fullcalendar-3.10.5/
H A Dfullcalendar.js1093 EventSource.prototype.fetch = function (start, end, timezone) {
5992 ArrayEventSource.prototype.fetch = function (start, end, timezone) {
8708 source.fetch(this.start, this.end, this.timezone).then(function (eventDefs) {
9300 FuncEventSource.prototype.fetch = function (start, end, timezone) {
9355 JsonFeedEventSource.prototype.fetch = function (start, end, timezone) {
/plugin/davcal/vendor/sabre/dav/bin/
H A Dmigrateto17.php63 $row = $pdo->query("SELECT * FROM calendarobjects LIMIT 1")->fetch();
153 while($row = $result->fetch()) {
181 $row = $pdo->query("SELECT * FROM calendars LIMIT 1")->fetch();
H A Dmigrateto20.php90 $row = $pdo->query("SELECT * FROM $tableName LIMIT 1")->fetch();
358 $row = $pdo->query("SELECT * FROM cards LIMIT 1")->fetch();
440 while($row = $result->fetch(\PDO::FETCH_ASSOC)) {
H A Dmigrateto21.php86 $row = $result->fetch(\PDO::FETCH_ASSOC);
119 while($row = $result->fetch(\PDO::FETCH_ASSOC)) {
H A Dmigrateto30.php85 $row = $result->fetch(\PDO::FETCH_ASSOC);
157 while($row = $result->fetch(\PDO::FETCH_ASSOC)) {
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Backend/
H A DPDO.php156 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
389 $row = $stmt->fetch(\PDO::FETCH_ASSOC);
429 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
729 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
781 if ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
872 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
975 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
1133 $row = $stmt->fetch(\PDO::FETCH_ASSOC);
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/Backend/
H A DPDO.php231 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
256 $result = $stmt->fetch(\PDO::FETCH_ASSOC);
287 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
489 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
/plugin/davcal/vendor/sabre/dav/lib/DAV/PropertyStorage/Backend/
H A DPDO.php83 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
193 while ($row = $select->fetch(\PDO::FETCH_ASSOC)) {
/plugin/davcal/vendor/sabre/dav/lib/DAVACL/PrincipalBackend/
H A DPDO.php105 while ($row = $result->fetch(\PDO::FETCH_ASSOC)) {
148 $row = $stmt->fetch(\PDO::FETCH_ASSOC);
269 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
298 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
320 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
345 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
/plugin/diagrams/script/
H A DDiagramsEditor.js23 * FIXME we're not catching any fetch exceptions currently. Should we?
59 const response = await fetch(DOKU_BASE + 'lib/exe/fetch.php?media=' + mediaid, {
87 const response = await fetch(url, {
126 const response = await fetch(uploadUrl, {
156 const response = await fetch(uploadUrl, {
180 const response = await fetch(uploadUrl, {
H A DDiagramsForm.js157 this.#attributes.url = `${DOKU_BASE}lib/exe/fetch.php?media=${this.#attributes.id}`;
169 const url = `${DOKU_BASE}lib/exe/fetch.php?cache=nocache&media=${mediaid}`;
170 await fetch(url, {cache: 'reload', mode: 'no-cors'});
194 const response = await fetch(
H A DDiagramsMediaManager.js46 const response = await fetch(
112 const response = await fetch(url, {
221 const response = await fetch(url, {
H A Dmediafile-editbutton.js13 const result = await fetch(DOKU_BASE + 'lib/exe/ajax.php?call=plugin_diagrams_mediafile_editcheck', {
/plugin/diagramsnet/lib/js/
H A Dextensions.min.js1705fetch(t,e).then(ts)};function ns(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.a…
/plugin/diagramsnet/lib/js/mermaid/
H A Dmermaid.min.js6fetch(t,e).then(ts)};function ns(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.a…
/plugin/diagramsnet/lib/resources/
H A Ddia.txt1002 confAImpDiagramError=Error importing diagram "{1}". Cannot fetch or save the diagram. Cannot fix th…
1041 errFetchDocList=Error: Couldn't fetch documents list
1086 fetchingRecentFailed=Failed to fetch recent diagrams
1089 cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
H A Ddia_am.txt1002 confAImpDiagramError=Error importing diagram "{1}". Cannot fetch or save the diagram. Cannot fix th…
1041 errFetchDocList=Error: Couldn't fetch documents list
1086 fetchingRecentFailed=Failed to fetch recent diagrams
1089 cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
H A Ddia_ar.txt1002 confAImpDiagramError=Error importing diagram "{1}". Cannot fetch or save the diagram. Cannot fix th…
1041 errFetchDocList=Error: Couldn't fetch documents list
1086 fetchingRecentFailed=Failed to fetch recent diagrams
1089 cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.

12345678910