diff --git a/editions/tw5.com/tiddlers/howtos/How_to_use_TiddlyWiki5_as_a_standalone_HTML_file_with_encryption.tid b/editions/tw5.com/tiddlers/howtos/How_to_use_TiddlyWiki5_as_a_standalone_HTML_file_with_encryption.tid index 76542256b..97f5c52aa 100644 --- a/editions/tw5.com/tiddlers/howtos/How_to_use_TiddlyWiki5_as_a_standalone_HTML_file_with_encryption.tid +++ b/editions/tw5.com/tiddlers/howtos/How_to_use_TiddlyWiki5_as_a_standalone_HTML_file_with_encryption.tid @@ -1,11 +1,12 @@ -title: How to use TiddlyWiki5 as a standalone HTML file with encryption tags: docs howto +title: How to use TiddlyWiki5 as a standalone HTML file with encryption +modified: 201304152154 [[TiddlyWiki5 Standalone Edition]] allows content to be encrypted using the [[Stanford JavaScript Crypto Library]]. -1. Scroll to the bottom of the page where you should see the words "This wiki is not encrypted" and a button labelled "Set password" -2. Click "Set password" -3. Type a password and click the "Set" button (or use the enter key) -4. The control panel should now say "This wiki is encrypted" with buttons for changing and clearing the password -5. Save the wiki using the "Save" button in the left sidebar -6. Optionally, open the saved file in a text editor and verify that your data is encrypted +# Scroll to the bottom of the page where you should see the words "This wiki is not encrypted" and a button labelled "Set password" +# Click "Set password" +# Type a password and click the "Set" button (or use the enter key) +# The control panel should now say "This wiki is encrypted" with buttons for changing and clearing the password +# Save the wiki using the "Save" button in the left sidebar +# Optionally, open the saved file in a text editor and verify that your data is encrypted diff --git a/editions/tw5.com/tiddlers/mechanisms/PluginMechanism.tid b/editions/tw5.com/tiddlers/mechanisms/PluginMechanism.tid index bae243875..e0fdb823f 100644 --- a/editions/tw5.com/tiddlers/mechanisms/PluginMechanism.tid +++ b/editions/tw5.com/tiddlers/mechanisms/PluginMechanism.tid @@ -1,5 +1,6 @@ -title: PluginMechanism tags: docs mechanism +title: PluginMechanism +modified: 201304152135 [[Plugins]] are bundles of tiddlers that are distributed and managed as a single unit by being packed into a single JSON tiddler. If a tiddler isn't found in the main store, then the loaded plugins are searched for it instead. @@ -65,20 +66,13 @@ A folder containing an exploded TiddlyWiki can contain a `tiddlywiki.info` file ``` { "plugins": [ - "slider", - "chooser", - "tiddlytools/superslider", - "../../myplugins/specialone", - "/mylib/another", + "tiddlywiki/slider", + "tiddlytools/chooser" ] } ``` -Plugins can be identified in several ways: - -* Names that do not contain a slash are interpreted as the name of a TiddlyWiki core plugin (ie, `$:/plugins/tiddlywiki/`) -* Names that start with a slash or dot are interpreted as pathnames to a plugin file or folder -* Names that contain a single slash that is not at the start or end are interpreted as names of plugins from the core plugin library (ie, `$:/plugins/`) +Plugins names refer to plugin folders listed in TiddlyWiki5's root `plugins` folder. Plugins can also be included manually by copying them into the `plugins` subfolder of the wiki.