tiddlywiki 5.1.23 → 5.2.2
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.
- package/.eslintignore +5 -12
- package/.eslintrc.yml +17 -1
- package/.github/ISSUE_TEMPLATE/bug_report.md +5 -0
- package/.github/workflows/ci.yml +3 -0
- package/bin/build-site.sh +2 -2
- package/bin/build-tw-org.sh +97 -0
- package/bin/optimise-svgs.js +43 -41
- package/boot/boot.js +155 -47
- package/boot/bootprefix.js +1 -0
- package/contributing.md +1 -1
- package/core/copyright.tid +1 -1
- package/core/images/minus-button.tid +4 -0
- package/core/images/plugin-generic-language.tid +1 -1
- package/core/images/plugin-generic-plugin.tid +1 -1
- package/core/images/plugin-generic-theme.tid +1 -1
- package/core/images/plus-button.tid +4 -0
- package/core/language/en-GB/ControlPanel.multids +19 -2
- package/core/language/en-GB/Docs/ModuleTypes.multids +1 -0
- package/core/language/en-GB/EditTemplate.multids +2 -0
- package/core/language/en-GB/Fields.multids +4 -3
- package/core/language/en-GB/Help/listen.tid +3 -2
- package/core/language/en-GB/Help/render.tid +5 -4
- package/core/language/en-GB/Help/save.tid +1 -1
- package/core/language/en-GB/Import.multids +6 -0
- package/core/language/en-GB/Misc.multids +4 -3
- package/core/modules/commander.js +1 -1
- package/core/modules/commands/fetch.js +1 -1
- package/core/modules/commands/init.js +1 -1
- package/core/modules/commands/render.js +55 -54
- package/core/modules/commands/rendertiddlers.js +1 -1
- package/core/modules/commands/savelibrarytiddlers.js +1 -1
- package/core/modules/commands/savewikifolder.js +18 -4
- package/core/modules/config.js +1 -1
- package/core/modules/deserializers.js +102 -89
- package/core/modules/editor/engines/framed.js +20 -4
- package/core/modules/editor/engines/simple.js +6 -2
- package/core/modules/editor/factory.js +85 -12
- package/core/modules/editor/operations/text/focus-editor.js +17 -0
- package/core/modules/editor/operations/text/insert-text.js +23 -0
- package/core/modules/editor/operations/text/wrap-lines.js +5 -3
- package/core/modules/filterrunprefixes/cascade.js +53 -0
- package/core/modules/filterrunprefixes/filter.js +22 -4
- package/core/modules/filterrunprefixes/map.js +46 -0
- package/core/modules/filterrunprefixes/reduce.js +19 -19
- package/core/modules/filterrunprefixes/sort.js +62 -0
- package/core/modules/filters/all.js +3 -3
- package/core/modules/filters/backlinks.js +3 -3
- package/core/modules/filters/contains.js +1 -1
- package/core/modules/filters/crypto.js +27 -0
- package/core/modules/filters/deserializers.js +27 -0
- package/core/modules/filters/editiondescription.js +1 -1
- package/core/modules/filters/encodings.js +3 -13
- package/core/modules/filters/field.js +1 -1
- package/core/modules/filters/fields.js +1 -1
- package/core/modules/filters/filter.js +12 -1
- package/core/modules/filters/format/date.js +2 -2
- package/core/modules/filters/format/relativedate.js +2 -2
- package/core/modules/filters/format/titlelist.js +25 -0
- package/core/modules/filters/has.js +1 -1
- package/core/modules/filters/insertbefore.js +1 -1
- package/core/modules/filters/is/draft.js +3 -3
- package/core/modules/filters/links.js +3 -3
- package/core/modules/filters/listops.js +14 -1
- package/core/modules/filters/lookup.js +29 -6
- package/core/modules/filters/math.js +102 -7
- package/core/modules/filters/moduleproperty.js +30 -0
- package/core/modules/filters/modules.js +16 -4
- package/core/modules/filters/prefix.js +30 -12
- package/core/modules/filters/range.js +7 -3
- package/core/modules/filters/reduce.js +2 -0
- package/core/modules/filters/regexp.js +1 -1
- package/core/modules/filters/removeprefix.js +16 -6
- package/core/modules/filters/removesuffix.js +20 -6
- package/core/modules/filters/search.js +1 -0
- package/core/modules/filters/sortsub.js +7 -4
- package/core/modules/filters/strings.js +26 -14
- package/core/modules/filters/suffix.js +32 -10
- package/core/modules/filters/tag.js +1 -1
- package/core/modules/filters/untagged.js +7 -14
- package/core/modules/filters/x-listops.js +5 -5
- package/core/modules/filters.js +32 -14
- package/core/modules/indexers/field-indexer.js +1 -1
- package/core/modules/indexers/tag-indexer.js +2 -2
- package/core/modules/info/platform.js +1 -1
- package/core/modules/keyboard.js +15 -7
- package/core/modules/macros/{uniquetitle.js → unusedtitle.js} +8 -7
- package/core/modules/parsers/htmlparser.js +4 -2
- package/core/modules/parsers/imageparser.js +1 -0
- package/core/modules/parsers/parseutils.js +41 -11
- package/core/modules/parsers/wikiparser/rules/commentblock.js +8 -2
- package/core/modules/parsers/wikiparser/rules/commentinline.js +1 -1
- package/core/modules/parsers/wikiparser/rules/html.js +7 -10
- package/core/modules/parsers/wikiparser/rules/import.js +1 -1
- package/core/modules/parsers/wikiparser/rules/macrocallblock.js +24 -28
- package/core/modules/parsers/wikiparser/rules/macrocallinline.js +17 -27
- package/core/modules/parsers/wikiparser/rules/table.js +1 -1
- package/core/modules/parsers/wikiparser/wikiparser.js +48 -25
- package/core/modules/pluginswitcher.js +1 -1
- package/core/modules/saver-handler.js +2 -1
- package/core/modules/savers/andtidwiki.js +1 -1
- package/core/modules/savers/download.js +1 -1
- package/core/modules/savers/gitea.js +3 -3
- package/core/modules/savers/github.js +3 -3
- package/core/modules/savers/gitlab.js +3 -3
- package/core/modules/savers/put.js +6 -3
- package/core/modules/savers/tiddlyfox.js +1 -1
- package/core/modules/savers/twedit.js +1 -1
- package/core/modules/savers/upload.js +15 -3
- package/core/modules/server/routes/delete-tiddler.js +1 -1
- package/core/modules/server/routes/get-favicon.js +1 -2
- package/core/modules/server/routes/get-file.js +21 -17
- package/core/modules/server/routes/get-index.js +1 -23
- package/core/modules/server/routes/get-login-basic.js +3 -2
- package/core/modules/server/routes/get-status.js +1 -2
- package/core/modules/server/routes/get-tiddler-html.js +3 -3
- package/core/modules/server/routes/get-tiddler.js +2 -3
- package/core/modules/server/routes/get-tiddlers-json.js +1 -2
- package/core/modules/server/routes/put-tiddler.js +3 -3
- package/core/modules/server/server.js +113 -17
- package/core/modules/startup/browser-messaging.js +2 -2
- package/core/modules/startup/favicon.js +1 -1
- package/core/modules/startup/load-modules.js +3 -0
- package/core/modules/startup/render.js +8 -3
- package/core/modules/startup/rootwidget.js +19 -4
- package/core/modules/startup/startup.js +2 -3
- package/core/modules/startup/story.js +5 -5
- package/core/modules/startup/windows.js +22 -9
- package/core/modules/storyviews/classic.js +5 -5
- package/core/modules/storyviews/pop.js +3 -3
- package/core/modules/storyviews/zoomin.js +3 -3
- package/core/modules/syncer.js +2 -6
- package/core/modules/tiddler.js +3 -3
- package/core/modules/upgraders/plugins.js +1 -1
- package/core/modules/upgraders/system.js +5 -6
- package/core/modules/utils/crypto.js +2 -2
- package/core/modules/utils/csv.js +1 -1
- package/core/modules/utils/dom/dom.js +6 -2
- package/core/modules/utils/dom/dragndrop.js +33 -10
- package/core/modules/utils/dom/http.js +18 -1
- package/core/modules/utils/dom/modal.js +3 -2
- package/core/modules/utils/dom/popup.js +1 -1
- package/core/modules/utils/dom/scroller.js +12 -8
- package/core/modules/utils/edition-info.js +1 -5
- package/core/modules/{startup/css-escape-polyfill.js → utils/escapecss.js} +17 -27
- package/core/modules/utils/fakedom.js +1 -1
- package/core/modules/utils/filesystem.js +89 -52
- package/core/modules/utils/linked-list.js +143 -57
- package/core/modules/utils/logger.js +2 -2
- package/core/modules/utils/performance.js +1 -1
- package/core/modules/utils/pluginmaker.js +2 -4
- package/core/modules/utils/transliterate.js +8 -1
- package/core/modules/utils/utils.js +80 -8
- package/core/modules/widgets/action-confirm.js +4 -3
- package/core/modules/widgets/action-createtiddler.js +12 -5
- package/core/modules/widgets/action-deletefield.js +1 -1
- package/core/modules/widgets/action-listops.js +6 -11
- package/core/modules/widgets/action-log.js +3 -3
- package/core/modules/widgets/action-navigate.js +12 -1
- package/core/modules/widgets/action-popup.js +3 -1
- package/core/modules/widgets/action-sendmessage.js +17 -7
- package/core/modules/widgets/action-setmultiplefields.js +86 -0
- package/core/modules/widgets/button.js +5 -2
- package/core/modules/widgets/codeblock.js +7 -1
- package/core/modules/widgets/draggable.js +17 -8
- package/core/modules/widgets/droppable.js +2 -2
- package/core/modules/widgets/dropzone.js +122 -25
- package/core/modules/widgets/edit-bitmap.js +6 -6
- package/core/modules/widgets/edit-shortcut.js +3 -3
- package/core/modules/widgets/element.js +1 -1
- package/core/modules/widgets/entity.js +1 -1
- package/core/modules/widgets/eventcatcher.js +52 -23
- package/core/modules/widgets/fieldmangler.js +16 -30
- package/core/modules/widgets/image.js +15 -5
- package/core/modules/widgets/importvariables.js +2 -2
- package/core/modules/widgets/jsontiddler.js +91 -0
- package/core/modules/widgets/keyboard.js +39 -20
- package/core/modules/widgets/let.js +96 -0
- package/core/modules/widgets/link.js +9 -2
- package/core/modules/widgets/linkcatcher.js +4 -4
- package/core/modules/widgets/list.js +65 -26
- package/core/modules/widgets/log.js +1 -1
- package/core/modules/widgets/macrocall.js +1 -1
- package/core/modules/widgets/messagecatcher.js +110 -0
- package/core/modules/widgets/navigator.js +41 -41
- package/core/modules/widgets/radio.js +14 -5
- package/core/modules/widgets/raw.js +1 -1
- package/core/modules/widgets/reveal.js +4 -4
- package/core/modules/widgets/scrollable.js +32 -30
- package/core/modules/widgets/select.js +1 -1
- package/core/modules/widgets/setmultiplevariables.js +81 -0
- package/core/modules/widgets/setvariable.js +2 -2
- package/core/modules/widgets/text.js +1 -1
- package/core/modules/widgets/tiddler.js +1 -1
- package/core/modules/widgets/transclude.js +9 -2
- package/core/modules/widgets/vars.js +3 -5
- package/core/modules/widgets/view.js +10 -3
- package/core/modules/widgets/widget.js +89 -35
- package/core/modules/widgets/wikify.js +1 -1
- package/core/modules/wiki-bulkops.js +20 -15
- package/core/modules/wiki.js +213 -89
- package/core/palettes/Blanca.tid +1 -0
- package/core/palettes/Blue.tid +1 -0
- package/core/palettes/BrightMute.tid +1 -0
- package/core/palettes/ContrastDark.tid +1 -0
- package/core/palettes/ContrastLight.tid +1 -0
- package/core/palettes/CupertinoDark.tid +1 -0
- package/core/palettes/DarkPhotos.tid +1 -0
- package/core/palettes/DesertSand.tid +1 -0
- package/core/palettes/GruvBoxDark.tid +1 -0
- package/core/palettes/Nord.tid +1 -0
- package/core/palettes/Rocker.tid +1 -0
- package/core/palettes/SolarFlare.tid +1 -0
- package/core/palettes/SolarizedDark.tid +1 -0
- package/core/palettes/SolarizedLight.tid +1 -0
- package/core/palettes/SpartanDay.tid +1 -0
- package/core/palettes/SpartanNight.tid +1 -0
- package/core/palettes/Twilight.tid +1 -0
- package/core/palettes/Vanilla.tid +1 -0
- package/core/templates/external-js/save-all-external-js.tid +1 -0
- package/core/templates/external-js/save-offline-external-js.tid +8 -0
- package/core/templates/external-js/tiddlywiki.js.tiddlers.tid +4 -0
- package/core/templates/external-js/tiddlywiki5-external-js.html.tid +3 -2
- package/core/templates/html-div-tiddler.tid +1 -1
- package/core/templates/html-json-skinny-tiddler.tid +4 -0
- package/core/templates/html-json-tiddler.tid +3 -0
- package/core/templates/save-lazy-images.tid +1 -1
- package/core/templates/store.area.template.html.tid +35 -12
- package/core/templates/tiddlywiki5.html.tid +1 -1
- package/core/ui/Components/plugin-info.tid +57 -55
- package/core/ui/Components/tag-link.tid +1 -1
- package/core/ui/ControlPanel/Cascades/EditTemplateBody.tid +9 -0
- package/core/ui/ControlPanel/Cascades/FieldEditor.tid +9 -0
- package/core/ui/ControlPanel/Cascades/StoryTiddler.tid +9 -0
- package/core/ui/ControlPanel/Cascades/TiddlerColour.tid +9 -0
- package/core/ui/ControlPanel/Cascades/TiddlerIcon.tid +9 -0
- package/core/ui/ControlPanel/Cascades/ViewTemplateBody.tid +9 -0
- package/core/ui/ControlPanel/Cascades/ViewTemplateTitle.tid +9 -0
- package/core/ui/ControlPanel/Cascades.tid +9 -0
- package/core/ui/ControlPanel/Plugins/Installed/Languages.tid +1 -0
- package/core/ui/ControlPanel/Plugins/Installed/Plugins.tid +1 -0
- package/core/ui/ControlPanel/Plugins/Installed/Themes.tid +1 -0
- package/core/ui/ControlPanel/Plugins.tid +1 -1
- package/core/ui/ControlPanel/Saving/GitHub.tid +1 -1
- package/core/ui/ControlPanel/Saving/TiddlySpot.tid +0 -2
- package/core/ui/EditTemplate/Preview/diffs-current.tid +1 -1
- package/core/ui/EditTemplate/Preview/diffs-shadow.tid +1 -1
- package/core/ui/EditTemplate/body/canonical-uri.tid +13 -0
- package/core/ui/EditTemplate/body/default.tid +38 -0
- package/core/ui/EditTemplate/body-editor.tid +10 -1
- package/core/ui/EditTemplate/body-toolbar-button.tid +8 -6
- package/core/ui/EditTemplate/body.tid +1 -47
- package/core/ui/EditTemplate/fieldEditor-default.tid +3 -0
- package/core/ui/EditTemplate/fields.tid +7 -5
- package/core/ui/EditTemplate/tags.tid +3 -3
- package/core/ui/EditTemplate/title.tid +1 -1
- package/core/ui/EditTemplate/type.tid +2 -2
- package/core/ui/EditTemplate.tid +2 -2
- package/core/ui/EditorToolbar/file-import.tid +41 -0
- package/core/ui/EditorToolbar/link-dropdown.tid +1 -1
- package/core/ui/EditorToolbar/preview.tid +4 -4
- package/core/ui/EditorToolbar/stamp-dropdown-item-template.tid +53 -0
- package/core/ui/EditorToolbar/stamp-dropdown.tid +1 -43
- package/core/ui/EditorToolbar/stamp.tid +1 -0
- package/core/ui/ExportTiddlyWikiCore.tid +22 -0
- package/core/ui/ImportListing.tid +20 -1
- package/core/ui/ListTaggedCascade.tid +14 -0
- package/core/ui/MoreSideBar/plugins/Languages.tid +1 -1
- package/core/ui/MoreSideBar/plugins/Plugins.tid +1 -1
- package/core/ui/MoreSideBar/plugins/Theme.tid +1 -1
- package/core/ui/PageControls/advanced-search.tid +1 -0
- package/core/ui/PageControls/closeall.tid +4 -1
- package/core/ui/PageControls/controlpanel.tid +1 -0
- package/core/ui/PageControls/encryption.tid +6 -2
- package/core/ui/PageControls/export-tiddlywikicore.tid +22 -0
- package/core/ui/PageControls/fold-all.tid +4 -1
- package/core/ui/PageControls/full-screen.tid +4 -1
- package/core/ui/PageControls/home.tid +4 -1
- package/core/ui/PageControls/import.tid +4 -1
- package/core/ui/PageControls/language.tid +0 -1
- package/core/ui/PageControls/manager.tid +4 -1
- package/core/ui/PageControls/more-page-actions.tid +4 -1
- package/core/ui/PageControls/new-image.tid +3 -1
- package/core/ui/PageControls/new-journal.tid +4 -1
- package/core/ui/PageControls/newtiddler.tid +3 -1
- package/core/ui/PageControls/palette.tid +0 -1
- package/core/ui/PageControls/print.tid +4 -1
- package/core/ui/PageControls/refresh.tid +4 -1
- package/core/ui/PageControls/savewiki.tid +4 -1
- package/core/ui/PageControls/storyview.tid +0 -1
- package/core/ui/PageControls/tag-button.tid +4 -1
- package/core/ui/PageControls/theme.tid +0 -1
- package/core/ui/PageControls/timestamp.tid +6 -2
- package/core/ui/PageControls/unfold-all.tid +4 -1
- package/core/ui/PageTemplate/story.tid +1 -1
- package/core/ui/PaletteManager.tid +1 -1
- package/core/ui/PluginListItemTemplate.tid +13 -3
- package/core/ui/SideBar/Open.tid +2 -2
- package/core/ui/StoryTiddlerTemplate.tid +3 -0
- package/core/ui/TagPickerTagTemplate.tid +3 -3
- package/core/ui/TagTemplate.tid +2 -2
- package/core/ui/TiddlerIcon.tid +8 -0
- package/core/ui/ViewTemplate/body/blank.tid +3 -0
- package/core/ui/ViewTemplate/body/code.tid +3 -0
- package/core/ui/ViewTemplate/body/default.tid +7 -0
- package/core/ui/ViewTemplate/{import.tid → body/import.tid} +9 -3
- package/core/ui/ViewTemplate/body/plugin.tid +10 -0
- package/core/ui/ViewTemplate/body.tid +1 -9
- package/core/ui/ViewTemplate/title/default.tid +6 -0
- package/core/ui/ViewTemplate/title/system.tid +6 -0
- package/core/ui/ViewTemplate/title.tid +6 -22
- package/core/ui/ViewTemplate.tid +6 -1
- package/core/ui/ViewToolbar/clone.tid +0 -1
- package/core/ui/ViewToolbar/close-others.tid +0 -1
- package/core/ui/ViewToolbar/edit.tid +0 -1
- package/core/ui/ViewToolbar/fold-others.tid +0 -1
- package/core/ui/ViewToolbar/fold.tid +0 -2
- package/core/ui/ViewToolbar/info.tid +1 -0
- package/core/ui/ViewToolbar/more-tiddler-actions.tid +0 -1
- package/core/ui/ViewToolbar/new-here.tid +1 -0
- package/core/ui/ViewToolbar/new-journal-here.tid +1 -0
- package/core/ui/ViewToolbar/open-window.tid +0 -1
- package/core/ui/ViewToolbar/permalink.tid +0 -1
- package/core/ui/ViewToolbar/permaview.tid +0 -1
- package/core/wiki/allfields.tid +1 -1
- package/core/wiki/config/EditTabIndex.tid +1 -2
- package/core/wiki/config/EditTemplateBodyFilters.multids +5 -0
- package/core/wiki/config/EditorEnableImportFilter.tid +4 -0
- package/core/wiki/config/EditorImportContentTypesFilter.tid +4 -0
- package/core/wiki/config/FieldEditorFilters.multids +4 -0
- package/core/wiki/config/OfficialPluginLibrary.tid +1 -1
- package/core/wiki/config/StoryTiddlerTemplateFilters.multids +5 -0
- package/core/wiki/config/TiddlerColourFilters.multids +5 -0
- package/core/wiki/config/TiddlerIconFilters.multids +5 -0
- package/core/wiki/config/ViewTemplateBodyFilters.multids +9 -0
- package/core/wiki/config/ViewTemplateTitleFilters.multids +5 -0
- package/core/wiki/config/shortcuts/shortcuts-mac.multids +0 -2
- package/core/wiki/config/shortcuts/shortcuts.multids +2 -2
- package/core/wiki/debugstylesheets.tid +9 -0
- package/core/wiki/macros/export.tid +6 -6
- package/core/wiki/macros/list.tid +2 -2
- package/core/wiki/macros/tag.tid +4 -2
- package/core/wiki/peek-stylesheets.tid +3 -0
- package/core/wiki/tags/ControlPanelPlugins.tid +1 -1
- package/core/wiki/tags/EditTemplateBodyFilter.tid +2 -0
- package/core/wiki/tags/StoryTiddlerTemplateFilter.tid +2 -0
- package/core/wiki/tags/TiddlerColourFilter.tid +3 -0
- package/core/wiki/tags/TiddlerIconFilter.tid +3 -0
- package/core/wiki/tags/ViewTemplateBodyFilter.tid +3 -0
- package/core/wiki/tags/ViewTemplateTitleFilter.tid +3 -0
- package/core/wiki/title.tid +4 -1
- package/core/wiki/viewswitcher.tid +2 -2
- package/editions/dev/tiddlers/HelloThere.tid +3 -1
- package/editions/dev/tiddlers/from Heigele and Jurke/Data-Storage.tid +1 -9
- package/editions/dev/tiddlers/from Heigele and Jurke/Syncadaptor.tid +2 -2
- package/editions/dev/tiddlers/from tw5.com/moduletypes/SyncAdaptorModules.tid +1 -1
- package/editions/dev/tiddlers/from tw5.com/moduletypes/WikiRuleModules.tid +6 -5
- package/editions/dev/tiddlers/new/Data Storage in Single File TiddlyWiki.tid +100 -0
- package/editions/dev/tiddlers/new/Data Storage.tid +10 -0
- package/editions/dev/tiddlers/new/Hook_ th-before-importing.tid +68 -0
- package/editions/dev/tiddlers/new/Hook_ th-closing-tiddler.tid +20 -0
- package/editions/dev/tiddlers/new/Hook__th-importing-tiddler.tid +3 -1
- package/editions/dev/tiddlers/new/ParserSubclassingMechanism.tid +42 -0
- package/editions/dev/tiddlers/new/TiddlyWiki Drag and Drop Interop.tid +15 -0
- package/editions/dev/tiddlers/new/dragndropinterop.html +35 -0
- package/editions/dev/tiddlers/new/dragndropinterop.html.meta +3 -0
- package/editions/dev/tiddlers/new/save-dragndropinterop.tid +3 -0
- package/editions/dynaviewdemo/tiddlers/SideBar-Open.tid +1 -1
- package/editions/dynaviewdemo/tiddlers/ViewTemplate.tid +4 -7
- package/editions/es-ES/tiddlers/Page_and_tiddler_layout_customisation.tid +1 -1
- package/editions/fr-FR/output/images/Blurry%20Lawn.jpg +0 -0
- package/editions/fr-FR/output/images/Newnham%20Horizon.jpg +0 -0
- package/editions/fr-FR/output/index.html +5051 -0
- package/editions/fr-FR/output/text/Alice%20in%20Wonderland.tid +3709 -0
- package/editions/fr-FR/tiddlers/$ _config_ViewTemplateTitleFilters_fr-default.tid +7 -0
- package/editions/fr-FR/tiddlers/$ _core_ui_ViewTemplate_title_fr-default.tid +8 -0
- package/editions/fr-FR/tiddlers/$__deprecated.tid +9 -0
- package/editions/fr-FR/tiddlers/$__editions_fr-FR_util-macros.tid +1 -0
- package/editions/fr-FR/tiddlers/$__editions_tw5.com_doc-macros.tid +69 -5
- package/editions/fr-FR/tiddlers/$__editions_tw5.com_version-macros.tid +15 -0
- package/editions/fr-FR/tiddlers/$__editions_tw5.com_wikitext-macros.tid +2 -2
- package/editions/fr-FR/tiddlers/Block_Quotes_in_WikiText.tid +15 -8
- package/editions/fr-FR/tiddlers/CamelCase.tid +6 -3
- package/editions/fr-FR/tiddlers/Code Blocks in WikiText.tid +27 -16
- package/editions/fr-FR/tiddlers/Community Links Aggregator.tid +11 -0
- package/editions/fr-FR/tiddlers/Community.tid +6 -4
- package/editions/fr-FR/tiddlers/Creating and editing tiddlers.tid +11 -11
- package/editions/fr-FR/tiddlers/Deprecated - What does it mean.tid +17 -0
- package/editions/fr-FR/tiddlers/Developers.tid +10 -5
- package/editions/fr-FR/tiddlers/Federatial.tid +11 -0
- package/editions/fr-FR/tiddlers/Formatting in WikiText.tid +12 -12
- package/editions/fr-FR/tiddlers/Forums.tid +27 -13
- package/editions/fr-FR/tiddlers/GettingStarted.tid +16 -14
- package/editions/fr-FR/tiddlers/Glossaire en-GB -_ fr-FR.tid +3 -1
- package/editions/fr-FR/tiddlers/HTML in WikiText.tid +77 -28
- package/editions/fr-FR/tiddlers/Headings in WikiText.tid +2 -2
- package/editions/fr-FR/tiddlers/HelloThere.tid +15 -12
- package/editions/fr-FR/tiddlers/HelloThumbnail - Latest Version.tid +1 -1
- package/editions/fr-FR/tiddlers/How to export tiddlers.tid +31 -0
- package/editions/fr-FR/tiddlers/ImageWidget.tid +33 -0
- package/editions/fr-FR/tiddlers/Images in WikiText.tid +69 -0
- package/editions/fr-FR/tiddlers/Importing Tiddlers.tid +26 -0
- package/editions/fr-FR/tiddlers/JeremyRuston.tid +9 -9
- package/editions/fr-FR/tiddlers/Linking in WikiText.tid +108 -19
- package/editions/fr-FR/tiddlers/ListField.tid +6 -6
- package/editions/fr-FR/tiddlers/Macros in WikiText.tid +5 -5
- package/editions/fr-FR/tiddlers/Macros.tid +17 -8
- package/editions/fr-FR/tiddlers/Page and tiddler layout customisation.tid +1 -1
- package/editions/fr-FR/tiddlers/PermaLinks.tid +19 -19
- package/editions/fr-FR/tiddlers/Philosophy of Tiddlers.tid +2 -2
- package/editions/fr-FR/tiddlers/Saving.tid +63 -4
- package/editions/fr-FR/tiddlers/Share Plugin.tid +15 -0
- package/editions/fr-FR/tiddlers/{Sharing_a_TiddlyWiki_on_Dropbox.tid → Sharing a TiddlyWiki on Dropbox.tid } +12 -4
- package/editions/fr-FR/tiddlers/Sharing your tiddlers with others.tid +18 -0
- package/editions/fr-FR/tiddlers/Structuring TiddlyWiki.tid +6 -6
- package/editions/fr-FR/tiddlers/Styles and Classes in WikiText.tid +11 -10
- package/editions/fr-FR/tiddlers/Tagging.tid +24 -18
- package/editions/fr-FR/tiddlers/TaskManagementExample.tid +3 -1
- package/editions/fr-FR/tiddlers/TiddlerLinks.tid +5 -5
- package/editions/fr-FR/tiddlers/TiddlyFox Apocalypse.tid +46 -0
- package/editions/fr-FR/tiddlers/TiddlyFox.tid +6 -3
- package/editions/fr-FR/tiddlers/TiddlyWiki.tid +6 -4
- package/editions/fr-FR/tiddlers/_TiddlyWiki for Scholars_ by Alberto Molina.tid +2 -2
- package/editions/innerwikidemo/tiddlywiki.info +2 -1
- package/editions/introduction/tiddlers/slides/TiddlyWiki.tid +1 -1
- package/editions/introduction/tiddlywiki.info +8 -1
- package/editions/prerelease/tiddlers/{Release 5.1.24.tid → Release 5.2.3.tid } +44 -12
- package/editions/prerelease/tiddlers/system/PrereleaseLocalPluginLibrary.tid +1 -1
- package/editions/prerelease/tiddlers/system/PrereleaseOfficialPluginLibrary.tid +1 -1
- package/editions/prerelease/tiddlers/system/download-empty.tid +10 -0
- package/editions/server-external-js/tiddlywiki.info +7 -4
- package/editions/test/tiddlers/tests/data/deserializers/case 1.tid +4 -0
- package/editions/test/tiddlers/tests/data/deserializers/case 2.tid +12 -0
- package/editions/test/tiddlers/tests/data/deserializers/case 3.tid +18 -0
- package/editions/test/tiddlers/tests/data/deserializers/case 4.tid +19 -0
- package/editions/test/tiddlers/tests/data/deserializers/case 5.tid +20 -0
- package/editions/test/tiddlers/tests/data/tabs-macro/expected-html-tabs-horizontal-all.tid +33 -0
- package/editions/test/tiddlers/tests/data/tabs-macro/expected-html-tabs-horizontal.tid +43 -0
- package/editions/test/tiddlers/tests/data/tabs-macro/expected-html-tabs-vertical.tid +43 -0
- package/editions/test/tiddlers/tests/test-action-widgets.js +55 -0
- package/editions/test/tiddlers/tests/test-deserializers.js +39 -0
- package/editions/test/tiddlers/tests/test-filters.js +1018 -753
- package/editions/test/tiddlers/tests/test-html-parser.js +33 -12
- package/editions/test/tiddlers/tests/test-linked-list.js +182 -66
- package/editions/test/tiddlers/tests/test-parsetextreference.js +132 -0
- package/editions/test/tiddlers/tests/test-prefixes-filter.js +319 -5
- package/editions/test/tiddlers/tests/test-tags.js +19 -0
- package/editions/test/tiddlers/tests/test-utils.js +10 -0
- package/editions/test/tiddlers/tests/test-widget.js +189 -0
- package/editions/test/tiddlers/tests/test-wikitext-parser.js +140 -20
- package/editions/test/tiddlers/tests/test-wikitext-tabs-macro.js +86 -0
- package/editions/tw.org/tiddlers/$__DefaultTiddlers.tid +6 -0
- package/editions/tw.org/tiddlers/$__SiteSubtitle.tid +6 -0
- package/editions/tw.org/tiddlers/$__SiteTitle.tid +6 -0
- package/editions/tw.org/tiddlers/$__StoryList.tid +3 -0
- package/editions/tw.org/tiddlers/$__favicon.ico.png +0 -0
- package/editions/tw.org/tiddlers/$__favicon.ico.png.meta +4 -0
- package/editions/tw.org/tiddlers/$__palette.tid +6 -0
- package/editions/tw.org/tiddlers/$__palettes_BlueFlavour +165 -0
- package/editions/tw.org/tiddlers/$__palettes_BlueFlavour.meta +8 -0
- package/editions/tw.org/tiddlers/$__palettes_FlowingSun +165 -0
- package/editions/tw.org/tiddlers/$__palettes_FlowingSun.meta +8 -0
- package/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_metrics_bodyfontsize.tid +6 -0
- package/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_metrics_bodylineheight.tid +6 -0
- package/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_metrics_sidebarwidth.tid +6 -0
- package/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_options_sidebarlayout.tid +6 -0
- package/editions/tw.org/tiddlers/HelloThere.tid +14 -0
- package/editions/tw.org/tiddlers/Table of Contents.tid +11 -0
- package/editions/tw.org/tiddlers/TiddlyWiki.tid +8 -0
- package/editions/tw.org/tiddlywiki.info +30 -0
- package/editions/tw5.com/tiddlers/$__StoryList.tid +5 -0
- package/editions/tw5.com/tiddlers/about/History of TiddlyWiki.tid +1 -1
- package/editions/tw5.com/tiddlers/{License.tid → about/License.tid} +0 -0
- package/editions/tw5.com/tiddlers/commands/NamedCommandParameters.tid +2 -2
- package/editions/tw5.com/tiddlers/community/Community Editions.tid +24 -0
- package/editions/tw5.com/tiddlers/community/Community Links Aggregator.tid +10 -0
- package/editions/tw5.com/tiddlers/community/Community Palettes.tid +24 -0
- package/editions/tw5.com/tiddlers/community/Community Plugins.tid +24 -0
- package/editions/tw5.com/tiddlers/community/Community Themes.tid +24 -0
- package/editions/tw5.com/tiddlers/community/Community.tid +5 -3
- package/editions/tw5.com/tiddlers/community/Contributing.tid +49 -13
- package/editions/tw5.com/tiddlers/community/Contributor License Agreement.tid +3 -3
- package/editions/tw5.com/tiddlers/community/Forums.tid +16 -13
- package/editions/tw5.com/tiddlers/community/Other Resources.tid +24 -0
- package/editions/tw5.com/tiddlers/community/Signing the Contributor License Agreement.tid +2 -2
- package/editions/tw5.com/tiddlers/community/TW Icons by morosanuae.tid +9 -0
- package/editions/tw5.com/tiddlers/community/TiddlyWiki Hangouts.tid +2 -2
- package/editions/tw5.com/tiddlers/community/editions/Drift by Tony K.tid +17 -0
- package/editions/tw5.com/tiddlers/community/editions/Stroll by David Gifford.tid +18 -0
- package/editions/tw5.com/tiddlers/community/editions/TiddlyResearch by Kebi.tid +25 -0
- package/editions/tw5.com/tiddlers/community/{resources → editions}/_Cardo-A Task and Project Management Wiki_ by David_Szego.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → editions}/_Noteself_ by Danielo Rodriguez.tid +2 -2
- package/editions/tw5.com/tiddlers/community/examples/PETTIL.tid +1 -1
- package/editions/tw5.com/tiddlers/community/examples/Reveal.js by Devin Weaver.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → examples}/_Lucky Sushi_ online shop by sini-Kit.tid +3 -3
- package/editions/tw5.com/tiddlers/community/palettes/Dracula for tiddlywiki.tid +22 -0
- package/editions/tw5.com/tiddlers/community/palettes/palletes by JD.tid +20 -0
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Ace Editor Plugin by Joerg Plewe.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/BJHacks.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Disqus comments plugin by bimlas.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Encrypt single tiddler plugin.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Eucalys Tiddly World.tid +4 -3
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Favorites by Mohammad.tid +1 -1
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Full Text Search Plugin by Rob Hoelz.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/GSD5.tid +3 -3
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/IndexedDB Plugin by Andreas Abeck.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Json Mangler plugin by Joshua Fontany.tid +3 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Kin filter operator by bimlas.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Kookma Plugin Library by Mohammad.tid +1 -1
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Leaflet_maps_plugin_by_Sylvain_Comte.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Locator plugin by bimlas.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/MathJax Plugin by Martin Kantor.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Plugins by TheDiveO.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Refnotes by Mohammad.tid +4 -4
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Searchwikis by Mohammad.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Shiraz by Mohammad.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Slider by Mohammad.tid +1 -1
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Tiddler Commander by Mohammad.tid +1 -1
- package/editions/tw5.com/tiddlers/community/plugins/TiddlyClip by buggyjay.tid +14 -0
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/TiddlyMap by Felix Kuppers.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/TiddlyWiki for Scholars.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Tiddlyshow by Mohammad.tid +1 -1
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Timelines by Mohammad.tid +1 -1
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Tinka by Andreas Hahn.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Todolist by Mohammad.tid +1 -1
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Trashbin by Mohammad.tid +1 -1
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/Utility by Mohammad.tid +1 -1
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/_JD Mobile Layout plugin_ by JD.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/_Mal's Sandbox_ by Mal.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/_SK_Plugins_ by Stephen Kimmel.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/_Slides and Stories_ by Jan.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/_TW5-TeXZilla_ plugin by Joe Renes.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/_Tekan_ Kanban that stays with you_ by Riz.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/datepicker based on Pikaday.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/rboue's plugins for TiddlyWiki.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → plugins}/vis.js Timeline.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/BrainTest.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/Code styles and auto format settings for IDEs.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/CouchDB Adaptor.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/Filter Examples by Tobias Beer.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/Font Awesome 5 Free SVGs for TiddlyWiki by morosanuae.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/Gospel_Bubbles_by_Rev_David_Gifford.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/Grok TiddlyWiki by Soren Bjornstad.tid +16 -0
- package/editions/tw5.com/tiddlers/community/resources/Heeg.ru.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/Projectify by Nicolas Petton.tid +20 -0
- package/editions/tw5.com/tiddlers/community/resources/RegExp in Tiddlywiki by Mohammad.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/SeeAlso by Matias Goldman.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/Semantic Colors by Mohammad.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/TB5 a pocket full of tips by Tobias Beer.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/TW-Scripts by Mohammad.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/TW5 Magick.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/TW5-SingleExecutable_by_Jed_Carty.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/TW5-firebase_ TiddlyWiki5 for Google Firebase by Peter Neumark.tid +27 -0
- package/editions/tw5.com/tiddlers/community/resources/TWCommunitySearch.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/TWaddle by Matias Goldman.tid +1 -1
- package/editions/tw5.com/tiddlers/community/resources/TiddlyChrome by Arlen Beiler.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/TiddlyDrive Add-on for Google Drive by Joshua Stubbs.tid +4 -4
- package/editions/tw5.com/tiddlers/community/resources/TiddlyServer by Arlen Beiler.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/TiddlyWiki Notes.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/TiddlyWiki Posts.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/TiddlyWiki Video Tutorials by Francis Meetze.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/TiddlyWiki extensions for Sublime Text 3 by roma0104.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/TiddlyWiki extensions for ViM.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/TiddlyWiki guide FR.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/TiddlyWiki wu.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/TiddlyWiki5 Playground.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/TiddlyWiki5 Squared by Iannis Zannos.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/Twexe_ Single File Tiddlywiki5 executable.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/Widdly by Opennota.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/Wikilabs by PMario.tid +3 -3
- package/editions/tw5.com/tiddlers/community/resources/Wills QnD gTD.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/_ATWiki_ by Lamusia Project.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/_Dropboard_ by Reid Gould.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/_Dynamic Tables_ by Jed Carty.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/_Hacks_ by Thomas Elmiger.tid +3 -2
- package/editions/tw5.com/tiddlers/community/resources/_In My Socks_ by Jed Carty.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/_MathCell_ by Ste Wilson.tid +3 -2
- package/editions/tw5.com/tiddlers/community/resources/_TWeb.at_ by Mario Pietsch.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/_TiddlyServer_ by Matt Lauber.tid +6 -3
- package/editions/tw5.com/tiddlers/community/resources/_TiddlyWiki Knowledge Network_ by Dmitry Sokolov.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/_TiddlyWiki Toolmap_ by David Gifford.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/_TiddlyWiki5 Bourbon_ from mkt_memory.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/_TiddlyWiki5 Forum on Reddit_ by Riz.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/_Timimi_ Extension and executable by Riz.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/_X3DOM for TiddlyWiki 5_ by Jamal Wills.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/_file-backups_ Extension Firefox by pmario.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/_muritest_ by Simon Huber.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/_savetiddlers_ Extension for Chrome and Firefox by buggyj.tid +2 -2
- package/editions/tw5.com/tiddlers/community/resources/twproxy by Steve Gattuso.tid +2 -2
- package/editions/tw5.com/tiddlers/community/themes/Mono theme by JD.tid +11 -0
- package/editions/tw5.com/tiddlers/community/themes/Notebook theme by Nicolas Petton.tid +19 -0
- package/editions/tw5.com/tiddlers/community/themes/Whitespace a negative-spacious webapp-nostalgic theme by JD.tid +11 -0
- package/editions/tw5.com/tiddlers/community/{resources → themes}/_Ghostwriter theme by Rory Gibson_ by Riz.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → themes}/_Moments-A little color won't hurt_ by Riz.tid +2 -2
- package/editions/tw5.com/tiddlers/community/{resources → tutorials}/GitHub Saver Tutorial by Mohammad.tid +2 -2
- package/editions/tw5.com/tiddlers/concepts/Cascades.tid +48 -0
- package/editions/tw5.com/tiddlers/concepts/Concepts.tid +5 -3
- package/editions/tw5.com/tiddlers/concepts/Customizing EditTemplate Field Rendering.tid +31 -0
- package/editions/tw5.com/tiddlers/concepts/Edit Template Body Cascade.tid +16 -0
- package/editions/tw5.com/tiddlers/concepts/Field Editor Cascade.tid +17 -0
- package/editions/tw5.com/tiddlers/concepts/Filters.tid +15 -10
- package/editions/tw5.com/tiddlers/concepts/Macros.tid +1 -3
- package/editions/tw5.com/tiddlers/concepts/Messages.tid +2 -2
- package/editions/tw5.com/tiddlers/concepts/ModuleType.tid +2 -2
- package/editions/tw5.com/tiddlers/concepts/Order of Tagged Tiddlers.tid +1 -1
- package/editions/tw5.com/tiddlers/concepts/PermaLinks.tid +2 -2
- package/editions/tw5.com/tiddlers/concepts/Pragma.tid +2 -2
- package/editions/tw5.com/tiddlers/concepts/Railroad Diagrams.tid +2 -1
- package/editions/tw5.com/tiddlers/concepts/ShadowTiddlers.tid +14 -3
- package/editions/tw5.com/tiddlers/concepts/Story Tiddler Template Cascade.tid +16 -0
- package/editions/tw5.com/tiddlers/concepts/Story Tiddler Template.tid +13 -0
- package/editions/tw5.com/tiddlers/concepts/SystemTags.tid +9 -9
- package/editions/tw5.com/tiddlers/concepts/TagTiddlers.tid +1 -1
- package/editions/tw5.com/tiddlers/concepts/Tiddler Colour Cascade.tid +16 -0
- package/editions/tw5.com/tiddlers/concepts/Tiddler Icon Cascade.tid +16 -0
- package/editions/tw5.com/tiddlers/concepts/TiddlerFields.tid +2 -1
- package/editions/tw5.com/tiddlers/concepts/View Template Body Cascade.tid +19 -0
- package/editions/tw5.com/tiddlers/concepts/View Template Title Cascade.tid +16 -0
- package/editions/tw5.com/tiddlers/customising/Alternative page layouts.tid +1 -1
- package/editions/tw5.com/tiddlers/customising/Creating new toolbar buttons.tid +35 -0
- package/editions/tw5.com/tiddlers/customising/Customise TiddlyWiki.tid +3 -3
- package/editions/tw5.com/tiddlers/customising/Customising TiddlyWiki's user interface.tid +75 -0
- package/editions/tw5.com/tiddlers/definitions/BT.tid +3 -2
- package/editions/tw5.com/tiddlers/definitions/MathML.tid +2 -2
- package/editions/tw5.com/tiddlers/definitions/Osmosoft.tid +3 -2
- package/editions/tw5.com/tiddlers/definitions/node-webkit.tid +2 -1
- package/editions/tw5.com/tiddlers/demonstrations/Alice in Wonderland.tid +1 -1
- package/editions/tw5.com/tiddlers/demonstrations/Apple.tid +7 -2
- package/editions/tw5.com/tiddlers/demonstrations/Caruso - Ave Maria.tid +1 -0
- package/editions/tw5.com/tiddlers/demonstrations/CustomStoryTiddlerTemplateDemo.tid/Demo Tiddler List with Custom Story Tiddler Template.tid +10 -0
- package/editions/tw5.com/tiddlers/demonstrations/CustomStoryTiddlerTemplateDemo.tid/Styles.tid +32 -0
- package/editions/tw5.com/tiddlers/demonstrations/CustomStoryTiddlerTemplateDemo.tid/Template.tid +26 -0
- package/editions/tw5.com/tiddlers/demonstrations/CustomStoryTiddlerTemplateDemo.tid/TiddlerTemplateFilter.tid +6 -0
- package/editions/tw5.com/tiddlers/demonstrations/CustomTiddlerColourCascadeDemo/CustomTiddlerColourCascadeDemo.tid +9 -0
- package/editions/tw5.com/tiddlers/demonstrations/CustomTiddlerIconCascadeDemo/CustomTiddlerIconCascadeDemo.tid +9 -0
- package/editions/tw5.com/tiddlers/demonstrations/ImageGallery Example.tid +5 -16
- package/editions/tw5.com/tiddlers/demonstrations/KeyboardDrivenInput/Demonstration_ keyboard-driven-input Macro.tid +121 -0
- package/editions/tw5.com/tiddlers/demonstrations/KeyboardDrivenInput/kdi-demo-configtid.tid +7 -0
- package/editions/tw5.com/tiddlers/demonstrations/SampleNotification.tid +2 -1
- package/editions/tw5.com/tiddlers/demonstrations/SampleTiddlerFirst.tid +3 -1
- package/editions/tw5.com/tiddlers/demonstrations/SampleTiddlerSecond.tid +3 -1
- package/editions/tw5.com/tiddlers/demonstrations/SampleTiddlerThird.tid +3 -1
- package/editions/tw5.com/tiddlers/demonstrations/SampleWizard.tid +2 -1
- package/editions/tw5.com/tiddlers/demonstrations/SampleWizard2.tid +2 -1
- package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/Contents.tid +3 -2
- package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/First.tid +3 -3
- package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/FirstOne.tid +2 -2
- package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/FirstThree.tid +2 -2
- package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/FirstTwo.tid +2 -2
- package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/Fourth.tid +2 -2
- package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/Second.tid +2 -2
- package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/SecondOne.tid +2 -2
- package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/SecondThree.tid +3 -3
- package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/SecondThreeOne.tid +2 -2
- package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/SecondThreeThree.tid +2 -2
- package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/SecondThreeTwo.tid +2 -2
- package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/SecondTwo.tid +2 -2
- package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/Third.tid +3 -3
- package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/ThirdOne.tid +2 -2
- package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/ThirdThree.tid +2 -2
- package/editions/tw5.com/tiddlers/demonstrations/TableOfContents/ThirdTwo.tid +2 -2
- package/editions/tw5.com/tiddlers/demonstrations/Tagged with TagMacro.tid +2 -1
- package/editions/tw5.com/tiddlers/demonstrations/Tasks/Compose ballad.tid +3 -3
- package/editions/tw5.com/tiddlers/demonstrations/Tasks/Get the Ring.tid +3 -3
- package/editions/tw5.com/tiddlers/demonstrations/Tasks/Go to Mordor.tid +3 -3
- package/editions/tw5.com/tiddlers/demonstrations/Tasks/Kill the Dragon.tid +4 -4
- package/editions/tw5.com/tiddlers/demonstrations/Tasks/Make the beds.tid +3 -3
- package/editions/tw5.com/tiddlers/demonstrations/Tasks/done.tid +3 -1
- package/editions/tw5.com/tiddlers/demonstrations/Tasks/task.tid +3 -2
- package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Days of the Week.tid +5 -4
- package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Friday.tid +2 -1
- package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Monday.tid +2 -1
- package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Saturday.tid +3 -2
- package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Sunday.tid +2 -1
- package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Thursday.tid +2 -1
- package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Tuesday.tid +2 -1
- package/editions/tw5.com/tiddlers/demonstrations/Weekdays/Wednesday.tid +2 -1
- package/editions/tw5.com/tiddlers/demonstrations/sampletag1.tid +3 -0
- package/editions/tw5.com/tiddlers/demonstrations/sampletag2.tid +3 -0
- package/editions/tw5.com/tiddlers/features/DateFormat.tid +11 -2
- package/editions/tw5.com/tiddlers/features/Importing Tiddlers.tid +1 -1
- package/editions/tw5.com/tiddlers/features/LazyLoading.tid +2 -3
- package/editions/tw5.com/tiddlers/features/Modals.tid +2 -1
- package/editions/tw5.com/tiddlers/features/Performance Instrumentation.tid +1 -1
- package/editions/tw5.com/tiddlers/features/Scalability.tid +4 -2
- package/editions/tw5.com/tiddlers/fileformats/TiddlerFiles.tid +15 -4
- package/editions/tw5.com/tiddlers/filters/Filter Operators.tid +11 -7
- package/editions/tw5.com/tiddlers/filters/Mathematics Operators.tid +2 -1
- package/editions/tw5.com/tiddlers/filters/acos Operator.tid +15 -0
- package/editions/tw5.com/tiddlers/filters/all.tid +2 -2
- package/editions/tw5.com/tiddlers/filters/asin Operator.tid +15 -0
- package/editions/tw5.com/tiddlers/filters/atan Operator.tid +13 -0
- package/editions/tw5.com/tiddlers/filters/atan2 Operator.tid +15 -0
- package/editions/tw5.com/tiddlers/filters/average.tid +13 -0
- package/editions/tw5.com/tiddlers/filters/butlast.tid +3 -1
- package/editions/tw5.com/tiddlers/filters/charcode.tid +17 -0
- package/editions/tw5.com/tiddlers/filters/cos Operator.tid +13 -0
- package/editions/tw5.com/tiddlers/filters/deserializers Operator.tid +14 -0
- package/editions/tw5.com/tiddlers/filters/duplicateslugs Operator.tid +3 -3
- package/editions/tw5.com/tiddlers/filters/enlist Operator.tid +2 -3
- package/editions/tw5.com/tiddlers/filters/enlist-input Operator.tid +1 -1
- package/editions/tw5.com/tiddlers/filters/examples/acos Operator (Examples).tid +7 -0
- package/editions/tw5.com/tiddlers/filters/examples/asin Operator (Examples).tid +7 -0
- package/editions/tw5.com/tiddlers/filters/examples/atan Operator (Examples).tid +7 -0
- package/editions/tw5.com/tiddlers/filters/examples/atan2 Operator (Examples).tid +7 -0
- package/editions/tw5.com/tiddlers/filters/examples/average Operator (Examples).tid +10 -0
- package/editions/tw5.com/tiddlers/filters/examples/butlast.tid +4 -3
- package/editions/tw5.com/tiddlers/filters/examples/charcode.tid +7 -0
- package/editions/tw5.com/tiddlers/filters/examples/cos Operator (Examples).tid +7 -0
- package/editions/tw5.com/tiddlers/filters/examples/cycle Operator (Examples).tid +1 -1
- package/editions/tw5.com/tiddlers/filters/examples/deserializers Operator (Examples).tid +7 -0
- package/editions/tw5.com/tiddlers/filters/examples/format Operator (Examples).tid +16 -1
- package/editions/tw5.com/tiddlers/filters/examples/insertbefore Operator (Examples).tid +28 -0
- package/editions/tw5.com/tiddlers/filters/examples/log Operator (Examples).tid +1 -1
- package/editions/tw5.com/tiddlers/filters/examples/lookup Operator (Examples).tid +7 -1
- package/editions/tw5.com/tiddlers/filters/examples/match Operator (Examples).tid +1 -1
- package/editions/tw5.com/tiddlers/filters/examples/median Operator (Examples).tid +10 -0
- package/editions/tw5.com/tiddlers/filters/examples/moduleproperty Operator (Examples).tid +11 -0
- package/editions/tw5.com/tiddlers/filters/examples/modules.tid +4 -1
- package/editions/tw5.com/tiddlers/filters/examples/prefix.tid +4 -3
- package/editions/tw5.com/tiddlers/filters/examples/removeprefix.tid +2 -1
- package/editions/tw5.com/tiddlers/filters/examples/removesuffix.tid +2 -3
- package/editions/tw5.com/tiddlers/filters/examples/rest.tid +4 -3
- package/editions/tw5.com/tiddlers/filters/examples/search-replace Operator (Examples).tid +13 -1
- package/editions/tw5.com/tiddlers/filters/examples/search.tid +6 -1
- package/editions/tw5.com/tiddlers/filters/examples/sin Operator (Examples).tid +7 -0
- package/editions/tw5.com/tiddlers/filters/examples/sortan.tid +5 -1
- package/editions/tw5.com/tiddlers/filters/examples/standard-deviation Operator (Examples).tid +10 -0
- package/editions/tw5.com/tiddlers/filters/examples/subfilter Operator (Examples).tid +25 -3
- package/editions/tw5.com/tiddlers/filters/examples/suffix.tid +3 -2
- package/editions/tw5.com/tiddlers/filters/examples/tan Operator (Examples).tid +7 -0
- package/editions/tw5.com/tiddlers/filters/examples/unique Operator (Examples).tid +8 -0
- package/editions/tw5.com/tiddlers/filters/examples/variance Operator (Examples).tid +10 -0
- package/editions/tw5.com/tiddlers/filters/examples/zth Operator (Examples).tid +10 -0
- package/editions/tw5.com/tiddlers/filters/filter.tid +3 -1
- package/editions/tw5.com/tiddlers/filters/format.tid +2 -1
- package/editions/tw5.com/tiddlers/filters/insertbefore Operator.tid +21 -5
- package/editions/tw5.com/tiddlers/filters/list.tid +2 -2
- package/editions/tw5.com/tiddlers/filters/lookup Operator.tid +28 -10
- package/editions/tw5.com/tiddlers/filters/median.tid +13 -0
- package/editions/tw5.com/tiddlers/filters/moduleproperty Operator.tid +12 -0
- package/editions/tw5.com/tiddlers/filters/modules.tid +8 -6
- package/editions/tw5.com/tiddlers/filters/nth.tid +9 -7
- package/editions/tw5.com/tiddlers/filters/prefix.tid +17 -2
- package/editions/tw5.com/tiddlers/filters/range.tid +22 -20
- package/editions/tw5.com/tiddlers/filters/reduce.tid +2 -1
- package/editions/tw5.com/tiddlers/filters/removeprefix.tid +18 -3
- package/editions/tw5.com/tiddlers/filters/removesuffix.tid +18 -3
- package/editions/tw5.com/tiddlers/filters/search-replace Operator.tid +2 -2
- package/editions/tw5.com/tiddlers/filters/search.tid +10 -9
- package/editions/tw5.com/tiddlers/filters/sha256 Operator.tid +18 -0
- package/editions/tw5.com/tiddlers/filters/sin Operator.tid +13 -0
- package/editions/tw5.com/tiddlers/filters/sortsub Operator.tid +12 -9
- package/editions/tw5.com/tiddlers/filters/standard-deviation Operator.tid +15 -0
- package/editions/tw5.com/tiddlers/filters/storyviews.tid +1 -1
- package/editions/tw5.com/tiddlers/filters/subfilter Operator.tid +5 -3
- package/editions/tw5.com/tiddlers/filters/suffix.tid +17 -2
- package/editions/tw5.com/tiddlers/filters/syntax/Cascade Filter Run Prefix (Examples).tid +46 -0
- package/editions/tw5.com/tiddlers/filters/syntax/Cascade Filter Run Prefix.tid +20 -0
- package/editions/tw5.com/tiddlers/filters/syntax/Filter Expression.tid +12 -3
- package/editions/tw5.com/tiddlers/filters/syntax/Filter Filter Run Prefix (Examples).tid +30 -0
- package/editions/tw5.com/tiddlers/filters/syntax/Filter Filter Run Prefix.tid +27 -0
- package/editions/tw5.com/tiddlers/filters/syntax/Filter Parameter.tid +3 -2
- package/editions/tw5.com/tiddlers/filters/syntax/Filter Run Prefix (Examples).tid +9 -34
- package/editions/tw5.com/tiddlers/filters/syntax/Intersection Filter Run Prefix (Examples).tid +36 -0
- package/editions/tw5.com/tiddlers/filters/syntax/Intersection Filter Run Prefix.tid +15 -0
- package/editions/tw5.com/tiddlers/filters/syntax/Map Filter Run Prefix (Examples).tid +41 -0
- package/editions/tw5.com/tiddlers/filters/syntax/Map Filter Run Prefix.tid +27 -0
- package/editions/tw5.com/tiddlers/filters/syntax/Named Filter Run Prefix.tid +3 -3
- package/editions/tw5.com/tiddlers/filters/syntax/Reduce Filter Run Prefix (Examples).tid +27 -0
- package/editions/tw5.com/tiddlers/filters/syntax/Reduce Filter Run Prefix.tid +38 -0
- package/editions/tw5.com/tiddlers/filters/syntax/Sort Filter Run Prefix (Examples).tid +33 -0
- package/editions/tw5.com/tiddlers/filters/syntax/Sort Filter Run Prefix.tid +32 -0
- package/editions/tw5.com/tiddlers/filters/tan Operator.tid +13 -0
- package/editions/tw5.com/tiddlers/filters/unique.tid +10 -0
- package/editions/tw5.com/tiddlers/filters/variance Operator.tid +15 -0
- package/editions/tw5.com/tiddlers/filters/zth Operator.tid +18 -0
- package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Android.tid +2 -1
- package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Chrome.tid +2 -1
- package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Firefox.tid +2 -1
- package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Internet Explorer.tid +2 -1
- package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Node.js.tid +2 -1
- package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Online.tid +2 -2
- package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Safari.tid +2 -1
- package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - iOS.tid +2 -1
- package/editions/tw5.com/tiddlers/hellothere/A Gentle Guide to TiddlyWiki.tid +5 -2
- package/editions/tw5.com/tiddlers/{AllTiddlers.tid → hellothere/AllTiddlers.tid} +0 -0
- package/editions/tw5.com/tiddlers/hellothere/HelloThere.tid +3 -3
- package/editions/tw5.com/tiddlers/hellothere/HelloThumbnail.tid +1 -1
- package/editions/tw5.com/tiddlers/hellothere/Some of the things you can do with TiddlyWiki.tid +2 -2
- package/editions/tw5.com/tiddlers/hellothere/badges/ProductHunt-Badge.svg.tid +1 -0
- package/editions/tw5.com/tiddlers/hellothere/badges/ProductHunt-Link.tid +1 -0
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Grok TiddlyWiki.tid +6 -0
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyWikiLinks.tid +6 -0
- package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting HtmlParserDisableSandbox.tid +13 -0
- package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting NewImageType.tid +3 -1
- package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting ShowEditPreviewPerTiddler.tid +10 -0
- package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting_ Disable Drag and Drop.tid +2 -2
- package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting_ Enable File Import in Editor_1.tid +12 -0
- package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting_ Typin Refresh Delay.tid +2 -2
- package/editions/tw5.com/tiddlers/hiddensettings/Hidden Settings_ Import Content Types for Editor.tid +11 -0
- package/editions/tw5.com/tiddlers/howtos/Concatenating text and variables using macro substitution.tid +4 -14
- package/editions/tw5.com/tiddlers/howtos/Creating SubStories.tid +21 -33
- package/editions/tw5.com/tiddlers/howtos/Debugging Stylesheets.tid +11 -0
- package/editions/tw5.com/tiddlers/howtos/Formatting List Results as Tables with CSS - Specified Columns Methods.tid +4 -0
- package/editions/tw5.com/tiddlers/howtos/How to create a custom story tiddler template.tid +40 -0
- package/editions/tw5.com/tiddlers/howtos/How to create a custom tiddler colour rule.tid +36 -0
- package/editions/tw5.com/tiddlers/howtos/How to create a custom tiddler icon rule.tid +36 -0
- package/editions/tw5.com/tiddlers/howtos/How to create dynamic editor toolbar buttons.tid +126 -0
- package/editions/tw5.com/tiddlers/howtos/Simple ways to write protect tiddlers.tid +4 -5
- package/editions/tw5.com/tiddlers/howtos/Text preview.tid +6 -2
- package/editions/tw5.com/tiddlers/howtos/Using Stylesheets.tid +10 -4
- package/editions/tw5.com/tiddlers/images/Grok TiddlyWiki.png +0 -0
- package/editions/tw5.com/tiddlers/images/Grok TiddlyWiki.png.meta +3 -0
- package/editions/tw5.com/tiddlers/images/Icon Gallery.tid +14 -0
- package/editions/tw5.com/tiddlers/images/New Release Banner.png +0 -0
- package/editions/tw5.com/tiddlers/images/TiddlyWikiLinks.png +0 -0
- package/editions/tw5.com/tiddlers/images/TiddlyWikiLinks.png.meta +3 -0
- package/editions/tw5.com/tiddlers/languages/Japanese (Japan) Edition.tid +11 -0
- package/editions/tw5.com/tiddlers/languages/LanguageGallery.tid +2 -2
- package/editions/tw5.com/tiddlers/macros/NowMacro.tid +3 -1
- package/editions/tw5.com/tiddlers/macros/TabsMacro.tid +3 -3
- package/editions/tw5.com/tiddlers/macros/UnusedTitleMacro.tid +28 -4
- package/editions/tw5.com/tiddlers/macros/examples/colour-picker Macro (Example 1).tid +2 -2
- package/editions/tw5.com/tiddlers/macros/examples/image-picker Macro (Example 1).tid +2 -2
- package/editions/tw5.com/tiddlers/macros/examples/image-picker Macro (Example 2).tid +2 -2
- package/editions/tw5.com/tiddlers/macros/examples/qualify.tid +0 -2
- package/editions/tw5.com/tiddlers/macros/examples/unusedtitle Macro (Examples 1).tid +51 -0
- package/editions/tw5.com/tiddlers/macros/examples/unusedtitle.tid +11 -2
- package/editions/tw5.com/tiddlers/macros/keyboard-driven-input_Macro.tid +3 -0
- package/editions/tw5.com/tiddlers/macros/list-links-draggable Macro.tid +1 -1
- package/editions/tw5.com/tiddlers/mechanisms/RefreshThrottling.tid +3 -2
- package/editions/tw5.com/tiddlers/mechanisms/StateMechanism.tid +2 -2
- package/editions/tw5.com/tiddlers/messages/SampleModal.tid +2 -1
- package/editions/tw5.com/tiddlers/messages/SampleWindowTemplate.tid +10 -0
- package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-close-all-windows.tid +20 -0
- package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-close-window.tid +39 -0
- package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-download-file.tid +6 -1
- package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-edit-text-operation.tid +27 -1
- package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-navigate.tid +7 -1
- package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-open-window.tid +28 -6
- package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-relink-tiddler.tid +26 -0
- package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-rename-tiddler.tid +4 -2
- package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-scroll.tid +3 -0
- package/editions/tw5.com/tiddlers/nodejs/Customising Tiddler File Naming.tid +19 -15
- package/editions/tw5.com/tiddlers/nodejs/Environment Variables on Node.js.tid +4 -2
- package/editions/tw5.com/tiddlers/nodejs/Installing TiddlyWiki on Node.js.tid +10 -3
- package/editions/tw5.com/tiddlers/nodejs/tiddlywiki.files_Files.tid +6 -5
- package/editions/tw5.com/tiddlers/nodejs/tiddlywiki.info_Files.tid +2 -2
- package/editions/tw5.com/tiddlers/platforms/TiddlyFox Apocalypse.tid +2 -2
- package/editions/tw5.com/tiddlers/platforms/TiddlyWiki in the Sky for TiddlyWeb.tid +3 -8
- package/editions/tw5.com/tiddlers/plugins/Highlight Plugin.tid +3 -1
- package/editions/tw5.com/tiddlers/plugins/Plugin Types.tid +2 -2
- package/editions/tw5.com/tiddlers/plugins/Share Plugin.tid +12 -0
- package/editions/tw5.com/tiddlers/reference/Reference.tid +1 -0
- package/editions/tw5.com/tiddlers/releasenotes/BetaReleases.tid +2 -2
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.21.tid +6 -0
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.22.tid +6 -0
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.23.tid +5 -3
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.0.tid +303 -0
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.1.tid +124 -0
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.2.tid +162 -0
- package/editions/tw5.com/tiddlers/releasenotes/ReleaseTemplate.tid +3 -0
- package/editions/tw5.com/tiddlers/releasenotes/Releases.tid +4 -2
- package/editions/tw5.com/tiddlers/releasenotes/alpha/AlphaReleases.tid +2 -2
- package/editions/tw5.com/tiddlers/saving/Example config-tiddlyweb-host for IIS.txt.meta +1 -1
- package/editions/tw5.com/tiddlers/saving/Example package.json for IIS.txt.meta +1 -1
- package/editions/tw5.com/tiddlers/saving/Example tiddlywiki.info for IIS.txt.meta +1 -1
- package/editions/tw5.com/tiddlers/saving/Example web.config for IIS.txt.meta +1 -1
- package/editions/tw5.com/tiddlers/saving/Saving on Browser with the File System Access API.tid +21 -0
- package/editions/tw5.com/tiddlers/saving/Saving on TidGi.tid +26 -0
- package/editions/tw5.com/tiddlers/saving/Saving on TiddlyHost.tid +17 -0
- package/editions/tw5.com/tiddlers/saving/Saving on TiddlySpot.tid +19 -29
- package/editions/tw5.com/tiddlers/saving/Saving to a Git service.tid +2 -2
- package/editions/tw5.com/tiddlers/saving/Saving via WebDAV.tid +65 -10
- package/editions/tw5.com/tiddlers/saving/Saving with Polly.tid +29 -0
- package/editions/tw5.com/tiddlers/saving/TiddlyWiki in the Sky for Dropbox.tid +1 -1
- package/editions/tw5.com/tiddlers/styleguide/Documentation Macros.tid +6 -2
- package/editions/tw5.com/tiddlers/styleguide/Tiddler Structure.tid +3 -1
- package/editions/tw5.com/tiddlers/{TableOfContents.tid → system/TableOfContents.tid} +0 -0
- package/editions/tw5.com/tiddlers/system/doc-macros.tid +42 -1
- package/editions/tw5.com/tiddlers/system/doc-styles.tid +34 -5
- package/editions/tw5.com/tiddlers/system/download-empty.tid +1 -0
- package/editions/tw5.com/tiddlers/system/operator-macros.tid +16 -7
- package/editions/tw5.com/tiddlers/system/operator-template.tid +14 -11
- package/editions/tw5.com/tiddlers/system/style-guide-macros.tid +5 -1
- package/editions/tw5.com/tiddlers/system/variable-macros.tid +4 -2
- package/editions/tw5.com/tiddlers/system/wikitext-macros.tid +21 -3
- package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ControlPanel_Plugins.tid +9 -0
- package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_EditorTools.tid +9 -0
- package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_Image.tid +2 -2
- package/editions/tw5.com/tiddlers/variables/examples/Sample Headings 1-2-3.tid +2 -1
- package/editions/tw5.com/tiddlers/variables/examples/Sample Headings 3-4-5.tid +2 -1
- package/editions/tw5.com/tiddlers/variables/examples/Sample Headings 4-5-6.tid +2 -1
- package/editions/tw5.com/tiddlers/webserver/Using HTTPS.tid +17 -2
- package/editions/tw5.com/tiddlers/webserver/Using the external JavaScript template.tid +86 -9
- package/editions/tw5.com/tiddlers/webserver/WebServer API_ Delete Tiddler.tid +5 -1
- package/editions/tw5.com/tiddlers/webserver/WebServer API_ Get All Tiddlers.tid +1 -1
- package/editions/tw5.com/tiddlers/webserver/WebServer API_ Put Tiddler.tid +5 -1
- package/editions/tw5.com/tiddlers/webserver/WebServer Authorization.tid +15 -3
- package/editions/tw5.com/tiddlers/webserver/WebServer Parameter_ admin.tid +8 -0
- package/editions/tw5.com/tiddlers/webserver/WebServer Parameter_ required-plugins.tid +8 -0
- package/editions/tw5.com/tiddlers/webserver/WebServer Parameter_ tls-passphrase.tid +10 -0
- package/editions/tw5.com/tiddlers/widgets/$__docs_anyField.tid +8 -0
- package/editions/tw5.com/tiddlers/widgets/$__editions_tw5.com_widget-examples_qualify-transcluded.tid +14 -0
- package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Example 1.tid +2 -2
- package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Example 2.tid +2 -2
- package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Example 3.tid +3 -3
- package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Example 4.tid +4 -4
- package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Template.tid +2 -2
- package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget.tid +10 -6
- package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget_Example.tid +7 -5
- package/editions/tw5.com/tiddlers/widgets/ActionListopsWidget.tid +52 -2
- package/editions/tw5.com/tiddlers/widgets/ActionPopupWidget.tid +4 -1
- package/editions/tw5.com/tiddlers/widgets/ActionSendMessageWidget.tid +3 -1
- package/editions/tw5.com/tiddlers/widgets/ActionSetMultipleFieldsWidget.tid +31 -0
- package/editions/tw5.com/tiddlers/widgets/ActionWidget Execution Modes.tid +49 -0
- package/editions/tw5.com/tiddlers/widgets/ActionWidgets.tid +10 -7
- package/editions/tw5.com/tiddlers/widgets/ButtonWidget.tid +2 -2
- package/editions/tw5.com/tiddlers/widgets/CheckboxWidget.tid +2 -2
- package/editions/tw5.com/tiddlers/widgets/DraggableWidget.tid +9 -4
- package/editions/tw5.com/tiddlers/widgets/DroppableWidget.tid +2 -2
- package/editions/tw5.com/tiddlers/widgets/DropzoneWidget.tid +11 -6
- package/editions/tw5.com/tiddlers/widgets/EditTextWidget.tid +10 -20
- package/editions/tw5.com/tiddlers/widgets/EditWidget.tid +2 -2
- package/editions/tw5.com/tiddlers/widgets/EventCatcherWidget.tid +36 -27
- package/editions/tw5.com/tiddlers/widgets/FieldManglerWidget.tid +3 -3
- package/editions/tw5.com/tiddlers/widgets/ImageWidget.tid +9 -1
- package/editions/tw5.com/tiddlers/widgets/JSONTiddlerWidget.tid +22 -0
- package/editions/tw5.com/tiddlers/widgets/Keyboard Codes.tid +27 -0
- package/editions/tw5.com/tiddlers/widgets/KeyboardWidget.tid +17 -3
- package/editions/tw5.com/tiddlers/widgets/LetWidget.tid +57 -0
- package/editions/tw5.com/tiddlers/widgets/LinkCatcherWidget.tid +3 -2
- package/editions/tw5.com/tiddlers/widgets/ListWidget.tid +34 -1
- package/editions/tw5.com/tiddlers/widgets/ListopsData.tid +1 -0
- package/editions/tw5.com/tiddlers/widgets/MacroCallWidget.tid +3 -1
- package/editions/tw5.com/tiddlers/widgets/MessageCatcherWidget.tid +46 -0
- package/editions/tw5.com/tiddlers/widgets/MessageHandlerWidgets.tid +13 -0
- package/editions/tw5.com/tiddlers/widgets/NavigatorWidget.tid +5 -2
- package/editions/tw5.com/tiddlers/widgets/QualifyWidget.tid +39 -0
- package/editions/tw5.com/tiddlers/widgets/RadioWidget Example.tid +14 -11
- package/editions/tw5.com/tiddlers/widgets/RadioWidget.tid +9 -9
- package/editions/tw5.com/tiddlers/widgets/RangeWidget Example.tid +4 -5
- package/editions/tw5.com/tiddlers/widgets/RangeWidget.tid +5 -5
- package/editions/tw5.com/tiddlers/widgets/SelectWidget.tid +27 -3
- package/editions/tw5.com/tiddlers/widgets/SetMultipleVariablesWidget.tid +33 -0
- package/editions/tw5.com/tiddlers/widgets/SetWidget.tid +62 -35
- package/editions/tw5.com/tiddlers/widgets/The Extended Listops Filters.tid +2 -1
- package/editions/tw5.com/tiddlers/widgets/TranscludeWidget.tid +7 -6
- package/editions/tw5.com/tiddlers/widgets/TriggeringWidgets.tid +13 -0
- package/editions/tw5.com/tiddlers/widgets/VarsWidget.tid +7 -5
- package/editions/tw5.com/tiddlers/widgets/ViewWidget.tid +27 -8
- package/editions/tw5.com/tiddlers/widgets/WikifyWidget.tid +2 -2
- package/editions/tw5.com/tiddlers/wikitext/HTML in WikiText.tid +48 -5
- package/editions/tw5.com/tiddlers/wikitext/Images in WikiText.tid +5 -3
- package/editions/tw5.com/tiddlers/wikitext/Linking in WikiText.tid +44 -1
- package/editions/tw5.com/tiddlers/wikitext/Macro Calls in WikiText.tid +3 -3
- package/editions/tw5.com/tiddlers/wikitext/Transclusion and Substitution.tid +3 -2
- package/editions/tw5.com/tiddlers/wikitext/Transclusion in WikiText.tid +2 -1
- package/editions/tw5.com/tiddlers/wikitext/Widgets in WikiText.tid +3 -3
- package/editions/tw5.com/tiddlers/wikitext/parser/Block Mode WikiText (Examples).tid +51 -0
- package/editions/tw5.com/tiddlers/wikitext/parser/Block Mode WikiText.tid +35 -0
- package/editions/tw5.com/tiddlers/wikitext/parser/Inline Mode WikiText.tid +26 -0
- package/editions/tw5.com/tiddlers/wikitext/parser/Places where the parser ignores WikiText.tid +14 -0
- package/editions/tw5.com/tiddlers/wikitext/parser/WikiText Parser Modes.tid +16 -0
- package/editions/tw5.com/tiddlers/wikitext/parser/WikiText parser mode transitions.tid +59 -0
- package/editions/tw5.com/tiddlers/wikitext/parser/WikiText parser mode_ HTML examples.tid +72 -0
- package/editions/tw5.com/tiddlers/wikitext/parser/WikiText parser mode_ macro examples.tid +55 -0
- package/editions/tw5.com/tiddlers/wikitext/parser/WikiText parser mode_ transclusion examples.tid +56 -0
- package/editions/tw5.com/tiddlers/wikitext/parser/table-example.tid +8 -0
- package/editions/tw5.com/tiddlers/workingwithtw/Sharing your tiddlers with others.tid +2 -1
- package/editions/tw5.com/tiddlywiki.info +2 -2
- package/editions/xlsx-utils/tiddlers/samples/Presidents and Justices.xlsx and b/package/editions/xlsx-utils/tiddlers/samples/Presidents → Justices.xlsx +0 -0
- package/languages/ar-PS/Misc.multids +1 -2
- package/languages/ca-ES/ControlPanel.multids +4 -1
- package/languages/ca-ES/EditTemplate.multids +4 -0
- package/languages/ca-ES/Help/notfound.tid +1 -1
- package/languages/ca-ES/Import.multids +11 -0
- package/languages/ca-ES/Misc.multids +20 -2
- package/languages/cs-CZ/Misc.multids +0 -1
- package/languages/da-DK/Misc.multids +0 -1
- package/languages/de-DE/ControlPanel.multids +22 -1
- package/languages/de-DE/Docs/ModuleTypes.multids +1 -0
- package/languages/de-DE/EditTemplate.multids +2 -0
- package/languages/de-DE/Fields.multids +6 -5
- package/languages/de-DE/Help/listen.tid +3 -2
- package/languages/de-DE/Help/render.tid +2 -1
- package/languages/de-DE/Import.multids +6 -0
- package/languages/de-DE/Misc.multids +10 -2
- package/languages/de-DE/SideBar.multids +1 -0
- package/languages/de-DE/ThemeTweaks.multids +2 -2
- package/languages/de-DE/TiddlerInfo.multids +1 -1
- package/languages/el-GR/Misc.multids +1 -2
- package/languages/es-ES/Buttons.multids +29 -6
- package/languages/es-ES/ControlPanel.multids +97 -37
- package/languages/es-ES/Dates.multids +11 -1
- package/languages/es-ES/Docs/ModuleTypes.multids +8 -0
- package/languages/es-ES/Docs/PaletteColours.multids +109 -0
- package/languages/es-ES/EditTemplate.multids +18 -11
- package/languages/es-ES/Exporters.multids +2 -2
- package/languages/es-ES/Fields.multids +7 -4
- package/languages/es-ES/Filters.multids +9 -7
- package/languages/es-ES/GettingStarted.tid +1 -0
- package/languages/es-ES/Help/deletetiddlers.tid +8 -0
- package/languages/es-ES/Help/fetch.tid +38 -0
- package/languages/es-ES/Help/import.tid +24 -0
- package/languages/es-ES/Help/init.tid +1 -7
- package/languages/es-ES/Help/listen.tid +35 -0
- package/languages/es-ES/Help/load.tid +5 -2
- package/languages/es-ES/Help/makelibrary.tid +1 -3
- package/languages/es-ES/Help/password.tid +2 -1
- package/languages/es-ES/Help/render.tid +35 -0
- package/languages/es-ES/Help/rendertiddler.tid +14 -3
- package/languages/es-ES/Help/rendertiddlers.tid +6 -6
- package/languages/es-ES/Help/save.tid +25 -0
- package/languages/es-ES/Help/savetiddler.tid +3 -2
- package/languages/es-ES/Help/savetiddlers.tid +6 -3
- package/languages/es-ES/Help/savewikifolder.tid +19 -0
- package/languages/es-ES/Help/server.tid +12 -8
- package/languages/es-ES/Import.multids +23 -4
- package/languages/es-ES/Misc.multids +68 -22
- package/languages/es-ES/NewJournalTags.tid +3 -0
- package/languages/es-ES/Notifications.multids +3 -1
- package/languages/es-ES/Search.multids +1 -0
- package/languages/es-ES/SideBar.multids +1 -0
- package/languages/es-ES/ThemeTweaks.multids +42 -0
- package/languages/es-ES/TiddlerInfo.multids +2 -2
- package/languages/es-ES/Types/{application%2Fjavascript.tid → application_javascript.tid} +1 -0
- package/languages/es-ES/Types/{application%2Fjson.tid → application_json.tid} +1 -0
- package/languages/es-ES/Types/{application%2Fx-tiddler-dictionary.tid → application_x_tiddler_dictionary.tid} +1 -0
- package/languages/es-ES/Types/{image%2Fgif.tid → image_gif.tid} +1 -0
- package/languages/es-ES/Types/{image%2Fjpeg.tid → image_jpeg.tid} +1 -0
- package/languages/es-ES/Types/{image%2Fpng.tid → image_png.tid} +1 -0
- package/languages/es-ES/Types/{image%2Fsvg%2Bxml.tid → image_svg_xml.tid} +1 -0
- package/languages/es-ES/Types/{image%2Fx-icon.tid → image_x-icon.tid} +1 -0
- package/languages/es-ES/Types/{text%2Fcss.tid → text_css.tid} +1 -0
- package/languages/es-ES/Types/{text%2Fhtml.tid → text_html.tid} +1 -0
- package/languages/es-ES/Types/{text%2Fplain.tid → text_plain.tid} +1 -0
- package/languages/es-ES/Types/{text%2Fvnd.tiddlywiki.tid → text_vnd.tiddlywiki.tid} +1 -0
- package/languages/es-ES/Types/{text%2Fx-tiddlywiki.tid → text_x-tiddlywiki.tid} +1 -0
- package/languages/es-ES/plugin.info +3 -3
- package/languages/fa-IR/Misc.multids +1 -2
- package/languages/fr-FR/ControlPanel.multids +5 -1
- package/languages/fr-FR/Docs/ModuleTypes.multids +2 -1
- package/languages/fr-FR/EditTemplate.multids +4 -0
- package/languages/fr-FR/Filters.multids +3 -2
- package/languages/fr-FR/Help/listen.tid +2 -0
- package/languages/fr-FR/Help/render.tid +5 -4
- package/languages/fr-FR/Import.multids +17 -11
- package/languages/fr-FR/Misc.multids +11 -2
- package/languages/fr-FR/TiddlerInfo.multids +2 -2
- package/languages/he-IL/Misc.multids +0 -1
- package/languages/hi-IN/Misc.multids +0 -1
- package/languages/ia-IA/Misc.multids +0 -1
- package/languages/it-IT/Misc.multids +0 -1
- package/languages/ja-JP/Misc.multids +0 -1
- package/languages/ko-KR/Misc.multids +0 -1
- package/languages/nl-NL/Misc.multids +1 -2
- package/languages/pa-IN/Misc.multids +0 -1
- package/languages/pl-PL/Buttons.multids +189 -0
- package/languages/pl-PL/ControlPanel.multids +229 -0
- package/languages/pl-PL/Dates.multids +88 -0
- package/languages/pl-PL/Docs/ModuleTypes.multids +30 -0
- package/languages/pl-PL/Docs/PaletteColours.multids +109 -0
- package/languages/pl-PL/EditTemplate.multids +38 -0
- package/languages/pl-PL/Exporters.multids +7 -0
- package/languages/pl-PL/Fields.multids +39 -0
- package/languages/pl-PL/Filters.multids +16 -0
- package/languages/pl-PL/GettingStarted.tid +17 -0
- package/languages/pl-PL/Help/build.tid +12 -0
- package/languages/pl-PL/Help/clearpassword.tid +8 -0
- package/languages/pl-PL/Help/default.tid +22 -0
- package/languages/pl-PL/Help/deletetiddlers.tid +8 -0
- package/languages/pl-PL/Help/editions.tid +8 -0
- package/languages/pl-PL/Help/fetch.tid +40 -0
- package/languages/pl-PL/Help/help.tid +10 -0
- package/languages/pl-PL/Help/import.tid +24 -0
- package/languages/pl-PL/Help/init.tid +23 -0
- package/languages/pl-PL/Help/listen.tid +35 -0
- package/languages/pl-PL/Help/load.tid +19 -0
- package/languages/pl-PL/Help/makelibrary.tid +14 -0
- package/languages/pl-PL/Help/notfound.tid +3 -0
- package/languages/pl-PL/Help/output.tid +11 -0
- package/languages/pl-PL/Help/password.tid +10 -0
- package/languages/pl-PL/Help/render.tid +35 -0
- package/languages/pl-PL/Help/rendertiddler.tid +24 -0
- package/languages/pl-PL/Help/rendertiddlers.tid +20 -0
- package/languages/pl-PL/Help/save.tid +25 -0
- package/languages/pl-PL/Help/savetiddler.tid +14 -0
- package/languages/pl-PL/Help/savetiddlers.tid +16 -0
- package/languages/pl-PL/Help/savewikifolder.tid +19 -0
- package/languages/pl-PL/Help/server.tid +42 -0
- package/languages/pl-PL/Help/setfield.tid +17 -0
- package/languages/pl-PL/Help/unpackplugin.tid +8 -0
- package/languages/pl-PL/Help/verbose.tid +8 -0
- package/languages/pl-PL/Help/version.tid +8 -0
- package/languages/pl-PL/Import.multids +35 -0
- package/languages/pl-PL/Misc.multids +95 -0
- package/languages/pl-PL/Modals/Download.tid +12 -0
- package/languages/pl-PL/Modals/SaveInstructions.tid +21 -0
- package/languages/pl-PL/NewJournal.multids +4 -0
- package/languages/pl-PL/NewJournalTags.tid +3 -0
- package/languages/pl-PL/Notifications.multids +6 -0
- package/languages/pl-PL/Search.multids +21 -0
- package/languages/pl-PL/SideBar.multids +18 -0
- package/languages/pl-PL/SiteSubtitle.tid +3 -0
- package/languages/pl-PL/SiteTitle.tid +3 -0
- package/languages/pl-PL/Snippets/ListByTag.tid +5 -0
- package/languages/pl-PL/Snippets/MacroDefinition.tid +7 -0
- package/languages/pl-PL/Snippets/Table 4x3.tid +8 -0
- package/languages/pl-PL/Snippets/TableOfContents.tid +9 -0
- package/languages/pl-PL/ThemeTweaks.multids +42 -0
- package/languages/pl-PL/TiddlerInfo.multids +22 -0
- package/languages/pl-PL/Types/application_javascript.tid +5 -0
- package/languages/pl-PL/Types/application_json.tid +5 -0
- package/languages/pl-PL/Types/application_x_tiddler_dictionary.tid +5 -0
- package/languages/pl-PL/Types/image_gif.tid +5 -0
- package/languages/pl-PL/Types/image_jpeg.tid +5 -0
- package/languages/pl-PL/Types/image_png.tid +5 -0
- package/languages/pl-PL/Types/image_svg_xml.tid +5 -0
- package/languages/pl-PL/Types/image_x-icon.tid +5 -0
- package/languages/pl-PL/Types/text_css.tid +5 -0
- package/languages/pl-PL/Types/text_html.tid +5 -0
- package/languages/pl-PL/Types/text_plain.tid +5 -0
- package/languages/pl-PL/Types/text_vnd.tiddlywiki.tid +5 -0
- package/languages/pl-PL/Types/text_x-tiddlywiki.tid +5 -0
- package/languages/pl-PL/icon.tid +7 -0
- package/languages/pl-PL/plugin.info +8 -0
- package/languages/pl-PL/readme.md +1 -0
- package/languages/pt-BR/Misc.multids +0 -1
- package/languages/pt-PT/Misc.multids +1 -2
- package/languages/ru-RU/Misc.multids +0 -1
- package/languages/sk-SK/Misc.multids +0 -1
- package/languages/sl-SI/Misc.multids +1 -2
- package/languages/sv-SE/Misc.multids +0 -1
- package/languages/zh-Hans/Buttons.multids +1 -1
- package/languages/zh-Hans/ControlPanel.multids +19 -4
- package/languages/zh-Hans/Docs/ModuleTypes.multids +2 -1
- package/languages/zh-Hans/EditTemplate.multids +2 -0
- package/languages/zh-Hans/Fields.multids +4 -2
- package/languages/zh-Hans/Help/listen.tid +4 -2
- package/languages/zh-Hans/Help/render.tid +2 -2
- package/languages/zh-Hans/Help/save.tid +1 -1
- package/languages/zh-Hans/Import.multids +6 -0
- package/languages/zh-Hans/Misc.multids +4 -3
- package/languages/zh-Hant/Buttons.multids +1 -1
- package/languages/zh-Hant/ControlPanel.multids +19 -2
- package/languages/zh-Hant/Docs/ModuleTypes.multids +2 -1
- package/languages/zh-Hant/EditTemplate.multids +2 -0
- package/languages/zh-Hant/Fields.multids +4 -2
- package/languages/zh-Hant/Help/listen.tid +5 -3
- package/languages/zh-Hant/Help/render.tid +2 -2
- package/languages/zh-Hant/Help/save.tid +1 -1
- package/languages/zh-Hant/Import.multids +6 -0
- package/languages/zh-Hant/Misc.multids +4 -3
- package/license +1 -1
- package/licenses/cla-individual.md +67 -1
- package/package.json +5 -3
- package/plugins/tiddlywiki/bibtex/deserializer.js +3 -2
- package/plugins/tiddlywiki/codemirror/engine.js +86 -3
- package/plugins/tiddlywiki/dynannotate/examples/viewtemplate.tid +3 -4
- package/plugins/tiddlywiki/filesystem/filesystemadaptor.js +25 -21
- package/plugins/tiddlywiki/freelinks/settings.tid +2 -0
- package/plugins/tiddlywiki/freelinks/text.js +8 -3
- package/plugins/tiddlywiki/highlight/files/default.min.css +9 -0
- package/plugins/tiddlywiki/highlight/files/highlight.min.js +1401 -0
- package/plugins/tiddlywiki/highlight/files/tiddlywiki.files +2 -2
- package/plugins/tiddlywiki/highlight/highlightblock.js +27 -21
- package/plugins/tiddlywiki/highlight/plugin.info +1 -1
- package/plugins/tiddlywiki/highlight/readme.tid +18 -47
- package/plugins/tiddlywiki/highlight/styles.tid +10 -5
- package/plugins/tiddlywiki/highlight/usage.tid +48 -1
- package/plugins/tiddlywiki/highlight-legacy/TypeMappings.multids +8 -0
- package/plugins/tiddlywiki/{highlight → highlight-legacy}/files/default.css +0 -0
- package/plugins/tiddlywiki/{highlight → highlight-legacy}/files/highlight.pack.js +0 -0
- package/plugins/tiddlywiki/highlight-legacy/files/tiddlywiki.files +22 -0
- package/plugins/tiddlywiki/highlight-legacy/highlightblock.js +44 -0
- package/plugins/tiddlywiki/highlight-legacy/license.tid +27 -0
- package/plugins/tiddlywiki/highlight-legacy/plugin.info +7 -0
- package/plugins/tiddlywiki/highlight-legacy/readme.tid +65 -0
- package/plugins/tiddlywiki/highlight-legacy/styles.tid +82 -0
- package/plugins/tiddlywiki/highlight-legacy/usage.tid +28 -0
- package/plugins/tiddlywiki/innerwiki/template.tid +0 -4
- package/plugins/tiddlywiki/internals/editpreviews/raw.tid +1 -0
- package/plugins/tiddlywiki/katex/config.tid +17 -0
- package/plugins/tiddlywiki/katex/files/README.md +79 -100
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_AMS-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_AMS-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_AMS-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Bold.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Bold.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Bold.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Bold.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-BoldItalic.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Italic.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Italic.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Italic.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-BoldItalic.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-Italic.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-Italic.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-Italic.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Bold.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Italic.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Script-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Script-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Script-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size1-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size1-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size1-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size2-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size2-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size2-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size3-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size3-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size3-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size4-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size4-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size4-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Typewriter-Regular.woff +0 -0
- package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
- package/plugins/tiddlywiki/katex/files/katex.css +1079 -0
- package/plugins/tiddlywiki/katex/files/katex.js +4917 -3543
- package/plugins/tiddlywiki/katex/files/katex.min.css +1 -1
- package/plugins/tiddlywiki/katex/files/katex.min.js +1 -1
- package/plugins/tiddlywiki/katex/files/katex.without-font-face.min.css +1 -1
- package/plugins/tiddlywiki/katex/files/mhchem.min.js +1 -1683
- package/plugins/tiddlywiki/katex/files/tiddlywiki.files +3 -1
- package/plugins/tiddlywiki/katex/plugin.info +2 -2
- package/plugins/tiddlywiki/katex/readme.tid +1 -1
- package/plugins/tiddlywiki/katex/styles.tid +7 -1
- package/plugins/tiddlywiki/katex/ui/config/macro.tid +137 -0
- package/plugins/tiddlywiki/katex/wrapper.js +19 -13
- package/plugins/tiddlywiki/markdown/config_renderWikiTextPragma.tid +1 -1
- package/plugins/tiddlywiki/markdown/files/remarkable-katex-license.txt +21 -0
- package/plugins/tiddlywiki/markdown/files/remarkable-katex.js +137 -0
- package/plugins/tiddlywiki/markdown/files/remarkable-katex.min.js +20 -0
- package/plugins/tiddlywiki/markdown/files/remarkable-license.txt +22 -0
- package/plugins/tiddlywiki/markdown/files/tiddlywiki.files +24 -0
- package/plugins/tiddlywiki/markdown/plugin.info +2 -2
- package/plugins/tiddlywiki/markdown/readme.tid +1 -1
- package/plugins/tiddlywiki/markdown/wrapper.js +50 -16
- package/plugins/tiddlywiki/menubar/menu.tid +1 -1
- package/plugins/tiddlywiki/menubar/readme.tid +1 -0
- package/plugins/tiddlywiki/qrcode/ViewToolbarButton/Button.tid +1 -2
- package/plugins/tiddlywiki/savetrail/savetrail.js +4 -4
- package/plugins/tiddlywiki/share/rawmarkup.js +1 -1
- package/plugins/tiddlywiki/text-slicer/ui/slice-toolbar-button.tid +1 -1
- package/plugins/tiddlywiki/tiddlyweb/html-div-tiddler.tid +1 -1
- package/plugins/tiddlywiki/tiddlyweb/html-json-skinny-tiddler.tid +4 -0
- package/plugins/tiddlywiki/tiddlyweb/html-json-tiddler.tid +4 -0
- package/plugins/tiddlywiki/tiddlyweb/syncer-actions-refresh.tid +1 -1
- package/plugins/tiddlywiki/tiddlyweb/tiddlywebadaptor.js +26 -13
- package/plugins/tiddlywiki/xlsx-utils/deserializer.js +2 -1
- package/readme.md +3 -3
- package/themes/tiddlywiki/snowwhite/base.tid +2 -1
- package/themes/tiddlywiki/starlight/styles.tid +6 -6
- package/themes/tiddlywiki/tight/base.tid +5 -5
- package/themes/tiddlywiki/vanilla/ThemeTweaks.tid +7 -3
- package/themes/tiddlywiki/vanilla/base.tid +202 -87
- package/themes/tiddlywiki/vanilla/reset.tid +1 -1
- package/themes/tiddlywiki/vanilla/settings.multids +1 -1
- package/themes/tiddlywiki/vanilla/sticky.tid +1 -0
- package/core/ui/ViewTemplate/plugin.tid +0 -15
- package/editions/fr-FR/tiddlers/$__core_ui_ViewTemplate_title.tid +0 -46
- package/editions/fr-FR/tiddlers/Images_in_WikiText.tid +0 -48
- package/editions/fr-FR/tiddlers/ImportTiddlers.tid +0 -14
- package/editions/fr-FR/tiddlers/Sharing_your_tiddlers_with_others.tid +0 -16
- package/editions/tw5.com/tiddlers/community/Resources.tid +0 -25
- package/editions/tw5.com/tiddlers/community/examples/Obadiah.tid +0 -10
- package/editions/tw5.com/tiddlers/community/resources/Hosting TiddlyWiki5 on GoogleDrive.tid +0 -13
- package/editions/tw5.com/tiddlers/community/resources/How Does Twederation Work by Jed Carty.tid +0 -14
- package/editions/tw5.com/tiddlers/community/resources/Plugins by Uwe Stuehler.tid +0 -13
- package/editions/tw5.com/tiddlers/community/resources/TiddlyClip by buggyjay.tid +0 -14
- package/editions/tw5.com/tiddlers/community/resources/TiddlyWiki Jingle by Mans Martensson.tid +0 -18
- package/editions/tw5.com/tiddlers/community/resources/TiddlyWiki5 Coding.tid +0 -18
- package/editions/tw5.com/tiddlers/customising/Page and tiddler layout customisation.tid +0 -63
- package/editions/tw5.com/tiddlers/demonstrations/SampleAlert.tid +0 -9
- package/plugins/tiddlywiki/highlight/howto.tid +0 -10
package/boot/boot.js
CHANGED
@@ -68,6 +68,26 @@ $tw.utils.isArrayEqual = function(array1,array2) {
|
|
68
68
|
});
|
69
69
|
};
|
70
70
|
|
71
|
+
/*
|
72
|
+
Add an entry to a sorted array if it doesn't already exist, while maintaining the sort order
|
73
|
+
*/
|
74
|
+
$tw.utils.insertSortedArray = function(array,value) {
|
75
|
+
var low = 0, high = array.length - 1, mid, cmp;
|
76
|
+
while(low <= high) {
|
77
|
+
mid = (low + high) >> 1;
|
78
|
+
cmp = value.localeCompare(array[mid]);
|
79
|
+
if(cmp > 0) {
|
80
|
+
low = mid + 1;
|
81
|
+
} else if(cmp < 0) {
|
82
|
+
high = mid - 1;
|
83
|
+
} else {
|
84
|
+
return array;
|
85
|
+
}
|
86
|
+
}
|
87
|
+
array.splice(low,0,value);
|
88
|
+
return array;
|
89
|
+
};
|
90
|
+
|
71
91
|
/*
|
72
92
|
Push entries onto an array, removing them first if they already exist in the array
|
73
93
|
array: array to modify (assumed to be free of duplicates)
|
@@ -256,6 +276,28 @@ $tw.utils.deepDefaults = function(object /*, sourceObjectList */) {
|
|
256
276
|
return object;
|
257
277
|
};
|
258
278
|
|
279
|
+
/*
|
280
|
+
Convert a URIComponent encoded string to a string safely
|
281
|
+
*/
|
282
|
+
$tw.utils.decodeURIComponentSafe = function(s) {
|
283
|
+
var v = s;
|
284
|
+
try {
|
285
|
+
v = decodeURIComponent(s);
|
286
|
+
} catch(e) {}
|
287
|
+
return v;
|
288
|
+
};
|
289
|
+
|
290
|
+
/*
|
291
|
+
Convert a URI encoded string to a string safely
|
292
|
+
*/
|
293
|
+
$tw.utils.decodeURISafe = function(s) {
|
294
|
+
var v = s;
|
295
|
+
try {
|
296
|
+
v = decodeURI(s);
|
297
|
+
} catch(e) {}
|
298
|
+
return v;
|
299
|
+
};
|
300
|
+
|
259
301
|
/*
|
260
302
|
Convert "&" to &, " " to nbsp, "<" to <, ">" to > and """ to "
|
261
303
|
*/
|
@@ -387,6 +429,19 @@ $tw.utils.parseFields = function(text,fields) {
|
|
387
429
|
return fields;
|
388
430
|
};
|
389
431
|
|
432
|
+
// Safely parse a string as JSON
|
433
|
+
$tw.utils.parseJSONSafe = function(text,defaultJSON) {
|
434
|
+
try {
|
435
|
+
return JSON.parse(text);
|
436
|
+
} catch(e) {
|
437
|
+
if(typeof defaultJSON === "function") {
|
438
|
+
return defaultJSON(e);
|
439
|
+
} else {
|
440
|
+
return defaultJSON || {};
|
441
|
+
}
|
442
|
+
}
|
443
|
+
};
|
444
|
+
|
390
445
|
/*
|
391
446
|
Resolves a source filepath delimited with `/` relative to a specified absolute root filepath.
|
392
447
|
In relative paths, the special folder name `..` refers to immediate parent directory, and the
|
@@ -892,6 +947,19 @@ $tw.modules.applyMethods = function(moduleType,targetObject) {
|
|
892
947
|
return targetObject;
|
893
948
|
};
|
894
949
|
|
950
|
+
/*
|
951
|
+
Return a class created from a modules. The module should export the properties to be added to those of the optional base class
|
952
|
+
*/
|
953
|
+
$tw.modules.createClassFromModule = function(moduleExports,baseClass) {
|
954
|
+
var newClass = function() {};
|
955
|
+
if(baseClass) {
|
956
|
+
newClass.prototype = new baseClass();
|
957
|
+
newClass.prototype.constructor = baseClass;
|
958
|
+
}
|
959
|
+
$tw.utils.extend(newClass.prototype,moduleExports);
|
960
|
+
return newClass;
|
961
|
+
};
|
962
|
+
|
895
963
|
/*
|
896
964
|
Return an array of classes created from the modules of a specified type. Each module should export the properties to be added to those of the optional base class
|
897
965
|
*/
|
@@ -899,13 +967,7 @@ $tw.modules.createClassesFromModules = function(moduleType,subType,baseClass) {
|
|
899
967
|
var classes = Object.create(null);
|
900
968
|
$tw.modules.forEachModuleOfType(moduleType,function(title,moduleExports) {
|
901
969
|
if(!subType || moduleExports.types[subType]) {
|
902
|
-
|
903
|
-
if(baseClass) {
|
904
|
-
newClass.prototype = new baseClass();
|
905
|
-
newClass.prototype.constructor = baseClass;
|
906
|
-
}
|
907
|
-
$tw.utils.extend(newClass.prototype,moduleExports);
|
908
|
-
classes[moduleExports.name] = newClass;
|
970
|
+
classes[moduleExports.name] = $tw.modules.createClassFromModule(moduleExports,baseClass);
|
909
971
|
}
|
910
972
|
});
|
911
973
|
return classes;
|
@@ -1052,7 +1114,7 @@ $tw.Wiki = function(options) {
|
|
1052
1114
|
tiddlerTitles = null, // Array of tiddler titles
|
1053
1115
|
getTiddlerTitles = function() {
|
1054
1116
|
if(!tiddlerTitles) {
|
1055
|
-
tiddlerTitles = Object.keys(tiddlers);
|
1117
|
+
tiddlerTitles = Object.keys(tiddlers).sort(function(a,b) {return a.localeCompare(b);});
|
1056
1118
|
}
|
1057
1119
|
return tiddlerTitles;
|
1058
1120
|
},
|
@@ -1105,10 +1167,8 @@ $tw.Wiki = function(options) {
|
|
1105
1167
|
}
|
1106
1168
|
// Save the new tiddler
|
1107
1169
|
tiddlers[title] = tiddler;
|
1108
|
-
// Check we've got
|
1109
|
-
|
1110
|
-
tiddlerTitles.push(title);
|
1111
|
-
}
|
1170
|
+
// Check we've got the title
|
1171
|
+
tiddlerTitles = $tw.utils.insertSortedArray(tiddlerTitles || [],title);
|
1112
1172
|
// Record the new tiddler state
|
1113
1173
|
updateDescriptor["new"] = {
|
1114
1174
|
tiddler: tiddler,
|
@@ -1147,7 +1207,7 @@ $tw.Wiki = function(options) {
|
|
1147
1207
|
var index = tiddlerTitles.indexOf(title);
|
1148
1208
|
if(index !== -1) {
|
1149
1209
|
tiddlerTitles.splice(index,1);
|
1150
|
-
}
|
1210
|
+
}
|
1151
1211
|
}
|
1152
1212
|
// Record the new tiddler state
|
1153
1213
|
updateDescriptor["new"] = {
|
@@ -1205,8 +1265,12 @@ $tw.Wiki = function(options) {
|
|
1205
1265
|
index,titlesLength,title;
|
1206
1266
|
for(index = 0, titlesLength = titles.length; index < titlesLength; index++) {
|
1207
1267
|
title = titles[index];
|
1208
|
-
|
1209
|
-
|
1268
|
+
if(tiddlers[title]) {
|
1269
|
+
callback(tiddlers[title],title);
|
1270
|
+
} else {
|
1271
|
+
var shadowInfo = shadowTiddlers[title];
|
1272
|
+
callback(shadowInfo.tiddler,title);
|
1273
|
+
}
|
1210
1274
|
}
|
1211
1275
|
};
|
1212
1276
|
|
@@ -1289,12 +1353,12 @@ $tw.Wiki = function(options) {
|
|
1289
1353
|
var tiddler = tiddlers[title];
|
1290
1354
|
if(tiddler) {
|
1291
1355
|
if(tiddler.fields.type === "application/json" && tiddler.hasField("plugin-type") && tiddler.fields.text) {
|
1292
|
-
pluginInfo[tiddler.fields.title] =
|
1356
|
+
pluginInfo[tiddler.fields.title] = $tw.utils.parseJSONSafe(tiddler.fields.text);
|
1293
1357
|
results.modifiedPlugins.push(tiddler.fields.title);
|
1294
1358
|
}
|
1295
1359
|
} else {
|
1296
1360
|
if(pluginInfo[title]) {
|
1297
|
-
delete pluginInfo[title];
|
1361
|
+
delete pluginInfo[title];
|
1298
1362
|
results.deletedPlugins.push(title);
|
1299
1363
|
}
|
1300
1364
|
}
|
@@ -1422,7 +1486,7 @@ $tw.Wiki.prototype.defineTiddlerModules = function() {
|
|
1422
1486
|
}
|
1423
1487
|
break;
|
1424
1488
|
case "application/json":
|
1425
|
-
$tw.modules.define(tiddler.fields.title,tiddler.fields["module-type"]
|
1489
|
+
$tw.modules.define(tiddler.fields.title,tiddler.fields["module-type"],$tw.utils.parseJSONSafe(tiddler.fields.text));
|
1426
1490
|
break;
|
1427
1491
|
case "application/x-tiddler-dictionary":
|
1428
1492
|
$tw.modules.define(tiddler.fields.title,tiddler.fields["module-type"],$tw.utils.parseFields(tiddler.fields.text));
|
@@ -1595,8 +1659,8 @@ $tw.modules.define("$:/boot/tiddlerdeserializer/json","tiddlerdeserializer",{
|
|
1595
1659
|
}
|
1596
1660
|
for(var f in data) {
|
1597
1661
|
if($tw.utils.hop(data,f)) {
|
1598
|
-
// Check field name doesn't contain
|
1599
|
-
if(typeof(data[f]) !== "string" || /[\x00-\x1F
|
1662
|
+
// Check field name doesn't contain control characters
|
1663
|
+
if(typeof(data[f]) !== "string" || /[\x00-\x1F]/.test(f)) {
|
1600
1664
|
return false;
|
1601
1665
|
}
|
1602
1666
|
}
|
@@ -1611,7 +1675,7 @@ $tw.modules.define("$:/boot/tiddlerdeserializer/json","tiddlerdeserializer",{
|
|
1611
1675
|
}
|
1612
1676
|
return true;
|
1613
1677
|
},
|
1614
|
-
data =
|
1678
|
+
data = $tw.utils.parseJSONSafe(text);
|
1615
1679
|
if($tw.utils.isArray(data) && isTiddlerArrayValid(data)) {
|
1616
1680
|
return data;
|
1617
1681
|
} else if(isTiddlerValid(data)) {
|
@@ -1651,7 +1715,7 @@ $tw.boot.decryptEncryptedTiddlers = function(callback) {
|
|
1651
1715
|
$tw.crypto.setPassword(data.password);
|
1652
1716
|
var decryptedText = $tw.crypto.decrypt(encryptedText);
|
1653
1717
|
if(decryptedText) {
|
1654
|
-
var json =
|
1718
|
+
var json = $tw.utils.parseJSONSafe(decryptedText);
|
1655
1719
|
for(var title in json) {
|
1656
1720
|
$tw.preloadTiddler(json[title]);
|
1657
1721
|
}
|
@@ -1717,13 +1781,20 @@ $tw.modules.define("$:/boot/tiddlerdeserializer/dom","tiddlerdeserializer",{
|
|
1717
1781
|
},
|
1718
1782
|
t,result = [];
|
1719
1783
|
if(node) {
|
1720
|
-
|
1784
|
+
var type = (node.getAttribute && node.getAttribute("type")) || null;
|
1785
|
+
if(type) {
|
1786
|
+
// A new-style container with an explicit deserialization type
|
1787
|
+
result = $tw.wiki.deserializeTiddlers(type,node.textContent);
|
1788
|
+
} else {
|
1789
|
+
// An old-style container of classic DIV-based tiddlers
|
1790
|
+
for(t = 0; t < node.childNodes.length; t++) {
|
1721
1791
|
var childNode = node.childNodes[t],
|
1722
1792
|
tiddlers = extractTextTiddlers(childNode);
|
1723
1793
|
tiddlers = tiddlers || extractModuleTiddlers(childNode);
|
1724
1794
|
if(tiddlers) {
|
1725
1795
|
result.push.apply(result,tiddlers);
|
1726
1796
|
}
|
1797
|
+
}
|
1727
1798
|
}
|
1728
1799
|
}
|
1729
1800
|
return result;
|
@@ -1732,17 +1803,23 @@ $tw.modules.define("$:/boot/tiddlerdeserializer/dom","tiddlerdeserializer",{
|
|
1732
1803
|
|
1733
1804
|
$tw.loadTiddlersBrowser = function() {
|
1734
1805
|
// In the browser, we load tiddlers from certain elements
|
1735
|
-
var
|
1736
|
-
|
1737
|
-
"
|
1738
|
-
"
|
1739
|
-
"
|
1740
|
-
"
|
1741
|
-
"
|
1742
|
-
"
|
1806
|
+
var containerSelectors = [
|
1807
|
+
// IDs for old-style v5.1.x tiddler stores
|
1808
|
+
"#libraryModules",
|
1809
|
+
"#modules",
|
1810
|
+
"#bootKernelPrefix",
|
1811
|
+
"#bootKernel",
|
1812
|
+
"#styleArea",
|
1813
|
+
"#storeArea",
|
1814
|
+
"#systemArea",
|
1815
|
+
// Classes for new-style v5.2.x JSON tiddler stores
|
1816
|
+
"script.tiddlywiki-tiddler-store"
|
1743
1817
|
];
|
1744
|
-
for(var t=0; t<
|
1745
|
-
|
1818
|
+
for(var t=0; t<containerSelectors.length; t++) {
|
1819
|
+
var nodes = document.querySelectorAll(containerSelectors[t]);
|
1820
|
+
for(var n=0; n<nodes.length; n++) {
|
1821
|
+
$tw.wiki.addTiddlers($tw.wiki.deserializeTiddlers("(DOM)",nodes[n]));
|
1822
|
+
}
|
1746
1823
|
}
|
1747
1824
|
};
|
1748
1825
|
|
@@ -1838,7 +1915,7 @@ filepath: pathname of the directory containing the specification file
|
|
1838
1915
|
$tw.loadTiddlersFromSpecification = function(filepath,excludeRegExp) {
|
1839
1916
|
var tiddlers = [];
|
1840
1917
|
// Read the specification
|
1841
|
-
var filesInfo =
|
1918
|
+
var filesInfo = $tw.utils.parseJSONSafe(fs.readFileSync(filepath + path.sep + "tiddlywiki.files","utf8"));
|
1842
1919
|
// Helper to process a file
|
1843
1920
|
var processFile = function(filename,isTiddlerFile,fields,isEditableFile) {
|
1844
1921
|
var extInfo = $tw.config.fileExtensionInfo[path.extname(filename)],
|
@@ -1865,13 +1942,13 @@ $tw.loadTiddlersFromSpecification = function(filepath,excludeRegExp) {
|
|
1865
1942
|
value = path.basename(filename);
|
1866
1943
|
break;
|
1867
1944
|
case "filename-uri-decoded":
|
1868
|
-
value =
|
1945
|
+
value = $tw.utils.decodeURIComponentSafe(path.basename(filename));
|
1869
1946
|
break;
|
1870
1947
|
case "basename":
|
1871
1948
|
value = path.basename(filename,path.extname(filename));
|
1872
1949
|
break;
|
1873
1950
|
case "basename-uri-decoded":
|
1874
|
-
value =
|
1951
|
+
value = $tw.utils.decodeURIComponentSafe(path.basename(filename,path.extname(filename)));
|
1875
1952
|
break;
|
1876
1953
|
case "extname":
|
1877
1954
|
value = path.extname(filename);
|
@@ -1899,6 +1976,20 @@ $tw.loadTiddlersFromSpecification = function(filepath,excludeRegExp) {
|
|
1899
1976
|
tiddlers.push({tiddlers: fileTiddlers});
|
1900
1977
|
}
|
1901
1978
|
};
|
1979
|
+
// Helper to recursively search subdirectories
|
1980
|
+
var getAllFiles = function(dirPath, recurse, arrayOfFiles) {
|
1981
|
+
recurse = recurse || false;
|
1982
|
+
arrayOfFiles = arrayOfFiles || [];
|
1983
|
+
var files = fs.readdirSync(dirPath);
|
1984
|
+
files.forEach(function(file) {
|
1985
|
+
if (recurse && fs.statSync(dirPath + path.sep + file).isDirectory()) {
|
1986
|
+
arrayOfFiles = getAllFiles(dirPath + path.sep + file, recurse, arrayOfFiles);
|
1987
|
+
} else if(fs.statSync(dirPath + path.sep + file).isFile()){
|
1988
|
+
arrayOfFiles.push(path.join(dirPath, path.sep, file));
|
1989
|
+
}
|
1990
|
+
});
|
1991
|
+
return arrayOfFiles;
|
1992
|
+
}
|
1902
1993
|
// Process the listed tiddlers
|
1903
1994
|
$tw.utils.each(filesInfo.tiddlers,function(tidInfo) {
|
1904
1995
|
if(tidInfo.prefix && tidInfo.suffix) {
|
@@ -1922,18 +2013,19 @@ $tw.loadTiddlersFromSpecification = function(filepath,excludeRegExp) {
|
|
1922
2013
|
// Process directory specifier
|
1923
2014
|
var dirPath = path.resolve(filepath,dirSpec.path);
|
1924
2015
|
if(fs.existsSync(dirPath) && fs.statSync(dirPath).isDirectory()) {
|
1925
|
-
var files =
|
2016
|
+
var files = getAllFiles(dirPath, dirSpec.searchSubdirectories),
|
1926
2017
|
fileRegExp = new RegExp(dirSpec.filesRegExp || "^.*$"),
|
1927
2018
|
metaRegExp = /^.*\.meta$/;
|
1928
2019
|
for(var t=0; t<files.length; t++) {
|
1929
|
-
var
|
2020
|
+
var thisPath = path.relative(filepath, files[t]),
|
2021
|
+
filename = path.basename(thisPath);
|
1930
2022
|
if(filename !== "tiddlywiki.files" && !metaRegExp.test(filename) && fileRegExp.test(filename)) {
|
1931
|
-
processFile(
|
2023
|
+
processFile(thisPath,dirSpec.isTiddlerFile,dirSpec.fields,dirSpec.isEditableFile);
|
1932
2024
|
}
|
1933
2025
|
}
|
1934
2026
|
} else {
|
1935
2027
|
console.log("Warning: a directory in a tiddlywiki.files file does not exist.");
|
1936
|
-
console.log("dirPath: " + dirPath);
|
2028
|
+
console.log("dirPath: " + dirPath);
|
1937
2029
|
console.log("tiddlywiki.files location: " + filepath);
|
1938
2030
|
}
|
1939
2031
|
}
|
@@ -1953,7 +2045,7 @@ $tw.loadPluginFolder = function(filepath,excludeRegExp) {
|
|
1953
2045
|
console.log("Warning: missing plugin.info file in " + filepath);
|
1954
2046
|
return null;
|
1955
2047
|
}
|
1956
|
-
var pluginInfo =
|
2048
|
+
var pluginInfo = $tw.utils.parseJSONSafe(fs.readFileSync(infoPath,"utf8"));
|
1957
2049
|
// Read the plugin files
|
1958
2050
|
var pluginFiles = $tw.loadTiddlersFromPath(filepath,excludeRegExp);
|
1959
2051
|
// Save the plugin tiddlers into the plugin info
|
@@ -1978,7 +2070,7 @@ $tw.loadPluginFolder = function(filepath,excludeRegExp) {
|
|
1978
2070
|
pluginInfo.dependents = pluginInfo.dependents || [];
|
1979
2071
|
pluginInfo.type = "application/json";
|
1980
2072
|
// Set plugin text
|
1981
|
-
pluginInfo.text = JSON.stringify({tiddlers: pluginInfo.tiddlers}
|
2073
|
+
pluginInfo.text = JSON.stringify({tiddlers: pluginInfo.tiddlers});
|
1982
2074
|
delete pluginInfo.tiddlers;
|
1983
2075
|
// Deserialise array fields (currently required for the dependents field)
|
1984
2076
|
for(var field in pluginInfo) {
|
@@ -2070,7 +2162,7 @@ $tw.loadWikiTiddlers = function(wikiPath,options) {
|
|
2070
2162
|
pluginFields;
|
2071
2163
|
// Bail if we don't have a wiki info file
|
2072
2164
|
if(fs.existsSync(wikiInfoPath)) {
|
2073
|
-
wikiInfo =
|
2165
|
+
wikiInfo = $tw.utils.parseJSONSafe(fs.readFileSync(wikiInfoPath,"utf8"));
|
2074
2166
|
} else {
|
2075
2167
|
return null;
|
2076
2168
|
}
|
@@ -2126,6 +2218,7 @@ $tw.loadWikiTiddlers = function(wikiPath,options) {
|
|
2126
2218
|
fileInfo = $tw.boot.files[title];
|
2127
2219
|
if(fileInfo.isEditableFile) {
|
2128
2220
|
relativePath = path.relative($tw.boot.wikiTiddlersPath,fileInfo.filepath);
|
2221
|
+
fileInfo.originalpath = relativePath;
|
2129
2222
|
output[title] =
|
2130
2223
|
path.sep === "/" ?
|
2131
2224
|
relativePath :
|
@@ -2191,7 +2284,7 @@ $tw.loadTiddlersNode = function() {
|
|
2191
2284
|
type = parts[0];
|
2192
2285
|
if(parts.length === 3 && ["plugins","themes","languages"].indexOf(type) !== -1) {
|
2193
2286
|
$tw.loadPlugins([parts[1] + "/" + parts[2]],$tw.config[type + "Path"],$tw.config[type + "EnvVar"]);
|
2194
|
-
}
|
2287
|
+
}
|
2195
2288
|
}
|
2196
2289
|
});
|
2197
2290
|
// Load the tiddlers from the wiki directory
|
@@ -2301,6 +2394,7 @@ $tw.boot.initStartup = function(options) {
|
|
2301
2394
|
$tw.utils.registerFileType("image/heic","base64",".heic",{flags:["image"]});
|
2302
2395
|
$tw.utils.registerFileType("image/heif","base64",".heif",{flags:["image"]});
|
2303
2396
|
$tw.utils.registerFileType("image/svg+xml","utf8",".svg",{flags:["image"]});
|
2397
|
+
$tw.utils.registerFileType("image/vnd.microsoft.icon","base64",".ico",{flags:["image"]});
|
2304
2398
|
$tw.utils.registerFileType("image/x-icon","base64",".ico",{flags:["image"]});
|
2305
2399
|
$tw.utils.registerFileType("application/font-woff","base64",".woff");
|
2306
2400
|
$tw.utils.registerFileType("application/x-font-ttf","base64",".woff");
|
@@ -2458,16 +2552,29 @@ $tw.boot.executeNextStartupTask = function(callback) {
|
|
2458
2552
|
};
|
2459
2553
|
|
2460
2554
|
/*
|
2461
|
-
Returns true if we are running on one platforms specified in
|
2555
|
+
Returns true if we are running on one of the platforms specified in taskModule's
|
2556
|
+
`platforms` array; or if `platforms` property is not defined.
|
2462
2557
|
*/
|
2463
2558
|
$tw.boot.doesTaskMatchPlatform = function(taskModule) {
|
2464
2559
|
var platforms = taskModule.platforms;
|
2465
2560
|
if(platforms) {
|
2466
2561
|
for(var t=0; t<platforms.length; t++) {
|
2467
|
-
|
2468
|
-
|
2562
|
+
switch (platforms[t]) {
|
2563
|
+
case "browser":
|
2564
|
+
if ($tw.browser) {
|
2565
|
+
return true;
|
2566
|
+
}
|
2567
|
+
break;
|
2568
|
+
case "node":
|
2569
|
+
if ($tw.node) {
|
2570
|
+
return true;
|
2571
|
+
}
|
2572
|
+
break;
|
2573
|
+
default:
|
2574
|
+
$tw.utils.error("Module " + taskModule.name + ": '" + platforms[t] + "' in export.platforms invalid");
|
2469
2575
|
}
|
2470
2576
|
}
|
2577
|
+
return false;
|
2471
2578
|
}
|
2472
2579
|
return true;
|
2473
2580
|
};
|
@@ -2568,3 +2675,4 @@ if(typeof(exports) !== "undefined") {
|
|
2568
2675
|
} else {
|
2569
2676
|
_boot(window.$tw);
|
2570
2677
|
}
|
2678
|
+
//# sourceURL=$:/boot/boot.js
|
package/boot/bootprefix.js
CHANGED
package/contributing.md
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
<h1 class="">Contributing to <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki5.html">TiddlyWiki5</a></h1><p>
|
1
|
+
<h1 class="">Contributing to <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki5.html">TiddlyWiki5</a></h1><p>Here we focus on contributions via <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/GitHub.html">GitHub</a> Pull Requests but there are many other ways that anyone can help the <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> project, such as <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/ReportingBugs.html">reporting bugs</a> or helping to <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/Improving%2520TiddlyWiki%2520Documentation.html">improve our documentation</a>.</p><h1 class="">Rules for Pull Requests</h1><p>PRs must meet these minimum requirements before they can be considered for merging:</p><ul><li>The material in the PR must be free of licensing restrictions. Which means that either:<ul><li>The author must hold the copyright in all of the material themselves</li><li>The material must be licensed under a license compatible with <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a>'s BSD license</li></ul></li><li>The author must sign the Contributors License Agreement (see below)</li><li>Each PR should only make a single feature change</li><li>The title of the PR should be 50 characters or less</li><li>The title of the PR should be capitalised, and should not end with a period</li><li>The title of the PR should be written in the imperative mood. See below</li><li>Adequate explanation in the body of the PR for the motivation and implementation of the change. Focus on the <em>why</em> and <em>what</em>, rather than the <em>how</em></li><li>PRs must be self-contained. Although they can link to material elsewhere, everything needed to understand the intention of the PR should be included</li><li>Documentation as appropriate for end-users or developers</li><li>Observe the coding style</li><li>Read the developers documentation</li><li>Please open a consultation issue prior to investing time in making a large PR</li></ul><h2 class="">Imperative Mood for PR Titles</h2><p>The "imperative mood" means written as if giving a command or instruction. See <a class="tc-tiddlylink-external" href="https://chris.beams.io/posts/git-commit/#imperative" rel="noopener noreferrer" target="_blank">this post</a> for more details, but the gist is that the title of the PR should make sense when used to complete the sentence "If applied, this commit will...". So for example, these are good PR titles:</p><ul><li>If applied, this commit will <em>update the contributing guidelines</em></li><li>If applied, this commit will <em>change css-escape-polyfill to a $tw.utils method</em></li><li>If applied, this commit will <em>make it easier to subclass the wikitext parser with a custom rule set</em></li></ul><p>These a poorly worded PR titles:</p><ul><li><strike>If applied, this commit will <em>edit text widgets should use default text for missing fields</em></strike></li><li><strike>If applied, this commit will <em>signing the CLA</em></strike></li><li><strike>If applied, this commit will <em>don't crash if options.event is missing</em></strike></li></ul><p>PR titles may also include a short prefix to indicate the subsystem to which they apply. For example:</p><ul><li><em>Menu plugin: Include menu text in aerial rotator</em></li></ul><h1 class="">Commenting on Pull Requests</h1><p>One of the principles of open source is that many pairs of eyes on the code can improve quality. So, we welcome comments and critiques of pending PRs. <a class="tc-tiddlylink-external" href="https://conventionalcomments.org" rel="noopener noreferrer" target="_blank">Conventional Comments</a> has some techniques to help make comments as constructive and actionable as possible. Notably, they recommend prefixing a comment with a label to clarify the intention:</p><table><tbody><tr class="evenRow"><td align="left">praise</td><td align="left">Praises highlight something positive. Try to leave at least one of these comments per review. Do not leave false praise (which can actually be damaging). Do look for something to sincerely praise</td></tr><tr class="oddRow"><td align="left">nitpick</td><td align="left">Nitpicks are small, trivial, but necessary changes. Distinguishing nitpick comments significantly helps direct the reader's attention to comments requiring more involvement</td></tr><tr class="evenRow"><td align="left">suggestion</td><td align="left">Suggestions are specific requests to improve the subject under review. It is assumed that we all want to do what's best, so these comments are never dismissed as “mere suggestions”, but are taken seriously</td></tr><tr class="oddRow"><td align="left">issue</td><td align="left">Issues represent user-facing problems. If possible, it's great to follow this kind of comment with a suggestion</td></tr><tr class="evenRow"><td align="left">question</td><td align="left">Questions are appropriate if you have a potential concern but are not quite sure if it's relevant or not. Asking the author for clarification or investigation can lead to a quick resolution</td></tr><tr class="oddRow"><td align="left">thought</td><td align="left">Thoughts represent an idea that popped up from reviewing. These comments are non-blocking by nature, but they are extremely valuable and can lead to more focused initiatives and mentoring opportunities</td></tr><tr class="evenRow"><td align="left">chore</td><td align="left">Chores are simple tasks that must be done before the subject can be “officially” accepted. Usually, these comments reference some common process. Try to leave a link to the process description so that the reader knows how to resolve the chore</td></tr></tbody></table><h1 class="">Contributor License Agreement</h1><p>Like other <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/OpenSource.html">OpenSource</a> projects, <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki5.html">TiddlyWiki5</a> needs a signed contributor license agreement from individual contributors. This is a legal agreement that allows contributors to assert that they own the copyright of their contribution, and that they agree to license it to the <a class="tc-tiddlylink tc-tiddlylink-missing" href="https://tiddlywiki.com/static/UnaMesa.html">UnaMesa</a> Association (the legal entity that owns <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> on behalf of the community).</p><ul><li>For individuals use: <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/tree/tiddlywiki-com/licenses/cla-individual.md" rel="noopener noreferrer" target="_blank">licenses/CLA-individual</a></li><li>For entities use: <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/tree/tiddlywiki-com/licenses/cla-entity.md" rel="noopener noreferrer" target="_blank">licenses/CLA-entity</a></li></ul><h1 class="">How to sign the CLA</h1><p>Create a <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/GitHub.html">GitHub</a> pull request to add your name to <code>cla-individual.md</code> or <code>cla-entity.md</code>, with the date in the format (YYYY/MM/DD).</p><p><strong>step by step</strong></p><ol><li>Navigate to <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/tree/tiddlywiki-com/licenses/cla-individual.md" rel="noopener noreferrer" target="_blank">licenses/CLA-individual</a> or <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/tree/tiddlywiki-com/licenses/cla-entity.md" rel="noopener noreferrer" target="_blank">licenses/CLA-entity</a> according to whether you are signing as an individual or representative of an organisation</li><li>Ensure that the "branch" dropdown at the top left is set to <code>tiddlywiki-com</code></li><li>Click the "edit" button at the top-right corner (clicking this button will fork the project so you can edit the file)</li><li>Add your name at the bottom<ul><li>eg: <code>Jeremy Ruston, @Jermolene, 2011/11/22</code></li></ul></li><li>Below the edit box for the CLA text you should see a box labelled <strong>Propose file change</strong></li><li>Enter a brief title to explain the change (eg, "Signing the CLA")</li><li>Click the green button labelled <strong>Propose file change</strong></li><li>On the following screen, click the green button labelled <strong>Create pull request</strong></li></ol><hr><p><em>The CLA documents used for this project were created using <a class="tc-tiddlylink-external" href="http://www.harmonyagreements.org" rel="noopener noreferrer" target="_blank">Harmony Project Templates</a>. "HA-CLA-I-LIST Version 1.0" for "CLA-individual" and "HA-CLA-E-LIST Version 1.0" for "CLA-entity".</em>
|
2
2
|
</p><p><em>This file was automatically generated by <a class="tc-tiddlylink tc-tiddlylink-resolves" href="https://tiddlywiki.com/static/TiddlyWiki5.html">TiddlyWiki5</a></em>
|
3
3
|
</p>
|
package/core/copyright.tid
CHANGED
@@ -4,7 +4,7 @@ type: text/plain
|
|
4
4
|
TiddlyWiki created by Jeremy Ruston, (jeremy [at] jermolene [dot] com)
|
5
5
|
|
6
6
|
Copyright (c) 2004-2007, Jeremy Ruston
|
7
|
-
Copyright (c) 2007-
|
7
|
+
Copyright (c) 2007-2022, UnaMesa Association
|
8
8
|
All rights reserved.
|
9
9
|
|
10
10
|
Redistribution and use in source and binary forms, with or without
|
@@ -0,0 +1,4 @@
|
|
1
|
+
title: $:/core/images/minus-button
|
2
|
+
tags: $:/tags/Image
|
3
|
+
|
4
|
+
<svg width="22pt" height="22pt" class="tc-image-minus-button tc-image-button" viewBox="0 0 128 128"><path d="M64 0c35.346 0 64 28.654 64 64 0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64C0 28.654 28.654 0 64 0zm.332 16c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"/><rect width="80" height="16" x="24" y="56" rx="8"/></svg>
|
@@ -1,4 +1,4 @@
|
|
1
1
|
title: $:/core/images/plugin-generic-language
|
2
2
|
tags: $:/tags/Image
|
3
3
|
|
4
|
-
<svg width="22pt" height="22pt" viewBox="0 0 128 128"><path fill-rule="evenodd" d="M61.207 68.137c-4.324 2.795-6.999 6.656-6.999 10.921 0 7.906 9.19 14.424 21.042 15.336 2.162 3.902 8.598 6.785 16.318 7.01-5.126-1.125-9.117-3.742-10.62-7.01C92.805 93.487 102 86.967 102 79.059c0-8.53-10.699-15.445-23.896-15.445-6.599 0-12.572 1.729-16.897 4.524zm12.794-14.158c-4.324 2.795-10.298 4.524-16.897 4.524-2.619 0-5.14-.272-7.497-.775-3.312 2.25-8.383 3.69-14.067 3.69l-.255-.002c4.119-.892 7.511-2.747 9.478-5.13-6.925-2.704-11.555-7.617-11.555-13.228 0-8.53 10.699-15.445 23.896-15.445C70.301 27.613 81 34.528 81 43.058c0 4.265-2.675 8.126-6.999 10.921zM64 0l54.56 32v64L64 128 9.44 96V32L64 0z"/></svg>
|
4
|
+
<svg width="22pt" height="22pt" viewBox="0 0 128 128" class="tc-image-plugin-generic-language tc-image-button"><path fill-rule="evenodd" d="M61.207 68.137c-4.324 2.795-6.999 6.656-6.999 10.921 0 7.906 9.19 14.424 21.042 15.336 2.162 3.902 8.598 6.785 16.318 7.01-5.126-1.125-9.117-3.742-10.62-7.01C92.805 93.487 102 86.967 102 79.059c0-8.53-10.699-15.445-23.896-15.445-6.599 0-12.572 1.729-16.897 4.524zm12.794-14.158c-4.324 2.795-10.298 4.524-16.897 4.524-2.619 0-5.14-.272-7.497-.775-3.312 2.25-8.383 3.69-14.067 3.69l-.255-.002c4.119-.892 7.511-2.747 9.478-5.13-6.925-2.704-11.555-7.617-11.555-13.228 0-8.53 10.699-15.445 23.896-15.445C70.301 27.613 81 34.528 81 43.058c0 4.265-2.675 8.126-6.999 10.921zM64 0l54.56 32v64L64 128 9.44 96V32L64 0z"/></svg>
|
@@ -1,4 +1,4 @@
|
|
1
1
|
title: $:/core/images/plugin-generic-plugin
|
2
2
|
tags: $:/tags/Image
|
3
3
|
|
4
|
-
<svg width="22pt" height="22pt" viewBox="0 0 128 128"><path fill-rule="evenodd" d="M40.397 76.446V95.34h14.12l-.001-.005a6.912 6.912 0 005.364-11.593l.046-.023a6.912 6.912 0 119.979.526l.086.055a6.914 6.914 0 004.408 10.948l-.023.092h21.32V75.568l-.15.038a6.912 6.912 0 00-11.593-5.364l-.022-.046a6.912 6.912 0 11.526-9.979l.055-.086a6.914 6.914 0 0010.948-4.408c.079.018.158.038.236.059v-15.74h-21.32l.023-.094a6.914 6.914 0 01-4.408-10.947 10.23 10.23 0 00-.086-.055 6.912 6.912 0 10-9.979-.526l-.046.023a6.912 6.912 0 01-5.364 11.593l.001.005h-14.12v12.847A6.912 6.912 0 0129.5 59.843l-.054.086a6.912 6.912 0 10-.526 9.979l.023.046a6.912 6.912 0 0111.455 6.492zM64 0l54.56 32v64L64 128 9.44 96V32L64 0z"/></svg>
|
4
|
+
<svg width="22pt" height="22pt" viewBox="0 0 128 128" class="tc-image-plugin-generic-plugin tc-image-button"><path fill-rule="evenodd" d="M40.397 76.446V95.34h14.12l-.001-.005a6.912 6.912 0 005.364-11.593l.046-.023a6.912 6.912 0 119.979.526l.086.055a6.914 6.914 0 004.408 10.948l-.023.092h21.32V75.568l-.15.038a6.912 6.912 0 00-11.593-5.364l-.022-.046a6.912 6.912 0 11.526-9.979l.055-.086a6.914 6.914 0 0010.948-4.408c.079.018.158.038.236.059v-15.74h-21.32l.023-.094a6.914 6.914 0 01-4.408-10.947 10.23 10.23 0 00-.086-.055 6.912 6.912 0 10-9.979-.526l-.046.023a6.912 6.912 0 01-5.364 11.593l.001.005h-14.12v12.847A6.912 6.912 0 0129.5 59.843l-.054.086a6.912 6.912 0 10-.526 9.979l.023.046a6.912 6.912 0 0111.455 6.492zM64 0l54.56 32v64L64 128 9.44 96V32L64 0z"/></svg>
|
@@ -1,4 +1,4 @@
|
|
1
1
|
title: $:/core/images/plugin-generic-theme
|
2
2
|
tags: $:/tags/Image
|
3
3
|
|
4
|
-
<svg width="22pt" height="22pt" viewBox="0 0 128 128"><path fill-rule="evenodd" d="M29.408 91.472L51.469 69.41l-.004-.005a2.22 2.22 0 01.004-3.146c.87-.87 2.281-.872 3.147-.005l9.465 9.464a2.22 2.22 0 01-.005 3.147c-.87.87-2.28.871-3.147.005l-.005-.005-22.061 22.062a6.686 6.686 0 11-9.455-9.455zM60.802 66.38c-2.436-2.704-4.465-5.091-5.817-6.869-6.855-9.014-10.313-4.268-14.226 0-3.913 4.268 1.03 7.726-2.683 10.741-3.713 3.015-3.484 4.06-9.752-1.455-6.267-5.516-6.7-7.034-3.823-10.181 2.877-3.147 5.281 1.808 11.159-3.785 5.877-5.593.94-10.55.94-10.55s12.237-25.014 28.588-23.167c16.351 1.848-6.186-2.392-11.792 17.226-2.4 8.4.447 6.42 4.998 9.968 1.394 1.086 6.03 4.401 11.794 8.685l20.677-20.676 1.615-4.766 7.84-4.689 3.151 3.152-4.688 7.84-4.766 1.615-20.224 20.223c12.663 9.547 28.312 22.146 28.312 26.709 0 7.217-3.071 11.526-9.535 9.164-4.693-1.715-18.768-15.192-28.753-25.897l-2.893 2.893-3.151-3.152 3.029-3.029zM63.953 0l54.56 32v64l-54.56 32-54.56-32V32l54.56-32z"/></svg>
|
4
|
+
<svg width="22pt" height="22pt" viewBox="0 0 128 128" class="tc-image-plugin-generic-theme tc-image-button"><path fill-rule="evenodd" d="M29.408 91.472L51.469 69.41l-.004-.005a2.22 2.22 0 01.004-3.146c.87-.87 2.281-.872 3.147-.005l9.465 9.464a2.22 2.22 0 01-.005 3.147c-.87.87-2.28.871-3.147.005l-.005-.005-22.061 22.062a6.686 6.686 0 11-9.455-9.455zM60.802 66.38c-2.436-2.704-4.465-5.091-5.817-6.869-6.855-9.014-10.313-4.268-14.226 0-3.913 4.268 1.03 7.726-2.683 10.741-3.713 3.015-3.484 4.06-9.752-1.455-6.267-5.516-6.7-7.034-3.823-10.181 2.877-3.147 5.281 1.808 11.159-3.785 5.877-5.593.94-10.55.94-10.55s12.237-25.014 28.588-23.167c16.351 1.848-6.186-2.392-11.792 17.226-2.4 8.4.447 6.42 4.998 9.968 1.394 1.086 6.03 4.401 11.794 8.685l20.677-20.676 1.615-4.766 7.84-4.689 3.151 3.152-4.688 7.84-4.766 1.615-20.224 20.223c12.663 9.547 28.312 22.146 28.312 26.709 0 7.217-3.071 11.526-9.535 9.164-4.693-1.715-18.768-15.192-28.753-25.897l-2.893 2.893-3.151-3.152 3.029-3.029zM63.953 0l54.56 32v64l-54.56 32-54.56-32V32l54.56-32z"/></svg>
|
@@ -0,0 +1,4 @@
|
|
1
|
+
title: $:/core/images/plus-button
|
2
|
+
tags: $:/tags/Image
|
3
|
+
|
4
|
+
<svg width="22pt" height="22pt" class="tc-image-plus-button tc-image-button" viewBox="0 0 128 128"><path d="M64-.333c35.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-64zM64 16c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"/><rect width="80" height="16" x="24" y="56" rx="8"/><rect width="16" height="80" x="56" y="24" rx="8"/></svg>
|
@@ -27,10 +27,17 @@ Basics/Tiddlers/Prompt: Number of tiddlers
|
|
27
27
|
Basics/Title/Prompt: Title of this ~TiddlyWiki
|
28
28
|
Basics/Username/Prompt: Username for signing edits
|
29
29
|
Basics/Version/Prompt: ~TiddlyWiki version
|
30
|
+
Cascades/Caption: Cascades
|
31
|
+
Cascades/Hint: These global rules are used to dynamically choose certain templates. The result of the cascade is the result of the first filter in the sequence that returns a result
|
32
|
+
Cascades/TagPrompt: Filters tagged <$macrocall $name="tag" tag=<<currentTiddler>>/>
|
30
33
|
EditorTypes/Caption: Editor Types
|
31
34
|
EditorTypes/Editor/Caption: Editor
|
32
35
|
EditorTypes/Hint: These tiddlers determine which editor is used to edit specific tiddler types.
|
33
36
|
EditorTypes/Type/Caption: Type
|
37
|
+
EditTemplateBody/Caption: Edit Template Body
|
38
|
+
EditTemplateBody/Hint: This rule cascade is used by the default edit template to dynamically choose the template for editing the body of a tiddler.
|
39
|
+
FieldEditor/Caption: Field Editor
|
40
|
+
FieldEditor/Hint: This rules cascade is used to dynamically choose the template for rendering a tiddler field based on its name. It is used within the Edit Template.
|
34
41
|
Info/Caption: Info
|
35
42
|
Info/Hint: Information about this TiddlyWiki
|
36
43
|
KeyboardShortcuts/Add/Prompt: Type shortcut here
|
@@ -123,12 +130,12 @@ Saving/TiddlySpot/BackupDir: Backup Directory
|
|
123
130
|
Saving/TiddlySpot/ControlPanel: ~TiddlySpot Control Panel
|
124
131
|
Saving/TiddlySpot/Backups: Backups
|
125
132
|
Saving/TiddlySpot/Caption: ~TiddlySpot Saver
|
126
|
-
Saving/TiddlySpot/Description: These settings are only used when saving to http://tiddlyspot.com or a compatible remote server
|
133
|
+
Saving/TiddlySpot/Description: These settings are only used when saving to [[TiddlySpot|http://tiddlyspot.com]], [[TiddlyHost|https://tiddlyhost.com]], or a compatible remote server. See [[here|https://github.com/simonbaird/tiddlyhost/wiki/TiddlySpot-Saver-configuration-for-Tiddlyhost-and-Tiddlyspot]] for information on ~TiddlySpot and ~TiddlyHost saving configuration.
|
127
134
|
Saving/TiddlySpot/Filename: Upload Filename
|
128
135
|
Saving/TiddlySpot/Heading: ~TiddlySpot
|
129
136
|
Saving/TiddlySpot/Hint: //The server URL defaults to `http://<wikiname>.tiddlyspot.com/store.cgi` and can be changed to use a custom server address, e.g. `http://example.com/store.php`.//
|
130
137
|
Saving/TiddlySpot/Password: Password
|
131
|
-
Saving/TiddlySpot/ReadOnly:
|
138
|
+
Saving/TiddlySpot/ReadOnly: Note that [[TiddlySpot|http://tiddlyspot.com]] no longer allows the creation of new sites. For new sites, you can use [[TiddlyHost|https://tiddlyhost.com]], a new hosting service that replaces ~TiddlySpot.
|
132
139
|
Saving/TiddlySpot/ServerURL: Server URL
|
133
140
|
Saving/TiddlySpot/UploadDir: Upload Directory
|
134
141
|
Saving/TiddlySpot/UserName: Wiki Name
|
@@ -191,6 +198,8 @@ Settings/TitleLinks/Yes/Description: Display tiddler titles as links
|
|
191
198
|
Settings/MissingLinks/Caption: Wiki Links
|
192
199
|
Settings/MissingLinks/Hint: Choose whether to link to tiddlers that do not exist yet
|
193
200
|
Settings/MissingLinks/Description: Enable links to missing tiddlers
|
201
|
+
StoryTiddler/Caption: Story Tiddler
|
202
|
+
StoryTiddler/Hint: This rule cascade is used to dynamically choose the template for displaying a tiddler in the story river.
|
194
203
|
StoryView/Caption: Story View
|
195
204
|
StoryView/Prompt: Current view:
|
196
205
|
Stylesheets/Caption: Stylesheets
|
@@ -201,6 +210,10 @@ Theme/Caption: Theme
|
|
201
210
|
Theme/Prompt: Current theme:
|
202
211
|
TiddlerFields/Caption: Tiddler Fields
|
203
212
|
TiddlerFields/Hint: This is the full set of TiddlerFields in use in this wiki (including system tiddlers but excluding shadow tiddlers).
|
213
|
+
TiddlerColour/Caption: Tiddler Colour
|
214
|
+
TiddlerColour/Hint: This rules cascade is used to dynamically choose the colour for a tiddler (used for the icon and the associated tag pill).
|
215
|
+
TiddlerIcon/Caption: Tiddler Icon
|
216
|
+
TiddlerIcon/Hint: This rules cascade is used to dynamically choose the icon for a tiddler.
|
204
217
|
Toolbars/Caption: Toolbars
|
205
218
|
Toolbars/EditToolbar/Caption: Edit Toolbar
|
206
219
|
Toolbars/EditToolbar/Hint: Choose which buttons are displayed for tiddlers in edit mode. Drag and drop to change the ordering
|
@@ -212,3 +225,7 @@ Toolbars/EditorToolbar/Hint: Choose which buttons are displayed in the editor to
|
|
212
225
|
Toolbars/ViewToolbar/Caption: View Toolbar
|
213
226
|
Toolbars/ViewToolbar/Hint: Choose which buttons are displayed for tiddlers in view mode. Drag and drop to change the ordering
|
214
227
|
Tools/Download/Full/Caption: Download full wiki
|
228
|
+
ViewTemplateBody/Caption: View Template Body
|
229
|
+
ViewTemplateBody/Hint: This rule cascade is used by the default view template to dynamically choose the template for displaying the body of a tiddler.
|
230
|
+
ViewTemplateTitle/Caption: View Template Title
|
231
|
+
ViewTemplateTitle/Hint: This rule cascade is used by the default view template to dynamically choose the template for displaying the title of a tiddler.
|
@@ -23,6 +23,7 @@ tiddlerfield: Defines the behaviour of an individual tiddler field.
|
|
23
23
|
tiddlermethod: Adds methods to the `$tw.Tiddler` prototype.
|
24
24
|
upgrader: Applies upgrade processing to tiddlers during an upgrade/import.
|
25
25
|
utils: Adds methods to `$tw.utils`.
|
26
|
+
utils-browser: Adds browser-specific methods to `$tw.utils`.
|
26
27
|
utils-node: Adds Node.js-specific methods to `$tw.utils`.
|
27
28
|
widget: Widgets encapsulate DOM rendering and refreshing.
|
28
29
|
wikimethod: Adds methods to `$tw.Wiki`.
|
@@ -3,6 +3,8 @@ title: $:/language/EditTemplate/
|
|
3
3
|
Body/External/Hint: This tiddler shows content stored outside of the main TiddlyWiki file. You can edit the tags and fields but cannot directly edit the content itself
|
4
4
|
Body/Placeholder: Type the text for this tiddler
|
5
5
|
Body/Preview/Type/Output: output
|
6
|
+
Body/Preview/Type/DiffShadow: differences from shadow (if any)
|
7
|
+
Body/Preview/Type/DiffCurrent: differences from current
|
6
8
|
Field/Remove/Caption: remove field
|
7
9
|
Field/Remove/Hint: Remove field
|
8
10
|
Field/Dropdown/Caption: field list
|
@@ -3,6 +3,7 @@ title: $:/language/Docs/Fields/
|
|
3
3
|
_canonical_uri: The full URI of an external image tiddler
|
4
4
|
bag: The name of the bag from which a tiddler came
|
5
5
|
caption: The text to be displayed on a tab or button
|
6
|
+
code-body: The view template will display the tiddler as code if set to ''yes''
|
6
7
|
color: The CSS color value associated with a tiddler
|
7
8
|
component: The name of the component responsible for an [[alert tiddler|AlertMechanism]]
|
8
9
|
current-tiddler: Used to cache the top tiddler in a [[history list|HistoryMechanism]]
|
@@ -13,9 +14,9 @@ description: The descriptive text for a plugin, or a modal dialogue
|
|
13
14
|
draft.of: For draft tiddlers, contains the title of the tiddler of which this is a draft
|
14
15
|
draft.title: For draft tiddlers, contains the proposed new title of the tiddler
|
15
16
|
footer: The footer text for a wizard
|
16
|
-
hide-body: The view template will hide bodies of tiddlers if set to
|
17
|
+
hide-body: The view template will hide bodies of tiddlers if set to ''yes''
|
17
18
|
icon: The title of the tiddler containing the icon associated with a tiddler
|
18
|
-
library: Indicates that a tiddler should be saved as a JavaScript library if set to
|
19
|
+
library: Indicates that a tiddler should be saved as a JavaScript library if set to ''yes''
|
19
20
|
list: An ordered list of tiddler titles associated with a tiddler
|
20
21
|
list-before: If set, the title of a tiddler before which this tiddler should be added to the ordered list of tiddler titles, or at the start of the list if this field is present but empty
|
21
22
|
list-after: If set, the title of the tiddler after which this tiddler should be added to the ordered list of tiddler titles, or at the end of the list if this field is present but empty
|
@@ -32,7 +33,7 @@ tags: A list of tags associated with a tiddler
|
|
32
33
|
text: The body text of a tiddler
|
33
34
|
throttle.refresh: If present, throttles refreshes of this tiddler
|
34
35
|
title: The unique name of a tiddler
|
35
|
-
toc-link: Suppresses the tiddler's link in a Table of Contents tree if set to
|
36
|
+
toc-link: Suppresses the tiddler's link in a Table of Contents tree if set to ''no''
|
36
37
|
type: The content type of a tiddler
|
37
38
|
version: Version information for a plugin
|
38
39
|
_is_skinny: If present, indicates that the tiddler text field must be loaded from the server
|