tiddlywiki 5.2.0 → 5.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (335) hide show
  1. package/boot/boot.js +40 -3
  2. package/contributing.md +1 -1
  3. package/core/language/en-GB/ControlPanel.multids +15 -0
  4. package/core/modules/editor/engines/framed.js +1 -1
  5. package/core/modules/editor/engines/simple.js +1 -1
  6. package/core/modules/editor/factory.js +1 -1
  7. package/core/modules/editor/operations/text/focus-editor.js +17 -0
  8. package/core/modules/filterrunprefixes/cascade.js +53 -0
  9. package/core/modules/filterrunprefixes/filter.js +16 -9
  10. package/core/modules/filterrunprefixes/map.js +16 -9
  11. package/core/modules/filterrunprefixes/reduce.js +16 -18
  12. package/core/modules/filterrunprefixes/sort.js +10 -8
  13. package/core/modules/filters/listops.js +12 -0
  14. package/core/modules/filters/math.js +29 -0
  15. package/core/modules/filters/strings.js +11 -9
  16. package/core/modules/parsers/wikiparser/rules/html.js +4 -2
  17. package/core/modules/parsers/wikiparser/wikiparser.js +11 -8
  18. package/core/modules/server/routes/put-tiddler.js +1 -1
  19. package/core/modules/utils/dom/dragndrop.js +8 -2
  20. package/core/modules/utils/utils.js +0 -18
  21. package/core/modules/widgets/action-sendmessage.js +17 -7
  22. package/core/modules/widgets/action-setmultiplefields.js +86 -0
  23. package/core/modules/widgets/codeblock.js +7 -1
  24. package/core/modules/widgets/dropzone.js +2 -1
  25. package/core/modules/widgets/let.js +96 -0
  26. package/core/modules/widgets/link.js +2 -1
  27. package/core/modules/widgets/setmultiplevariables.js +81 -0
  28. package/core/modules/widgets/vars.js +2 -4
  29. package/core/modules/widgets/widget.js +20 -16
  30. package/core/modules/wiki.js +9 -4
  31. package/core/ui/Components/tag-link.tid +1 -1
  32. package/core/ui/ControlPanel/Cascades/EditTemplateBody.tid +9 -0
  33. package/core/ui/ControlPanel/Cascades/StoryTiddler.tid +9 -0
  34. package/core/ui/ControlPanel/Cascades/TiddlerColour.tid +9 -0
  35. package/core/ui/ControlPanel/Cascades/TiddlerIcon.tid +9 -0
  36. package/core/ui/ControlPanel/Cascades/ViewTemplateBody.tid +9 -0
  37. package/core/ui/ControlPanel/Cascades/ViewTemplateTitle.tid +9 -0
  38. package/core/ui/ControlPanel/Cascades.tid +9 -0
  39. package/core/ui/EditTemplate/body/canonical-uri.tid +13 -0
  40. package/core/ui/EditTemplate/body/default.tid +38 -0
  41. package/core/ui/EditTemplate/body.tid +1 -51
  42. package/core/ui/EditTemplate/tags.tid +1 -1
  43. package/core/ui/EditorToolbar/link-dropdown.tid +1 -1
  44. package/core/ui/EditorToolbar/preview.tid +4 -4
  45. package/core/ui/ListTaggedCascade.tid +14 -0
  46. package/core/ui/PageTemplate/story.tid +1 -1
  47. package/core/ui/PluginListItemTemplate.tid +13 -3
  48. package/core/ui/StoryTiddlerTemplate.tid +3 -0
  49. package/core/ui/TagPickerTagTemplate.tid +3 -3
  50. package/core/ui/TagTemplate.tid +1 -1
  51. package/core/ui/TiddlerIcon.tid +8 -0
  52. package/core/ui/ViewTemplate/body/blank.tid +3 -0
  53. package/core/ui/ViewTemplate/body/code.tid +3 -0
  54. package/core/ui/ViewTemplate/body/default.tid +7 -0
  55. package/core/ui/ViewTemplate/{import.tid → body/import.tid} +1 -2
  56. package/core/ui/ViewTemplate/body/plugin.tid +10 -0
  57. package/core/ui/ViewTemplate/body.tid +1 -9
  58. package/core/ui/ViewTemplate/title/default.tid +6 -0
  59. package/core/ui/ViewTemplate/title/system.tid +6 -0
  60. package/core/ui/ViewTemplate/title.tid +4 -17
  61. package/core/wiki/config/EditTemplateBodyFilters.multids +5 -0
  62. package/core/wiki/config/OfficialPluginLibrary.tid +1 -1
  63. package/core/wiki/config/StoryTiddlerTemplateFilters.multids +5 -0
  64. package/core/wiki/config/TiddlerColourFilters.multids +5 -0
  65. package/core/wiki/config/TiddlerIconFilters.multids +5 -0
  66. package/core/wiki/config/ViewTemplateBodyFilters.multids +8 -0
  67. package/core/wiki/config/ViewTemplateTitleFilters.multids +5 -0
  68. package/core/wiki/debugstylesheets.tid +9 -0
  69. package/core/wiki/macros/tag.tid +3 -1
  70. package/core/wiki/peek-stylesheets.tid +3 -0
  71. package/core/wiki/tags/EditTemplateBodyFilter.tid +2 -0
  72. package/core/wiki/tags/StoryTiddlerTemplateFilter.tid +2 -0
  73. package/core/wiki/tags/TiddlerColourFilter.tid +3 -0
  74. package/core/wiki/tags/TiddlerIconFilter.tid +3 -0
  75. package/core/wiki/tags/ViewTemplateBodyFilter.tid +3 -0
  76. package/core/wiki/tags/ViewTemplateTitleFilter.tid +3 -0
  77. package/editions/fr-FR/tiddlers/HelloThumbnail - Latest Version.tid +1 -1
  78. package/editions/prerelease/tiddlers/{Release 5.2.1.tid → Release 5.2.2.tid } +10 -18
  79. package/editions/test/tiddlers/tests/test-filters.js +4 -0
  80. package/editions/test/tiddlers/tests/test-html-parser.js +17 -11
  81. package/editions/test/tiddlers/tests/test-prefixes-filter.js +50 -0
  82. package/editions/test/tiddlers/tests/test-widget.js +34 -0
  83. package/editions/test/tiddlers/tests/test-wikitext-parser.js +30 -30
  84. package/editions/tw5.com/tiddlers/$__StoryList.tid +3 -3
  85. package/editions/tw5.com/tiddlers/{License.tid → about/License.tid} +0 -0
  86. package/editions/tw5.com/tiddlers/commands/NamedCommandParameters.tid +2 -2
  87. package/editions/tw5.com/tiddlers/community/Contributing.tid +2 -2
  88. package/editions/tw5.com/tiddlers/community/TW Icons by morosanuae.tid +2 -2
  89. package/editions/tw5.com/tiddlers/community/TiddlyWiki Hangouts.tid +2 -2
  90. package/editions/tw5.com/tiddlers/community/editions/_Noteself_ by Danielo Rodriguez.tid +2 -2
  91. package/editions/tw5.com/tiddlers/community/examples/Reveal.js by Devin Weaver.tid +2 -2
  92. package/editions/tw5.com/tiddlers/community/plugins/Encrypt single tiddler plugin.tid +2 -2
  93. package/editions/tw5.com/tiddlers/community/plugins/TiddlyMap by Felix Kuppers.tid +2 -2
  94. package/editions/tw5.com/tiddlers/community/resources/TW5 Magick.tid +2 -2
  95. package/editions/tw5.com/tiddlers/community/resources/_Dynamic Tables_ by Jed Carty.tid +2 -2
  96. package/editions/tw5.com/tiddlers/community/resources/_TiddlyServer_ by Matt Lauber.tid +5 -3
  97. package/editions/tw5.com/tiddlers/community/resources/_muritest_ by Simon Huber.tid +2 -2
  98. package/editions/tw5.com/tiddlers/concepts/Cascades.tid +47 -0
  99. package/editions/tw5.com/tiddlers/concepts/Concepts.tid +5 -3
  100. package/editions/tw5.com/tiddlers/concepts/Edit Template Body Cascade.tid +16 -0
  101. package/editions/tw5.com/tiddlers/concepts/Messages.tid +2 -2
  102. package/editions/tw5.com/tiddlers/concepts/ModuleType.tid +2 -2
  103. package/editions/tw5.com/tiddlers/concepts/Order of Tagged Tiddlers.tid +1 -1
  104. package/editions/tw5.com/tiddlers/concepts/Railroad Diagrams.tid +2 -1
  105. package/editions/tw5.com/tiddlers/concepts/Story Tiddler Template Cascade.tid +16 -0
  106. package/editions/tw5.com/tiddlers/concepts/Story Tiddler Template.tid +13 -0
  107. package/editions/tw5.com/tiddlers/concepts/TagTiddlers.tid +1 -1
  108. package/editions/tw5.com/tiddlers/concepts/Tiddler Colour Cascade.tid +16 -0
  109. package/editions/tw5.com/tiddlers/concepts/Tiddler Icon Cascade.tid +16 -0
  110. package/editions/tw5.com/tiddlers/concepts/View Template Body Cascade.tid +19 -0
  111. package/editions/tw5.com/tiddlers/concepts/View Template Title Cascade.tid +16 -0
  112. package/editions/tw5.com/tiddlers/customising/Alternative page layouts.tid +1 -1
  113. package/editions/tw5.com/tiddlers/customising/Creating new toolbar buttons.tid +35 -0
  114. package/editions/tw5.com/tiddlers/customising/Customise TiddlyWiki.tid +3 -3
  115. package/editions/tw5.com/tiddlers/customising/Customising TiddlyWiki's user interface.tid +75 -0
  116. package/editions/tw5.com/tiddlers/definitions/BT.tid +3 -2
  117. package/editions/tw5.com/tiddlers/definitions/MathML.tid +2 -2
  118. package/editions/tw5.com/tiddlers/definitions/Osmosoft.tid +3 -2
  119. package/editions/tw5.com/tiddlers/definitions/node-webkit.tid +2 -1
  120. package/editions/tw5.com/tiddlers/demonstrations/Alice in Wonderland.tid +4 -3707
  121. package/editions/tw5.com/tiddlers/demonstrations/Apple.tid +2 -2
  122. package/editions/tw5.com/tiddlers/demonstrations/Caruso - Ave Maria.tid +1 -0
  123. package/editions/tw5.com/tiddlers/demonstrations/CustomStoryTiddlerTemplateDemo.tid/Demo Tiddler List with Custom Story Tiddler Template.tid +10 -0
  124. package/editions/tw5.com/tiddlers/demonstrations/CustomStoryTiddlerTemplateDemo.tid/Styles.tid +31 -0
  125. package/editions/tw5.com/tiddlers/demonstrations/CustomStoryTiddlerTemplateDemo.tid/Template.tid +25 -0
  126. package/editions/tw5.com/tiddlers/demonstrations/CustomStoryTiddlerTemplateDemo.tid/TiddlerTemplateFilter.tid +5 -0
  127. package/editions/tw5.com/tiddlers/demonstrations/CustomTiddlerColourCascadeDemo/CustomTiddlerColourCascadeDemo.tid +9 -0
  128. package/editions/tw5.com/tiddlers/demonstrations/CustomTiddlerIconCascadeDemo/CustomTiddlerIconCascadeDemo.tid +9 -0
  129. package/editions/tw5.com/tiddlers/demonstrations/ImageGallery Example.tid +5 -16
  130. package/editions/tw5.com/tiddlers/demonstrations/KeyboardDrivenInput/Demonstration_ keyboard-driven-input Macro.tid +2 -2
  131. package/editions/tw5.com/tiddlers/demonstrations/KeyboardDrivenInput/kdi-demo-configtid.tid +4 -3
  132. package/editions/tw5.com/tiddlers/demonstrations/SampleNotification.tid +2 -1
  133. package/editions/tw5.com/tiddlers/demonstrations/SampleTiddlerFirst.tid +3 -1
  134. package/editions/tw5.com/tiddlers/demonstrations/SampleTiddlerSecond.tid +3 -1
  135. package/editions/tw5.com/tiddlers/demonstrations/SampleTiddlerThird.tid +3 -1
  136. package/editions/tw5.com/tiddlers/demonstrations/SampleWizard.tid +2 -1
  137. package/editions/tw5.com/tiddlers/demonstrations/SampleWizard2.tid +2 -1
  138. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/Contents.tid +3 -2
  139. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/First.tid +3 -3
  140. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/FirstOne.tid +2 -2
  141. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/FirstThree.tid +2 -2
  142. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/FirstTwo.tid +2 -2
  143. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/Fourth.tid +2 -2
  144. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/Second.tid +2 -2
  145. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/SecondOne.tid +2 -2
  146. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/SecondThree.tid +3 -3
  147. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/SecondThreeOne.tid +2 -2
  148. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/SecondThreeThree.tid +2 -2
  149. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/SecondThreeTwo.tid +2 -2
  150. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/SecondTwo.tid +2 -2
  151. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/Third.tid +3 -3
  152. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/ThirdOne.tid +2 -2
  153. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/ThirdThree.tid +2 -2
  154. package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/ThirdTwo.tid +2 -2
  155. package/editions/tw5.com/tiddlers/demonstrations/Tagged with TagMacro.tid +2 -1
  156. package/editions/tw5.com/tiddlers/demonstrations/Tasks/Compose ballad.tid +3 -3
  157. package/editions/tw5.com/tiddlers/demonstrations/Tasks/Get the Ring.tid +3 -3
  158. package/editions/tw5.com/tiddlers/demonstrations/Tasks/Go to Mordor.tid +3 -3
  159. package/editions/tw5.com/tiddlers/demonstrations/Tasks/Kill the Dragon.tid +4 -4
  160. package/editions/tw5.com/tiddlers/demonstrations/Tasks/Make the beds.tid +3 -3
  161. package/editions/tw5.com/tiddlers/demonstrations/Tasks/done.tid +3 -1
  162. package/editions/tw5.com/tiddlers/demonstrations/Tasks/task.tid +3 -2
  163. package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Days of the Week.tid +5 -4
  164. package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Friday.tid +2 -1
  165. package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Monday.tid +2 -1
  166. package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Saturday.tid +3 -2
  167. package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Sunday.tid +2 -1
  168. package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Thursday.tid +2 -1
  169. package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Tuesday.tid +2 -1
  170. package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Wednesday.tid +2 -1
  171. package/editions/tw5.com/tiddlers/demonstrations/sampletag1.tid +3 -0
  172. package/editions/tw5.com/tiddlers/demonstrations/sampletag2.tid +3 -0
  173. package/editions/tw5.com/tiddlers/features/DateFormat.tid +7 -1
  174. package/editions/tw5.com/tiddlers/features/LazyLoading.tid +2 -3
  175. package/editions/tw5.com/tiddlers/features/Scalability.tid +4 -2
  176. package/editions/tw5.com/tiddlers/filters/acos Operator.tid +15 -0
  177. package/editions/tw5.com/tiddlers/filters/asin Operator.tid +15 -0
  178. package/editions/tw5.com/tiddlers/filters/atan Operator.tid +13 -0
  179. package/editions/tw5.com/tiddlers/filters/atan2 Operator.tid +15 -0
  180. package/editions/tw5.com/tiddlers/filters/cos Operator.tid +13 -0
  181. package/editions/tw5.com/tiddlers/filters/deserializers Operator.tid +1 -1
  182. package/editions/tw5.com/tiddlers/filters/enlist-input Operator.tid +1 -1
  183. package/editions/tw5.com/tiddlers/filters/examples/acos Operator (Examples).tid +7 -0
  184. package/editions/tw5.com/tiddlers/filters/examples/asin Operator (Examples).tid +7 -0
  185. package/editions/tw5.com/tiddlers/filters/examples/atan Operator (Examples).tid +7 -0
  186. package/editions/tw5.com/tiddlers/filters/examples/atan2 Operator (Examples).tid +7 -0
  187. package/editions/tw5.com/tiddlers/filters/examples/cos Operator (Examples).tid +7 -0
  188. package/editions/tw5.com/tiddlers/filters/examples/cycle Operator (Examples).tid +1 -1
  189. package/editions/tw5.com/tiddlers/filters/examples/log Operator (Examples).tid +1 -1
  190. package/editions/tw5.com/tiddlers/filters/examples/lookup Operator (Examples).tid +2 -1
  191. package/editions/tw5.com/tiddlers/filters/examples/match Operator (Examples).tid +1 -1
  192. package/editions/tw5.com/tiddlers/filters/examples/search-replace Operator (Examples).tid +8 -2
  193. package/editions/tw5.com/tiddlers/filters/examples/sin Operator (Examples).tid +7 -0
  194. package/editions/tw5.com/tiddlers/filters/examples/subfilter Operator (Examples).tid +25 -3
  195. package/editions/tw5.com/tiddlers/filters/examples/tan Operator (Examples).tid +7 -0
  196. package/editions/tw5.com/tiddlers/filters/examples/zth Operator (Examples).tid +10 -0
  197. package/editions/tw5.com/tiddlers/filters/list.tid +2 -2
  198. package/editions/tw5.com/tiddlers/filters/nth.tid +9 -7
  199. package/editions/tw5.com/tiddlers/filters/range.tid +1 -1
  200. package/editions/tw5.com/tiddlers/filters/sin Operator.tid +13 -0
  201. package/editions/tw5.com/tiddlers/filters/storyviews.tid +1 -1
  202. package/editions/tw5.com/tiddlers/filters/subfilter Operator.tid +4 -2
  203. package/editions/tw5.com/tiddlers/filters/syntax/Cascade Filter Run Prefix (Examples).tid +46 -0
  204. package/editions/tw5.com/tiddlers/filters/syntax/Cascade Filter Run Prefix.tid +20 -0
  205. package/editions/tw5.com/tiddlers/filters/syntax/Filter Expression.tid +4 -2
  206. package/editions/tw5.com/tiddlers/filters/syntax/Filter Filter Run Prefix (Examples).tid +30 -0
  207. package/editions/tw5.com/tiddlers/filters/syntax/Filter Filter Run Prefix.tid +27 -0
  208. package/editions/tw5.com/tiddlers/filters/syntax/Filter Run Prefix (Examples).tid +7 -36
  209. package/editions/tw5.com/tiddlers/filters/syntax/Intersection Filter Run Prefix (Examples).tid +36 -0
  210. package/editions/tw5.com/tiddlers/filters/syntax/Intersection Filter Run Prefix.tid +15 -0
  211. package/editions/tw5.com/tiddlers/filters/syntax/Map Filter Run Prefix (Examples).tid +26 -1
  212. package/editions/tw5.com/tiddlers/filters/syntax/Map Filter Run Prefix.tid +9 -1
  213. package/editions/tw5.com/tiddlers/filters/syntax/Named Filter Run Prefix.tid +2 -2
  214. package/editions/tw5.com/tiddlers/filters/syntax/Reduce Filter Run Prefix (Examples).tid +27 -0
  215. package/editions/tw5.com/tiddlers/filters/syntax/Reduce Filter Run Prefix.tid +38 -0
  216. package/editions/tw5.com/tiddlers/filters/tan Operator.tid +13 -0
  217. package/editions/tw5.com/tiddlers/filters/zth Operator.tid +18 -0
  218. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Android.tid +2 -1
  219. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Chrome.tid +2 -1
  220. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Firefox.tid +2 -1
  221. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Internet Explorer.tid +2 -1
  222. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Node.js.tid +2 -1
  223. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Online.tid +2 -2
  224. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Safari.tid +2 -1
  225. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - iOS.tid +2 -1
  226. package/editions/tw5.com/tiddlers/{AllTiddlers.tid → hellothere/AllTiddlers.tid} +0 -0
  227. package/editions/tw5.com/tiddlers/hellothere/HelloThere.tid +1 -1
  228. package/editions/tw5.com/tiddlers/hellothere/Some of the things you can do with TiddlyWiki.tid +2 -2
  229. package/editions/tw5.com/tiddlers/hellothere/badges/ProductHunt-Badge.svg.tid +1 -0
  230. package/editions/tw5.com/tiddlers/hellothere/badges/ProductHunt-Link.tid +1 -0
  231. package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting NewImageType.tid +3 -1
  232. package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting ShowEditPreviewPerTiddler.tid +10 -0
  233. package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting_ Typin Refresh Delay.tid +2 -2
  234. package/editions/tw5.com/tiddlers/howtos/Creating SubStories.tid +21 -33
  235. package/editions/tw5.com/tiddlers/howtos/Debugging Stylesheets.tid +11 -0
  236. package/editions/tw5.com/tiddlers/howtos/How to create a custom story tiddler template.tid +40 -0
  237. package/editions/tw5.com/tiddlers/howtos/How to create a custom tiddler colour rule.tid +36 -0
  238. package/editions/tw5.com/tiddlers/howtos/How to create a custom tiddler icon rule.tid +36 -0
  239. package/editions/tw5.com/tiddlers/howtos/How to create dynamic editor toolbar buttons.tid +2 -2
  240. package/editions/tw5.com/tiddlers/howtos/Simple ways to write protect tiddlers.tid +4 -5
  241. package/editions/tw5.com/tiddlers/howtos/Text preview.tid +6 -2
  242. package/editions/tw5.com/tiddlers/howtos/Using Stylesheets.tid +8 -4
  243. package/editions/tw5.com/tiddlers/images/Icon Gallery.tid +14 -0
  244. package/editions/tw5.com/tiddlers/images/New Release Banner.png +0 -0
  245. package/editions/tw5.com/tiddlers/languages/LanguageGallery.tid +2 -2
  246. package/editions/tw5.com/tiddlers/macros/examples/colour-picker Macro (Example 1).tid +2 -2
  247. package/editions/tw5.com/tiddlers/macros/examples/image-picker Macro (Example 1).tid +2 -2
  248. package/editions/tw5.com/tiddlers/macros/examples/image-picker Macro (Example 2).tid +2 -2
  249. package/editions/tw5.com/tiddlers/macros/examples/unusedtitle Macro (Examples 1).tid +2 -2
  250. package/editions/tw5.com/tiddlers/mechanisms/RefreshThrottling.tid +2 -2
  251. package/editions/tw5.com/tiddlers/mechanisms/StateMechanism.tid +2 -2
  252. package/editions/tw5.com/tiddlers/messages/SampleModal.tid +2 -1
  253. package/editions/tw5.com/tiddlers/messages/SampleWindowTemplate.tid +10 -0
  254. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-edit-text-operation.tid +3 -0
  255. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-open-window.tid +22 -4
  256. package/editions/tw5.com/tiddlers/nodejs/Environment Variables on Node.js.tid +4 -2
  257. package/editions/tw5.com/tiddlers/nodejs/Installing TiddlyWiki on Node.js.tid +10 -3
  258. package/editions/tw5.com/tiddlers/nodejs/tiddlywiki.files_Files.tid +6 -5
  259. package/editions/tw5.com/tiddlers/nodejs/tiddlywiki.info_Files.tid +2 -2
  260. package/editions/tw5.com/tiddlers/platforms/TiddlyFox Apocalypse.tid +2 -2
  261. package/editions/tw5.com/tiddlers/platforms/TiddlyWiki in the Sky for TiddlyWeb.tid +3 -8
  262. package/editions/tw5.com/tiddlers/plugins/Plugin Types.tid +2 -2
  263. package/editions/tw5.com/tiddlers/reference/Reference.tid +1 -0
  264. package/editions/tw5.com/tiddlers/releasenotes/BetaReleases.tid +2 -2
  265. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.1.tid +118 -0
  266. package/editions/tw5.com/tiddlers/releasenotes/ReleaseTemplate.tid +3 -0
  267. package/editions/tw5.com/tiddlers/releasenotes/alpha/AlphaReleases.tid +2 -2
  268. package/editions/tw5.com/tiddlers/saving/Example config-tiddlyweb-host for IIS.txt.meta +1 -1
  269. package/editions/tw5.com/tiddlers/saving/Example package.json for IIS.txt.meta +1 -1
  270. package/editions/tw5.com/tiddlers/saving/Example tiddlywiki.info for IIS.txt.meta +1 -1
  271. package/editions/tw5.com/tiddlers/saving/Example web.config for IIS.txt.meta +1 -1
  272. package/editions/tw5.com/tiddlers/saving/Saving via WebDAV.tid +31 -1
  273. package/editions/tw5.com/tiddlers/styleguide/Documentation Macros.tid +6 -2
  274. package/editions/tw5.com/tiddlers/{TableOfContents.tid → system/TableOfContents.tid} +0 -0
  275. package/editions/tw5.com/tiddlers/system/doc-macros.tid +17 -0
  276. package/editions/tw5.com/tiddlers/system/doc-styles.tid +32 -1
  277. package/editions/tw5.com/tiddlers/system/operator-macros.tid +12 -5
  278. package/editions/tw5.com/tiddlers/system/operator-template.tid +8 -8
  279. package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_Image.tid +2 -2
  280. package/editions/tw5.com/tiddlers/variables/examples/Sample Headings 1-2-3.tid +2 -1
  281. package/editions/tw5.com/tiddlers/variables/examples/Sample Headings 3-4-5.tid +2 -1
  282. package/editions/tw5.com/tiddlers/variables/examples/Sample Headings 4-5-6.tid +2 -1
  283. package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Example 1.tid +2 -2
  284. package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Example 2.tid +2 -2
  285. package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Example 3.tid +2 -2
  286. package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Example 4.tid +2 -2
  287. package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Template.tid +2 -2
  288. package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget_Example.tid +2 -2
  289. package/editions/tw5.com/tiddlers/widgets/ActionListopsWidget.tid +52 -2
  290. package/editions/tw5.com/tiddlers/widgets/ActionSendMessageWidget.tid +3 -1
  291. package/editions/tw5.com/tiddlers/widgets/ActionSetMultipleFieldsWidget.tid +31 -0
  292. package/editions/tw5.com/tiddlers/widgets/ActionWidget Execution Modes.tid +5 -2
  293. package/editions/tw5.com/tiddlers/widgets/ActionWidgets.tid +4 -4
  294. package/editions/tw5.com/tiddlers/widgets/ButtonWidget.tid +2 -2
  295. package/editions/tw5.com/tiddlers/widgets/CheckboxWidget.tid +2 -2
  296. package/editions/tw5.com/tiddlers/widgets/DraggableWidget.tid +2 -2
  297. package/editions/tw5.com/tiddlers/widgets/DroppableWidget.tid +2 -2
  298. package/editions/tw5.com/tiddlers/widgets/DropzoneWidget.tid +2 -2
  299. package/editions/tw5.com/tiddlers/widgets/EditTextWidget.tid +8 -19
  300. package/editions/tw5.com/tiddlers/widgets/EditWidget.tid +2 -2
  301. package/editions/tw5.com/tiddlers/widgets/EventCatcherWidget.tid +2 -2
  302. package/editions/tw5.com/tiddlers/widgets/FieldManglerWidget.tid +3 -3
  303. package/editions/tw5.com/tiddlers/{Keyboard Codes.tid → widgets/Keyboard Codes.tid} +0 -0
  304. package/editions/tw5.com/tiddlers/widgets/KeyboardWidget.tid +2 -2
  305. package/editions/tw5.com/tiddlers/widgets/LetWidget.tid +57 -0
  306. package/editions/tw5.com/tiddlers/widgets/LinkCatcherWidget.tid +2 -2
  307. package/editions/tw5.com/tiddlers/widgets/ListopsData.tid +1 -0
  308. package/editions/tw5.com/tiddlers/widgets/MessageCatcherWidget.tid +2 -2
  309. package/editions/tw5.com/tiddlers/widgets/MessageHandlerWidgets.tid +13 -0
  310. package/editions/tw5.com/tiddlers/widgets/NavigatorWidget.tid +5 -2
  311. package/editions/tw5.com/tiddlers/widgets/RadioWidget.tid +2 -2
  312. package/editions/tw5.com/tiddlers/widgets/RangeWidget.tid +2 -2
  313. package/editions/tw5.com/tiddlers/widgets/SelectWidget.tid +15 -2
  314. package/editions/tw5.com/tiddlers/widgets/SetMultipleVariablesWidget.tid +33 -0
  315. package/editions/tw5.com/tiddlers/widgets/The Extended Listops Filters.tid +2 -1
  316. package/editions/tw5.com/tiddlers/widgets/TriggeringWidgets.tid +13 -0
  317. package/editions/tw5.com/tiddlers/widgets/VarsWidget.tid +7 -5
  318. package/editions/tw5.com/tiddlers/wikitext/Transclusion and Substitution.tid +3 -2
  319. package/languages/pl-PL/ControlPanel.multids +1 -1
  320. package/languages/pl-PL/Docs/PaletteColours.multids +1 -1
  321. package/languages/pl-PL/Import.multids +1 -1
  322. package/languages/pl-PL/Misc.multids +2 -2
  323. package/languages/pl-PL/SideBar.multids +1 -1
  324. package/languages/zh-Hans/ControlPanel.multids +15 -0
  325. package/languages/zh-Hant/ControlPanel.multids +15 -0
  326. package/licenses/cla-individual.md +10 -0
  327. package/package.json +1 -1
  328. package/plugins/tiddlywiki/codemirror/engine.js +55 -2
  329. package/readme.md +2 -2
  330. package/themes/tiddlywiki/vanilla/ThemeTweaks.tid +7 -3
  331. package/themes/tiddlywiki/vanilla/base.tid +6 -0
  332. package/themes/tiddlywiki/vanilla/reset.tid +1 -1
  333. package/core/ui/ViewTemplate/plugin.tid +0 -15
  334. package/editions/tw5.com/tiddlers/customising/Page and tiddler layout customisation.tid +0 -63
  335. package/editions/tw5.com/tiddlers/demonstrations/SampleAlert.tid +0 -9
