tiddlywiki 5.2.3 → 5.2.4

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 (396) hide show
  1. package/bin/build-site.sh +11 -2
  2. package/bin/test.sh +1 -0
  3. package/boot/boot.js +9 -6
  4. package/core/images/layout-button.tid +4 -0
  5. package/core/images/mastodon.tid +6 -0
  6. package/core/language/en-GB/Buttons.multids +4 -0
  7. package/core/language/en-GB/ControlPanel.multids +3 -3
  8. package/core/language/en-GB/Fields.multids +2 -2
  9. package/core/language/en-GB/GettingStarted.tid +4 -3
  10. package/core/language/en-GB/Help/commands.tid +18 -0
  11. package/core/language/en-GB/Misc.multids +1 -0
  12. package/core/modules/commands/commands.js +42 -0
  13. package/core/modules/editor/engines/framed.js +12 -1
  14. package/core/modules/editor/factory.js +2 -2
  15. package/core/modules/filters/format/json.js +35 -0
  16. package/core/modules/filters/is/variable.js +2 -2
  17. package/core/modules/filters/json-ops.js +186 -0
  18. package/core/modules/filters/variables.js +9 -3
  19. package/core/modules/filters.js +15 -6
  20. package/core/modules/keyboard.js +13 -1
  21. package/core/modules/parsers/csvparser.js +25 -17
  22. package/core/modules/parsers/wikiparser/rules/macrodef.js +1 -1
  23. package/core/modules/parsers/wikiparser/rules/parsermode.js +68 -0
  24. package/core/modules/parsers/wikiparser/rules/styleinline.js +3 -3
  25. package/core/modules/parsers/wikiparser/wikiparser.js +4 -2
  26. package/core/modules/server/routes/put-tiddler.js +10 -0
  27. package/core/modules/startup/startup.js +5 -1
  28. package/core/modules/utils/csv.js +101 -23
  29. package/core/modules/utils/dom/dom.js +17 -2
  30. package/core/modules/utils/dom/modal.js +6 -0
  31. package/core/modules/utils/dom/popup.js +69 -6
  32. package/core/modules/utils/fakedom.js +2 -2
  33. package/core/modules/utils/linked-list.js +79 -75
  34. package/core/modules/utils/logger.js +3 -1
  35. package/core/modules/utils/parsetree.js +20 -10
  36. package/core/modules/utils/utils.js +3 -0
  37. package/core/modules/widgets/action-deletefield.js +2 -2
  38. package/core/modules/widgets/action-popup.js +10 -8
  39. package/core/modules/widgets/button.js +7 -2
  40. package/core/modules/widgets/checkbox.js +12 -5
  41. package/core/modules/widgets/error.js +63 -0
  42. package/core/modules/widgets/genesis.js +108 -0
  43. package/core/modules/widgets/importvariables.js +4 -1
  44. package/core/modules/widgets/keyboard.js +4 -0
  45. package/core/modules/widgets/let.js +3 -5
  46. package/core/modules/widgets/reveal.js +11 -10
  47. package/core/modules/widgets/select.js +9 -0
  48. package/core/modules/widgets/transclude.js +3 -5
  49. package/core/modules/widgets/widget.js +44 -18
  50. package/core/palettes/Blanca.tid +2 -0
  51. package/core/palettes/Blue.tid +2 -0
  52. package/core/palettes/BrightMute.tid +2 -0
  53. package/core/palettes/ContrastDark.tid +2 -0
  54. package/core/palettes/ContrastLight.tid +2 -0
  55. package/core/palettes/CupertinoDark.tid +2 -0
  56. package/core/palettes/DarkPhotos.tid +2 -0
  57. package/core/palettes/DesertSand.tid +2 -0
  58. package/core/palettes/GruvBoxDark.tid +2 -0
  59. package/core/palettes/Nord.tid +2 -0
  60. package/core/palettes/Rocker.tid +2 -0
  61. package/core/palettes/SolarFlare.tid +2 -0
  62. package/core/palettes/SolarizedDark.tid +2 -0
  63. package/core/palettes/SolarizedLight.tid +2 -0
  64. package/core/palettes/SpartanDay.tid +2 -0
  65. package/core/palettes/SpartanNight.tid +2 -0
  66. package/core/palettes/Twilight.tid +2 -0
  67. package/core/palettes/Vanilla.tid +2 -0
  68. package/core/templates/external-js/save-all-external-js.tid +4 -2
  69. package/core/templates/external-js/save-offline-external-js.tid +4 -2
  70. package/core/templates/single.tiddler.window.tid +1 -1
  71. package/core/ui/Actions/new-image.tid +1 -7
  72. package/core/ui/AdvancedSearch/FilterButtons/delete.tid +3 -3
  73. package/core/ui/AdvancedSearch/FilterButtons/dropdown.tid +2 -2
  74. package/core/ui/ControlPanel/Basics/retain-story-ordering-button.tid +3 -0
  75. package/core/ui/ControlPanel/Basics.tid +3 -2
  76. package/core/ui/EditTemplate/Preview/output.tid +1 -1
  77. package/core/ui/EditTemplate/body/default.tid +1 -1
  78. package/core/ui/EditTemplate/fields.tid +12 -2
  79. package/core/ui/EditTemplate.tid +7 -2
  80. package/core/ui/ImportListing.tid +5 -5
  81. package/core/ui/KeyboardShortcuts/advanced-search.tid +1 -1
  82. package/core/ui/PageControls/layout.tid +15 -0
  83. package/core/ui/PageTemplate.tid +1 -4
  84. package/core/ui/SideBar/More.tid +2 -2
  85. package/core/ui/SwitcherModal.tid +1 -0
  86. package/core/ui/TagManager.tid +75 -63
  87. package/core/ui/ViewTemplate/unfold.tid +6 -2
  88. package/core/ui/ViewTemplate.tid +1 -1
  89. package/core/wiki/config/DefaultTiddlersRetainStory.tid +3 -0
  90. package/core/wiki/config/OfficialPluginLibrary.tid +1 -1
  91. package/core/wiki/config/PageControlButtons.multids +1 -0
  92. package/core/wiki/macros/list.tid +7 -7
  93. package/core/wiki/macros/timeline.tid +6 -9
  94. package/core/wiki/macros/toc.tid +12 -8
  95. package/core/wiki/tags/PageControls.tid +1 -1
  96. package/editions/de-AT/tiddlywiki.info +0 -1
  97. package/editions/de-AT-server/tiddlywiki.info +0 -1
  98. package/editions/de-DE/tiddlywiki.info +0 -1
  99. package/editions/dev/tiddlers/HelloThere.tid +2 -1
  100. package/editions/dev/tiddlers/How to run a local plugin library for testing.tid +42 -0
  101. package/editions/dev/tiddlers/javascript-widget-tutorial/Child widgets tutorial.tid +140 -0
  102. package/editions/dev/tiddlers/javascript-widget-tutorial/Do nothing widget demo.tid +22 -0
  103. package/editions/dev/tiddlers/javascript-widget-tutorial/Do nothing widget tutorial.tid +25 -0
  104. package/editions/dev/tiddlers/javascript-widget-tutorial/Hello World demo.tid +23 -0
  105. package/editions/dev/tiddlers/javascript-widget-tutorial/Hello World widget tutorial.tid +18 -0
  106. package/editions/dev/tiddlers/javascript-widget-tutorial/Javascript Widget Tutorial.tid +37 -0
  107. package/editions/dev/tiddlers/javascript-widget-tutorial/Undefined widget demo.tid +18 -0
  108. package/editions/dev/tiddlers/javascript-widget-tutorial/Undefined widget tutorial.tid +11 -0
  109. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget attributes demo I.tid +48 -0
  110. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget attributes demo II.tid +48 -0
  111. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget attributes tutorial part I.tid +50 -0
  112. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget attributes tutorial part II.tid +33 -0
  113. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget refresh demo I.tid +44 -0
  114. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget refresh demo II.tid +40 -0
  115. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget refresh demo III.tid +50 -0
  116. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget refresh tutorial part I.tid +47 -0
  117. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget refresh tutorial part II.tid +37 -0
  118. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget refresh tutorial part III.tid +26 -0
  119. package/editions/dev/tiddlers/javascript-widget-tutorial/domwidget.js +47 -0
  120. package/editions/dev/tiddlers/javascript-widget-tutorial/domwidget.js.meta +6 -0
  121. package/editions/dev/tiddlers/javascript-widget-tutorial/donothing.js +16 -0
  122. package/editions/dev/tiddlers/javascript-widget-tutorial/donothing.js.meta +6 -0
  123. package/editions/dev/tiddlers/javascript-widget-tutorial/hello-attribute-optimized.js +51 -0
  124. package/editions/dev/tiddlers/javascript-widget-tutorial/hello-attribute-optimized.js.meta +6 -0
  125. package/editions/dev/tiddlers/javascript-widget-tutorial/hello-attribute.js +47 -0
  126. package/editions/dev/tiddlers/javascript-widget-tutorial/hello-attribute.js.meta +6 -0
  127. package/editions/dev/tiddlers/javascript-widget-tutorial/hello.js +35 -0
  128. package/editions/dev/tiddlers/javascript-widget-tutorial/hello.js.meta +6 -0
  129. package/editions/dev/tiddlers/javascript-widget-tutorial/refreshcount.js +43 -0
  130. package/editions/dev/tiddlers/javascript-widget-tutorial/refreshcount.js.meta +6 -0
  131. package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield-norefresh.js +36 -0
  132. package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield-norefresh.js.meta +6 -0
  133. package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield.js +46 -0
  134. package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield.js.meta +6 -0
  135. package/editions/dev/tiddlywiki.info +2 -1
  136. package/editions/fr-FR/tiddlers/$__editions_tw5.com_doc-macros.tid +1 -1
  137. package/editions/fr-FR/tiddlers/system/$__core_macros_list.tid +113 -0
  138. package/editions/fr-FR/tiddlers/system/$__core_macros_tag.tid +39 -0
  139. package/editions/fr-FR/tiddlers/system/$__core_ui_TagPickerTagTemplate.tid +25 -0
  140. package/editions/full/tiddlywiki.info +0 -1
  141. package/editions/introduction/tiddlywiki.info +0 -1
  142. package/editions/pluginlibrary/tiddlers/GettingStarted.tid +45 -0
  143. package/editions/pluginlibrary/tiddlers/PrereleaseLocalPluginLibrary.tid +6 -0
  144. package/editions/pluginlibrary/tiddlers/meta/SiteSubtitle.tid +3 -0
  145. package/editions/pluginlibrary/tiddlers/meta/SiteTitle.tid +3 -0
  146. package/editions/pluginlibrary/tiddlers/system/$__themes_tiddlywiki_vanilla_options_sidebarlayout.tid +3 -0
  147. package/editions/pluginlibrary/tiddlywiki.info +7 -0
  148. package/editions/prerelease/tiddlers/{Release 5.2.4.tid → Release 5.2.5.tid } +8 -17
  149. package/editions/prerelease/tiddlers/system/PrereleaseOfficialPluginLibrary.tid +1 -1
  150. package/editions/prerelease/tiddlers/system/TiddlyWiki Pre-release.tid +5 -1
  151. package/editions/test/tiddlers/tests/data/csv-cases.tid +282 -0
  152. package/editions/test/tiddlers/tests/data/filters/Recursion.tid +15 -0
  153. package/editions/test/tiddlers/tests/data/filters/fake-variables.tid +27 -0
  154. package/editions/test/tiddlers/tests/data/genesis-widget/DollarSigns.tid +14 -0
  155. package/editions/test/tiddlers/tests/data/genesis-widget/MultipleAttributes.tid +14 -0
  156. package/editions/test/tiddlers/tests/data/genesis-widget/Simple.tid +14 -0
  157. package/editions/test/tiddlers/tests/data/macros/NestedMacros.tid +36 -0
  158. package/editions/test/tiddlers/tests/data/pragmas/Parsermode.tid +36 -0
  159. package/editions/test/tiddlers/tests/data/transclude/Recursion.tid +13 -0
  160. package/editions/test/tiddlers/tests/modules/utils/test-csv.js +33 -0
  161. package/editions/test/tiddlers/tests/test-checkbox-widget.js +35 -1
  162. package/editions/test/tiddlers/tests/test-json-filters.js +112 -0
  163. package/editions/test/tiddlers/tests/test-linked-list.js +42 -2
  164. package/editions/test/tiddlers/tests/test-popup.js +63 -0
  165. package/editions/test/tiddlers/tests/test-utils.js +1 -0
  166. package/editions/test/tiddlers/tests/test-wikitext.js +16 -0
  167. package/editions/test/tiddlywiki.info +2 -1
  168. package/editions/translators/tiddlers/system/PageControlButtonsVisibility.multids +1 -0
  169. package/editions/translators/tiddlywiki.info +0 -1
  170. package/editions/tw.org/tiddlers/Code of Conduct.tid +4 -1
  171. package/editions/tw.org/tiddlers/Fundraising.tid +2 -2
  172. package/editions/tw5.com/tiddlers/Tables in WikiText CSS Utility Classes.tid +81 -0
  173. package/editions/tw5.com/tiddlers/_tw_shared/favicons/markplace.png +0 -0
  174. package/editions/tw5.com/tiddlers/_tw_shared/favicons/markplace.png.meta +3 -0
  175. package/editions/tw5.com/tiddlers/_tw_shared/sites/marketplace.tid +6 -0
  176. package/editions/tw5.com/tiddlers/_tw_shared/tags-TiddlyWikiSites.tid +1 -1
  177. package/editions/tw5.com/tiddlers/about/Funding TiddlyWiki.tid +19 -0
  178. package/editions/tw5.com/tiddlers/about/Open Collective.tid +14 -0
  179. package/editions/tw5.com/tiddlers/commands/CommandsCommand.tid +8 -0
  180. package/editions/tw5.com/tiddlers/commands/RenderTiddlerCommand.tid +2 -0
  181. package/editions/tw5.com/tiddlers/commands/RenderTiddlersCommand.tid +2 -0
  182. package/editions/tw5.com/tiddlers/commands/SaveTiddlerCommand.tid +2 -0
  183. package/editions/tw5.com/tiddlers/commands/SaveTiddlersCommand.tid +2 -0
  184. package/editions/tw5.com/tiddlers/community/plugins/GSD5.tid +2 -2
  185. package/editions/tw5.com/tiddlers/community/plugins/_JD Mobile Layout plugin_ by JD.tid +0 -1
  186. package/editions/tw5.com/tiddlers/community/resources/_Dropboard_ by Reid Gould.tid +0 -1
  187. package/editions/tw5.com/tiddlers/community/resources/_Hacks_ by Thomas Elmiger.tid +0 -2
  188. package/editions/tw5.com/tiddlers/community/resources/_MathCell_ by Ste Wilson.tid +0 -1
  189. package/editions/tw5.com/tiddlers/community/resources/_TiddlyServer_ by Matt Lauber.tid +0 -1
  190. package/editions/tw5.com/tiddlers/community/resources/_X3DOM for TiddlyWiki 5_ by Jamal Wills.tid +0 -1
  191. package/editions/tw5.com/tiddlers/concepts/CoordinateSystems.tid +42 -0
  192. package/editions/tw5.com/tiddlers/concepts/KeyboardShortcutTiddler.tid +2 -0
  193. package/editions/tw5.com/tiddlers/definitions/Federatial.tid +13 -1
  194. package/editions/tw5.com/tiddlers/definitions/HTML Block Elements.tid +9 -0
  195. package/editions/tw5.com/tiddlers/definitions/TiddlyWikiClassic.tid +3 -1
  196. package/editions/tw5.com/tiddlers/demonstrations/TableOfContentsMacro Selective Expandable Example custom icons.tid +16 -0
  197. package/editions/tw5.com/tiddlers/demonstrations/Tasks/TaskManagementExampleDraggable.tid +1 -1
  198. package/editions/tw5.com/tiddlers/features/DateFormat.tid +27 -3
  199. package/editions/tw5.com/tiddlers/features/JSON in TiddlyWiki.tid +1 -1
  200. package/editions/tw5.com/tiddlers/features/Modals.tid +3 -0
  201. package/editions/tw5.com/tiddlers/filters/examples/format Operator (Examples).tid +5 -2
  202. package/editions/tw5.com/tiddlers/filters/format.tid +5 -4
  203. package/editions/tw5.com/tiddlers/filters/jsonextract.tid +66 -0
  204. package/editions/tw5.com/tiddlers/filters/jsonget.tid +93 -0
  205. package/editions/tw5.com/tiddlers/filters/jsonindexes.tid +65 -0
  206. package/editions/tw5.com/tiddlers/filters/jsontype.tid +74 -0
  207. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted.tid +3 -7
  208. package/editions/tw5.com/tiddlers/hellothere/HelloThere.tid +23 -22
  209. package/editions/tw5.com/tiddlers/hellothere/HelloThumbnail.tid +1 -1
  210. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Funding.tid +10 -0
  211. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Grok TiddlyWiki.tid +2 -0
  212. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Introduction Video.tid +2 -0
  213. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Latest Version.tid +9 -1
  214. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Marketplace.tid +10 -0
  215. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyWikiLinks.tid +3 -1
  216. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail_-_Federatial.tid +11 -0
  217. package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting Default Story Ordering.tid +4 -0
  218. package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting Sync System Tiddlers From Server.tid +13 -0
  219. package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting SyncLogging.tid +13 -0
  220. package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting_ More Tabs Horizontal.tid +7 -0
  221. package/editions/tw5.com/tiddlers/howtos/How to create keyboard shortcuts.tid +2 -0
  222. package/editions/tw5.com/tiddlers/howtos/Reading data from JSON tiddlers.tid +10 -1
  223. package/editions/tw5.com/tiddlers/images/Federatial.png +0 -0
  224. package/editions/tw5.com/tiddlers/images/Federatial.png.meta +3 -0
  225. package/editions/tw5.com/tiddlers/images/Funding.png +0 -0
  226. package/editions/tw5.com/tiddlers/images/{TiddlyMap.png.meta → Funding.png.meta} +1 -1
  227. package/editions/tw5.com/tiddlers/images/Marketplace Banner.png +0 -0
  228. package/editions/tw5.com/tiddlers/images/Marketplace Banner.png.meta +3 -0
  229. package/editions/tw5.com/tiddlers/images/New Release Banner.png +0 -0
  230. package/editions/tw5.com/tiddlers/macros/ListMacro.tid +3 -1
  231. package/editions/tw5.com/tiddlers/macros/TableOfContentsMacro.tid +36 -2
  232. package/editions/tw5.com/tiddlers/marketplace/TiddlyWiki Marketplace.tid +18 -0
  233. package/editions/tw5.com/tiddlers/mechanisms/PopupMechanism.tid +1 -0
  234. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-modal.tid +4 -2
  235. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-new-tiddler.tid +1 -1
  236. package/editions/tw5.com/tiddlers/nodejs/Installing TiddlyWiki on Node.js.tid +2 -2
  237. package/editions/tw5.com/tiddlers/pragmas/Pragma_ _parsermode.tid +17 -0
  238. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.4.tid +140 -0
  239. package/editions/tw5.com/tiddlers/releasenotes/Releases.tid +1 -1
  240. package/editions/tw5.com/tiddlers/saving/Emergency Tiddler Export.tid +1 -1
  241. package/editions/tw5.com/tiddlers/saving/Saving on TiddlyHost.tid +1 -1
  242. package/editions/tw5.com/tiddlers/saving/Saving on TiddlySpot.tid +0 -1
  243. package/editions/tw5.com/tiddlers/saving/Saving with Polly.tid +1 -0
  244. package/editions/tw5.com/tiddlers/saving/Saving.tid +12 -5
  245. package/editions/tw5.com/tiddlers/saving/TiddlyBucket - Save to AWS or Google Storage.tid +15 -0
  246. package/editions/tw5.com/tiddlers/system/doc-macros.tid +1 -1
  247. package/editions/tw5.com/tiddlers/system/tw5.com-card-template.tid +1 -16
  248. package/editions/tw5.com/tiddlers/system/tw5.com-styles.tid +168 -40
  249. package/editions/tw5.com/tiddlers/system/version-macros.tid +3 -4
  250. package/editions/tw5.com/tiddlers/system/wikitext-macros.tid +43 -15
  251. package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ClassFilters_PageTemplate.tid +9 -0
  252. package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ClassFilters_TiddlerTemplate.tid +9 -0
  253. package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_Filter.tid +2 -2
  254. package/editions/tw5.com/tiddlers/testimonials/Testimonials - Joe Armstrong.tid +8 -0
  255. package/editions/tw5.com/tiddlers/testimonials/Testimonials - Network World.tid +8 -0
  256. package/editions/tw5.com/tiddlers/testimonials/Testimonials - Product Hunt.tid +6 -0
  257. package/editions/tw5.com/tiddlers/webserver/Using the external JavaScript template.tid +10 -10
  258. package/editions/tw5.com/tiddlers/webserver/WebServer API_ Get All Tiddlers.tid +3 -1
  259. package/editions/tw5.com/tiddlers/widgets/ActionPopupWidget.tid +4 -3
  260. package/editions/tw5.com/tiddlers/widgets/ButtonWidget.tid +2 -1
  261. package/editions/tw5.com/tiddlers/widgets/DraggableWidget.tid +2 -1
  262. package/editions/tw5.com/tiddlers/widgets/ErrorWidget.tid +17 -0
  263. package/editions/tw5.com/tiddlers/widgets/EventCatcherWidget.tid +4 -3
  264. package/editions/tw5.com/tiddlers/widgets/GenesisWidget.tid +41 -0
  265. package/editions/tw5.com/tiddlers/widgets/LetWidget.tid +4 -1
  266. package/editions/tw5.com/tiddlers/widgets/ScrollableWidget.tid +1 -1
  267. package/editions/tw5.com/tiddlers/widgets/SelectWidget.tid +1 -0
  268. package/editions/tw5.com/tiddlers/wikitext/Macro Definitions in WikiText.tid +27 -4
  269. package/editions/tw5.com/tiddlers/wikitext/Styles and Classes in WikiText.tid +1 -1
  270. package/editions/tw5.com/tiddlers/wikitext/Table Classes Captions Headers and Footers.tid +20 -0
  271. package/editions/tw5.com/tiddlers/wikitext/Tables in WikiText.tid +3 -13
  272. package/editions/tw5.com/tiddlers/wikitext/Utility Classes.tid +20 -0
  273. package/editions/tw5.com/tiddlers/wikitext/parser/WikiText Parser Modes.tid +1 -1
  274. package/editions/twitter-archivist/tiddlers/DefaultTiddlers.tid +4 -0
  275. package/editions/twitter-archivist/tiddlers/HelloThere.tid +9 -0
  276. package/editions/twitter-archivist/tiddlers/SiteSubtitle.tid +3 -0
  277. package/editions/twitter-archivist/tiddlers/SiteTitle.tid +3 -0
  278. package/editions/twitter-archivist/tiddlywiki.info +16 -0
  279. package/languages/ar-PS/ControlPanel.multids +1 -1
  280. package/languages/ca-ES/ControlPanel.multids +1 -1
  281. package/languages/cs-CZ/ControlPanel.multids +1 -1
  282. package/languages/da-DK/ControlPanel.multids +1 -1
  283. package/languages/de-DE/Buttons.multids +5 -1
  284. package/languages/de-DE/ControlPanel.multids +1 -1
  285. package/languages/de-DE/Help/commands.tid +14 -0
  286. package/languages/de-DE/Misc.multids +1 -0
  287. package/languages/el-GR/ControlPanel.multids +1 -1
  288. package/languages/es-ES/Buttons.multids +89 -87
  289. package/languages/es-ES/ControlPanel.multids +18 -1
  290. package/languages/es-ES/Docs/PaletteColours.multids +2 -2
  291. package/languages/es-ES/EditTemplate.multids +3 -0
  292. package/languages/es-ES/Fields.multids +4 -3
  293. package/languages/es-ES/GettingStarted.tid +4 -3
  294. package/languages/es-ES/Help/default.tid +4 -1
  295. package/languages/es-ES/Help/listen.tid +0 -1
  296. package/languages/es-ES/Help/render.tid +2 -2
  297. package/languages/es-ES/Import.multids +1 -1
  298. package/languages/es-ES/Misc.multids +2 -1
  299. package/languages/es-ES/SideBar.multids +1 -0
  300. package/languages/es-ES/Snippets/ListByTag.tid +1 -1
  301. package/languages/fa-IR/ControlPanel.multids +1 -1
  302. package/languages/fr-FR/Buttons.multids +2 -0
  303. package/languages/fr-FR/ControlPanel.multids +4 -4
  304. package/languages/fr-FR/Misc.multids +3 -2
  305. package/languages/hi-IN/ControlPanel.multids +1 -1
  306. package/languages/ia-IA/ControlPanel.multids +1 -1
  307. package/languages/it-IT/ControlPanel.multids +1 -1
  308. package/languages/ja-JP/ControlPanel.multids +9 -9
  309. package/languages/ko-KR/ControlPanel.multids +1 -1
  310. package/languages/nl-NL/ControlPanel.multids +1 -1
  311. package/languages/pl-PL/Buttons.multids +7 -3
  312. package/languages/pl-PL/ControlPanel.multids +26 -24
  313. package/languages/pl-PL/GettingStarted.tid +4 -3
  314. package/languages/pl-PL/Help/commands.tid +18 -0
  315. package/languages/pl-PL/Help/render.tid +2 -2
  316. package/languages/pl-PL/Misc.multids +1 -0
  317. package/languages/pl-PL/ThemeTweaks.multids +3 -3
  318. package/languages/pt-BR/ControlPanel.multids +1 -1
  319. package/languages/pt-PT/ControlPanel.multids +1 -1
  320. package/languages/ru-RU/ControlPanel.multids +1 -1
  321. package/languages/sk-SK/ControlPanel.multids +1 -1
  322. package/languages/sl-SI/ControlPanel.multids +1 -1
  323. package/languages/sv-SE/ControlPanel.multids +1 -1
  324. package/languages/zh-Hans/Buttons.multids +36 -32
  325. package/languages/zh-Hans/ControlPanel.multids +19 -19
  326. package/languages/zh-Hans/CoreReadMe.tid +1 -1
  327. package/languages/zh-Hans/Docs/ModuleTypes.multids +2 -2
  328. package/languages/zh-Hans/Docs/PaletteColours.multids +8 -8
  329. package/languages/zh-Hans/Fields.multids +7 -7
  330. package/languages/zh-Hans/Filters.multids +1 -1
  331. package/languages/zh-Hans/GettingStarted.tid +8 -6
  332. package/languages/zh-Hans/Help/commands.tid +18 -0
  333. package/languages/zh-Hans/Help/fetch.tid +6 -6
  334. package/languages/zh-Hans/Help/init.tid +1 -1
  335. package/languages/zh-Hans/Help/listen.tid +5 -5
  336. package/languages/zh-Hans/Help/makelibrary.tid +1 -1
  337. package/languages/zh-Hans/Help/savetiddlers.tid +1 -1
  338. package/languages/zh-Hans/Help/server.tid +6 -6
  339. package/languages/zh-Hans/Help/setfield.tid +3 -3
  340. package/languages/zh-Hans/Import.multids +1 -1
  341. package/languages/zh-Hans/Misc.multids +12 -11
  342. package/languages/zh-Hans/Search.multids +6 -6
  343. package/languages/zh-Hans/SiteSubtitle.tid +1 -1
  344. package/languages/zh-Hans/Snippets/ListByTag.tid +1 -1
  345. package/languages/zh-Hans/ThemeTweaks.multids +7 -7
  346. package/languages/zh-Hans/TiddlerInfo.multids +2 -2
  347. package/languages/zh-Hant/Buttons.multids +4 -0
  348. package/languages/zh-Hant/ControlPanel.multids +2 -2
  349. package/languages/zh-Hant/Fields.multids +2 -2
  350. package/languages/zh-Hant/GettingStarted.tid +4 -3
  351. package/languages/zh-Hant/Help/commands.tid +18 -0
  352. package/languages/zh-Hant/Misc.multids +1 -0
  353. package/licenses/cla-individual.md +4 -0
  354. package/package.json +1 -1
  355. package/plugins/tiddlywiki/codemirror/engine.js +4 -0
  356. package/plugins/tiddlywiki/dynannotate/docs/readme.tid +2 -2
  357. package/plugins/tiddlywiki/dynannotate/modules/dynannotate.js +4 -2
  358. package/plugins/tiddlywiki/help/tabs/Support.tid +6 -2
  359. package/plugins/tiddlywiki/jasmine/command.js +33 -0
  360. package/plugins/tiddlywiki/jasmine/help.tid +24 -0
  361. package/plugins/tiddlywiki/jasmine/jasmine-plugin.js +24 -18
  362. package/plugins/tiddlywiki/jasmine/readme.tid +31 -1
  363. package/plugins/tiddlywiki/jasmine/run-wiki-based-tests.js +93 -0
  364. package/plugins/tiddlywiki/jasmine/startup.js +37 -0
  365. package/plugins/tiddlywiki/translators/macros/translatableStringEditor.tid +6 -0
  366. package/plugins/tiddlywiki/translators/system/styles.tid +5 -0
  367. package/plugins/tiddlywiki/twitter-archivist/Twitter Archives.tid +5 -0
  368. package/plugins/tiddlywiki/twitter-archivist/archivist.js +319 -0
  369. package/plugins/tiddlywiki/twitter-archivist/configTiddlerInfoMode.tid +2 -0
  370. package/plugins/tiddlywiki/twitter-archivist/loadtwitterarchive.js +53 -0
  371. package/plugins/tiddlywiki/twitter-archivist/macros.tid +222 -0
  372. package/plugins/tiddlywiki/twitter-archivist/plugin.info +6 -0
  373. package/plugins/tiddlywiki/twitter-archivist/readme.tid +33 -0
  374. package/plugins/tiddlywiki/twitter-archivist/spec.tid +62 -0
  375. package/plugins/tiddlywiki/twitter-archivist/startup.js +38 -0
  376. package/plugins/tiddlywiki/twitter-archivist/styles.tid +47 -0
  377. package/plugins/tiddlywiki/twitter-archivist/template-archive.tid +3 -0
  378. package/plugins/tiddlywiki/twitter-archivist/template-hashtag.tid +3 -0
  379. package/plugins/tiddlywiki/twitter-archivist/template-tweet.tid +3 -0
  380. package/plugins/tiddlywiki/twitter-archivist/template-tweeter.tid +3 -0
  381. package/plugins/tiddlywiki/twitter-archivist/todo.tid +15 -0
  382. package/plugins/tiddlywiki/twitter-archivist/usage.tid +18 -0
  383. package/plugins/tiddlywiki/twitter-archivist/view-template-body-cascade.tid +8 -0
  384. package/plugins/tiddlywiki/upgrade/UpgradeWizard.tid +3 -3
  385. package/readme.md +1 -1
  386. package/themes/tiddlywiki/vanilla/base.tid +131 -10
  387. package/editions/fr-FR/tiddlers/$__core_ui_TagTemplate.tid +0 -33
  388. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Classic.tid +0 -6
  389. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Developers.tid +0 -7
  390. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Gentle Guide.tid +0 -11
  391. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - HelpingTiddlyWiki.tid +0 -7
  392. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TWEUM2017.tid +0 -8
  393. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyMap.tid +0 -6
  394. package/editions/tw5.com/tiddlers/images/Dev Thumbnail.jpg +0 -0
  395. package/editions/tw5.com/tiddlers/images/Dev Thumbnail.jpg.meta +0 -3
  396. package/editions/tw5.com/tiddlers/images/TiddlyMap.png +0 -0
