From 7597f5af77c839ff79b1b72a282e6816bbc40831 Mon Sep 17 00:00:00 2001 From: Steve Schneider Date: Mon, 3 Jul 2023 13:48:11 -0400 Subject: [PATCH 001/419] Update WidgetMessage_ tm-http-request Example Zotero.tid (#7584) * corrected zotero groups available for import * added field zotero-group to imported tiddlers --- .../messages/WidgetMessage_ tm-http-request Example Zotero.tid | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-http-request Example Zotero.tid b/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-http-request Example Zotero.tid index ea64dd3a2..472f0abb0 100644 --- a/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-http-request Example Zotero.tid +++ b/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-http-request Example Zotero.tid @@ -6,7 +6,7 @@ Specify the Zotero group ID to import <$edit-text tiddler="$:/config/zotero-group" tag="input"/> or <$select tiddler="$:/config/zotero-group"> - + \end @@ -16,6 +16,7 @@ Specify the Zotero group ID to import $basetitle={{{ =[[_zotero_import ]] =[jsonget[key]] =[[ ]] =[jsonget[title]] +[join[]] }}} text={{{ [jsonget[title]] }}} tags="$:/tags/ZoteroImport" + zotero-group={{$:/config/zotero-group}} > <$action-setmultiplefields $tiddler=<> $fields="[jsonindexes[]addprefix[zotero-]]" $values="[jsonindexes[]] :map[jsongetelse[.XXXXX.]]"/> <$list filter="[jsonindexes[creators]]" variable="creatorIndex"> From 02f6d850d5e853aece7cd5c2caf5f39c1e408972 Mon Sep 17 00:00:00 2001 From: "jeremy@jermolene.com" Date: Thu, 6 Jul 2023 09:10:56 +0100 Subject: [PATCH 002/419] Remove references to https://github.com/jermolene/tiddlywiki5/releases It is not actually populated --- editions/tw5.com/tiddlers/releasenotes/Releases.tid | 2 +- editions/tw5.com/tiddlers/releasenotes/TiddlyWiki Releases.tid | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/editions/tw5.com/tiddlers/releasenotes/Releases.tid b/editions/tw5.com/tiddlers/releasenotes/Releases.tid index 7257c19d9..e738520a7 100644 --- a/editions/tw5.com/tiddlers/releasenotes/Releases.tid +++ b/editions/tw5.com/tiddlers/releasenotes/Releases.tid @@ -4,6 +4,6 @@ tags: About title: Releases type: text/vnd.tiddlywiki -New releases of TiddlyWiki and TiddlyDesktop are announced via the [[official discussion groups|Forums]] and [[Twitter|https://twitter.com/TiddlyWiki]] (you can also subscribe to an Atom/RSS feed of [[TiddlyWiki releases from GitHub|https://github.com/jermolene/tiddlywiki5/releases.atom]]) +New releases of TiddlyWiki and TiddlyDesktop are announced via the [[official discussion groups|Forums]] and [[Twitter|https://twitter.com/TiddlyWiki]] <> diff --git a/editions/tw5.com/tiddlers/releasenotes/TiddlyWiki Releases.tid b/editions/tw5.com/tiddlers/releasenotes/TiddlyWiki Releases.tid index 3fbe6347f..57c335265 100644 --- a/editions/tw5.com/tiddlers/releasenotes/TiddlyWiki Releases.tid +++ b/editions/tw5.com/tiddlers/releasenotes/TiddlyWiki Releases.tid @@ -5,7 +5,7 @@ tags: Releases title: TiddlyWiki Releases type: text/vnd.tiddlywiki -Here are the details of recent releases of TiddlyWiki5. See [[TiddlyWiki5 Versioning]] for details of how releases are named. Note that archived versions of release source files are available at https://github.com/Jermolene/TiddlyWiki5/releases +Here are the details of recent releases of TiddlyWiki5. See [[TiddlyWiki5 Versioning]] for details of how releases are named. If you are using node.js, you can also install prior versions like this: From eff158b1ae44332b6b0c8b8d3907b24c14ebf57d Mon Sep 17 00:00:00 2001 From: btheado Date: Sun, 9 Jul 2023 10:50:48 -0500 Subject: [PATCH 003/419] Fixed http-request bind-status and bind-progress option names (#7595) --- core/modules/utils/dom/http.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/modules/utils/dom/http.js b/core/modules/utils/dom/http.js index ba4b3d2a1..5b1f0abe6 100644 --- a/core/modules/utils/dom/http.js +++ b/core/modules/utils/dom/http.js @@ -106,8 +106,8 @@ function HttpClientRequest(options) { this.wiki = options.wiki; this.completionActions = options.oncompletion; this.progressActions = options.onprogress; - this.bindStatus = options["bind-status"]; - this.bindProgress = options["bind-progress"]; + this.bindStatus = options["bindStatus"]; + this.bindProgress = options["bindProgress"]; this.method = options.method || "GET"; this.body = options.body || ""; this.variables = options.variables; @@ -132,7 +132,7 @@ HttpClientRequest.prototype.send = function(callback) { var self = this, setBinding = function(title,text) { if(title) { - this.wiki.addTiddler(new $tw.Tiddler({title: title, text: text})); + self.wiki.addTiddler(new $tw.Tiddler({title: title, text: text})); } }; if(this.url) { From f517497fe7cc2b9aec70e2a8390ebaf67fdee39f Mon Sep 17 00:00:00 2001 From: Scott Sauyet Date: Sun, 9 Jul 2023 11:52:35 -0400 Subject: [PATCH 004/419] Add tabindex to SelectWidget and docs (#7594) --- core/modules/widgets/select.js | 4 ++++ editions/tw5.com/tiddlers/widgets/SelectWidget.tid | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/core/modules/widgets/select.js b/core/modules/widgets/select.js index cd789423f..ab9bef74e 100644 --- a/core/modules/widgets/select.js +++ b/core/modules/widgets/select.js @@ -145,6 +145,7 @@ SelectWidget.prototype.execute = function() { this.selectDefault = this.getAttribute("default"); this.selectMultiple = this.getAttribute("multiple", false); this.selectSize = this.getAttribute("size"); + this.selectTabindex = this.getAttribute("tabindex"); this.selectTooltip = this.getAttribute("tooltip"); this.selectFocus = this.getAttribute("focus"); // Make the child widgets @@ -162,6 +163,9 @@ SelectWidget.prototype.execute = function() { if(this.selectSize) { $tw.utils.addAttributeToParseTreeNode(selectNode,"size",this.selectSize); } + if(this.selectTabindex) { + $tw.utils.addAttributeToParseTreeNode(selectNode,"tabindex",this.selectTabindex); + } if(this.selectTooltip) { $tw.utils.addAttributeToParseTreeNode(selectNode,"title",this.selectTooltip); } diff --git a/editions/tw5.com/tiddlers/widgets/SelectWidget.tid b/editions/tw5.com/tiddlers/widgets/SelectWidget.tid index b46f0359f..e22fcfec6 100644 --- a/editions/tw5.com/tiddlers/widgets/SelectWidget.tid +++ b/editions/tw5.com/tiddlers/widgets/SelectWidget.tid @@ -41,7 +41,7 @@ The content of the `<$select>` widget should be one or more HTML `