| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| { | ||
| "description": "Amazon Web Services edition", | ||
| "plugins": [ | ||
| "tiddlywiki/async", | ||
| "tiddlywiki/jszip", | ||
| "tiddlywiki/aws" | ||
| ], | ||
| "themes": [ | ||
| "tiddlywiki/vanilla", | ||
| "tiddlywiki/snowwhite" | ||
| ], | ||
| "build": { | ||
| "index": [ | ||
| "--rendertiddler","$:/core/save/all","index.html","text/plain"], | ||
| "lambda": [ | ||
| "--rendertiddler","$:/plugins/tiddlywiki/aws/lambdas/main","index.js","text/plain"] | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,4 +5,4 @@ modifier: pmario | |
| title: WikiText mehr Beispiele | ||
| type: text/vnd.tiddlywiki | ||
|
|
||
| Siehe: https://tiddlywiki.com | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,4 +6,4 @@ tags: Lexikon | |
| title: DataTiddlers | ||
| type: text/vnd.tiddlywiki | ||
|
|
||
| Siehe: https://tiddlywiki.com/#DataTiddlers | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,4 +6,4 @@ tags: Lexikon Referenz | |
| title: Filter | ||
| type: text/vnd.tiddlywiki | ||
|
|
||
| Siehe: https://tiddlywiki.com/#Filters | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,4 +6,4 @@ tags: Lexikon | |
| title: Node.js | ||
| type: text/vnd.tiddlywiki | ||
|
|
||
| Siehe: https://tiddlywiki.com/#Node.js | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,4 +6,4 @@ tags: Lexikon | |
| title: TextReferenz | ||
| type: text/vnd.tiddlywiki | ||
|
|
||
| Siehe: https://tiddlywiki.com/#TextReference | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,4 +6,4 @@ tags: Lexikon | |
| title: TiddlyWiki on NW.js | ||
| type: text/vnd.tiddlywiki | ||
|
|
||
| Siehe: https://tiddlywiki.com/#NW.js | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| title: $:/StaticBanner | ||
|
|
||
| <div class="tc-static-alert"><div class="tc-static-alert-inner">Diese Seite ist Teil der "reinen" HTML Version von ~TiddlyWiki auf https://tiddlywiki.com/languages/de-AT</div></div> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,4 +6,4 @@ tags: Widgets | |
| title: ImageWidget | ||
| type: text/vnd.tiddlywiki | ||
|
|
||
| Siehe: https://tiddlywiki.com/#ImageWidget | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,4 +6,4 @@ tags: Lexikon | |
| title: LinkWidget | ||
| type: text/vnd.tiddlywiki | ||
|
|
||
| Siehe: https://tiddlywiki.com/#LinkWidget | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| title: $:/StaticBanner | ||
|
|
||
| <div class="tc-static-alert"><div class="tc-static-alert-inner">Diese Seite ist Teil der "reinen" HTML Version von ~TiddlyWiki auf https://tiddlywiki.com/languages/de-DE</div></div> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| created: 20170629080243049 | ||
| modified: 20170629080243049 | ||
| tags: HookMechanism | ||
| title: Hook: th-editing-tiddler | ||
| type: text/vnd.tiddlywiki | ||
|
|
||
| This hook allows plugins to inspect tiddlers before they are edited via the ''edit'' toolbar button. | ||
|
|
||
| Hook function parameters: | ||
|
|
||
| * ''event'': DOM event object that triggered the edit | ||
|
|
||
| Return value: | ||
|
|
||
| * ''editTiddler'': ''true'' to continue with editing the tiddler as usual, ''false'' to silently suppress editing |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| created: 20171010115148355 | ||
| modified: 20171010115148355 | ||
| tags: HookMechanism | ||
| title: Hook: th-importing-file | ||
| type: text/vnd.tiddlywiki | ||
|
|
||
| This hook allows plugins to inspect or modify the details of files imported via drag and drop or the "import" button. It is invoked as each [[File object|https://developer.mozilla.org/en-US/docs/Web/API/File]] provided by the browser in response to an import or drag and drop is being read. The hook function can choose to ignore the file, in which case TiddlyWiki's default processing proceeds to read and import the content of the file. Alternatively, the hook function can process the file to extract the tiddlers itself, and then pass them back to TiddlyWiki to be handled by the rest of the import process. | ||
|
|
||
| Use this hook if you want to control how tiddlers are extracted from files during an import. See [[Hook: th-importing-tiddler]] if you want to process each imported tiddler after they have been extracted from the files. | ||
|
|
||
| Hook function parameters: | ||
|
|
||
| * ''info'': an object with properties containing information relating to the current file: | ||
| ** ''file'': reference to the browser's [[File object|https://developer.mozilla.org/en-US/docs/Web/API/File]] | ||
| ** ''type'': the MIME type of the file. If not provided by the browser then TiddlyWiki attempts to infer the type from the file extension | ||
| ** ''isBinary'': flag for whether the file contains binary data (which requires that the file type be recognised by TiddlyWiki) | ||
| ** ''callback'': callback function to be called with an array of tiddler field objects extracted from the file object | ||
|
|
||
| Return value: | ||
|
|
||
| * ''true'' indicates that the hook handled the file, and passed any extracted tiddlers to the callback | ||
| * ''false'' indicates that the hook didn't process the file |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| tags: dev | ||
| title: Using Notifications | ||
| type: text/vnd.tiddlywiki | ||
|
|
||
| !! Overview | ||
|
|
||
| The notifier module is part of TiddlyWiki's suite of built-in utilities. It displays the text of a tiddler as a notification that briefly appears at the top right top of the screen. They are automatically dismissed after a few seconds. | ||
|
|
||
|
|
||
| Notifications are an easy and visual way to notify the user of key information that is transient -- in other words, it shouldn't matter whether the user misses the notification (modals or alerts that require manual dismissal should be used in these cases). | ||
|
|
||
| An example is the `Saved wiki` notification seen each time the "save" button is clicked in the single file configuration of TiddlyWiki. | ||
|
|
||
| The notification module makes it easy to display such notifcations, including all the heavy lifting of the notification creation, appending it to the DOM, animating it and finally removing it from the DOM. | ||
|
|
||
| !! Parameters | ||
|
|
||
| The notifier module only has one method (`display(title,options)`) that accepts two parameters: | ||
|
|
||
| * title: The title of an existing tiddler | ||
| ** If the tiddler does not exist, then no notification will take place | ||
| ** The content of this tiddler will be transcluded into the notification body | ||
| * Options: An object containing a `variables` property that will be applied in the tiddler transclusion | ||
|
|
||
| !! Usage | ||
|
|
||
| A notifier instance is availably directly on the global `$tw` object: | ||
|
|
||
| ```js | ||
| $tw.notifier.display("$:/language/Notifications/Save/Starting"); | ||
| ``` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| title: $:/StaticBanner | ||
|
|
||
| <div class="tc-static-alert"><div class="tc-static-alert-inner">This page is part of a static HTML representation of the ~TiddlyWiki at https://tiddlywiki.com/dev/</div></div> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,6 +35,7 @@ | |
| "en-GB", | ||
| "en-US", | ||
| "es-ES", | ||
| "fa-IR", | ||
| "fr-FR", | ||
| "he-IL", | ||
| "hi-IN", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,4 +4,4 @@ title: Get Started | |
|
|
||
| Learn more about TiddlyWiki: | ||
|
|
||
| https://tiddlywiki.com/#GettingStarted | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,6 +25,7 @@ | |
| "en-GB", | ||
| "en-US", | ||
| "es-ES", | ||
| "fa-IR", | ||
| "fr-FR", | ||
| "hi-IN", | ||
| "ia-IA", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| title: $:/StaticBanner | ||
|
|
||
| <div class="tc-static-alert"><div class="tc-static-alert-inner">이 문서는 [[https://tiddlywiki.com/languages/ko-KR/]]에서 티들리위키의 정적 HTML 표현의 일부입니다</div></div> |