@@ -0,0 +1,33 @@
1
+ title: $:/plugins/tiddlywiki/twitter-archivist/readme
2
+
3
+ ! Introduction
4
+
5
+ The Twitter Archivist imports the tweets and associated media from a [[Twitter Archive|https://help.twitter.com/en/managing-your-account/how-to-download-your-twitter-archive]] as individual tiddlers.
6
+
7
+ The first step is to request your Tweet archive from Twitter. Once it is available, download file compressed file and unzip it.
8
+
9
+ ! Installation
10
+
11
+ For browser-based wikis, drag and drop this link to install the Twitter Archivist plugin in your own wikis (note that a reload will be required after installing the plugin and saving the wiki):
12
+
13
+ {{$:/plugins/tiddlywiki/twitter-archivist||$:/core/ui/Components/plugin-info}}
14
+
15
+ For Node.js-based wikis, add `tiddlywiki/twitter-archivist` to the `plugin` section of `tiddlywiki.info`:
16
+
17
+ ```
18
+ ...
19
+ "plugins": [
20
+ "tiddlywiki/twitter-archivist"
21
+ ],
22
+ ...
23
+ ```
24
+
25
+ ! Limitations of Twitter Archives
26
+
27
+ The Twitter Archive format itself has many shortcomings which affect this tool:
28
+
29
+ * Retweets come through as old-school RTs, which means that they are often truncated
30
+ * Likes only have minimal information, lacking date, author and mentions
31
+ * Twitter archives can be delivered in multiple parts, but this tool has only been tested with single archives. It is hoped that cumulatively importing each of the archives in turn should work
32
+
33
+ A future version of this tool may use the Twitter API to get around these restrictions.
@@ -0,0 +1,62 @@
1
+ title: $:/plugins/tiddlywiki/twitter-archivist/spec
2
+
3
+ ! Twitter Archivist Data Model
4
+
5
+ The Twitter Archivist imports the following tiddlers:
6
+
7
+ * A single tiddler tagged <<tag "$:/tags/TwitterArchive">> containing details about the archive
8
+ * Tweets/favourites represented by tiddlers tagged <<tag "$:/tags/Tweet">>
9
+ * Twitter users represented by tiddlers tagged <<tag "$:/tags/Tweeter">>
10
+ * Tweet images/videos represented by tiddlers tagged <<tag "$:/tags/TweetMedia">>
11
+
12
+ !! Twitter Archive Tiddler Fields
13
+
14
+ |!Field |!Description |
15
+ |''account_created_date'' |Date of account creation (in TiddlyWiki format) |
16
+ |''bio'' |Account biography |
17
+ |''displayname'' |Account displayname |
18
+ |''generation_date'' |Date of archive generation (in TiddlyWiki format) |
19
+ |''location'' |Account location |
20
+ |''tags'' |`$:/tags/TwitterArchive` |
21
+ |''title'' |Formed from `Twitter Archive for @` concatenated with the account username |
22
+ |''user_id'' |Unique numeric identifier for account |
23
+ |''username'' |Account username |
24
+ |''website'' |Account website |
25
+
26
+ !! Tweet Tiddler Fields
27
+
28
+ |!Field |!Description |
29
+ |''created'' |Tweet creation date (in TiddlyWiki format) |
30
+ |''favorite_count'' |Number of favourites received by this tweet |
31
+ |''mention_user_ids'' |Optional list of user IDs mentioned in the tweet |
32
+ |''modified'' |Tweet creation date (in TiddlyWiki format) |
33
+ |''retweet_count'' |Number of retweets received by this tweet |
34
+ |''status_id'' |Unique numeric identifier for tweet |
35
+ |''tags'' |`$:/tags/Tweet` along with the titles of any tweeters mentioned in the tweet |
36
+ |''text'' |The text of the tweet (see below) |
37
+ |''title'' |Formed from `Tweet - ` concatenated with the tweet ID |
38
+ |''user_id'' |Unique numeric identifier for tweeter of this tweet |
39
+
40
+ The text of the tweet includes the following changes:
41
+
42
+ * The pragma `\rules only html entity extlink` is prepended to restrict the parse rules recognised within the text
43
+ * Mentions are linked to the associated tweeter tiddler
44
+ * Line breaks are replaced by `<br/>`
45
+
46
+ !! Tweeter Tiddler Fields
47
+
48
+ |!Field |!Description |
49
+ |''name'' |Account displayname |
50
+ |''screenname'' |Account screenname (including the @) |
51
+ |''tags'' |`$:/tags/Tweeter` |
52
+ |''title'' |Formed from `Tweeter - ` concatenated with the account ID |
53
+ |''user_id'' |Unique numeric identifier for account |
54
+
55
+ !! Tweet Media Fields
56
+
57
+ |!Field |!Description |
58
+ |''status_id'' |Identifier of tweet associated with this media item |
59
+ |''tags'' |`$:/tags/TweetMedia` |
60
+ |''text'' |The body of the media item |
61
+ |''title'' |Formed from `Tweet Media - ` concatenated with the ID of the associated tweet and a further unique identifier |
62
+ |''type'' |`image/jpg`, `image/png` or `video/mp4` |
@@ -0,0 +1,38 @@
1
+ /*\
2
+ title: $:/plugins/tiddlywiki/twitter-archivist/startup.js
3
+ type: application/javascript
4
+ module-type: startup
5
+
6
+ Twitter initialisation
7
+
8
+ \*/
9
+ (function(){
10
+
11
+ /*jslint node: true, browser: true */
12
+ /*global $tw: false */
13
+ "use strict";
14
+
15
+ // Export name and synchronous status
16
+ exports.name = "twitter-archivist";
17
+ exports.after = ["startup"];
18
+ exports.synchronous = true;
19
+
20
+ exports.startup = function() {
21
+ $tw.rootWidget.addEventListener("tm-load-twitter-archive",function(event) {
22
+ // Load tweets
23
+ var archiveSource = new $tw.utils.TwitterArchivistSourceBrowser({
24
+ }),
25
+ archivist = new $tw.utils.TwitterArchivist({
26
+ source: archiveSource
27
+ });
28
+ archivist.loadArchive({
29
+ wiki: $tw.wiki
30
+ }).then(function() {
31
+ alert("Archived tweets imported");
32
+ }).catch(function(err) {
33
+ alert("Error importing archived tweets: " + err);
34
+ });
35
+ });
36
+ };
37
+
38
+ })();
@@ -0,0 +1,47 @@
1
+ title: $:/plugins/tiddlywiki/twitter-archivist/styles
2
+ tags: [[$:/tags/Stylesheet]]
3
+ code-body: yes
4
+
5
+ \rules only filteredtranscludeinline transcludeinline macrodef macrocallinline macrocallblock
6
+
7
+ .tc-twitter-tweet {
8
+ border: 1px solid <<colour muted-foreground>>;
9
+ border-radius: 8px;
10
+ margin: 1em 0;
11
+ padding: 1em;
12
+ }
13
+
14
+ .tc-twitter-tweet-reply {
15
+ font-size: 0.7em;
16
+ }
17
+
18
+ .tc-twitter-tweet-reply .tc-twitter-tweet {
19
+ margin: 0.5em 0 0.5em 1em;
20
+ padding: 0.5em;
21
+ }
22
+
23
+ .tc-twitter-tweet-header-displayname {
24
+ font-weight: bold;
25
+ }
26
+
27
+ .tc-twitter-tweet-header-username,
28
+ .tc-twitter-tweet-header-date {
29
+ color: #536471;
30
+ }
31
+
32
+ .tc-twitter-tweet-reply-to {
33
+ font-size: 0.7em;
34
+ }
35
+
36
+ .tc-twitter-tweet-body {
37
+ margin: 0.25em 0;
38
+ line-height: 1.3;
39
+ }
40
+
41
+ .tc-twitter-tweet-reply .tc-twitter-tweet-body {
42
+ margin: 0.5em 0;
43
+ }
44
+
45
+ .tc-twitter-tweet-footer {
46
+ font-size: 0.8em;
47
+ }
@@ -0,0 +1,3 @@
1
+ title: $:/plugins/tiddlywiki/twitter-archivist/template/archive
2
+
3
+ <<show-archive>>
@@ -0,0 +1,3 @@
1
+ title: $:/plugins/tiddlywiki/twitter-archivist/template/hashtag
2
+
3
+ <<show-hashtag>>
@@ -0,0 +1,3 @@
1
+ title: $:/plugins/tiddlywiki/twitter-archivist/template/tweet
2
+
3
+ <<show-tweet-thread>>
@@ -0,0 +1,3 @@
1
+ title: $:/plugins/tiddlywiki/twitter-archivist/template/tweeter
2
+
3
+ <<show-tweeter>>
@@ -0,0 +1,15 @@
1
+ title: $:/plugins/tiddlywiki/twitter-archivist/todo
2
+
3
+ !! Done
4
+
5
+ * Fixed display of tweet account information
6
+ * Data model documentation
7
+ * Expand t.co URLs
8
+ * Wikify hashtags
9
+
10
+ !! To Do
11
+
12
+ * Import direct messages
13
+ * Control over which media types are imported
14
+ * `_canonical_uri` support for media
15
+ * Handle editable tweets
@@ -0,0 +1,18 @@
1
+ title: $:/plugins/tiddlywiki/twitter-archivist/usage
2
+
3
+ ! In the Browser
4
+
5
+ To import a Twitter archive in the browser (currently Chrome only), click the button below and navigate to the root of the archive:
6
+
7
+ <$button>
8
+ <$action-sendmessage $message="tm-load-twitter-archive"/>
9
+ Open Twitter archive
10
+ </$button>
11
+
12
+ ! Under Node.js
13
+
14
+ To import a Twitter archive under Node.js, use the `--loadtwitterarchive` command:
15
+
16
+ ```
17
+ tiddlywiki editions/twitter-archivist/ --loadtwitterarchive '/path/to/archive' --build index
18
+ ```
@@ -0,0 +1,8 @@
1
+ title: $:/plugins/tiddlywiki/twitter-archivist/view-template-body-cascade
2
+ tags: $:/tags/ViewTemplateBodyFilter
3
+ list-before:
4
+
5
+ [tag[$:/tags/Tweet]then[$:/plugins/tiddlywiki/twitter-archivist/template/tweet]]
6
+ [tag[$:/tags/TwitterArchive]then[$:/plugins/tiddlywiki/twitter-archivist/template/archive]]
7
+ [tag[$:/tags/Tweeter]then[$:/plugins/tiddlywiki/twitter-archivist/template/tweeter]]
8
+ [tag[$:/tags/Hashtag]then[$:/plugins/tiddlywiki/twitter-archivist/template/hashtag]]
@@ -6,7 +6,9 @@ tags: $:/tags/AboveStory
6
6
 
7
7
  <div class="tc-upgrade-wizard">
8
8
 
9
- ! ~TiddlyWiki Upgrade Wizard
9
+ ! Upgrade Wizard
10
+
11
+ !! ~TiddlyWiki version <<version>>
10
12
 
11
13
  <$list filter="[[$:/Import]is[missing]]">
12
14
 
@@ -48,8 +50,6 @@ For help and support, visit [[the TiddlyWiki discussion forum|http://groups.goog
48
50
 
49
51
  </div>
50
52
 
51
- version <<version>>
52
-
53
53
  //Your data will not leave your browser. <a href="#" download="upgrade.html">Download</a> this upgrader to use it offline//
54
54
 
55
55
  //If clicking the link doesn't work, right-click the link and save it that way.//
package/readme.md CHANGED
@@ -1,7 +1,7 @@
1
1
  <p>Welcome to <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a>, a non-linear personal web notebook that anyone can use and keep forever, independently of any corporation.</p><p><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> is a complete interactive wiki in <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/JavaScript.html">JavaScript</a>. It can be used as a single HTML file in the browser or as a powerful Node.js application. It is highly customisable: the entire user interface is itself implemented in hackable <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/WikiText.html">WikiText</a>.</p><p>Learn more and see it in action at <a class="tc-tiddlylink-external" href="https://tiddlywiki.com/" rel="noopener noreferrer" target="_blank">https://tiddlywiki.com/</a></p><p>Developer documentation is in progress at <a class="tc-tiddlylink-external" href="https://tiddlywiki.com/dev/" rel="noopener noreferrer" target="_blank">https://tiddlywiki.com/dev/</a></p><h1 class="">Join the Community</h1><p>
2
2
  <h2 class="">Official Forums</h2><p>The new official forum for talking about TiddlyWiki: requests for help, announcements of new releases and plugins, debating new features, or just sharing experiences. You can participate via the associated website, or subscribe via email.</p><p><a class="tc-tiddlylink-external" href="https://talk.tiddlywiki.org/" rel="noopener noreferrer" target="_blank">https://talk.tiddlywiki.org/</a></p><p>Note that talk.tiddlywiki.org is a community run service that we host and maintain ourselves. The modest running costs are covered by community contributions.</p><p>For the convenience of existing users, we also continue to operate the original TiddlyWiki group (hosted on Google Groups since 2005):</p><p><a class="tc-tiddlylink-external" href="https://groups.google.com/group/TiddlyWiki" rel="noopener noreferrer" target="_blank">https://groups.google.com/group/TiddlyWiki</a></p><h2 class="">Developer Forums</h2><p>There are several resources for developers to learn more about <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> and to discuss and contribute to its development.</p><ul><li><a class="tc-tiddlylink-external" href="https://tiddlywiki.com/dev" rel="noopener noreferrer" target="_blank">tiddlywiki.com/dev</a> is the official developer documentation</li><li>Get involved in the <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5" rel="noopener noreferrer" target="_blank">development on GitHub</a><ul><li><a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/discussions" rel="noopener noreferrer" target="_blank">Discussions</a> are for Q&amp;A and open-ended discussion</li><li><a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/issues" rel="noopener noreferrer" target="_blank">Issues</a> are for raising bug reports and proposing specific, actionable new ideas</li></ul></li><li>The older TiddlyWikiDev Google Group is now closed in favour of <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/discussions" rel="noopener noreferrer" target="_blank">GitHub Discussions</a> but remains a useful archive: <a class="tc-tiddlylink-external" href="https://groups.google.com/group/TiddlyWikiDev" rel="noopener noreferrer" target="_blank">https://groups.google.com/group/TiddlyWikiDev</a><ul><li>An enhanced group search facility is available on <a class="tc-tiddlylink-external" href="https://www.mail-archive.com/tiddlywikidev@googlegroups.com/" rel="noopener noreferrer" target="_blank">mail-archive.com</a></li></ul></li><li>Follow <a class="tc-tiddlylink-external" href="http://twitter.com/#!/TiddlyWiki" rel="noopener noreferrer" target="_blank">@TiddlyWiki on Twitter</a> for the latest news</li><li>Chat at <a class="tc-tiddlylink-external" href="https://gitter.im/TiddlyWiki/public" rel="noopener noreferrer" target="_blank">https://gitter.im/TiddlyWiki/public</a> (development room coming soon)</li></ul><h2 class="">Other Forums</h2><ul><li><a class="tc-tiddlylink-external" href="https://www.reddit.com/r/TiddlyWiki5/" rel="noopener noreferrer" target="_blank">TiddlyWiki Subreddit</a></li><li>Chat with Gitter at <a class="tc-tiddlylink-external" href="https://gitter.im/TiddlyWiki/public" rel="noopener noreferrer" target="_blank">https://gitter.im/TiddlyWiki/public</a> !</li><li>Chat on Discord at <a class="tc-tiddlylink-external" href="https://discord.gg/HFFZVQ8" rel="noopener noreferrer" target="_blank">https://discord.gg/HFFZVQ8</a></li></ul><h3 class="">Documentation</h3><p>There is also a discussion group specifically for discussing <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> documentation improvement initiatives: <a class="tc-tiddlylink-external" href="https://groups.google.com/group/tiddlywikidocs" rel="noopener noreferrer" target="_blank">https://groups.google.com/group/tiddlywikidocs</a>
3
3
  </p>
4
- </p><h1 class="">Installing <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> on Node.js</h1><ol><li>Install <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Node.js.html">Node.js</a><ul><li>Linux: <blockquote><div><em>Debian/Ubuntu</em>:<br><code>apt install nodejs</code><br>May need to be followed up by:<br><code>apt install npm</code></div><div><em>Arch Linux</em><br><code>pacman -S tiddlywiki</code> <br>(installs node and tiddlywiki)</div></blockquote></li><li>Mac<blockquote><div><code>brew install node</code></div></blockquote></li><li>Android<blockquote><div><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Serving%2520TW5%2520from%2520Android.html">Termux for Android</a></div></blockquote></li><li>Other <blockquote><div>See <a class="tc-tiddlylink-external" href="http://nodejs.org" rel="noopener noreferrer" target="_blank">http://nodejs.org</a></div></blockquote></li></ul></li><li>Open a command line terminal and type:<blockquote><div><code>npm install -g tiddlywiki</code></div><div>If it fails with an error you may need to re-run the command as an administrator:</div><div><code>sudo npm install -g tiddlywiki</code> (Mac/Linux)</div></blockquote></li><li>Ensure TiddlyWiki is installed by typing:<blockquote><div><code>tiddlywiki --version</code></div></blockquote><ul><li>In response, you should see <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> report its current version (eg "5.2.3". You may also see other debugging information reported.)</li></ul></li><li>Try it out:<ol><li><code>tiddlywiki mynewwiki --init server</code> to create a folder for a new wiki that includes server-related components</li><li><code>tiddlywiki mynewwiki --listen</code> to start <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a></li><li>Visit <a class="tc-tiddlylink-external" href="http://127.0.0.1:8080/" rel="noopener noreferrer" target="_blank">http://127.0.0.1:8080/</a> in your browser</li><li>Try editing and creating tiddlers</li></ol></li><li>Optionally, make an offline copy:<ul><li>click the <span class="doc-icon"><svg class="tc-image-save-button tc-image-button" height="22pt" viewBox="0 0 128 128" width="22pt"><path d="M120.783 34.33c4.641 8.862 7.266 18.948 7.266 29.646 0 35.347-28.653 64-64 64-35.346 0-64-28.653-64-64 0-35.346 28.654-64 64-64 18.808 0 35.72 8.113 47.43 21.03l2.68-2.68c3.13-3.13 8.197-3.132 11.321-.008 3.118 3.118 3.121 8.193-.007 11.32l-4.69 4.691zm-12.058 12.058a47.876 47.876 0 013.324 17.588c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48c14.39 0 27.3 6.332 36.098 16.362L58.941 73.544 41.976 56.578c-3.127-3.127-8.201-3.123-11.32-.005-3.123 3.124-3.119 8.194.006 11.319l22.617 22.617a7.992 7.992 0 005.659 2.347c2.05 0 4.101-.783 5.667-2.349l44.12-44.12z" fill-rule="evenodd"></path></svg></span> <strong>save changes</strong> button in the sidebar, <strong>OR</strong></li><li><code>tiddlywiki mynewwiki --build index</code></li></ul></li></ol><p>The <code>-g</code> flag causes <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> to be installed globally. Without it, <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> will only be available in the directory where you installed it.</p><p><div class="doc-icon-block"><div class="doc-block-icon"><svg class="tc-image-warning tc-image-button" height="22pt" viewBox="0 0 128 128" width="22pt"><path d="M57.072 11c3.079-5.333 10.777-5.333 13.856 0l55.426 96c3.079 5.333-.77 12-6.928 12H8.574c-6.158 0-10.007-6.667-6.928-12l55.426-96zM64 37c-4.418 0-8 3.582-8 7.994v28.012C56 77.421 59.59 81 64 81c4.418 0 8-3.582 8-7.994V44.994C72 40.579 68.41 37 64 37zm0 67a8 8 0 100-16 8 8 0 000 16z" fill-rule="evenodd"></path></svg></div> If you are using Debian or Debian-based Linux and you are receiving a <code>node: command not found</code> error though node.js package is installed, you may need to create a symbolic link between <code>nodejs</code> and <code>node</code>. Consult your distro's manual and <code>whereis</code> to correctly create a link. See github <a class="tc-tiddlylink-external" href="http://github.com/Jermolene/TiddlyWiki5/issues/1434" rel="noopener noreferrer" target="_blank">issue 1434</a>. <br><br>Example Debian v8.0: <code>sudo ln -s /usr/bin/nodejs /usr/bin/node</code></div></p><p><br>
4
+ </p><h1 class="">Installing <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> on Node.js</h1><ol><li>Install <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Node.js.html">Node.js</a><ul><li>Linux: <blockquote><div><em>Debian/Ubuntu</em>:<br><code>apt install nodejs</code><br>May need to be followed up by:<br><code>apt install npm</code></div><div><em>Arch Linux</em><br><code>yay -S tiddlywiki</code> <br>(installs node and tiddlywiki)</div></blockquote></li><li>Mac<blockquote><div><code>brew install node</code></div></blockquote></li><li>Android<blockquote><div><a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Serving%2520TW5%2520from%2520Android.html">Termux for Android</a></div></blockquote></li><li>Other <blockquote><div>See <a class="tc-tiddlylink-external" href="http://nodejs.org" rel="noopener noreferrer" target="_blank">http://nodejs.org</a></div></blockquote></li></ul></li><li>Open a command line terminal and type:<blockquote><div><code>npm install -g tiddlywiki</code></div><div>If it fails with an error you may need to re-run the command as an administrator:</div><div><code>sudo npm install -g tiddlywiki</code> (Mac/Linux)</div></blockquote></li><li>Ensure TiddlyWiki is installed by typing:<blockquote><div><code>tiddlywiki --version</code></div></blockquote><ul><li>In response, you should see <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> report its current version (eg "5.2.4". You may also see other debugging information reported.)</li></ul></li><li>Try it out:<ol><li><code>tiddlywiki mynewwiki --init server</code> to create a folder for a new wiki that includes server-related components</li><li><code>tiddlywiki mynewwiki --listen</code> to start <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a></li><li>Visit <a class="tc-tiddlylink-external" href="http://127.0.0.1:8080/" rel="noopener noreferrer" target="_blank">http://127.0.0.1:8080/</a> in your browser</li><li>Try editing and creating tiddlers</li></ol></li><li>Optionally, make an offline copy:<ul><li>click the <span class="doc-icon"><svg class="tc-image-save-button tc-image-button" height="22pt" viewBox="0 0 128 128" width="22pt"><path d="M120.783 34.33c4.641 8.862 7.266 18.948 7.266 29.646 0 35.347-28.653 64-64 64-35.346 0-64-28.653-64-64 0-35.346 28.654-64 64-64 18.808 0 35.72 8.113 47.43 21.03l2.68-2.68c3.13-3.13 8.197-3.132 11.321-.008 3.118 3.118 3.121 8.193-.007 11.32l-4.69 4.691zm-12.058 12.058a47.876 47.876 0 013.324 17.588c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48c14.39 0 27.3 6.332 36.098 16.362L58.941 73.544 41.976 56.578c-3.127-3.127-8.201-3.123-11.32-.005-3.123 3.124-3.119 8.194.006 11.319l22.617 22.617a7.992 7.992 0 005.659 2.347c2.05 0 4.101-.783 5.667-2.349l44.12-44.12z" fill-rule="evenodd"></path></svg></span> <strong>save changes</strong> button in the sidebar, <strong>OR</strong></li><li><code>tiddlywiki mynewwiki --build index</code></li></ul></li></ol><p>The <code>-g</code> flag causes <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> to be installed globally. Without it, <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> will only be available in the directory where you installed it.</p><p><div class="doc-icon-block"><div class="doc-block-icon"><svg class="tc-image-warning tc-image-button" height="22pt" viewBox="0 0 128 128" width="22pt"><path d="M57.072 11c3.079-5.333 10.777-5.333 13.856 0l55.426 96c3.079 5.333-.77 12-6.928 12H8.574c-6.158 0-10.007-6.667-6.928-12l55.426-96zM64 37c-4.418 0-8 3.582-8 7.994v28.012C56 77.421 59.59 81 64 81c4.418 0 8-3.582 8-7.994V44.994C72 40.579 68.41 37 64 37zm0 67a8 8 0 100-16 8 8 0 000 16z" fill-rule="evenodd"></path></svg></div> If you are using Debian or Debian-based Linux and you are receiving a <code>node: command not found</code> error though node.js package is installed, you may need to create a symbolic link between <code>nodejs</code> and <code>node</code>. Consult your distro's manual and <code>whereis</code> to correctly create a link. See github <a class="tc-tiddlylink-external" href="http://github.com/Jermolene/TiddlyWiki5/issues/1434" rel="noopener noreferrer" target="_blank">issue 1434</a>. <br><br>Example Debian v8.0: <code>sudo ln -s /usr/bin/nodejs /usr/bin/node</code></div></p><p><br>
5
5
  <div class="doc-icon-block"><div class="doc-block-icon"><svg class="tc-image-tip tc-image-button" height="22pt" viewBox="0 0 128 128" width="22pt"><path d="M64 128.242c35.346 0 64-28.654 64-64 0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64 0 35.346 28.654 64 64 64zm11.936-36.789c-.624 4.129-5.73 7.349-11.936 7.349-6.206 0-11.312-3.22-11.936-7.349C54.33 94.05 58.824 95.82 64 95.82c5.175 0 9.67-1.769 11.936-4.366zm0 4.492c-.624 4.13-5.73 7.349-11.936 7.349-6.206 0-11.312-3.22-11.936-7.349 2.266 2.597 6.76 4.366 11.936 4.366 5.175 0 9.67-1.769 11.936-4.366zm0 4.456c-.624 4.129-5.73 7.349-11.936 7.349-6.206 0-11.312-3.22-11.936-7.349 2.266 2.597 6.76 4.366 11.936 4.366 5.175 0 9.67-1.769 11.936-4.366zm0 4.492c-.624 4.13-5.73 7.349-11.936 7.349-6.206 0-11.312-3.22-11.936-7.349 2.266 2.597 6.76 4.366 11.936 4.366 5.175 0 9.67-1.769 11.936-4.366zM64.3 24.242c11.618 0 23.699 7.82 23.699 24.2S75.92 71.754 75.92 83.576c0 5.873-5.868 9.26-11.92 9.26s-12.027-3.006-12.027-9.26C51.973 71.147 40 65.47 40 48.442s12.683-24.2 24.301-24.2z" fill-rule="evenodd"></path></svg></div> You can also install prior versions like this: <br><code> npm install -g tiddlywiki@5.1.13</code></div>
6
6
  </p><h1 class="">Using <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> on Node.js</h1><p>TiddlyWiki5 includes a set of commands for use on the command line to perform an extensive set of operations based on <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWikiFolders.html">TiddlyWikiFolders</a>, <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlerFiles.html">TiddlerFiles</a>.</p><p>For example, the following command loads the tiddlers from a TiddlyWiki HTML file and then saves one of them in static HTML:</p><pre><code>tiddlywiki --verbose --load mywiki.html --rendertiddler ReadMe ./readme.html</code></pre><p>Running <code>tiddlywiki</code> from the command line boots the TiddlyWiki kernel, loads the core plugins and establishes an empty wiki store. It then sequentially processes the command line arguments from left to right. The arguments are separated with spaces.</p><p><a class="tc-tiddlylink tc-tiddlylink-resolves doc-from-version" href="https://tiddlywiki.com/static/Release%25205.1.20.html"><svg class="tc-image-warning tc-image-button" height="22pt" viewBox="0 0 128 128" width="22pt"><path d="M57.072 11c3.079-5.333 10.777-5.333 13.856 0l55.426 96c3.079 5.333-.77 12-6.928 12H8.574c-6.158 0-10.007-6.667-6.928-12l55.426-96zM64 37c-4.418 0-8 3.582-8 7.994v28.012C56 77.421 59.59 81 64 81c4.418 0 8-3.582 8-7.994V44.994C72 40.579 68.41 37 64 37zm0 67a8 8 0 100-16 8 8 0 000 16z" fill-rule="evenodd"></path></svg> New in: 5.1.20</a> First, there can be zero or more plugin references identified by the prefix <code>+</code> for plugin names or <code>++</code> for a path to a plugin folder. These plugins are loaded in addition to any specified in the <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWikiFolders.html">TiddlyWikiFolder</a>.</p><p>The next argument is the optional path to the <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWikiFolders.html">TiddlyWikiFolder</a> to be loaded. If not present, then the current directory is used.</p><p>The commands and their individual arguments follow, each command being identified by the prefix <code>--</code>.</p><pre><code>tiddlywiki [+&lt;pluginname&gt; | ++&lt;pluginpath&gt;] [&lt;wikipath&gt;] [--&lt;command&gt; [&lt;arg&gt;[,&lt;arg&gt;]]]</code></pre><p>For example:</p><pre><code>tiddlywiki --version
7
7
  tiddlywiki +plugins/tiddlywiki/filesystem +plugins/tiddlywiki/tiddlyweb mywiki --listen
@@ -30,6 +30,10 @@ background-size:` {{$:/themes/tiddlywiki/vanilla/settings/backgroundimagesize}}`
30
30
  <$text text={{{ [{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}removesuffix[px]subtract[1]addsuffix[px]] ~[{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}] }}}/>
31
31
  \end
32
32
 
33
+ \define tiddler-width()
34
+ <$text text={{$:/themes/tiddlywiki/vanilla/metrics/tiddlerwidth}}/>
35
+ \end
36
+
33
37
  \define if-fluid-fixed(text,hiddenSidebarText)
34
38
  <$reveal state="$:/themes/tiddlywiki/vanilla/options/sidebarlayout" type="match" text="fluid-fixed">
35
39
  $text$
@@ -76,16 +80,17 @@ $else$
76
80
  -webkit-box-sizing: border-box;
77
81
  }
78
82
 
79
- input[type="search"] {
80
- outline-offset: initial;
81
- }
82
-
83
+ /*
84
+ ** Button default styles. Makes them look consistent for all browsers
85
+ */
83
86
  html button {
84
87
  line-height: 1.2;
85
88
  color: <<colour button-foreground>>;
86
89
  fill: <<colour button-foreground>>;
87
90
  background: <<colour button-background>>;
88
- border-color: <<colour button-border>>;
91
+ border: 1px solid <<colour button-border>>;
92
+ border-radius: 3px;
93
+ padding: 2px 5px;
89
94
  }
90
95
 
91
96
  button:disabled svg {
@@ -143,7 +148,7 @@ pre {
143
148
  display: block;
144
149
  margin-top: 1em;
145
150
  margin-bottom: 1em;
146
- word-break: normal;
151
+ word-break: break-word;
147
152
  word-wrap: break-word;
148
153
  white-space: {{$:/themes/tiddlywiki/vanilla/options/codewrapping}};
149
154
  background-color: <<colour pre-background>>;
@@ -221,8 +226,19 @@ dl dt {
221
226
  margin-top: 6px;
222
227
  }
223
228
 
224
- button, textarea, input, select {
225
- outline-color: <<colour primary>>;
229
+ /*
230
+ ** Definition for text input elements so they look consistent for all browsers
231
+ */
232
+
233
+ textarea, input, select {
234
+ border: 2px solid <<colour tiddler-editor-border>>;
235
+ background-color: <<colour tiddler-editor-background>>;
236
+ }
237
+
238
+ /* Input elements accessibility -- overwrite the reset */
239
+ :focus-visible {
240
+ outline: 2px solid <<colour primary>>;
241
+ outline-offset: -2px; /* same as in reset.css [type='search'] but for more elements */
226
242
  }
227
243
 
228
244
  textarea,
@@ -231,7 +247,6 @@ input[type=search],
231
247
  input[type=""],
232
248
  input:not([type]) {
233
249
  color: <<colour foreground>>;
234
- background: <<colour background>>;
235
250
  }
236
251
 
237
252
  input[type="checkbox"] {
@@ -279,6 +294,11 @@ kbd {
279
294
  color: <<colour selection-foreground>>;
280
295
  }
281
296
 
297
+ .tc-inline-style {
298
+ background: <<colour highlight-background>>;
299
+ color: <<colour highlight-foreground>>;
300
+ }
301
+
282
302
  form.tc-form-inline {
283
303
  display: inline;
284
304
  }
@@ -293,6 +313,10 @@ pre > code {
293
313
  color: inherit;
294
314
  }
295
315
 
316
+ /*
317
+ Table defaults
318
+ */
319
+
296
320
  table {
297
321
  border: 1px solid <<colour table-border>>;
298
322
  width: auto;
@@ -306,7 +330,7 @@ table {
306
330
  }
307
331
 
308
332
  table th, table td {
309
- padding: 0 7px 0 7px;
333
+ padding: 4px 6px 4px 6px;
310
334
  border-top: 1px solid <<colour table-border>>;
311
335
  border-left: 1px solid <<colour table-border>>;
312
336
  }
@@ -320,10 +344,70 @@ table tfoot tr td {
320
344
  background-color: <<colour table-footer-background>>;
321
345
  }
322
346
 
347
+ /*
348
+ Table utility classes
349
+ */
350
+
351
+ /* Remove borders from table as used in eg: GettingStarted*/
352
+ .tc-table-no-border,
353
+ .tc-table-no-border th,
354
+ .tc-table-no-border td {
355
+ border: initial;
356
+ }
357
+
358
+ /* First column in table width will fit to text.*/
359
+ /* This rule makes most sense with tc-first-link-nowrap*/
360
+ .tc-first-col-min-width td:nth-child(1) {
361
+ width: 1%;
362
+ }
363
+
364
+ /*
365
+ ** Utility classes work well with tables but also for other containers
366
+ */
367
+
368
+ /* First link A element will not wrap */
369
+ .tc-first-link-nowrap:first-of-type a {
370
+ white-space: nowrap;
371
+ }
372
+
373
+ /* Move the table to the center of the container */
374
+ .tc-center {
375
+ margin-left: auto;
376
+ margin-right: auto;
377
+ }
378
+
379
+ .tc-max-width {
380
+ width: 100%;
381
+ }
382
+
383
+ .tc-max-width-80 {
384
+ max-width: 80%;
385
+ }
386
+
387
+ /* Allow input and textarea to look like the ControlPanel inputs */
388
+ .tc-edit-max-width input,
389
+ .tc-edit-max-width textarea {
390
+ width: 100%;
391
+ padding: 3px;
392
+ }
393
+
394
+ /*
395
+ CSV parser plugin
396
+ */
397
+
323
398
  .tc-csv-table {
324
399
  white-space: nowrap;
325
400
  }
326
401
 
402
+ .tc-csv-table th,
403
+ .tc-csv-table td {
404
+ white-space: pre-line;
405
+ }
406
+
407
+ /*
408
+ Tiddler frame in story river
409
+ */
410
+
327
411
  .tc-tiddler-frame img,
328
412
  .tc-tiddler-frame svg,
329
413
  .tc-tiddler-frame canvas,
@@ -352,6 +436,7 @@ a.tc-tiddlylink {
352
436
  font-weight: 500;
353
437
  color: <<colour tiddler-link-foreground>>;
354
438
  -webkit-user-select: inherit; /* Otherwise the draggable attribute makes links impossible to select */
439
+ -webkit-touch-callout: none; /* Prevents long presses from bringing up a link preview */
355
440
  }
356
441
 
357
442
  .tc-sidebar-lists a.tc-tiddlylink {
@@ -1092,6 +1177,28 @@ button.tc-btn-invisible.tc-remove-tag-button {
1092
1177
  }
1093
1178
  }
1094
1179
 
1180
+
1181
+ /* prevent overflow for table content for small screens*/
1182
+ @media (max-width: <<sidebarbreakpoint>>) {
1183
+ .tc-tiddler-frame tr {
1184
+ word-wrap: anywhere;
1185
+ }
1186
+
1187
+ .tc-tiddler-frame table blockquote {
1188
+ margin-left: 12.5px;
1189
+ margin-right: 12.5px;
1190
+ }
1191
+
1192
+ .tc-tiddler-frame table dd {
1193
+ margin-left: 12.5px;
1194
+ }
1195
+
1196
+ .tc-tiddler-frame table ol,
1197
+ .tc-tiddler-frame table ul {
1198
+ padding-left: 20px;
1199
+ }
1200
+ }
1201
+
1095
1202
  .tc-site-title,
1096
1203
  .tc-titlebar {
1097
1204
  font-weight: normal;
@@ -1140,6 +1247,7 @@ button.tc-btn-invisible.tc-remove-tag-button {
1140
1247
 
1141
1248
  .tc-tiddler-frame .tc-tiddler-controls {
1142
1249
  float: right;
1250
+ padding: 3px; /* make space for outline */
1143
1251
  }
1144
1252
 
1145
1253
  .tc-tiddler-controls .tc-drop-down {
@@ -1443,6 +1551,10 @@ html body.tc-body.tc-single-tiddler-window {
1443
1551
  fill: <<colour toolbar-done-button>>;
1444
1552
  }
1445
1553
 
1554
+ .tc-page-controls svg.tc-image-layout-button {
1555
+ fill: <<colour toolbar-options-button>>;
1556
+ }
1557
+
1446
1558
  /*
1447
1559
  ** Tiddler edit mode
1448
1560
  */
@@ -1887,6 +1999,15 @@ html body.tc-body.tc-single-tiddler-window {
1887
1999
  margin: auto;
1888
2000
  }
1889
2001
 
2002
+ /* Make search dropdown visible on small screens. issue #7003 */
2003
+ @media (max-width: <<sidebarbreakpoint>>) {
2004
+
2005
+ .tc-sidebar-search .tc-block-dropdown-wrapper {
2006
+ position: initial;
2007
+ }
2008
+
2009
+ }
2010
+
1890
2011
  /*
1891
2012
  ** Modals
1892
2013
  */
@@ -1,33 +0,0 @@
1
- created: 20160504080001125
2
- modified: 20160504080318928
3
- title: $:/core/ui/TagTemplate
4
- type: text/vnd.tiddlywiki
5
-
6
- \define tag-styles()
7
- background-color:$(backgroundColor)$;
8
- fill:$(foregroundColor)$;
9
- color:$(foregroundColor)$;
10
- \end
11
-
12
- \define tag-body-inner(colour,fallbackTarget,colourA,colourB)
13
- <$set name="foregroundColor" value=<<contrastcolour target:"""$colour$""" fallbackTarget:"""$fallbackTarget$""" colourA:"""$colourA$""" colourB:"""$colourB$""">>>
14
- <$set name="backgroundColor" value="""$colour$""">
15
- <$button popup=<<qualify "$:/state/popup/tag">> class="tc-btn-invisible tc-tag-label" style=<<tag-styles>>>
16
- <$transclude tiddler={{!!icon}}/> <$view field="fr-title"><$view field="title" format="text" /></$view>
17
- </$button>
18
- <$reveal state=<<qualify "$:/state/popup/tag">> type="popup" position="below" animate="yes"><div class="tc-drop-down"><$transclude tiddler="$:/core/ui/ListItemTemplate"/>
19
- <hr>
20
- <$list filter="[all[current]tagging[]]" template="$:/core/ui/ListItemTemplate"/>
21
- </div>
22
- </$reveal>
23
- </$set>
24
- </$set>
25
- \end
26
-
27
- \define tag-body(colour,palette)
28
- <span class="tc-tag-list-item">
29
- <$macrocall $name="tag-body-inner" colour="""$colour$""" fallbackTarget={{$palette$##tag-background}} colourA={{$palette$##foreground}} colourB={{$palette$##background}}/>
30
- </span>
31
- \end
32
-
33
- <$macrocall $name="tag-body" colour={{!!color}} palette={{$:/palette}}/>
@@ -1,6 +0,0 @@
1
- title: HelloThumbnail - Classic
2
- tags: HelloThumbnail
3
- color: #D5B7EA
4
- image: TiddlyWiki Classic.png
5
- caption: ~TiddlyWiki Classic
6
- link: TiddlyWikiClassic
@@ -1,7 +0,0 @@
1
- title: HelloThumbnail - Developers
2
- tags: HelloThumbnail
3
- color: #6B6E98
4
- background-color: #EAE57D
5
- image: Dev Thumbnail.jpg
6
- caption: Developers
7
- link: Developers
@@ -1,11 +0,0 @@
1
- background-color: #EDB431
2
- caption: A Gentle Guide
3
- color: #fff
4
- created: 20150325172634195
5
- image: Motovun Jack.jpg
6
- link: A Gentle Guide to TiddlyWiki
7
- modified: 20150414071032492
8
- tags: HelloThumbnail
9
- title: HelloThumbnail - Gentle Guide
10
- type: text/vnd.tiddlywiki
11
-
@@ -1,7 +0,0 @@
1
- title: HelloThumbnail - HelpingTiddlyWiki
2
- tags: HelloThumbnail
3
- color: #B7D5EA
4
- background-color: #fff
5
- caption: Helping ~TiddlyWiki
6
- link: HelpingTiddlyWiki
7
- image: Tiddler Poster.png
@@ -1,8 +0,0 @@
1
- title: HelloThumbnail - TWEUM2017
2
- tags: HelloThumbnail-disabled
3
- color: #fff
4
- background-color: #000
5
- icon: <span style="font-size:3.5em;font-weight:bold;text-shadow:1px 1px 3px rgba(0,0,0,1);">2017</span>
6
- image: TWEUM Thumbnail.jpg
7
- caption: European Meetup 2017
8
- link: TiddlyWiki European Meetup 2017
@@ -1,6 +0,0 @@
1
- title: HelloThumbnail - TiddlyMap
2
- tags: HelloThumbnail
3
- color: #D5B7EA
4
- image: TiddlyMap.png
5
- caption: ~TiddlyMap Plugin
6
- link: TiddlyMap Plugin by Felix Küppers