mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-03-13 15:08:09 +00:00
Merge branch 'tm-http-request-message' into geospatial-plugin
This commit is contained in:
commit
cf71f6f0ce
@ -65,9 +65,12 @@ HttpClient.prototype.initiateHttpRequest = function(options) {
|
|||||||
|
|
||||||
HttpClient.prototype.cancelAllHttpRequests = function() {
|
HttpClient.prototype.cancelAllHttpRequests = function() {
|
||||||
var self = this;
|
var self = this;
|
||||||
$tw.utils.each(this.requests,function(requestInfo,index) {
|
if(this.requests.length > 0) {
|
||||||
requestInfo.request.cancel();
|
for(var t=this.requests.length - 1; t--; t>=0) {
|
||||||
});
|
var requestInfo = this.requests[t];
|
||||||
|
requestInfo.request.cancel();
|
||||||
|
}
|
||||||
|
}
|
||||||
this.requests = [];
|
this.requests = [];
|
||||||
this.updateRequestTracker();
|
this.updateRequestTracker();
|
||||||
};
|
};
|
||||||
|
@ -5,7 +5,7 @@ modified: 20230410105035569
|
|||||||
|
|
||||||
<span style="float:right;">[img width=340 [Xememex Logo]]</span>
|
<span style="float:right;">[img width=340 [Xememex Logo]]</span>
|
||||||
|
|
||||||
Xememex is a multiuser TiddlyWiki from [[Federatial]]. It allows large groups of people to work together on intertwingled wikis that can share content.
|
Xememex is a multiuser TiddlyWiki from [[Federatial]]. It allows large groups of people to work together on intertwingled wikis that can share content. It is implemented as a serverless application on Amazon Web Services.
|
||||||
|
|
||||||
The largest customer implementation has hundreds of online wikis with thousands of users. See https://manuals.annafreud.org/
|
The largest customer implementation has hundreds of online wikis with thousands of users. See https://manuals.annafreud.org/
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ These attributes provide low level access to the contents of the transcluding wi
|
|||||||
Here the <<.wlink ParametersWidget>> widget is used to declare a parameter whose default value is transcluded from another tiddler.
|
Here the <<.wlink ParametersWidget>> widget is used to declare a parameter whose default value is transcluded from another tiddler.
|
||||||
|
|
||||||
<$macrocall $name='wikitext-example-without-html'
|
<$macrocall $name='wikitext-example-without-html'
|
||||||
src="""\procedure mymacro
|
src="""\procedure mymacro()
|
||||||
<$parameters name={{$:/SiteTitle}} age="21">
|
<$parameters name={{$:/SiteTitle}} age="21">
|
||||||
My name is <<name>> and my age is <<age>>.
|
My name is <<name>> and my age is <<age>>.
|
||||||
</$parameters>
|
</$parameters>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user