diff --git a/editions/d3demo/tiddlers/HelloThere.tid b/editions/d3demo/tiddlers/HelloThere.tid index 8891b4543..492337346 100644 --- a/editions/d3demo/tiddlers/HelloThere.tid +++ b/editions/d3demo/tiddlers/HelloThere.tid @@ -1,6 +1,6 @@ title: HelloThere -This is a demo of TiddlyWiki5 incorporating a plugin for the [[D3.js]] visualization library. +This is a demo of TiddlyWiki5 incorporating a plugin for the [[D3.js]] visualisation library. ! Word Cloud diff --git a/editions/dev/tiddlers/from Heigele and Jurke/Microkernel Architecture.tid b/editions/dev/tiddlers/from Heigele and Jurke/Microkernel Architecture.tid index 84d53c348..6232885f2 100644 --- a/editions/dev/tiddlers/from Heigele and Jurke/Microkernel Architecture.tid +++ b/editions/dev/tiddlers/from Heigele and Jurke/Microkernel Architecture.tid @@ -5,7 +5,7 @@ sectionnumber: 2 tags: section doc title: Microkernel Architecture -This section describes the architecture of the ~TiddlyWiki-kernel. ~TiddlyWiki is based on a micro-kernel which provides only a small stack of functions. This design decision was made to introduce a cleaner mechanism for customization of ~TiddlyWiki. This section also describes the data-model of ~TiddlyWiki called tiddler. And it gives a overview to the modul system which developers can use to extend the functionality of the ~TiddlyWiki application. +This section describes the architecture of the ~TiddlyWiki-kernel. ~TiddlyWiki is based on a micro-kernel which provides only a small stack of functions. This design decision was made to introduce a cleaner mechanism for customisation of ~TiddlyWiki. This section also describes the data-model of ~TiddlyWiki called tiddler. And it gives a overview to the module system which developers can use to extend the functionality of the ~TiddlyWiki application. <$list filter="[!has[draft.of]has[chapter.of]chapter.of[Microkernel Architecture]tag[doc]sort[sub.num]]"> diff --git a/editions/dev/tiddlers/from Heigele and Jurke/Syncadaptor.tid b/editions/dev/tiddlers/from Heigele and Jurke/Syncadaptor.tid index 37c4558d9..b7c3ff76d 100644 --- a/editions/dev/tiddlers/from Heigele and Jurke/Syncadaptor.tid +++ b/editions/dev/tiddlers/from Heigele and Jurke/Syncadaptor.tid @@ -5,6 +5,6 @@ sub.num: 3 tags: doc title: Syncadaptor -A module with ``module-type: syncadaptor`` provides functionality to get a list of tiddlers (this list is provided as ~SkinnyTiddlers, which are normal tiddlers without the text field) and to load, save and delete single tiddlers. A syncadaptor can also provide functions to login and logout so that syncadaptor modules can be used to synchronize tiddlers with a remote server. +A module with ``module-type: syncadaptor`` provides functionality to get a list of tiddlers (this list is provided as ~SkinnyTiddlers, which are normal tiddlers without the text field) and to load, save and delete single tiddlers. A syncadaptor can also provide functions to login and logout so that syncadaptor modules can be used to synchronise tiddlers with a remote server. The syncer module only uses one syncadaptor and honours a special [[system tiddler|System Tiddlers]] [[$:/config/SyncFilter]] containing a [[filter string|Tags and Filter Mechanism]]. Tiddlers matching this filter string are saved to the server with a syncadapter. It uses the [[WebServer API|https://tiddlywiki.com/#WebServer%20API%3A%20Get%20All%20Tiddlers]] to load modified tiddlers from the server, which returns only non-system tiddlers. diff --git a/editions/dev/tiddlers/from Heigele and Jurke/Tiddler as Basic Element.tid b/editions/dev/tiddlers/from Heigele and Jurke/Tiddler as Basic Element.tid index b1d8edaf9..543e60814 100644 --- a/editions/dev/tiddlers/from Heigele and Jurke/Tiddler as Basic Element.tid +++ b/editions/dev/tiddlers/from Heigele and Jurke/Tiddler as Basic Element.tid @@ -27,10 +27,10 @@ On a different level, a tiddler is also the basic unit of work for the wiki user This makes sense for multiple reasons: Because the UI of TiddlyWiki is build from tiddlers, the wiki user is able to edit the interface of his own TiddlyWiki just by editing a wiki page. For example to add a list of tiddler links to the sidebar, the user just needs to create a new tiddler, put the links into this tiddler and tag this tiddler with ``$:/tags/SideBar``. -This way the user can customize his work environment just by using mechanisms he already uses to manage his wiki pages. +This way the user can customise his work environment just by using mechanisms he already uses to manage his wiki pages. Tiddlers consist of fields. When using a tiddler as wiki page, the user can use these fields to store meta information, like tags. -Because fields for metadata and especially tags are an easy way for the user to organize his wiki pages, TiddlyWiki provides a special filter mechanism to choose tiddlers using their metadata. +Because fields for metadata and especially tags are an easy way for the user to organise his wiki pages, TiddlyWiki provides a special filter mechanism to choose tiddlers using their metadata. A filter string like ``[tag[learncard]topic[math]!tag[successful]]`` would filter all tiddlers tagged with "learncard", with the value "math" in the topic-field and are not tagged with "successful". A user could use this filter together with the ``<$list>`` widget to display a list of all math learncards which are not yet answered successfully in a wiki page. diff --git a/editions/dev/tiddlers/from tw5.com/Developing plugins using Node.js and GitHub.tid b/editions/dev/tiddlers/from tw5.com/Developing plugins using Node.js and GitHub.tid index 543d629d4..719340794 100644 --- a/editions/dev/tiddlers/from tw5.com/Developing plugins using Node.js and GitHub.tid +++ b/editions/dev/tiddlers/from tw5.com/Developing plugins using Node.js and GitHub.tid @@ -10,7 +10,7 @@ The most practical way to develop plugins is to use Node.js with the tiddlywiki5 !! 1. Installation -First read https://tiddlywiki.com/static/PluginMechanism.html. +First read https://tiddlywiki.com/static/PluginMechanism.html. Install Git from http://git-scm.com/downloads @@ -85,7 +85,7 @@ For example files see the plugins in the ~TiddlyWiki5 repository i.e. those loca !!5. Build your files into a ~TiddlyWiki -Modify `editions/tw5.com/tiddlywiki.info` to include a reference to your plugin directory, i.e. find `"plugins": [ ` and add `"yourname/pluginname"`. +Modify `editions/tw5.com/tiddlywiki.info` to include a reference to your plugin directory, i.e. find `"plugins": [ ` and add `"yourname/pluginname"`. From the TW5 directory issue the command diff --git a/editions/dev/tiddlers/from tw5.com/mechanisms/BootMechanism.tid b/editions/dev/tiddlers/from tw5.com/mechanisms/BootMechanism.tid index fa92358d0..eb274974c 100644 --- a/editions/dev/tiddlers/from tw5.com/mechanisms/BootMechanism.tid +++ b/editions/dev/tiddlers/from tw5.com/mechanisms/BootMechanism.tid @@ -23,7 +23,7 @@ The boot kernel includes: * Several short shared utility functions * A handful of methods implementing the module mechanism * The `$tw.Tiddler` class (and field definition plugins) -* The `$tw.Wiki` class (and tiddler deserialization methods) +* The `$tw.Wiki` class (and tiddler deserialisation methods) * Code for the browser to load tiddlers from the HTML DOM * Code for the server to load tiddlers from the file system diff --git a/editions/markdowndemo/tiddlers/MarkdownTutorial.tid b/editions/markdowndemo/tiddlers/MarkdownTutorial.tid index a1d4b791c..c6b89eaed 100644 --- a/editions/markdowndemo/tiddlers/MarkdownTutorial.tid +++ b/editions/markdowndemo/tiddlers/MarkdownTutorial.tid @@ -117,7 +117,7 @@ Output: Unordered (bulleted) lists use asterisks, pluses, and hyphens (`*`, `+`, and `-`) as list markers. These three markers are -interchangable; this: +interchangeable; this: * Candy. * Gum. @@ -264,7 +264,7 @@ it easy to use Markdown to write about HTML example code: I strongly recommend against using any `` tags. I wish SmartyPants used named entities like `—` - instead of decimal-encoded entites like `—`. + instead of decimal-encoded entities like `—`. Output: @@ -273,7 +273,7 @@ Output:

I wish SmartyPants used named entities like &mdash; instead of decimal-encoded - entites like &#8212;.

+ entities like &#8212;.

To specify an entire block of pre-formatted code, indent every line of diff --git a/editions/resumebuilder/tiddlers/documentation/Making a new section.tid b/editions/resumebuilder/tiddlers/documentation/Making a new section.tid index e787beb92..c6f81c8f7 100644 --- a/editions/resumebuilder/tiddlers/documentation/Making a new section.tid +++ b/editions/resumebuilder/tiddlers/documentation/Making a new section.tid @@ -15,7 +15,7 @@ You can have multiple template tiddlers that use the same input and options tidd !!Display tiddler -This is the container used to display the section in the résumé itself, there isn't any customization here. +This is the container used to display the section in the résumé itself, there isn't any customisation here. ''Required tags'': `Section Display`
''Required name format'': `$:/display/(section name) Display`
diff --git a/editions/test/tiddlers/tests/test-widget.js b/editions/test/tiddlers/tests/test-widget.js index 19848e761..2614d6f52 100755 --- a/editions/test/tiddlers/tests/test-widget.js +++ b/editions/test/tiddlers/tests/test-widget.js @@ -268,7 +268,7 @@ describe("Widget module", function() { expect(wrapper.innerHTML).toBe("

Happy Result

"); // This is important. $Let needs to be aware enough not to let its - // own variables interfere with its ability to recognize no change. + // own variables interfere with its ability to recognise no change. // Doesn't matter that nothing has changed, we just need to make sure // it recognizes that that its outward facing variables are unchanged // EVEN IF some intermediate variables did change, there's no need to diff --git a/editions/tw5.com/tiddlers/community/editions/TiddlyResearch by Kebi.tid b/editions/tw5.com/tiddlers/_TiddlyStudy_ by Kebi.tid similarity index 79% rename from editions/tw5.com/tiddlers/community/editions/TiddlyResearch by Kebi.tid rename to editions/tw5.com/tiddlers/_TiddlyStudy_ by Kebi.tid index 680009c41..c1e50ae0a 100644 --- a/editions/tw5.com/tiddlers/community/editions/TiddlyResearch by Kebi.tid +++ b/editions/tw5.com/tiddlers/_TiddlyStudy_ by Kebi.tid @@ -1,8 +1,9 @@ created: 20210101162308245 -modified: 20210101201435693 +modified: 20230110220417543 tags: [[Community Editions]] -title: "TiddlyResearch" by Kebi -url: https://kebifurai.github.io/TiddlyResearch/ +title: "TiddlyStudy" by Kebi +type: text/vnd.tiddlywiki +url: https://postkevone.github.io/tiddlystudy/ A adaptation of TiddlyWiki perfect for using as a Notebook sysetem. diff --git a/editions/tw5.com/tiddlers/about/Open Collective.tid b/editions/tw5.com/tiddlers/about/Open Collective.tid index 1113535c3..3a98ab274 100644 --- a/editions/tw5.com/tiddlers/about/Open Collective.tid +++ b/editions/tw5.com/tiddlers/about/Open Collective.tid @@ -1,7 +1,7 @@ title: Open Collective modified: 20221204165636777 created: 20221204165636777 -tags: About HelloThere [[Open Collective]] +tags: About HelloThere Open Collective is a platform for transparent fundraising and expenses for projects like TiddlyWiki. It is the official TiddlyWiki community fundraising space. diff --git a/editions/tw5.com/tiddlers/community/editions/Drift by Tony K.tid b/editions/tw5.com/tiddlers/community/editions/Drift by Tony K.tid index 7c4112db7..2f3876929 100644 --- a/editions/tw5.com/tiddlers/community/editions/Drift by Tony K.tid +++ b/editions/tw5.com/tiddlers/community/editions/Drift by Tony K.tid @@ -1,15 +1,16 @@ created: 20210101161529206 -modified: 20210101201435693 +modified: 20230110220010665 tags: [[Community Editions]] title: "Drift - Collect, Organise, Grow." by Tony K -url: https://akhater.github.io/drift/ +type: text/vnd.tiddlywiki +url: https://github.com/bmann/drift-tiddlywiki-template/tree/master/drift A adaptation of TiddlyWiki perfect for using as a Notebook sysetem. {{!!url}} <<< -Drift is an adaptation of TiddlyWiki with the goal of helping you Collect. Organize. and Grow. your ideas while keeping tab on how they interconnect together and fluidly Drift from one to another. +Drift is an adaptation of TiddlyWiki with the goal of helping you Collect. Organise. and Grow. your ideas while keeping tab on how they interconnect together and fluidly Drift from one to another. The 2 main components of Drift are TWCrosslinks and DailyNotes so you never miss an idea diff --git a/editions/tw5.com/tiddlers/community/editions/_Noteself_ by Danielo Rodriguez.tid b/editions/tw5.com/tiddlers/community/editions/_Noteself_ by Danielo Rodriguez.tid index 8c088ba9c..6333856d5 100644 --- a/editions/tw5.com/tiddlers/community/editions/_Noteself_ by Danielo Rodriguez.tid +++ b/editions/tw5.com/tiddlers/community/editions/_Noteself_ by Danielo Rodriguez.tid @@ -11,7 +11,7 @@ title: "Noteself" by Danielo Rodríguez type: text/vnd.tiddlywiki url: https://noteself.github.io/ -~NoteSelf is your personal, private, customizable, Evernote-like experience. +~NoteSelf is your personal, private, customisable, Evernote-like experience. You want cloud? Fine! You don't? Fine too! It's all yours, It's your decision! Why not be a bit selfish? @@ -26,9 +26,9 @@ You already know and love Evernote, we know it. It is comfortable, it syncs, has Wow, it's almost perfect, but what about: * Privacy - Everything is stored on the Evernote's servers! -* Customization - If you don't like the interface of Evernote, there's nothing you can do +* Customisation - If you don't like the interface of Evernote, there's nothing you can do -~NoteSelf is built on top of ~TiddlyWiki, a powerful, free, highly customizable and open-source personal wiki. -We took the best of it, it's powerful customization system, and mixed it with one of the best -embedded databases available, [[PouchDb|http://www.pouchdb.com]], for bringing the synchronization capabilities you need. +~NoteSelf is built on top of ~TiddlyWiki, a powerful, free, highly customisable and open-source personal wiki. +We took the best of it, it's powerful customisation system, and mixed it with one of the best +embedded databases available, [[PouchDb|http://www.pouchdb.com]], for bringing the synchronisation capabilities you need. <<< diff --git a/editions/tw5.com/tiddlers/community/examples/A Thesis Notebook.tid b/editions/tw5.com/tiddlers/community/examples/A Thesis Notebook.tid index c43fb1475..0107eeba3 100644 --- a/editions/tw5.com/tiddlers/community/examples/A Thesis Notebook.tid +++ b/editions/tw5.com/tiddlers/community/examples/A Thesis Notebook.tid @@ -11,7 +11,7 @@ A thesis notebook based on TiddlyWiki. <<< This is an example of a thesis notebook powered by TiddlyWiki 5.0.8-beta. -TiddlyWiki is a great piece of software created by Jeremy Ruston. It allows you, among other things, to take notes, organize ideas, store information, and display all your stuff the way you want. It is an incredibly flexible tool you can adapt to fit almost all your needs. +TiddlyWiki is a great piece of software created by Jeremy Ruston. It allows you, among other things, to take notes, organise ideas, store information, and display all your stuff the way you want. It is an incredibly flexible tool you can adapt to fit almost all your needs. This TiddlyWiki has been customized to serve as a philosophy notebook centered around authors, books and papers, concepts and theories, and personal notes. I use it along with Zotero, which is a dedicated bibliography software. Both are free, open source projects. TiddlyWiki can be downloaded at https://tiddlywiki.com. <<< diff --git a/editions/tw5.com/tiddlers/community/plugins/Plugins by TheDiveO.tid b/editions/tw5.com/tiddlers/community/plugins/Plugins by TheDiveO.tid index e65332804..c81cbbb35 100644 --- a/editions/tw5.com/tiddlers/community/plugins/Plugins by TheDiveO.tid +++ b/editions/tw5.com/tiddlers/community/plugins/Plugins by TheDiveO.tid @@ -12,11 +12,11 @@ A collection of plugins from TheDiveO. [[TheDiveO's Third Flow|http://thediveo.github.io/ThirdFlow/]] plugin construction system: <<< -The ~ThirdFlow plugin brings to you another way to develop customization plugins for TiddlyWiki 5. It is not enforcing a specific development flow, it simply tries to help you. Otherwise, it tries to stay out of your way. +The ~ThirdFlow plugin brings to you another way to develop customisation plugins for TiddlyWiki 5. It is not enforcing a specific development flow, it simply tries to help you. Otherwise, it tries to stay out of your way. <<< [[TheDiveO's FontAwesome|http://thediveo.github.io/TW5FontAwesome/]] plugin: <<< -The FontAwesome plugin supports embedding Font Awesome in TiddlyWiki 5. There is no need to install this font into your operating system in order to use it with TiddlyWiki 5. The font is already embedded in this TiddlyWiki 5 customization plugin instead, so nothing else to install. +The FontAwesome plugin supports embedding Font Awesome in TiddlyWiki 5. There is no need to install this font into your operating system in order to use it with TiddlyWiki 5. The font is already embedded in this TiddlyWiki 5 customisation plugin instead, so nothing else to install. <<< diff --git a/editions/tw5.com/tiddlers/community/plugins/Shiraz by Mohammad.tid b/editions/tw5.com/tiddlers/community/plugins/Shiraz by Mohammad.tid index a8691284d..2f81a10e5 100644 --- a/editions/tw5.com/tiddlers/community/plugins/Shiraz by Mohammad.tid +++ b/editions/tw5.com/tiddlers/community/plugins/Shiraz by Mohammad.tid @@ -9,7 +9,7 @@ Shiraz plugin is a very small in size and framework to create stylish contents i {{!!url}} -Shiraz plugin contains extended markups, macros, styles, and many customization to empty Tiddlywiki and can be used as a ''starter kit''. +Shiraz plugin contains extended markups, macros, styles, and many customisation to empty Tiddlywiki and can be used as a ''starter kit''. Some of Shiraz features are: @@ -18,7 +18,7 @@ Some of Shiraz features are: * Sortable tables * Display on demand, slider, and details * Images, basic image macros, slidein, and overlay images, polaroid and pretty images -* Table customization tools +* Table customisation tools * Sticky footer * Multi columns tiddler * Multi column story river diff --git a/editions/tw5.com/tiddlers/community/plugins/TiddlyMap by Felix Kuppers.tid b/editions/tw5.com/tiddlers/community/plugins/TiddlyMap by Felix Kuppers.tid index 9e8cc8283..b111a248b 100644 --- a/editions/tw5.com/tiddlers/community/plugins/TiddlyMap by Felix Kuppers.tid +++ b/editions/tw5.com/tiddlers/community/plugins/TiddlyMap by Felix Kuppers.tid @@ -11,8 +11,8 @@ An interactive network visualisation plugin based on [[Vis.js|http://visjs.org]] ~TiddlyMap is a TiddlyWiki plugin that allows you to link your wiki-topics (tiddlers) in order to create clickable graphs. By creating relations between your topics you can easily do the following: * Create concept maps and quickly manifest your ideas in tiddlers. -* Create task-dependency graphs to organize and describe your tasks. -* Visualize your topic structures to get an immediate grasp of topics and relations. +* Create task-dependency graphs to organise and describe your tasks. +* Visualise your topic structures to get an immediate grasp of topics and relations. -In general you may create, visualize and describe any network-structure you have in mind. +In general you may create, visualise and describe any network-structure you have in mind. <<< diff --git a/editions/tw5.com/tiddlers/community/plugins/TiddlyWiki for Scholars.tid b/editions/tw5.com/tiddlers/community/plugins/TiddlyWiki for Scholars.tid index f53bf3d21..3bdc1c269 100644 --- a/editions/tw5.com/tiddlers/community/plugins/TiddlyWiki for Scholars.tid +++ b/editions/tw5.com/tiddlers/community/plugins/TiddlyWiki for Scholars.tid @@ -10,5 +10,5 @@ An early release of an edition of TiddlyWiki customised for rigorous, academic n {{!!url}} <<< -TiddlyWiki for Scholars is a personal customization of TiddlyWiki 5.0.13-beta I made for note-taking from readings, but it can be useful for other purposes. The idea behind this adaptation is to show and to allow creating relevant data related to the current tiddler without leaving the tiddler. +TiddlyWiki for Scholars is a personal customisation of TiddlyWiki 5.0.13-beta I made for note-taking from readings, but it can be useful for other purposes. The idea behind this adaptation is to show and to allow creating relevant data related to the current tiddler without leaving the tiddler. <<< diff --git a/editions/tw5.com/tiddlers/community/plugins/Tiddlyshow by Mohammad.tid b/editions/tw5.com/tiddlers/community/plugins/Tiddlyshow by Mohammad.tid index a9e588a4b..d7364fce3 100644 --- a/editions/tw5.com/tiddlers/community/plugins/Tiddlyshow by Mohammad.tid +++ b/editions/tw5.com/tiddlers/community/plugins/Tiddlyshow by Mohammad.tid @@ -13,4 +13,4 @@ Tiddlyshow contains the following features * Tools for preparing slides * Shortcut keys for navigation (forward and backward) -* Themes to colorify and customize the slideshow +* Themes to colorify and customise the slideshow diff --git a/editions/tw5.com/tiddlers/community/plugins/Todolist by Mohammad.tid b/editions/tw5.com/tiddlers/community/plugins/Todolist by Mohammad.tid index 5d9d9646b..7e395814b 100644 --- a/editions/tw5.com/tiddlers/community/plugins/Todolist by Mohammad.tid +++ b/editions/tw5.com/tiddlers/community/plugins/Todolist by Mohammad.tid @@ -9,6 +9,6 @@ Todolist is a small pure wikitext plugin, contain all tools to work with todo l {{!!url}} -With Todolist, easily organize and prioritize your tasks and projects so you’ll always know exactly what to work on next. +With Todolist, easily organise and prioritise your tasks and projects so you’ll always know exactly what to work on next. Todolist creates custom UI and lets you to add new items, set priority, done/undone items, archive, delete. Using Todolist plugin it is possible to create several todo lists in one Tiddlywiki. diff --git a/editions/tw5.com/tiddlers/community/plugins/_Slides and Stories_ by Jan.tid b/editions/tw5.com/tiddlers/community/plugins/_Slides and Stories_ by Jan.tid index 2a794305d..b8167db1b 100644 --- a/editions/tw5.com/tiddlers/community/plugins/_Slides and Stories_ by Jan.tid +++ b/editions/tw5.com/tiddlers/community/plugins/_Slides and Stories_ by Jan.tid @@ -5,7 +5,7 @@ title: "Slides and Stories" by Jan type: text/vnd.tiddlywiki url: http://slidesnstories.tiddlyspot.com -Slides and Stories is a repository of the tools to optimize TW for scientific research and for presenting and publishing results. +Slides and Stories is a repository of the tools to optimise TW for scientific research and for presenting and publishing results. {{!!url}} diff --git a/editions/tw5.com/tiddlers/community/resources/BrainTest.tid b/editions/tw5.com/tiddlers/community/resources/BrainTest.tid index c278f50ad..db0b2581e 100644 --- a/editions/tw5.com/tiddlers/community/resources/BrainTest.tid +++ b/editions/tw5.com/tiddlers/community/resources/BrainTest.tid @@ -12,5 +12,5 @@ A collection of customisations and macros from Danielo Rodriguez. <<< This is my personal tiddlywiki file for testing. -Here I will post the tools and Macros that I develop for this awesome tool. That way, all the help the comunity gave me can came back to the comunity again. +Here I will post the tools and Macros that I develop for this awesome tool. That way, all the help the community gave me can came back to the community again. <<< diff --git a/editions/tw5.com/tiddlers/community/resources/Semantic Colors by Mohammad.tid b/editions/tw5.com/tiddlers/community/resources/Semantic Colors by Mohammad.tid index a552f8314..d2ff0400e 100644 --- a/editions/tw5.com/tiddlers/community/resources/Semantic Colors by Mohammad.tid +++ b/editions/tw5.com/tiddlers/community/resources/Semantic Colors by Mohammad.tid @@ -5,14 +5,14 @@ title: Semantic Colors by Mohammad type: text/vnd.tiddlywiki url: https://kookma.github.io/TW-Semantic-Colors/ -Semantic colors are set of CSS to apply colorful theme to individual tiddlers for categorization purpose. +Semantic colors are set of CSS to apply colorful theme to individual tiddlers for categorisation purpose. {{!!url}} Tiddlywiki "semantic colors" has two objectives: # How it is simply possible to apply theme to an individual tiddler -# Use semantic colors for categorization +# Use semantic colors for categorisation ;Some use cases :Learning materials (each topic, category can have dedicated semantic color, like learning a foreign language) diff --git a/editions/tw5.com/tiddlers/community/resources/TW5-firebase_ TiddlyWiki5 for Google Firebase by Peter Neumark.tid b/editions/tw5.com/tiddlers/community/resources/TW5-firebase_ TiddlyWiki5 for Google Firebase by Peter Neumark.tid index 0458b4a55..1e1dc2b92 100644 --- a/editions/tw5.com/tiddlers/community/resources/TW5-firebase_ TiddlyWiki5 for Google Firebase by Peter Neumark.tid +++ b/editions/tw5.com/tiddlers/community/resources/TW5-firebase_ TiddlyWiki5 for Google Firebase by Peter Neumark.tid @@ -20,7 +20,7 @@ I've been using TiddlyWiki5 with Google Firebase for over a year now. It's stabl Please consider this version a proof of concept rather than a polished product! My focus was on multi-device or small-team collaboration: -* Basic authorization (bags have an access policy determining who can read / write them). +* Basic authorisation (bags have an access policy determining who can read / write them). * Multiple wikis can be hosted under a single firebase account. * It uses Firebase's built-in social auth to log in users. * Tiddlers are written individually with locking, preventing users overwriting each others' updates. diff --git a/editions/tw5.com/tiddlers/community/resources/TiddlyServer by Arlen Beiler.tid b/editions/tw5.com/tiddlers/community/resources/TiddlyServer by Arlen Beiler.tid index 88c0bf623..9cb1f5272 100644 --- a/editions/tw5.com/tiddlers/community/resources/TiddlyServer by Arlen Beiler.tid +++ b/editions/tw5.com/tiddlers/community/resources/TiddlyServer by Arlen Beiler.tid @@ -18,7 +18,7 @@ An extension to the Node.js configuration of TiddlyWiki that adds support for st <<< TiddlyServer 2.0 takes the server command of TiddlyWiki on NodeJS and adds it to a static file server. This means you can load and serve any TiddlyWiki data folder in the same way you can serve a single file TiddlyWiki. -But you don't need to serve files and folders from just one place, you can serve them from multiple places anywhere on your harddrive (literally anywhere NodeJS can stat, readdir, and readFile). You can even organize them into virtual folders (aka aliases in Apache and mounts in Express). +But you don't need to serve files and folders from just one place, you can serve them from multiple places anywhere on your harddrive (literally anywhere NodeJS can stat, readdir, and readFile). You can even organise them into virtual folders (aka aliases in Apache and mounts in Express). The main point, of course, is that you can actually edit your files, not just look at them. Single file TiddlyWikis use the put saver, which needs to be patched using a bookmarklet included on the index page. The instructions for this are below under the heading "One thing that needs to be noted". diff --git a/editions/tw5.com/tiddlers/community/resources/_Dropboard_ by Reid Gould.tid b/editions/tw5.com/tiddlers/community/resources/_Dropboard_ by Reid Gould.tid index efda31cbe..5c528b083 100644 --- a/editions/tw5.com/tiddlers/community/resources/_Dropboard_ by Reid Gould.tid +++ b/editions/tw5.com/tiddlers/community/resources/_Dropboard_ by Reid Gould.tid @@ -5,7 +5,7 @@ title: "Dropboard" by Reid Gould type: text/vnd.tiddlywiki url: https://github.com/reidgould/tiddlywiki-dropboard -A TiddlyWiki plugin for kanban-like organization in the style of Trello™ using boards, lists, and cards. +A TiddlyWiki plugin for kanban-like organisation in the style of Trello™ using boards, lists, and cards. {{!!url}} diff --git a/editions/tw5.com/tiddlers/concepts/CoordinateSystems.tid b/editions/tw5.com/tiddlers/concepts/CoordinateSystems.tid index 9b66f941b..53c6c4ca9 100644 --- a/editions/tw5.com/tiddlers/concepts/CoordinateSystems.tid +++ b/editions/tw5.com/tiddlers/concepts/CoordinateSystems.tid @@ -21,7 +21,7 @@ Relative coordinates are expressed in the form ''(x,y,w,h)''. Where ''x'' and '' !! Absolute coordinate system -The relative coordinate system works flawless most of the time. Problems occure if the target element (for example, a popup) and the source element (the triggering button) do not share the same positioned ancherstor element. This is often the case if the popup is declared outside a table and the triggering button is declared within a table cell. In this case the coordiante systems have different origins and the popup will be displayed in the wrong location. +The relative coordinate system works flawless most of the time. Problems occure if the target element (for example, a popup) and the source element (the triggering button) do not share the same positioned ancestor element. This is often the case if the popup is declared outside a table and the triggering button is declared within a table cell. In this case the coordinate systems have different origins and the popup will be displayed in the wrong location. Absolute coordinates can fix this problem by using the root element of the page (the upper-left corner of the page) as the origin of the coordinate system. Absolute coordinates are expressed in the form ''@(x,y,w,h)''. Where ''x'' and ''y'' represent the position and ''w'' and ''h'' the width and height of the element. The leading ''@''-symbol marks these coordinates as absolute. @@ -30,7 +30,7 @@ The ButtonWidget has an option (''popupAbsCoords'') to put absolute coordinates !! Example -The following example shows a popup that is triggerd from within a table cell. The table cell is the nearest positioned ancestor element. The popup was defined outside the table cell. The button using relative coordinates will open the popup in the wrong location because the button and the popup do not agree on the same coordinate system. Using absolute coordinates fixes this problem. +The following example shows a popup that is triggered from within a table cell. The table cell is the nearest positioned ancestor element. The popup was defined outside the table cell. The button using relative coordinates will open the popup in the wrong location because the button and the popup do not agree on the same coordinate system. Using absolute coordinates fixes this problem. <
diff --git a/editions/tw5.com/tiddlers/concepts/Wiki.tid b/editions/tw5.com/tiddlers/concepts/Wiki.tid index f1bd49505..107dc6a4c 100644 --- a/editions/tw5.com/tiddlers/concepts/Wiki.tid +++ b/editions/tw5.com/tiddlers/concepts/Wiki.tid @@ -3,4 +3,4 @@ tags: Concepts Groups of uniquely titled tiddlers are contained in WikiStore objects. -The WikiStore also manages the plugin modules used for widgets, and operations like serializing, deserializing, parsing and rendering tiddlers. +The WikiStore also manages the plugin modules used for widgets, and operations like serialising, deserialising, parsing and rendering tiddlers. diff --git a/editions/tw5.com/tiddlers/definitions/GitHub.tid b/editions/tw5.com/tiddlers/definitions/GitHub.tid index adbe968bd..16ab4fd36 100644 --- a/editions/tw5.com/tiddlers/definitions/GitHub.tid +++ b/editions/tw5.com/tiddlers/definitions/GitHub.tid @@ -4,7 +4,7 @@ tags: Definitions title: GitHub type: text/vnd.tiddlywiki -GitHub is a hosting service for distributed projects that use git as their version-control system. It allows free hosting and management of open-source projects and facilitates collaborative developement on the source code. Using GitHub for non-open-source endeavors requires additional fees. +GitHub is a hosting service for distributed projects that use git as their version-control system. It allows free hosting and management of open-source projects and facilitates collaborative development on the source code. Using GitHub for non-open-source endeavours requires additional fees. The code and documentation of TiddlyWiki is hosted on GitHub at: diff --git a/editions/tw5.com/tiddlers/features/Modals.tid b/editions/tw5.com/tiddlers/features/Modals.tid index 045822958..9cf663845 100644 --- a/editions/tw5.com/tiddlers/features/Modals.tid +++ b/editions/tw5.com/tiddlers/features/Modals.tid @@ -6,7 +6,7 @@ type: text/vnd.tiddlywiki Modals (or "wizards") fade the main TiddlyWiki window to display an isolated tiddler that must be explicitly dismissed by the user. -The tiddler to be displayed can contain the following optional fields that are used to customize the modal: +The tiddler to be displayed can contain the following optional fields that are used to customise the modal: |!Field |!Description | |footer|The footer text for the modal| diff --git a/editions/tw5.com/tiddlers/filters/filter.tid b/editions/tw5.com/tiddlers/filters/filter.tid index 5909d664a..1ec0857f8 100644 --- a/editions/tw5.com/tiddlers/filters/filter.tid +++ b/editions/tw5.com/tiddlers/filters/filter.tid @@ -32,7 +32,7 @@ Note that within the subfilter, the "currentTiddler" variable is set to the titl <<.tip "Compare with the similar [[subfilter|subfilter Operator]] operator which runs a subfilter and directly returns the results">> -<<.tip "Compare with the analagous named filter run prefix `:filter`">> +<<.tip "Compare with the analogous named filter run prefix `:filter`">> ``` \define larger-than-1k() [get[text]length[]compare:integer:gteq[1000]] diff --git a/editions/tw5.com/tiddlers/filters/getvariable.tid b/editions/tw5.com/tiddlers/filters/getvariable.tid index 19427cb75..13421988b 100644 --- a/editions/tw5.com/tiddlers/filters/getvariable.tid +++ b/editions/tw5.com/tiddlers/filters/getvariable.tid @@ -4,7 +4,7 @@ tags: [[Filter Operators]] [[Special Operators]] title: getvariable Operator caption: getvariable op-purpose: select all values of variables named in the input titles -op-input: a selection of varible names +op-input: a selection of variable names op-parameter: ignored op-output: the values of each of the variables named in the input titles (or blank if the variable is not defined) diff --git a/editions/tw5.com/tiddlers/filters/indexes.tid b/editions/tw5.com/tiddlers/filters/indexes.tid index d574b1901..44b5fbf50 100644 --- a/editions/tw5.com/tiddlers/filters/indexes.tid +++ b/editions/tw5.com/tiddlers/filters/indexes.tid @@ -1,5 +1,5 @@ created: 20140410103123179 -modified: 20150203185150000 +modified: 20221229094244039 tags: [[Filter Operators]] title: indexes Operator type: text/vnd.tiddlywiki @@ -9,8 +9,10 @@ op-input: a [[selection of titles|Title Selection]] op-parameter: none op-output: all the property names or indices contained in the input data tiddlers -Each input title is processed in turn, and is ignored if it does not denote a [[data tiddler|DataTiddlers]]. The list of property names is retrieved from the data tiddler (in no particular order) and then [[dominantly appended|Dominant Append]] to the operator's output. +Each input title is processed in turn, and is ignored if it does not denote a [[data tiddler|DataTiddlers]]. The sorted list of property names is retrieved from the data tiddler and then [[dominantly appended|Dominant Append]] to the operator's output. -Where a tiddler's [[content is JSON|JSONTiddlers]] with an array as its root, the <<.op indexes>> operator retrieves a selection of integer indices instead. +Note that behind the scenes, the name/value pairs in a dictionary tiddler are represented as a [[JSON object|JSONTiddlers]]. JSON objects do not maintain a guaranteed ordering and so we can’t reliably retain the ordering of the data in the file. + +Where the content of a tiddler is in JSON format with an array as its root, the <<.op indexes>> operator retrieves a selection of integer indices instead. <<.operator-examples "indexes">> diff --git a/editions/tw5.com/tiddlers/filters/reduce.tid b/editions/tw5.com/tiddlers/filters/reduce.tid index 8fcbe0146..66b62a8b0 100644 --- a/editions/tw5.com/tiddlers/filters/reduce.tid +++ b/editions/tw5.com/tiddlers/filters/reduce.tid @@ -33,7 +33,7 @@ If the <<.op reduce>> operator receives no input, its output will be empty. The ``` -<<.tip "Compare with the analagous named [[filter run prefix|Filter Expression]] `:reduce`">> +<<.tip "Compare with the analogous named [[filter run prefix|Filter Expression]] `:reduce`">> ``` \define num-items() [get[quantity]add] diff --git a/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Newsletter.tid b/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Newsletter.tid index 24f4e9c28..be7cf98f8 100644 --- a/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Newsletter.tid +++ b/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Newsletter.tid @@ -4,5 +4,6 @@ caption: ~TiddlyWiki Newsletter link: TiddlyWiki Newsletter image: TiddlyWiki Newsletter Badge.png color: #fff +ribbon-text: NEW Subscribe to the ~TiddlyWiki Newsletter, a fortnightly summary of the most interesting and relevant news from the ~TiddlyWiki community diff --git a/editions/tw5.com/tiddlers/howtos/Using Stamp.tid b/editions/tw5.com/tiddlers/howtos/Using Stamp.tid index dc9cebfe4..5ffa5da3b 100644 --- a/editions/tw5.com/tiddlers/howtos/Using Stamp.tid +++ b/editions/tw5.com/tiddlers/howtos/Using Stamp.tid @@ -1,27 +1,59 @@ created: 20160618090057124 -modified: 20190704054958185 +modified: 20230101114932775 tags: [[Editor toolbar]] title: Using Stamp type: text/vnd.tiddlywiki -! Insert snippets -You can insert preconfigured snippets of text to use stamp from toolbar. Click ''stamp'' (<<.icon $:/core/images/stamp>>) and just select a snippet. +Snippets are pre-configured snippets of text which can be inserted into the editor by clicking the ''stamp'' (<<.icon $:/core/images/stamp>>) button on the [[toolbar|Editor toolbar]] and then on the required item. + +Snippets can either ''replace'', or be ''added before and/or after'', the selected text in the editor. ! Create a snippet -# Click ''stamp'' (<<.icon $:/core/images/stamp>>) -# Create a snippet tiddler through the "//Add your own//" menu entry -# Type some text as snippet for the tiddler, add a caption for the name as shown in the menu -# Click the <<.icon $:/core/images/done-button>> ''ok'' button +!! Whilst editing a tiddler -<$macrocall $name=".tip" _="""''Tip:'' You can also create a snippet tiddler using the ''new tiddler'' <<.icon $:/core/images/new-button>> button in the sidebar, and add tag ''~$:/tags/TextEditor/Snippet''""" /> +# Click ''stamp'' (<<.icon $:/core/images/stamp>>) on the toolbar +# Click "//Add your own//" at the bottom of the menu +# Type the text for the snippet in the editor +# Enter the caption for the snippet menu item in the `caption` field +# Click the <<.icon $:/core/images/done-button>> //Confirm changes to this tiddler// button -!!<<.from-version "5.1.20">> Adding a prefix and/or suffix to a selection +!! Manually -# Click ''stamp'' (<<.icon $:/core/images/stamp>>) -# Create a snippet tiddler through the "//Add your own//" menu entry -# Add a caption for the name as shown in the menu -# Create a tiddler with the same title but add the suffix `/prefix` -# Insert the prefix in its text field -# Create a tiddler with the same title but add the suffix `/suffix` -# Insert the suffix in its text field -# Click the <<.icon $:/core/images/done-button>> ''ok'' button +# Create a new tiddler by clicking the //Create a new tiddler// <<.icon $:/core/images/new-button>> button in the sidebar + +# Change the title for the tiddler (from e.g. `New Tiddler 1`). The tiddler title determines the menu item for the stamp if you do not set a `caption` field (see below).
<$macrocall $name=".tip" _="""''Pro tip'' Set a title like `$:/yourusername/snippets/My new stamp` to 'file' your new tiddler away as a [[system tiddler|SystemTiddlers]] which doesn't appear in the normal search results """ />
+ +# Add the tag <> by entering `$:/tags/TextEditor/Snippet` in the `tag name` tag box and clicking //Add// (or pressing the //Enter// key) + +# Enter the snippet content (which you wish to appear in the editor when you click the stamp menu <<.icon $:/core/images/stamp>>) in the editor + +# Create a field with the name `caption` and value set to the text for the snippet's stamp menu item: +## Enter `caption` in the //Add new field// `field name` box +## Enter the stamp menu item caption in the `field value` box + + + +! Re-ordering snippets +Your new snippet will appear at the bottom of the stamp menu by default. To adjust the order of snippets: + +# Navigate to a snippet tiddler +# Click the <> tag pill +# Drag items up and down the menu of snippets + + +! Adding a prefix and/or suffix to a selection <<.from-version "5.1.20">> + +By default, the stamp button ''replaces ''text you have selected in the editor (let's say `selectedText`)with your snippet (let's say `$:/my/snippet`). + +If instead of //replacing// selected text, you wish the stamp button to //add// [[wikitext |WikiText]] before and/or after the selection: + +# Create a snippet tiddler (tagged <>, with `caption` field set to desired stamp menu item text) using either of the two methods above +# Create a new tiddler with either `/prefix` or `/suffix` appended to the end of the snippet tiddler's title, according to whether you wish the stamp to insert the snippet content //before //(`/prefix`) or //after //(`/suffix`) the text selected in the editor. +#* Do not tag the tiddler <>; the caption field is ignored +#* Set the tiddler text to the text you wish to be inserted before or after your selection + +|Example configuration for `snippet2` with prefix+suffix|c +|!Tiddler|!Tiddler content|!Tag|!`caption` field| +|`$:/snip/snippet2`||<>|`My second stamp menu item`| +|`$:/snip/snippet2/prefix`|`TextIWantPrependedToSelection`||| +|`$:/snip/snippet2/suffix`|`TextIWantAppendedToSelection`||| diff --git a/editions/tw5.com/tiddlers/macros/ChangeCountMacro.tid b/editions/tw5.com/tiddlers/macros/ChangeCountMacro.tid index bb40951e8..0a4e7f664 100644 --- a/editions/tw5.com/tiddlers/macros/ChangeCountMacro.tid +++ b/editions/tw5.com/tiddlers/macros/ChangeCountMacro.tid @@ -1,13 +1,13 @@ +caption: changecount created: 20131228162825226 -modified: 20150221151223000 +modified: 20221221174529586 tags: Macros [[Core Macros]] title: changecount Macro type: text/vnd.tiddlywiki -caption: changecount The <<.def changecount>> [[macro|Macros]] returns the number of times the [[current tiddler|Current Tiddler]] has been created, stored or deleted during the current ~TiddlyWiki session. -If a tiddler is deleted and subsequently recreated, its <<.var changecount>> will go up by two. +If a tiddler is deleted and subsequently recreated, its <<.var changecount>> will be increased by two. !! Parameters diff --git a/editions/tw5.com/tiddlers/macros/ListMacro.tid b/editions/tw5.com/tiddlers/macros/ListMacro.tid index 21eb169dc..33bbb5713 100644 --- a/editions/tw5.com/tiddlers/macros/ListMacro.tid +++ b/editions/tw5.com/tiddlers/macros/ListMacro.tid @@ -16,7 +16,7 @@ Note: Each first [[step|Filter Step]] of a [[filter run|Filter Run]] not given a ;filter : A [[filter|Filters]] selecting which tiddlers to include ;caption -: The name of the field to transclude for each list item, defaultingt to `caption` +: The name of the field to transclude for each list item, defaulting to `caption` ;type : An HTML element to use for the overall list element, defaulting to `ul` ;subtype diff --git a/editions/tw5.com/tiddlers/macros/UnusedTitleMacro.tid b/editions/tw5.com/tiddlers/macros/UnusedTitleMacro.tid index d271180b7..e0cc00433 100644 --- a/editions/tw5.com/tiddlers/macros/UnusedTitleMacro.tid +++ b/editions/tw5.com/tiddlers/macros/UnusedTitleMacro.tid @@ -29,10 +29,10 @@ It uses the same method as the create new tiddler button, a number is appended t : This variable will be replaced by the ''separator'' parameter ;`$count$` -: This variable will be createad automatically and is a counter starting with 0 +: This variable will be created automatically and is a counter starting with 0 ;`$count:4$` -: This variable will be createad automatically and starts at 0000 +: This variable will be created automatically and starts at 0000 : `:4` represents the number of digits !! Examples diff --git a/editions/tw5.com/tiddlers/mechanisms/StateMechanism.tid b/editions/tw5.com/tiddlers/mechanisms/StateMechanism.tid index 49f8f2450..00d1146da 100644 --- a/editions/tw5.com/tiddlers/mechanisms/StateMechanism.tid +++ b/editions/tw5.com/tiddlers/mechanisms/StateMechanism.tid @@ -36,6 +36,6 @@ Now consider the implementation of the info panel within the tiddler template. W However, we can't track the state in a tiddler called, say, [[$:/InfoPanelState]] because every tiddler would share the same state; changing the value of the tiddler would affect all tiddlers displayed in the story. -The solution is to dynamically generate a unique title for each state tiddler that we need. We need to ensure that the same state tiddler title is generated each time a user interface element is rendered. To do that, we append together tokens representating each of the stack of transclusions that led to the current rendering location. Then that string of symbols is hashed to a simple numeric value. +The solution is to dynamically generate a unique title for each state tiddler that we need. We need to ensure that the same state tiddler title is generated each time a user interface element is rendered. To do that, we append together tokens representing each of the stack of transclusions that led to the current rendering location. Then that string of symbols is hashed to a simple numeric value. The process of generating a state tiddler title is encapsulated in the <<.mlink qualify>> macro. diff --git a/editions/tw5.com/tiddlers/mechanisms/TranslationMechanism.tid b/editions/tw5.com/tiddlers/mechanisms/TranslationMechanism.tid index c6ae895da..86a2ed93c 100644 --- a/editions/tw5.com/tiddlers/mechanisms/TranslationMechanism.tid +++ b/editions/tw5.com/tiddlers/mechanisms/TranslationMechanism.tid @@ -6,9 +6,9 @@ type: text/vnd.tiddlywiki The translation mechanism of TiddlyWiki manages and switches between language plugins that provide translations of the TiddlyWiki user interface. The developer site at https://tiddlywiki.com/dev/ explains how translators can create and submit translations for TiddlyWiki. -The title of the current language plugin is read from the tiddler [[$:/language]]. If the selected plugin changes then any displayed translateable text automatically changes. +The title of the current language plugin is read from the tiddler [[$:/language]]. If the selected plugin changes then any displayed translatable text automatically changes. -Translation plugins are bundles of tiddlers that each contain an indepedent translatable string. The strings are transcluded as needed. +Translation plugins are bundles of tiddlers that each contain an independent translatable string. The strings are transcluded as needed. Translatable strings are generally in the namespace `$:/language/`, for example: diff --git a/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-modal.tid b/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-modal.tid index 9a5d8ccd1..9b459fb7b 100644 --- a/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-modal.tid +++ b/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-modal.tid @@ -12,7 +12,7 @@ type: text/vnd.tiddlywiki The modal message is usually generated with the ButtonWidget. The modal message is handled by the TiddlyWiki core. -[[Fields within the tiddler|Modals]] being displayed in the modal can be used to customize its appearance. +[[Fields within the tiddler|Modals]] being displayed in the modal can be used to customise its appearance. !! paramObject diff --git a/editions/tw5.com/tiddlers/nodejs/tiddlywiki.files_Files.tid b/editions/tw5.com/tiddlers/nodejs/tiddlywiki.files_Files.tid index d7b223cf1..6086dfebc 100644 --- a/editions/tw5.com/tiddlers/nodejs/tiddlywiki.files_Files.tid +++ b/editions/tw5.com/tiddlers/nodejs/tiddlywiki.files_Files.tid @@ -52,7 +52,7 @@ Directory specifications in the `directories` array may take the following forms ** ''filesRegExp'' - (optional) a [[regular expression|https://developer.mozilla.org/en/docs/Web/JavaScript/Guide/Regular_Expressions]] that matches the filenames of the files that should be processed within the directory ** ''isTiddlerFile'' - (required) if `true`, the file will be treated as a [[tiddler file|TiddlerFiles]] and deserialised to extract the tiddlers. Otherwise, the raw content of the file is assigned to the `text` field without any parsing ** ''isEditableFile'' - <<.from-version "5.1.23">> (optional) if `true`, changes to the tiddler be saved back to the original file. The tiddler will be saved back to the original filepath as long as it does not generate a result from the $:/config/FileSystemPath filters, which will override the final filepath generated if a result is returned from a filter. -** ''searchSubdirectories'' - <<.from-version "5.1.23">> (optional) if `true`, all subdirectories of the //path// are searched recursively for files that match the (optional) //filesRegExp//. If no //filesRegExp// is provided, all files in all subdirectoies of the //path// are loaded. Tiddler titles generated via a //source// attribute (see above) will only include the filename, not any of the subdirectories of the path. If this results in multiple files with loaded with the same tiddler title, then only the last file loaded under that tiddler title will be in memory. In order to prevent this, you must have multiple directory objects listed and customize the title field with a //prefix// or //suffix// alongside the //source// attribute. +** ''searchSubdirectories'' - <<.from-version "5.1.23">> (optional) if `true`, all subdirectories of the //path// are searched recursively for files that match the (optional) //filesRegExp//. If no //filesRegExp// is provided, all files in all subdirectories of the //path// are loaded. Tiddler titles generated via a //source// attribute (see above) will only include the filename, not any of the subdirectories of the path. If this results in multiple files with loaded with the same tiddler title, then only the last file loaded under that tiddler title will be in memory. In order to prevent this, you must have multiple directory objects listed and customise the title field with a //prefix// or //suffix// alongside the //source// attribute. ** ''fields'' - (required) an object containing values that override or customise the fields provided in the tiddler file (see above) Fields can also be overridden for particular files by creating a file with the same name plus the suffix `.meta` -- see TiddlerFiles. @@ -65,7 +65,7 @@ There are also several examples of `tiddlywiki.files` files in the main [[Tiddly !! Importing a folder of PDFs -This example retrieves all the files with the extension `.pdf` from a folder specified by a relative path. This path starts with "../../../" indicating 3 directory levels above the folder holdng this confog fole. Each tiddler is set up for LazyLoading with the following fields: +This example retrieves all the files with the extension `.pdf` from a folder specified by a relative path. This path starts with "../../../" indicating 3 directory levels above the folder holding this config file. Each tiddler is set up for LazyLoading with the following fields: * ''title'' - set to the URI decoded base filename of the PDF file. [[URI decoding|https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent]] allows characters like "/" to be included in titles by URI encoding them as "%2F" * ''created'' - set to the creation date/time of the PDF file diff --git a/editions/tw5.com/tiddlers/system/systemtag-template.tid b/editions/tw5.com/tiddlers/system/systemtag-template.tid index 563d14841..4b0120269 100644 --- a/editions/tw5.com/tiddlers/system/systemtag-template.tid +++ b/editions/tw5.com/tiddlers/system/systemtag-template.tid @@ -16,6 +16,6 @@ The following tiddlers are tagged with <> <$list filter='[all[tiddlers+shadows]tagsort[]]'> <$link/> -{{!!caption}} +<$transclude field="caption"><$transclude field="description"><$view field="title"/> diff --git a/editions/tw5.com/tiddlers/variables/Variables.tid b/editions/tw5.com/tiddlers/variables/Variables.tid index cd1e62a5f..2e80f2678 100644 --- a/editions/tw5.com/tiddlers/variables/Variables.tid +++ b/editions/tw5.com/tiddlers/variables/Variables.tid @@ -1,18 +1,18 @@ created: 20141002133113496 -modified: 20150221215644000 +modified: 20221221175615776 tags: Concepts Reference title: Variables type: text/vnd.tiddlywiki A <<.def variable>> is a snippet of text that can be accessed by name within a particular branch of the [[widget tree|Widgets]]. The snippet is known as the variable's <<.def value>>. -A new variable is defined using a <<.wlink SetWidget>> widget, and is then available to any of the children of that widget, including transcluded content. A <<.wid set>> widget can reuse an existing name, thus binding a different snippet to that name for the duration of the widget's children. +A new variable is defined using a <<.wlink SetWidget>> or <<.wlink LetWidget>> widget, and is then available to any of the children of that widget, including transcluded content. A <<.wid set>> widget can reuse an existing name, thus binding a different snippet to that name for the duration of the widget's children. -The <<.wlink ListWidget>> widget also sets a particular variable (<<.var currentTiddler>> by default) to each listed title in turn. +The <<.wlink ListWidget>> widget by default sets a particular variable <<.var currentTiddler>> to each listed title in turn. For an overview of how to use variables, see [[Variables in WikiText]]. -Despite the term <<.word variable>>, each snippet is a constant string. The apparent variability is actually the result of the presence of multiple variables with the same name in different parts of the widget tree. +Despite the term <<.word variable>>, ''each snippet is a constant string''. The apparent variability is actually the result of the presence of multiple variables with the same name in different parts of the widget tree. [[Macros]] are a special form of variable whose value can contain placeholders that get filled in with parameters whenever the macro is used. diff --git a/editions/tw5.com/tiddlers/webserver/Using the external JavaScript template.tid b/editions/tw5.com/tiddlers/webserver/Using the external JavaScript template.tid index 918878b0d..1aa61e86a 100644 --- a/editions/tw5.com/tiddlers/webserver/Using the external JavaScript template.tid +++ b/editions/tw5.com/tiddlers/webserver/Using the external JavaScript template.tid @@ -26,7 +26,7 @@ tiddlywiki YOUR_WIKI_FOLDER --listen 'root-tiddler=$:/core/save/all-external-js' <<.tip """On Windows, Command Prompt (CMD) users need to replace single quotes `'` with double quotation marks `"`.""">> -!! Initializing a new wiki +!! Initialising a new wiki The provided edition `server-external-js` contains all the configuration necessary to use the external ~JavaScript template. Here is an example: @@ -37,10 +37,10 @@ tiddlywiki ./myNewWiki --build listen The above commands perform the following: -* Create a new wiki with external JavaScript customization included. +* Create a new wiki with external JavaScript customisation included. * Start the server with external ~JavaScript enabled. The server listens on port 8080. Visit http://localhost:8080 in your browser. -To customize your `--build listen` command, see [[tiddlywiki.info Files]] and [[ListenCommand]]. +To customise your `--build listen` command, see [[tiddlywiki.info Files]] and [[ListenCommand]]. ! Using the external ~JavaScript template with the single file configuration @@ -52,7 +52,7 @@ You can use the "external-js" template with your single file wiki, but this requ If you start your ~TiddlyWiki server in the "external-js" configuration, snapshots you save from the wiki will also have the external-js configuration. -You can click on the "cloud" button and choose <<.icon $:/core/images/download-button>> ''Save snapshot for offline use''. The html wiki you saved will have a reduced file size compared to a regular snapshot because the ~TiddlyWiki core code has been externalized. However, to be able to use this wiki, you ''must'' also have a copy of ~TiddlyWiki's core ~JavaScript in the same directory; see below for instructions for obtaining it +You can click on the "cloud" button and choose <<.icon $:/core/images/download-button>> ''Save snapshot for offline use''. The html wiki you saved will have a reduced file size compared to a regular snapshot because the ~TiddlyWiki core code has been externalised. However, to be able to use this wiki, you ''must'' also have a copy of ~TiddlyWiki's core ~JavaScript in the same directory; see below for instructions for obtaining it The "server-external-js" edition lets you save the snapshot from the command line: diff --git a/editions/tw5.com/tiddlers/webserver/WebServer Anonymous Access.tid b/editions/tw5.com/tiddlers/webserver/WebServer Anonymous Access.tid index 1453154f9..893c6094a 100644 --- a/editions/tw5.com/tiddlers/webserver/WebServer Anonymous Access.tid +++ b/editions/tw5.com/tiddlers/webserver/WebServer Anonymous Access.tid @@ -4,5 +4,5 @@ tags: [[WebServer Authentication]] title: WebServer Anonymous Access type: text/vnd.tiddlywiki -Anonymous access is only permitted if the special ''(anon)'' token is present in the [[readers|WebServer Parameter: readers]] (for reading) and optionally [[writers|WebServer Parameter: writers]] (for writing) authorization parameters. +Anonymous access is only permitted if the special ''(anon)'' token is present in the [[readers|WebServer Parameter: readers]] (for reading) and optionally [[writers|WebServer Parameter: writers]] (for writing) authorisation parameters. diff --git a/editions/tw5.com/tiddlers/webserver/WebServer Parameter_ username.tid b/editions/tw5.com/tiddlers/webserver/WebServer Parameter_ username.tid index 6b670e6d4..cc457815d 100644 --- a/editions/tw5.com/tiddlers/webserver/WebServer Parameter_ username.tid +++ b/editions/tw5.com/tiddlers/webserver/WebServer Parameter_ username.tid @@ -8,7 +8,7 @@ type: text/vnd.tiddlywiki The [[web server configuration parameter|WebServer Parameters]] ''username'', in conjunction with its companion [[password|WebServer Parameter: password]]: * Enables [[Basic Authentication|WebServer Basic Authentication]] with the specified username/password combination being added to any credentials specified with the [[credentials|WebServer Parameter: credentials]] parameter -* The specified username is used as a default value for the [[readers|WebServer Parameter: readers]] and [[writers|WebServer Parameter: writers]] authorization parameters if they are not specified +* The specified username is used as a default value for the [[readers|WebServer Parameter: readers]] and [[writers|WebServer Parameter: writers]] authorisation parameters if they are not specified !! Examples diff --git a/editions/tw5.com/tiddlers/widgets/EditTextWidget.tid b/editions/tw5.com/tiddlers/widgets/EditTextWidget.tid index 617f90c57..ce8cc6f63 100644 --- a/editions/tw5.com/tiddlers/widgets/EditTextWidget.tid +++ b/editions/tw5.com/tiddlers/widgets/EditTextWidget.tid @@ -7,7 +7,7 @@ type: text/vnd.tiddlywiki ! Introduction -The edit text widget provides a user interface in the browser for editing text tiddler fields. The editing element is dynamically bound to the underlying tiddler value: changes to the tiddler are instantly reflected, and any edits are instantly propogated. +The edit text widget provides a user interface in the browser for editing text tiddler fields. The editing element is dynamically bound to the underlying tiddler value: changes to the tiddler are instantly reflected, and any edits are instantly propagated. By default, applying the EditTextWidget to the `text` field of a tiddler will generates an HTML `