1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-12-25 17:40:29 +00:00

Docs updates

This commit is contained in:
Jeremy Ruston 2013-04-16 11:17:38 +01:00
parent ba7b886067
commit ffece485fe
2 changed files with 13 additions and 18 deletions

View File

@ -1,11 +1,12 @@
title: How to use TiddlyWiki5 as a standalone HTML file with encryption
tags: docs howto 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]]. [[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" # 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" # Click "Set password"
3. Type a password and click the "Set" button (or use the enter key) # 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 # 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 # 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 # Optionally, open the saved file in a text editor and verify that your data is encrypted

View File

@ -1,5 +1,6 @@
title: PluginMechanism
tags: docs mechanism 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. [[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": [ "plugins": [
"slider", "tiddlywiki/slider",
"chooser", "tiddlytools/chooser"
"tiddlytools/superslider",
"../../myplugins/specialone",
"/mylib/another",
] ]
} }
``` ```
Plugins can be identified in several ways: Plugins names refer to plugin folders listed in TiddlyWiki5's root `plugins` folder.
* Names that do not contain a slash are interpreted as the name of a TiddlyWiki core plugin (ie, `$:/plugins/tiddlywiki/<name>`)
* 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/<publisher/name>`)
Plugins can also be included manually by copying them into the `plugins` subfolder of the wiki. Plugins can also be included manually by copying them into the `plugins` subfolder of the wiki.