@@ -1,6 +1,6 @@
1
1
  created: 20180222072026299
2
2
  list: [[Apple 6]] [[Apple 7]] [[Apple 8]] [[Apple 9]] [[Apple 10]] [[Apple 20]] [[Apple 30]] [[Apple 100]]
3
- modified: 20180222072215582
4
- tags:
3
+ modified: 20211115005421558
4
+ tags: Demonstrations
5
5
  title: Apple
6
6
 
@@ -1,3 +1,4 @@
1
1
  title: Caruso - Ave Maria
2
2
  type: audio/mp3
3
3
  _canonical_uri: https://archive.org/download/Caruso_part1/Caruso-AveMaria.mp3
4
+ tags: Demonstrations
@@ -0,0 +1,10 @@
1
+ created: 20211204122107920
2
+ filter: HelloThere Community GettingStarted Features Reference Plugins Learning
3
+ modified: 20211204131610322
4
+ tags: $:/tags/TiddlerList
5
+ title: Demo Tiddler List with Custom Story Tiddler Template
6
+ type: text/vnd.tiddlywiki
7
+
8
+ This is a demo tiddler with a custom story tiddler template that displays the tiddlers named in the list field as a fan.
9
+
10
+ See [[How to create a custom story tiddler template]] for details.
@@ -0,0 +1,31 @@
1
+ title: $:/_tw5.com/CustomStoryTiddlerTemplateDemo/Styles
2
+ tags: $:/tags/Stylesheet
3
+
4
+ .tc-custom-tiddler-template {
5
+ border: 3px solid <<colour muted-foreground>>;
6
+ border-radius: 1em;
7
+ margin-bottom: 1em;
8
+ }
9
+
10
+ .tc-custom-tiddler-template-inner {
11
+ background: <<colour muted-foreground>>;
12
+ padding: 1em;
13
+ }
14
+
15
+ .tc-custom-tiddler-template-list {
16
+ position: relative;
17
+ height: 33vh;
18
+ }
19
+
20
+ .tc-custom-tiddler-template-list .tc-custom-tiddler-template-list-item {
21
+ position: absolute;
22
+ width: 100%;
23
+ transform-origin: 50% 0;
24
+ top: 50px;
25
+ left: 0;
26
+ <<box-shadow "0px 0px 15px rgba(0, 0, 0, 0.3)">>
27
+ }
28
+
29
+ .tc-custom-tiddler-template-list .tc-custom-tiddler-template-list-item .tc-tiddler-frame {
30
+ margin: 0;
31
+ }
@@ -0,0 +1,25 @@
1
+ title: $:/_tw5.com/CustomStoryTiddlerTemplateDemo/Template
2
+
3
+ \define list-item-styles()
4
+ transform: translate($(left)$%,$(top)$%) scale(0.3) rotate($(angle)$deg);
5
+ \end
6
+
7
+ <div class="tc-custom-tiddler-template">
8
+ <div class="tc-custom-tiddler-template-inner">
9
+ <div style="text-align: right;">
10
+ {{||$:/core/ui/Buttons/more-tiddler-actions}} {{||$:/core/ui/Buttons/edit}} {{||$:/core/ui/Buttons/close}}
11
+ </div>
12
+ <$transclude mode="block"/>
13
+ </div>
14
+ <div class="tc-custom-tiddler-template-list">
15
+ <$let numItems={{{ [subfilter{!!filter}count[]] }}} angleIncrement={{{ [[45]divide<numItems>] }}} posIncrement={{{ [[90]divide<numItems>] }}}>
16
+ <$list filter={{!!filter}} counter="counter">
17
+ <$let angle={{{ [<counter>subtract[1]multiply<angleIncrement>subtract[22.5]] }}} left={{{ [<counter>subtract[1]multiply<posIncrement>subtract[45]] }}} top={{{ 0 }}}>
18
+ <div class="tc-custom-tiddler-template-list-item" style=<<list-item-styles>>>
19
+ {{||$:/core/ui/ViewTemplate}}
20
+ </div>
21
+ </$let>
22
+ </$list>
23
+ </$let>
24
+ </div>
25
+ </div>
@@ -0,0 +1,5 @@
1
+ title: $:/_tw5.com/CustomStoryTiddlerTemplateDemo/Filter
2
+ tags: $:/tags/StoryTiddlerTemplateFilter
3
+ list-before: $:/config/StoryTiddlerTemplateFilters/default
4
+
5
+ [tag[$:/tags/TiddlerList]then[$:/_tw5.com/CustomStoryTiddlerTemplateDemo/Template]]
@@ -0,0 +1,9 @@
1
+ created: 20211206114433294
2
+ list-before: $:/config/TiddlerColourFilters/default
3
+ modified: 20211206114433294
4
+ tags: $:/tags/TiddlerColourFilter
5
+ title: $:/_tw5.com/CustomTiddlerColourCascadeDemo
6
+ type: text/vnd.tiddlywiki
7
+
8
+ [tag[TableOfContents]then[#1e90ff]]
9
+ [tag[Working with TiddlyWiki]then[darkorchid]]
@@ -0,0 +1,9 @@
1
+ created: 20211205195110592
2
+ list-before: $:/config/TiddlerIconFilters/default
3
+ modified: 20211205195217941
4
+ tags: $:/tags/TiddlerIconFilter
5
+ title: $:/_tw5.com/CustomTiddlerIconCascadeDemo
6
+ type: text/vnd.tiddlywiki
7
+
8
+ [tag[TableOfContents]then[$:/core/images/globe]]
9
+ [tag[Working with TiddlyWiki]then[$:/core/images/help]]
@@ -1,22 +1,11 @@
1
1
  created: 20140809113603449
2
- modified: 20150520161451179
2
+ modified: 20211022195248529
3
3
  tags: Learning
4
4
  title: ImageGallery Example
5
5
  type: text/vnd.tiddlywiki
6
6
 
7
- Here is an example of using the ListWidget and the TranscludeWidget to show a grid of all system images (ie, tiddlers tagged [[$:/tags/Image]]).
7
+ <<.warning "The [[ImageGallery Example]] has been replaced with the new [[Icon Gallery]] which is transcluded below">>
8
8
 
9
- <style>
10
- .my-gallery svg {
11
- width: 6em;
12
- height: 6em;
13
- margin: 1em;
14
- }
15
- </style>
16
- <div class="my-gallery">
17
- <$list filter="[all[tiddlers+shadows]tag[$:/tags/Image]]">
18
- <span title=<<currentTiddler>>>
19
- <$transclude/>
20
- </span>
21
- </$list>
22
- </div>
9
+ ---
10
+
11
+ {{Icon Gallery}}
@@ -1,6 +1,6 @@
1
1
  created: 20210222140234737
2
- modified: 20210520174049056
3
- tags: Learning
2
+ modified: 20211123034501278
3
+ tags: Learning KeyboardDrivenInput
4
4
  title: Demonstration: keyboard-driven-input Macro
5
5
  type: text/vnd.tiddlywiki
6
6
 
@@ -1,6 +1,7 @@
1
1
  created: 20210131043724146
2
2
  first-search-filter: [!is[system]search:title<userInput>sort[]]
3
- modified: 20210204012422020
4
- tags:
3
+ modified: 20211123034440629
4
+ tags: KeyboardDrivenInput
5
5
  title: kdi-demo-configtid
6
- type: text/vnd.tiddlywiki
6
+ type: text/vnd.tiddlywiki
7
+
@@ -1,5 +1,6 @@
1
1
  created: 20140912145543340
2
- modified: 20140912145610020
2
+ modified: 20211119192337845
3
+ tags: Demonstrations
3
4
  title: SampleNotification
4
5
  type: text/vnd.tiddlywiki
5
6
 
@@ -1,4 +1,6 @@
1
+ created: 20211117003509226
2
+ modified: 20211117003657902
3
+ tags: sampletag1 sampletag2 [[Widget Examples]]
1
4
  title: SampleTiddlerFirst
2
- tags: sampletag1 sampletag2
3
5
 
4
6
  This is a test tiddler called SampleTiddlerFirst.
@@ -1,4 +1,6 @@
1
+ created: 20211117003511221
2
+ modified: 20211117003724108
3
+ tags: sampletag1 sampletag2 [[Widget Examples]]
1
4
  title: SampleTiddlerSecond
2
- tags: sampletag1 sampletag2
3
5
 
4
6
  This test tiddler is called SampleTiddlerSecond.
@@ -1,4 +1,6 @@
1
+ created: 20211117003513463
2
+ modified: 20211117003749750
3
+ tags: sampletag1 sampletag2 [[Widget Examples]]
1
4
  title: SampleTiddlerThird
2
- tags: sampletag1 sampletag2
3
5
 
4
6
  This tiddler SampleTiddlerThird is the third test tiddler.
@@ -1,7 +1,8 @@
1
1
  created: 20140912145537860
2
2
  footer: <$button message="tm-close-tiddler">Close</$button>
3
- modified: 20210627054504823
3
+ modified: 20211119205125230
4
4
  subtitle: I'm a modal wizard
5
+ tags: Demonstrations
5
6
  title: SampleWizard
6
7
  type: text/vnd.tiddlywiki
7
8
 
@@ -1,7 +1,8 @@
1
1
  created: 20140912145532856
2
2
  footer: <$button message="tm-close-tiddler">Close</$button>
3
- modified: 20140912145532856
3
+ modified: 20211119205144340
4
4
  subtitle: I'm another modal wizard
5
+ tags: Demonstrations
5
6
  title: SampleWizard2
6
7
  type: text/vnd.tiddlywiki
7
8
 
@@ -1,6 +1,7 @@
1
1
  created: 20150221194324000
2
- modified: 20150221194606000
3
- title: Contents
4
2
  list: First Second Third Fourth
3
+ modified: 20211114013601186
4
+ tags: [[Table-of-Contents Demonstrations]]
5
+ title: Contents
5
6
 
6
7
  <<.toc-lorem>>
@@ -1,7 +1,7 @@
1
1
  created: 20150221194349000
2
- modified: 20150221194610000
3
- title: First
4
- tags: Contents
5
2
  list: FirstOne FirstTwo FirstThree
3
+ modified: 20211114013601187
4
+ tags: Contents [[Table-of-Contents Demonstrations]]
5
+ title: First
6
6
 
7
7
  <<.toc-lorem>>
@@ -1,6 +1,6 @@
1
1
  created: 20150221194354000
2
- modified: 20150221194613000
2
+ modified: 20211114013601187
3
+ tags: First [[Table-of-Contents Demonstrations]]
3
4
  title: FirstOne
4
- tags: First
5
5
 
6
6
  <<.toc-lorem>>
@@ -1,6 +1,6 @@
1
1
  created: 20150221194357000
2
- modified: 20150221194616000
2
+ modified: 20211114013601187
3
+ tags: First [[Table-of-Contents Demonstrations]]
3
4
  title: FirstThree
4
- tags: First
5
5
 
6
6
  <<.toc-lorem>>
@@ -1,6 +1,6 @@
1
1
  created: 20150221194401000
2
- modified: 20150221194619000
2
+ modified: 20211114013601187
3
+ tags: First [[Table-of-Contents Demonstrations]]
3
4
  title: FirstTwo
4
- tags: First
5
5
 
6
6
  <<.toc-lorem>>
@@ -1,6 +1,6 @@
1
1
  created: 20150221194405000
2
- modified: 20150221194622000
2
+ modified: 20211114013601188
3
+ tags: Contents [[Table-of-Contents Demonstrations]]
3
4
  title: Fourth
4
- tags: Contents
5
5
 
6
6
  <<.toc-lorem>>
@@ -1,6 +1,6 @@
1
1
  created: 20150221194408000
2
- modified: 20150221194624000
2
+ modified: 20211114013601190
3
+ tags: Contents [[Table-of-Contents Demonstrations]]
3
4
  title: Second
4
- tags: Contents
5
5
 
6
6
  <<.toc-lorem>>
@@ -1,6 +1,6 @@
1
1
  created: 20150221194412000
2
- modified: 20150221194627000
2
+ modified: 20211114013601188
3
+ tags: Second [[Table-of-Contents Demonstrations]]
3
4
  title: SecondOne
4
- tags: Second
5
5
 
6
6
  <<.toc-lorem>>
@@ -1,8 +1,8 @@
1
1
  created: 20150221194416000
2
- modified: 20150221194630000
3
- title: SecondThree
4
- tags: Second
5
2
  list: SecondThreeOne SecondThreeTwo SecondThreeThree
3
+ modified: 20211114013601189
4
+ tags: Second [[Table-of-Contents Demonstrations]]
5
+ title: SecondThree
6
6
  toc-link: no
7
7
 
8
8
  <<.toc-lorem>>
@@ -1,6 +1,6 @@
1
1
  created: 20150221194420000
2
- modified: 20150221194633000
2
+ modified: 20211114013601188
3
+ tags: SecondThree [[Table-of-Contents Demonstrations]]
3
4
  title: SecondThreeOne
4
- tags: SecondThree
5
5
 
6
6
  <<.toc-lorem>>
@@ -1,6 +1,6 @@
1
1
  created: 20150221194423000
2
- modified: 20150221194635000
2
+ modified: 20211114013601189
3
+ tags: SecondThree [[Table-of-Contents Demonstrations]]
3
4
  title: SecondThreeThree
4
- tags: SecondThree
5
5
 
6
6
  <<.toc-lorem>>
@@ -1,6 +1,6 @@
1
1
  created: 20150221194429000
2
- modified: 20150221194638000
2
+ modified: 20211114013601189
3
+ tags: SecondThree [[Table-of-Contents Demonstrations]]
3
4
  title: SecondThreeTwo
4
- tags: SecondThree
5
5
 
6
6
  <<.toc-lorem>>
@@ -1,6 +1,6 @@
1
1
  created: 20150221194433000
2
- modified: 20150221194643000
2
+ modified: 20211114013601190
3
+ tags: Second [[Table-of-Contents Demonstrations]]
3
4
  title: SecondTwo
4
- tags: Second
5
5
 
6
6
  <<.toc-lorem>>
@@ -1,7 +1,7 @@
1
1
  created: 20150221194436000
2
- modified: 20150221194646000
3
- title: Third
4
- tags: Contents
5
2
  list: ThirdOne ThirdTwo ThirdThree
3
+ modified: 20211114013601191
4
+ tags: Contents [[Table-of-Contents Demonstrations]]
5
+ title: Third
6
6
 
7
7
  <<.toc-lorem>>
@@ -1,6 +1,6 @@
1
1
  created: 20150221194440000
2
- modified: 20150221194649000
2
+ modified: 20211114013601190
3
+ tags: Third [[Table-of-Contents Demonstrations]]
3
4
  title: ThirdOne
4
- tags: Third
5
5
 
6
6
  <<.toc-lorem>>
@@ -1,6 +1,6 @@
1
1
  created: 20150221194446000
2
- modified: 20150221194652000
2
+ modified: 20211114013601190
3
+ tags: Third [[Table-of-Contents Demonstrations]]
3
4
  title: ThirdThree
4
- tags: Third
5
5
 
6
6
  <<.toc-lorem>>
@@ -1,6 +1,6 @@
1
1
  created: 20150221194453000
2
- modified: 20150221194655000
2
+ modified: 20211114013601191
3
+ tags: Third [[Table-of-Contents Demonstrations]]
3
4
  title: ThirdTwo
4
- tags: Third
5
5
 
6
6
  <<.toc-lorem>>
@@ -1,5 +1,6 @@
1
1
  created: 20150221230034000
2
+ modified: 20211116034929868
3
+ tags: [[tag Macro (Examples)]] [[Macro Examples]]
2
4
  title: Example for tag Macro
3
- tags: [[tag Macro (Examples)]]
4
5
 
5
6
  This tiddler exists to demonstrate the <<.mlink tag>> macro.
@@ -1,6 +1,6 @@
1
- created: 201308251430
2
- modified: 201308251430
3
- tags: task
1
+ created: 20130825143000000
2
+ modified: 20211115013141494
3
+ tags: task TaskManagementExample
4
4
  title: Compose ballad
5
5
 
6
6
  //This is a sample task for the TaskManagementExample//
@@ -1,6 +1,6 @@
1
- created: 201308251431
2
- modified: 201308251431
3
- tags: task
1
+ created: 20130825143100000
2
+ modified: 20211115013240401
3
+ tags: task TaskManagementExample
4
4
  title: Get the Ring
5
5
 
6
6
  //This is a sample task for the TaskManagementExample//
@@ -1,6 +1,6 @@
1
- created: 201308251431
2
- modified: 201308251431
3
- tags: task done
1
+ created: 20130825143100000
2
+ modified: 20211115181040966
3
+ tags: task done TaskManagementExample
4
4
  title: Go to Mordor
5
5
 
6
6
  //This is a sample task for the TaskManagementExample//
@@ -1,7 +1,7 @@
1
- created: 201308251431
2
- modified: 20150124131347000
3
- tags: task
4
- title: Kill the Dragon
1
+ created: 20130825143100000
5
2
  list-before: Get the Ring
3
+ modified: 20211115013217852
4
+ tags: task TaskManagementExample
5
+ title: Kill the Dragon
6
6
 
7
7
  //This is a sample task for the TaskManagementExample//
@@ -1,6 +1,6 @@
1
- created: 201308251431
2
- modified: 201308251431
3
- tags: task
1
+ created: 20130825143100000
2
+ modified: 20211115013200231
3
+ tags: task TaskManagementExample
4
4
  title: Make the beds
5
5
 
6
6
  //This is a sample task for the TaskManagementExample//
@@ -1,5 +1,7 @@
1
1
  color: #2dbe37
2
+ created: 20211115013354157
2
3
  icon: $:/core/images/done-button
3
- modified: 201307051027
4
+ modified: 20211115013357660
5
+ tags: TaskManagementExample
4
6
  title: done
5
7
 
@@ -1,7 +1,8 @@
1
1
  color: #8d9ac3
2
- created: 201308252132
2
+ created: 20130825213200000
3
3
  list: [[Make the beds]]
4
- modified: 201606011653
4
+ modified: 20211115013121643
5
+ tags: TaskManagementExample
5
6
  title: task
6
7
 
7
8
  //This tag identifies the tasks for the TaskManagementExample//
@@ -1,10 +1,11 @@
1
1
  created: 20150117192110000
2
- modified: 20150123214636000
3
- title: Days of the Week
4
- type: text/vnd.tiddlywiki
5
2
  list: Monday Tuesday Wednesday Thursday Friday Saturday Sunday
6
- short: Mon Tue Wed Thu Fri Sat Sun
3
+ modified: 20211116221246915
7
4
  my-special-list: [[listed Operator (Examples)]]
5
+ short: Mon Tue Wed Thu Fri Sat Sun
6
+ tags: [[Operator Examples]]
7
+ title: Days of the Week
8
+ type: text/vnd.tiddlywiki
8
9
 
9
10
  <<.this-is-operator-example>>
10
11
 
@@ -1,5 +1,6 @@
1
1
  created: 20150117192111000
2
- modified: 20150118131534000
2
+ modified: 20211116221111294
3
+ tags: [[Operator Examples]]
3
4
  title: Friday
4
5
  type: text/vnd.tiddlywiki
5
6
 
@@ -1,5 +1,6 @@
1
1
  created: 20150117192113000
2
- modified: 20150118131645000
2
+ modified: 20211116221111294
3
+ tags: [[Operator Examples]]
3
4
  title: Monday
4
5
  type: text/vnd.tiddlywiki
5
6
 
@@ -1,5 +1,6 @@
1
- created: 20151620490000000
2
- modified: 20150118131537000
1
+ created: 20150422010000000
2
+ modified: 20211116221111294
3
+ tags: [[Operator Examples]]
3
4
  title: Saturday
4
5
  type: text/vnd.tiddlywiki
5
6
 
@@ -1,5 +1,6 @@
1
1
  created: 20150117192115000
2
- modified: 20150118131539000
2
+ modified: 20211116220736572
3
+ tags: [[Operator Examples]]
3
4
  title: Sunday
4
5
  type: text/vnd.tiddlywiki
5
6
 
@@ -1,5 +1,6 @@
1
1
  created: 20150117192116000
2
- modified: 20150124204253000
2
+ modified: 20211116221111295
3
+ tags: [[Operator Examples]]
3
4
  title: Thursday
4
5
  type: text/vnd.tiddlywiki
5
6
 
@@ -1,5 +1,6 @@
1
1
  created: 20150117192118000
2
- modified: 20150118131558000
2
+ modified: 20211116221111295
3
+ tags: [[Operator Examples]]
3
4
  title: Tuesday
4
5
  type: text/vnd.tiddlywiki
5
6
 
@@ -1,5 +1,6 @@
1
1
  created: 20150117192119000
2
- modified: 20150118131707000
2
+ modified: 20211116221111295
3
+ tags: [[Operator Examples]]
3
4
  title: Wednesday
4
5
  type: text/vnd.tiddlywiki
5
6
 
@@ -1,3 +1,6 @@
1
+ created: 20211117214646420
2
+ modified: 20211117214650773
3
+ tags: [[Widget Examples]]
1
4
  title: sampletag1
2
5
 
3
6
  This is `sampletag1`.
@@ -1,3 +1,6 @@
1
+ created: 20211117214707647
2
+ modified: 20211117214716137
3
+ tags: [[Widget Examples]]
1
4
  title: sampletag2
2
5
 
3
6
  This is `sampletag2`.
@@ -4,7 +4,13 @@ tags: Features
4
4
  title: DateFormat
5
5
  type: text/vnd.tiddlywiki
6
6
 
7
- When used to display date values (with the `format` attribute set to ''date''), the ViewWidget accepts a `template` attribute that allows the format of the date values to be specified. The format string is processed with the following substitutions:
7
+ The default representation of dates is a compact string such as `20211002153802059`. For example, the `created` and `modified` fields are stored like this.
8
+
9
+ The display format for this string can be controlled with a template. For example, transcluding the `modified` field automatically applies a template to display the date as `Sat Oct 02 2021 17:40:50 GMT+0200 (Central European Summer Time)`. A few widgets and filter operators allow you to manually specify a template, for example the ViewWidget:
10
+
11
+ `<$view field=modified format=date template=“DDth mmm YYYY 0hh:0mm:0ss” />`
12
+
13
+ The date string is processed with the following substitutions:
8
14
 
9
15
  |!Token |!Substituted Value |
10
16
  |`ddddd` |<<.from-version "5.2.0">> Day of year (1 to 365, or 366 for leap years) |
@@ -1,5 +1,5 @@
1
1
  created: 20140206214608586
2
- modified: 20180701185417525
2
+ modified: 20211009145417525
3
3
  tags: Features
4
4
  title: LazyLoading
5
5
  type: text/vnd.tiddlywiki
@@ -11,7 +11,7 @@ Lazy loading can be used in two configurations:
11
11
  * When running [[TiddlyWiki on Node.js]], just image tiddlers or all non-system tiddlers can be subject to lazy loading
12
12
  * When running [[TiddlyWiki in the Sky for TiddlyWeb]], all tiddlers are subject to lazy loading
13
13
 
14
- See the LazyLoadingMechanism for details of how lazy loading is implemented.
14
+ See the [[Lazy Loading Mechanism|https://tiddlywiki.com/dev/#LazyLoadingMechanism]] for details of how lazy loading is implemented.
15
15
 
16
16
  ! Lazy loading under Node.js
17
17
 
@@ -28,4 +28,3 @@ To apply lazy loading to all non-system tiddlers use this command:
28
28
  ```
29
29
  tiddlywiki --listen root-tiddler=$:/core/save/lazy-all
30
30
  ```
31
-
@@ -1,7 +1,9 @@
1
1
  created: 20130822173400000
2
- modified: 20140912145800365
2
+ modified: 20211124215615812
3
3
  tags: Features
4
4
  title: Scalability
5
5
  type: text/vnd.tiddlywiki
6
6
 
7
- You might expect that TiddlyWiki's architecture as a SinglePageApplication would make it unsuitable for large amounts of data. In fact, TiddlyWiki users regularly work with files that are 20 or 30 megabytes without problems - and successful experiments have been done up into the gigabytes.
7
+ You might expect that TiddlyWiki's architecture as a SinglePageApplication would make it unsuitable for large amounts of data. In fact, TiddlyWiki users regularly work with files that are tens or even over a hundred megabytes without problems - and successful experiments have been done up into the gigabytes.
8
+
9
+ See [[performance tips|Performance]] for large wikis.