1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-27 03:57:21 +00:00

Rename "tw-*" messages to "tm-*"

This commit is contained in:
Jermolene 2014-08-28 21:43:44 +01:00
parent db40ac85c2
commit 2f69ea362c
106 changed files with 211 additions and 211 deletions

View File

@ -1,7 +1,7 @@
title: $:/language/Modals/Download title: $:/language/Modals/Download
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
subtitle: Download changes subtitle: Download changes
footer: <$button message="tw-close-tiddler">Close</$button> footer: <$button message="tm-close-tiddler">Close</$button>
help: http://tiddlywiki.com/static/DownloadingChanges.html help: http://tiddlywiki.com/static/DownloadingChanges.html
Your browser only supports manual saving. Your browser only supports manual saving.

View File

@ -1,7 +1,7 @@
title: $:/language/Modals/SaveInstructions title: $:/language/Modals/SaveInstructions
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
subtitle: Save your work subtitle: Save your work
footer: <$button message="tw-close-tiddler">Close</$button> footer: <$button message="tm-close-tiddler">Close</$button>
help: http://tiddlywiki.com/static/SavingChanges.html help: http://tiddlywiki.com/static/SavingChanges.html
Your changes to this wiki need to be saved as a ~TiddlyWiki HTML file. Your changes to this wiki need to be saved as a ~TiddlyWiki HTML file.

View File

@ -62,13 +62,13 @@ function SaverHandler(options) {
} }
// Install the save action handlers // Install the save action handlers
if($tw.browser) { if($tw.browser) {
$tw.rootWidget.addEventListener("tw-save-wiki",function(event) { $tw.rootWidget.addEventListener("tm-save-wiki",function(event) {
self.saveWiki({ self.saveWiki({
template: event.param, template: event.param,
downloadType: "text/plain" downloadType: "text/plain"
}); });
}); });
$tw.rootWidget.addEventListener("tw-download-file",function(event) { $tw.rootWidget.addEventListener("tm-download-file",function(event) {
self.saveWiki({ self.saveWiki({
method: "download", method: "download",
template: event.param, template: event.param,

View File

@ -19,7 +19,7 @@ exports.after = ["startup"];
exports.synchronous = true; exports.synchronous = true;
exports.startup = function() { exports.startup = function() {
$tw.rootWidget.addEventListener("tw-set-password",function(event) { $tw.rootWidget.addEventListener("tm-set-password",function(event) {
$tw.passwordPrompt.createPrompt({ $tw.passwordPrompt.createPrompt({
serviceName: "Set a new password for this TiddlyWiki", serviceName: "Set a new password for this TiddlyWiki",
noUserName: true, noUserName: true,
@ -33,7 +33,7 @@ exports.startup = function() {
} }
}); });
}); });
$tw.rootWidget.addEventListener("tw-clear-password",function(event) { $tw.rootWidget.addEventListener("tm-clear-password",function(event) {
$tw.crypto.setPassword(null); $tw.crypto.setPassword(null);
}); });
// Ensure that $:/isEncrypted is maintained properly // Ensure that $:/isEncrypted is maintained properly

View File

@ -22,22 +22,22 @@ exports.synchronous = true;
exports.startup = function() { exports.startup = function() {
// Install the modal message mechanism // Install the modal message mechanism
$tw.modal = new $tw.utils.Modal($tw.wiki); $tw.modal = new $tw.utils.Modal($tw.wiki);
$tw.rootWidget.addEventListener("tw-modal",function(event) { $tw.rootWidget.addEventListener("tm-modal",function(event) {
$tw.modal.display(event.param); $tw.modal.display(event.param);
}); });
// Install the notification mechanism // Install the notification mechanism
$tw.notifier = new $tw.utils.Notifier($tw.wiki); $tw.notifier = new $tw.utils.Notifier($tw.wiki);
$tw.rootWidget.addEventListener("tw-notify",function(event) { $tw.rootWidget.addEventListener("tm-notify",function(event) {
$tw.notifier.display(event.param); $tw.notifier.display(event.param);
}); });
// Install the scroller // Install the scroller
$tw.pageScroller = new $tw.utils.PageScroller(); $tw.pageScroller = new $tw.utils.PageScroller();
$tw.rootWidget.addEventListener("tw-scroll",function(event) { $tw.rootWidget.addEventListener("tm-scroll",function(event) {
$tw.pageScroller.handleEvent(event); $tw.pageScroller.handleEvent(event);
}); });
var fullscreen = $tw.utils.getFullScreenApis(); var fullscreen = $tw.utils.getFullScreenApis();
if(fullscreen) { if(fullscreen) {
$tw.rootWidget.addEventListener("tw-full-screen",function(event) { $tw.rootWidget.addEventListener("tm-full-screen",function(event) {
if(document[fullscreen._fullscreenElement]) { if(document[fullscreen._fullscreenElement]) {
document[fullscreen._exitFullscreen](); document[fullscreen._exitFullscreen]();
} else { } else {
@ -48,7 +48,7 @@ exports.startup = function() {
// If we're being viewed on a data: URI then give instructions for how to save // If we're being viewed on a data: URI then give instructions for how to save
if(document.location.protocol === "data:") { if(document.location.protocol === "data:") {
$tw.rootWidget.dispatchEvent({ $tw.rootWidget.dispatchEvent({
type: "tw-modal", type: "tm-modal",
param: "$:/language/Modals/SaveInstructions" param: "$:/language/Modals/SaveInstructions"
}); });
} }

View File

@ -49,27 +49,27 @@ exports.startup = function() {
openStartupTiddlers({defaultToCurrentStory: true}); openStartupTiddlers({defaultToCurrentStory: true});
} }
},false) },false)
// Listen for the tw-browser-refresh message // Listen for the tm-browser-refresh message
$tw.rootWidget.addEventListener("tw-browser-refresh",function(event) { $tw.rootWidget.addEventListener("tm-browser-refresh",function(event) {
window.location.reload(true); window.location.reload(true);
}); });
// Listen for the tw-home message // Listen for the tm-home message
$tw.rootWidget.addEventListener("tw-home",function(event) { $tw.rootWidget.addEventListener("tm-home",function(event) {
window.location.hash = ""; window.location.hash = "";
var storyFilter = $tw.wiki.getTiddlerText(DEFAULT_TIDDLERS_TITLE), var storyFilter = $tw.wiki.getTiddlerText(DEFAULT_TIDDLERS_TITLE),
storyList = $tw.wiki.filterTiddlers(storyFilter); storyList = $tw.wiki.filterTiddlers(storyFilter);
$tw.wiki.addTiddler({title: DEFAULT_STORY_TITLE, text: "", list: storyList},$tw.wiki.getModificationFields()); $tw.wiki.addTiddler({title: DEFAULT_STORY_TITLE, text: "", list: storyList},$tw.wiki.getModificationFields());
}); });
// Listen for the tw-permalink message // Listen for the tm-permalink message
$tw.rootWidget.addEventListener("tw-permalink",function(event) { $tw.rootWidget.addEventListener("tm-permalink",function(event) {
updateLocationHash({ updateLocationHash({
updateAddressBar: "permalink", updateAddressBar: "permalink",
updateHistory: $tw.wiki.getTiddlerText(CONFIG_UPDATE_HISTORY,"no").trim(), updateHistory: $tw.wiki.getTiddlerText(CONFIG_UPDATE_HISTORY,"no").trim(),
targetTiddler: event.param || event.tiddlerTitle targetTiddler: event.param || event.tiddlerTitle
}); });
}); });
// Listen for the tw-permaview message // Listen for the tm-permaview message
$tw.rootWidget.addEventListener("tw-permaview",function(event) { $tw.rootWidget.addEventListener("tm-permaview",function(event) {
updateLocationHash({ updateLocationHash({
updateAddressBar: "permaview", updateAddressBar: "permaview",
updateHistory: $tw.wiki.getTiddlerText(CONFIG_UPDATE_HISTORY,"no").trim(), updateHistory: $tw.wiki.getTiddlerText(CONFIG_UPDATE_HISTORY,"no").trim(),

View File

@ -26,7 +26,7 @@ ClassicStoryView.prototype.navigateTo = function(historyInfo) {
var listItemWidget = this.listWidget.children[listElementIndex], var listItemWidget = this.listWidget.children[listElementIndex],
targetElement = listItemWidget.findFirstDomNode(); targetElement = listItemWidget.findFirstDomNode();
// Scroll the node into view // Scroll the node into view
this.listWidget.dispatchEvent({type: "tw-scroll", target: targetElement}); this.listWidget.dispatchEvent({type: "tm-scroll", target: targetElement});
}; };
ClassicStoryView.prototype.insert = function(widget) { ClassicStoryView.prototype.insert = function(widget) {

View File

@ -24,7 +24,7 @@ PopStoryView.prototype.navigateTo = function(historyInfo) {
var listItemWidget = this.listWidget.children[listElementIndex], var listItemWidget = this.listWidget.children[listElementIndex],
targetElement = listItemWidget.findFirstDomNode(); targetElement = listItemWidget.findFirstDomNode();
// Scroll the node into view // Scroll the node into view
this.listWidget.dispatchEvent({type: "tw-scroll", target: targetElement}); this.listWidget.dispatchEvent({type: "tm-scroll", target: targetElement});
}; };
PopStoryView.prototype.insert = function(widget) { PopStoryView.prototype.insert = function(widget) {

View File

@ -48,13 +48,13 @@ function Syncer(options) {
return confirmationMessage; return confirmationMessage;
}); });
// Listen out for login/logout/refresh events in the browser // Listen out for login/logout/refresh events in the browser
$tw.rootWidget.addEventListener("tw-login",function() { $tw.rootWidget.addEventListener("tm-login",function() {
self.handleLoginEvent(); self.handleLoginEvent();
}); });
$tw.rootWidget.addEventListener("tw-logout",function() { $tw.rootWidget.addEventListener("tm-logout",function() {
self.handleLogoutEvent(); self.handleLogoutEvent();
}); });
$tw.rootWidget.addEventListener("tw-server-refresh",function() { $tw.rootWidget.addEventListener("tm-server-refresh",function() {
self.handleRefreshEvent(); self.handleRefreshEvent();
}); });
} }

View File

@ -113,7 +113,7 @@ Modal.prototype.display = function(title,options) {
attributes: { attributes: {
message: { message: {
type: "string", type: "string",
value: "tw-close-tiddler" value: "tm-close-tiddler"
} }
}, },
children: [{ children: [{
@ -152,12 +152,12 @@ Modal.prototype.display = function(title,options) {
document.body.removeChild(wrapper); document.body.removeChild(wrapper);
} }
},duration); },duration);
// Don't let anyone else handle the tw-close-tiddler message // Don't let anyone else handle the tm-close-tiddler message
return false; return false;
}; };
headerWidgetNode.addEventListener("tw-close-tiddler",closeHandler,false); headerWidgetNode.addEventListener("tm-close-tiddler",closeHandler,false);
bodyWidgetNode.addEventListener("tw-close-tiddler",closeHandler,false); bodyWidgetNode.addEventListener("tm-close-tiddler",closeHandler,false);
footerWidgetNode.addEventListener("tw-close-tiddler",closeHandler,false); footerWidgetNode.addEventListener("tm-close-tiddler",closeHandler,false);
// Set the initial styles for the message // Set the initial styles for the message
$tw.utils.setStyle(modalBackdrop,[ $tw.utils.setStyle(modalBackdrop,[
{opacity: "0"} {opacity: "0"}

View File

@ -13,7 +13,7 @@ Module that creates a $tw.utils.Scroller object prototype that manages scrolling
"use strict"; "use strict";
/* /*
Event handler for when the `tw-scroll` event hits the document body Event handler for when the `tm-scroll` event hits the document body
*/ */
var PageScroller = function() { var PageScroller = function() {
this.idRequestFrame = null; this.idRequestFrame = null;
@ -44,7 +44,7 @@ PageScroller.prototype.cancelScroll = function() {
Handle an event Handle an event
*/ */
PageScroller.prototype.handleEvent = function(event) { PageScroller.prototype.handleEvent = function(event) {
if(event.type === "tw-scroll") { if(event.type === "tm-scroll") {
return this.scrollIntoView(event.target); return this.scrollIntoView(event.target);
} }
return true; return true;

View File

@ -40,7 +40,7 @@ BrowseWidget.prototype.render = function(parent,nextSibling) {
// Add a click event handler // Add a click event handler
domNode.addEventListener("change",function (event) { domNode.addEventListener("change",function (event) {
self.wiki.readFiles(event.target.files,function(tiddlerFieldsArray) { self.wiki.readFiles(event.target.files,function(tiddlerFieldsArray) {
self.dispatchEvent({type: "tw-import-tiddlers", param: JSON.stringify(tiddlerFieldsArray)}); self.dispatchEvent({type: "tm-import-tiddlers", param: JSON.stringify(tiddlerFieldsArray)});
}); });
return false; return false;
},false); },false);

View File

@ -101,7 +101,7 @@ ButtonWidget.prototype.isPoppedUp = function() {
ButtonWidget.prototype.navigateTo = function(event) { ButtonWidget.prototype.navigateTo = function(event) {
var bounds = this.domNodes[0].getBoundingClientRect(); var bounds = this.domNodes[0].getBoundingClientRect();
this.dispatchEvent({ this.dispatchEvent({
type: "tw-navigate", type: "tm-navigate",
navigateTo: this.to, navigateTo: this.to,
navigateFromTitle: this.getVariable("storyTiddler"), navigateFromTitle: this.getVariable("storyTiddler"),
navigateFromNode: this, navigateFromNode: this,

View File

@ -97,7 +97,7 @@ DropZoneWidget.prototype.handleDropEvent = function(event) {
$tw.utils.removeClass(this.domNodes[0],"tc-dragover"); $tw.utils.removeClass(this.domNodes[0],"tc-dragover");
// Import any files in the drop // Import any files in the drop
var numFiles = this.wiki.readFiles(dataTransfer.files,function(tiddlerFieldsArray) { var numFiles = this.wiki.readFiles(dataTransfer.files,function(tiddlerFieldsArray) {
self.dispatchEvent({type: "tw-import-tiddlers", param: JSON.stringify(tiddlerFieldsArray)}); self.dispatchEvent({type: "tm-import-tiddlers", param: JSON.stringify(tiddlerFieldsArray)});
}); });
// Try to import the various data types we understand // Try to import the various data types we understand
if(numFiles === 0) { if(numFiles === 0) {
@ -122,7 +122,7 @@ DropZoneWidget.prototype.importData = function(dataTransfer) {
if(!tiddlerFields.title) { if(!tiddlerFields.title) {
tiddlerFields.title = this.wiki.generateNewTitle("Untitled"); tiddlerFields.title = this.wiki.generateNewTitle("Untitled");
} }
this.dispatchEvent({type: "tw-import-tiddlers", param: JSON.stringify([tiddlerFields])}); this.dispatchEvent({type: "tm-import-tiddlers", param: JSON.stringify([tiddlerFields])});
return; return;
} }
} }
@ -188,7 +188,7 @@ DropZoneWidget.prototype.handlePasteEvent = function(event) {
if(item.kind === "file") { if(item.kind === "file") {
// Import any files // Import any files
this.wiki.readFile(item.getAsFile(),function(tiddlerFieldsArray) { this.wiki.readFile(item.getAsFile(),function(tiddlerFieldsArray) {
self.dispatchEvent({type: "tw-import-tiddlers", param: JSON.stringify(tiddlerFieldsArray)}); self.dispatchEvent({type: "tm-import-tiddlers", param: JSON.stringify(tiddlerFieldsArray)});
}); });
} else if(item.kind === "string") { } else if(item.kind === "string") {
// Create tiddlers from string items // Create tiddlers from string items
@ -199,7 +199,7 @@ DropZoneWidget.prototype.handlePasteEvent = function(event) {
text: str, text: str,
type: type type: type
}; };
self.dispatchEvent({type: "tw-import-tiddlers", param: JSON.stringify([tiddlerFields])}); self.dispatchEvent({type: "tm-import-tiddlers", param: JSON.stringify([tiddlerFields])});
}); });
} }
} }

View File

@ -17,10 +17,10 @@ var Widget = require("$:/core/modules/widgets/widget.js").widget;
var FieldManglerWidget = function(parseTreeNode,options) { var FieldManglerWidget = function(parseTreeNode,options) {
this.initialise(parseTreeNode,options); this.initialise(parseTreeNode,options);
this.addEventListeners([ this.addEventListeners([
{type: "tw-remove-field", handler: "handleRemoveFieldEvent"}, {type: "tm-remove-field", handler: "handleRemoveFieldEvent"},
{type: "tw-add-field", handler: "handleAddFieldEvent"}, {type: "tm-add-field", handler: "handleAddFieldEvent"},
{type: "tw-remove-tag", handler: "handleRemoveTagEvent"}, {type: "tm-remove-tag", handler: "handleRemoveTagEvent"},
{type: "tw-add-tag", handler: "handleAddTagEvent"} {type: "tm-add-tag", handler: "handleAddTagEvent"}
]); ]);
}; };

View File

@ -110,7 +110,7 @@ LinkWidget.prototype.handleClickEvent = function (event) {
// Send the click on it's way as a navigate event // Send the click on it's way as a navigate event
var bounds = this.domNodes[0].getBoundingClientRect(); var bounds = this.domNodes[0].getBoundingClientRect();
this.dispatchEvent({ this.dispatchEvent({
type: "tw-navigate", type: "tm-navigate",
navigateTo: this.to, navigateTo: this.to,
navigateFromTitle: this.getVariable("storyTiddler"), navigateFromTitle: this.getVariable("storyTiddler"),
navigateFromNode: this, navigateFromNode: this,

View File

@ -17,7 +17,7 @@ var Widget = require("$:/core/modules/widgets/widget.js").widget;
var LinkCatcherWidget = function(parseTreeNode,options) { var LinkCatcherWidget = function(parseTreeNode,options) {
this.initialise(parseTreeNode,options); this.initialise(parseTreeNode,options);
this.addEventListeners([ this.addEventListeners([
{type: "tw-navigate", handler: "handleNavigateEvent"} {type: "tm-navigate", handler: "handleNavigateEvent"}
]); ]);
}; };
@ -63,7 +63,7 @@ LinkCatcherWidget.prototype.refresh = function(changedTiddlers) {
}; };
/* /*
Handle a tw-navigate event Handle a tm-navigate event
*/ */
LinkCatcherWidget.prototype.handleNavigateEvent = function(event) { LinkCatcherWidget.prototype.handleNavigateEvent = function(event) {
if(this.catchTo) { if(this.catchTo) {

View File

@ -19,17 +19,17 @@ var Widget = require("$:/core/modules/widgets/widget.js").widget;
var NavigatorWidget = function(parseTreeNode,options) { var NavigatorWidget = function(parseTreeNode,options) {
this.initialise(parseTreeNode,options); this.initialise(parseTreeNode,options);
this.addEventListeners([ this.addEventListeners([
{type: "tw-navigate", handler: "handleNavigateEvent"}, {type: "tm-navigate", handler: "handleNavigateEvent"},
{type: "tw-edit-tiddler", handler: "handleEditTiddlerEvent"}, {type: "tm-edit-tiddler", handler: "handleEditTiddlerEvent"},
{type: "tw-delete-tiddler", handler: "handleDeleteTiddlerEvent"}, {type: "tm-delete-tiddler", handler: "handleDeleteTiddlerEvent"},
{type: "tw-save-tiddler", handler: "handleSaveTiddlerEvent"}, {type: "tm-save-tiddler", handler: "handleSaveTiddlerEvent"},
{type: "tw-cancel-tiddler", handler: "handleCancelTiddlerEvent"}, {type: "tm-cancel-tiddler", handler: "handleCancelTiddlerEvent"},
{type: "tw-close-tiddler", handler: "handleCloseTiddlerEvent"}, {type: "tm-close-tiddler", handler: "handleCloseTiddlerEvent"},
{type: "tw-close-all-tiddlers", handler: "handleCloseAllTiddlersEvent"}, {type: "tm-close-all-tiddlers", handler: "handleCloseAllTiddlersEvent"},
{type: "tw-close-other-tiddlers", handler: "handleCloseOtherTiddlersEvent"}, {type: "tm-close-other-tiddlers", handler: "handleCloseOtherTiddlersEvent"},
{type: "tw-new-tiddler", handler: "handleNewTiddlerEvent"}, {type: "tm-new-tiddler", handler: "handleNewTiddlerEvent"},
{type: "tw-import-tiddlers", handler: "handleImportTiddlersEvent"}, {type: "tm-import-tiddlers", handler: "handleImportTiddlersEvent"},
{type: "tw-perform-import", handler: "handlePerformImportEvent"} {type: "tm-perform-import", handler: "handlePerformImportEvent"}
]); ]);
}; };
@ -140,7 +140,7 @@ NavigatorWidget.prototype.addToHistory = function(title,fromPageRect) {
}; };
/* /*
Handle a tw-navigate event Handle a tm-navigate event
*/ */
NavigatorWidget.prototype.handleNavigateEvent = function(event) { NavigatorWidget.prototype.handleNavigateEvent = function(event) {
this.addToStory(event.navigateTo,event.navigateFromTitle); this.addToStory(event.navigateTo,event.navigateFromTitle);
@ -310,7 +310,7 @@ NavigatorWidget.prototype.handleSaveTiddlerEvent = function(event) {
)); ));
} }
if(!isRename && !this.wiki.isDraftModified(title)) { if(!isRename && !this.wiki.isDraftModified(title)) {
event.type = "tw-cancel-tiddler"; event.type = "tm-cancel-tiddler";
this.dispatchEvent(event); this.dispatchEvent(event);
} else if(isConfirmed) { } else if(isConfirmed) {
// Save the draft tiddler as the real tiddler // Save the draft tiddler as the real tiddler

View File

@ -18,7 +18,7 @@ var ScrollableWidget = function(parseTreeNode,options) {
this.initialise(parseTreeNode,options); this.initialise(parseTreeNode,options);
this.scaleFactor = 1; this.scaleFactor = 1;
this.addEventListeners([ this.addEventListeners([
{type: "tw-scroll", handler: "handleScrollEvent"} {type: "tm-scroll", handler: "handleScrollEvent"}
]); ]);
if($tw.browser) { if($tw.browser) {
this.requestAnimationFrame = window.requestAnimationFrame || this.requestAnimationFrame = window.requestAnimationFrame ||

View File

@ -2,7 +2,7 @@ title: $:/core/ui/AlertTemplate
<div class="tc-alert"> <div class="tc-alert">
<div class="tc-alert-toolbar"> <div class="tc-alert-toolbar">
<$button message="tw-delete-tiddler" class="tc-btn-invisible"> <$button message="tm-delete-tiddler" class="tc-btn-invisible">
{{$:/core/images/delete-button}}</$button> {{$:/core/images/delete-button}}</$button>
</div> </div>
<div class="tc-alert-subtitle"> <div class="tc-alert-subtitle">

View File

@ -11,7 +11,7 @@ caption: {{$:/language/ControlPanel/Tools/Caption}}
! <<lingo Export/Heading>> ! <<lingo Export/Heading>>
<$button message="tw-download-file" param="$:/core/templates/alltiddlers.template.html" class="tc-btn-big-green"><<lingo Export/AllAsStaticHTML/Caption>> {{$:/core/images/save-button}}</$button> <$button message="tm-download-file" param="$:/core/templates/alltiddlers.template.html" class="tc-btn-big-green"><<lingo Export/AllAsStaticHTML/Caption>> {{$:/core/images/save-button}}</$button>
! <<lingo Encryption/Heading>> ! <<lingo Encryption/Heading>>

View File

@ -5,8 +5,8 @@ tc-tiddler-frame tc-tiddler-edit-frame $(missingTiddlerClass)$ $(shadowTiddlerCl
\end \end
<div class=<<frame-classes>>> <div class=<<frame-classes>>>
<$set name="storyTiddler" value=<<currentTiddler>>> <$set name="storyTiddler" value=<<currentTiddler>>>
<$keyboard key="escape" message="tw-cancel-tiddler"> <$keyboard key="escape" message="tm-cancel-tiddler">
<$keyboard key="ctrl+enter" message="tw-save-tiddler"> <$keyboard key="ctrl+enter" message="tm-save-tiddler">
<$list filter="[all[shadows+tiddlers]tag[$:/tags/EditTemplate]!has[draft.of]]" variable="listItem"> <$list filter="[all[shadows+tiddlers]tag[$:/tags/EditTemplate]!has[draft.of]]" variable="listItem">
<$transclude tiddler=<<listItem>>/> <$transclude tiddler=<<listItem>>/>
</$list> </$list>

View File

@ -21,7 +21,7 @@ $:/config/EditTemplateFields/Visibility/$(currentField)$
<$edit-text tiddler=<<currentTiddler>> field=<<currentField>> placeholder={{$:/language/EditTemplate/Fields/Add/Value/Placeholder}}/> <$edit-text tiddler=<<currentTiddler>> field=<<currentField>> placeholder={{$:/language/EditTemplate/Fields/Add/Value/Placeholder}}/>
</td> </td>
<td class="tc-edit-field-remove"> <td class="tc-edit-field-remove">
<$button message="tw-remove-field" param=<<currentField>> class="tc-btn-invisible">{{$:/core/images/delete-button}}</$button> <$button message="tm-remove-field" param=<<currentField>> class="tc-btn-invisible">{{$:/core/images/delete-button}}</$button>
</td> </td>
</tr> </tr>
</$list> </$list>
@ -36,7 +36,7 @@ $:/config/EditTemplateFields/Visibility/$(currentField)$
</em> <span class="tc-edit-field-add-name"> </em> <span class="tc-edit-field-add-name">
<$edit-text tiddler="$:/temp/newfieldname" tag="input" default="" placeholder={{$:/language/EditTemplate/Fields/Add/Name/Placeholder}} class="tc-edit-texteditor"/> <$edit-text tiddler="$:/temp/newfieldname" tag="input" default="" placeholder={{$:/language/EditTemplate/Fields/Add/Name/Placeholder}} class="tc-edit-texteditor"/>
</span> <span class="tc-edit-field-add-button"> </span> <span class="tc-edit-field-add-button">
<$button message="tw-add-field" param={{$:/temp/newfieldname}} set="$:/temp/newfieldname" setTo="" class=""> <$button message="tm-add-field" param={{$:/temp/newfieldname}} set="$:/temp/newfieldname" setTo="" class="">
<<lingo Fields/Add/Button>> <<lingo Fields/Add/Button>>
</$button> </$button>
</span> </span>

View File

@ -9,7 +9,7 @@ background-color:$(backgroundColor)$;
<$fieldmangler> <$fieldmangler>
<$list filter="[all[current]tags[]sort[title]]" storyview="pop"><$set name="backgroundColor" value={{!!color}}><span style=<<tag-styles>> class="tc-tag-label"> <$list filter="[all[current]tags[]sort[title]]" storyview="pop"><$set name="backgroundColor" value={{!!color}}><span style=<<tag-styles>> class="tc-tag-label">
<$view field="title" format="text" /> <$view field="title" format="text" />
<$button message="tw-remove-tag" param={{!!title}} class="tc-btn-invisible tc-remove-tag-button">&times;</$button></span> <$button message="tm-remove-tag" param={{!!title}} class="tc-btn-invisible tc-remove-tag-button">&times;</$button></span>
</$set> </$set>
</$list> </$list>
@ -17,7 +17,7 @@ background-color:$(backgroundColor)$;
<span class="tc-add-tag-name"> <span class="tc-add-tag-name">
<$edit-text tiddler="$:/temp/NewTagName" tag="input" default="" placeholder={{$:/language/EditTemplate/Tags/Add/Placeholder}} focusPopup=<<qualify "$:/state/popup/tags-auto-complete">> class="tc-edit-texteditor"/> <$edit-text tiddler="$:/temp/NewTagName" tag="input" default="" placeholder={{$:/language/EditTemplate/Tags/Add/Placeholder}} focusPopup=<<qualify "$:/state/popup/tags-auto-complete">> class="tc-edit-texteditor"/>
</span> <$button popup=<<qualify "$:/state/popup/tags-auto-complete">> class="tc-btn-invisible btn-dropdown">{{$:/core/images/down-arrow}}</$button> <span class="tc-add-tag-button"> </span> <$button popup=<<qualify "$:/state/popup/tags-auto-complete">> class="tc-btn-invisible btn-dropdown">{{$:/core/images/down-arrow}}</$button> <span class="tc-add-tag-button">
<$button message="tw-add-tag" param={{$:/temp/NewTagName}} set="$:/temp/NewTagName" setTo="" class=""> <$button message="tm-add-tag" param={{$:/temp/NewTagName}} set="$:/temp/NewTagName" setTo="" class="">
<<lingo Tags/Add/Button>> <<lingo Tags/Add/Button>>
</$button> </$button>
</span> </span>
@ -29,7 +29,7 @@ background-color:$(backgroundColor)$;
<div class="tc-block-dropdown"> <div class="tc-block-dropdown">
<$linkcatcher set="$:/temp/NewTagName" setTo="" message="tw-add-tag"> <$linkcatcher set="$:/temp/NewTagName" setTo="" message="tm-add-tag">
<$list filter="[!is[shadow]tags[]search{$:/temp/NewTagName}sort[title]]"> <$list filter="[!is[shadow]tags[]search{$:/temp/NewTagName}sort[title]]">
<$link> <$link>
<$set name="backgroundColor" value={{!!color}}> <$set name="backgroundColor" value={{!!color}}>

View File

@ -2,7 +2,7 @@ title: $:/core/ui/EditTemplate/type
tags: $:/tags/EditTemplate tags: $:/tags/EditTemplate
\define lingo-base() $:/language/EditTemplate/ \define lingo-base() $:/language/EditTemplate/
<p><$fieldmangler><em class="tc-edit"><<lingo Type/Prompt>></em> <$edit-text field="type" tag="input" default="" placeholder={{$:/language/EditTemplate/Type/Placeholder}} focusPopup=<<qualify "$:/state/popup/type-dropdown">> class="tc-edit-typeeditor"/> <$button popup=<<qualify "$:/state/popup/type-dropdown">> class="tc-btn-invisible btn-dropdown">{{$:/core/images/down-arrow}}</$button> <$button message="tw-remove-field" param="type" class="tc-btn-invisible tc-btn-icon">{{$:/core/images/delete-button}}</$button></$fieldmangler></p> <p><$fieldmangler><em class="tc-edit"><<lingo Type/Prompt>></em> <$edit-text field="type" tag="input" default="" placeholder={{$:/language/EditTemplate/Type/Placeholder}} focusPopup=<<qualify "$:/state/popup/type-dropdown">> class="tc-edit-typeeditor"/> <$button popup=<<qualify "$:/state/popup/type-dropdown">> class="tc-btn-invisible btn-dropdown">{{$:/core/images/down-arrow}}</$button> <$button message="tm-remove-field" param="type" class="tc-btn-invisible tc-btn-icon">{{$:/core/images/delete-button}}</$button></$fieldmangler></p>
<div class="tc-block-dropdown-wrapper"> <div class="tc-block-dropdown-wrapper">
<$reveal state=<<qualify "$:/state/popup/type-dropdown">> type="nomatch" text="" default=""> <$reveal state=<<qualify "$:/state/popup/type-dropdown">> type="nomatch" text="" default="">

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditToolbar
caption: {{$:/core/images/cancel-button}} {{$:/language/Buttons/Cancel/Caption}} caption: {{$:/core/images/cancel-button}} {{$:/language/Buttons/Cancel/Caption}}
description: {{$:/language/Buttons/Cancel/Hint}} description: {{$:/language/Buttons/Cancel/Hint}}
<$button message="tw-cancel-tiddler" title={{$:/language/Buttons/Cancel/Hint}} aria-label={{$:/language/Buttons/Cancel/Caption}} class=<<tw-config-toolbar-class>>> <$button message="tm-cancel-tiddler" title={{$:/language/Buttons/Cancel/Hint}} aria-label={{$:/language/Buttons/Cancel/Caption}} class=<<tw-config-toolbar-class>>>
<$list filter="[<tw-config-toolbar-icons>prefix[yes]]"> <$list filter="[<tw-config-toolbar-icons>prefix[yes]]">
{{$:/core/images/cancel-button}} {{$:/core/images/cancel-button}}
</$list> </$list>

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditToolbar
caption: {{$:/core/images/delete-button}} {{$:/language/Buttons/Delete/Caption}} caption: {{$:/core/images/delete-button}} {{$:/language/Buttons/Delete/Caption}}
description: {{$:/language/Buttons/Delete/Hint}} description: {{$:/language/Buttons/Delete/Hint}}
<$button message="tw-delete-tiddler" title={{$:/language/Buttons/Delete/Hint}} aria-label={{$:/language/Buttons/Delete/Caption}} class=<<tw-config-toolbar-class>>> <$button message="tm-delete-tiddler" title={{$:/language/Buttons/Delete/Hint}} aria-label={{$:/language/Buttons/Delete/Caption}} class=<<tw-config-toolbar-class>>>
<$list filter="[<tw-config-toolbar-icons>prefix[yes]]"> <$list filter="[<tw-config-toolbar-icons>prefix[yes]]">
{{$:/core/images/delete-button}} {{$:/core/images/delete-button}}
</$list> </$list>

View File

@ -3,7 +3,7 @@ tags: $:/tags/EditToolbar
caption: {{$:/core/images/done-button}} {{$:/language/Buttons/Save/Caption}} caption: {{$:/core/images/done-button}} {{$:/language/Buttons/Save/Caption}}
description: {{$:/language/Buttons/Save/Hint}} description: {{$:/language/Buttons/Save/Hint}}
<$button message="tw-save-tiddler" title={{$:/language/Buttons/Save/Hint}} aria-label={{$:/language/Buttons/Save/Caption}} class=<<tw-config-toolbar-class>>> <$button message="tm-save-tiddler" title={{$:/language/Buttons/Save/Hint}} aria-label={{$:/language/Buttons/Save/Caption}} class=<<tw-config-toolbar-class>>>
<$list filter="[<tw-config-toolbar-icons>prefix[yes]]"> <$list filter="[<tw-config-toolbar-icons>prefix[yes]]">
{{$:/core/images/done-button}} {{$:/core/images/done-button}}
</$list> </$list>

View File

@ -3,7 +3,7 @@ tags: $:/tags/PageControls
caption: {{$:/core/images/close-all-button}} {{$:/language/Buttons/CloseAll/Caption}} caption: {{$:/core/images/close-all-button}} {{$:/language/Buttons/CloseAll/Caption}}
description: {{$:/language/Buttons/CloseAll/Hint}} description: {{$:/language/Buttons/CloseAll/Hint}}
<$button message="tw-close-all-tiddlers" title={{$:/language/Buttons/CloseAll/Hint}} aria-label={{$:/language/Buttons/CloseAll/Caption}} class=<<tw-config-toolbar-class>>> <$button message="tm-close-all-tiddlers" title={{$:/language/Buttons/CloseAll/Hint}} aria-label={{$:/language/Buttons/CloseAll/Caption}} class=<<tw-config-toolbar-class>>>
<$list filter="[<tw-config-toolbar-icons>prefix[yes]]"> <$list filter="[<tw-config-toolbar-icons>prefix[yes]]">
{{$:/core/images/close-all-button}} {{$:/core/images/close-all-button}}
</$list> </$list>

View File

@ -4,7 +4,7 @@ caption: {{$:/core/images/locked-padlock}} {{$:/language/Buttons/Encryption/Capt
description: {{$:/language/Buttons/Encryption/Hint}} description: {{$:/language/Buttons/Encryption/Hint}}
<$reveal type="match" state="$:/isEncrypted" text="yes"> <$reveal type="match" state="$:/isEncrypted" text="yes">
<$button message="tw-clear-password" title={{$:/language/Buttons/Encryption/ClearPassword/Hint}} aria-label={{$:/language/Buttons/Encryption/ClearPassword/Caption}} class=<<tw-config-toolbar-class>>> <$button message="tm-clear-password" title={{$:/language/Buttons/Encryption/ClearPassword/Hint}} aria-label={{$:/language/Buttons/Encryption/ClearPassword/Caption}} class=<<tw-config-toolbar-class>>>
<$list filter="[<tw-config-toolbar-icons>prefix[yes]]"> <$list filter="[<tw-config-toolbar-icons>prefix[yes]]">
{{$:/core/images/locked-padlock}} {{$:/core/images/locked-padlock}}
</$list> </$list>
@ -14,7 +14,7 @@ description: {{$:/language/Buttons/Encryption/Hint}}
</$button> </$button>
</$reveal> </$reveal>
<$reveal type="nomatch" state="$:/isEncrypted" text="yes"> <$reveal type="nomatch" state="$:/isEncrypted" text="yes">
<$button message="tw-set-password" title={{$:/language/Buttons/Encryption/SetPassword/Hint}} aria-label={{$:/language/Buttons/Encryption/SetPassword/Caption}} class=<<tw-config-toolbar-class>>> <$button message="tm-set-password" title={{$:/language/Buttons/Encryption/SetPassword/Hint}} aria-label={{$:/language/Buttons/Encryption/SetPassword/Caption}} class=<<tw-config-toolbar-class>>>
<$list filter="[<tw-config-toolbar-icons>prefix[yes]]"> <$list filter="[<tw-config-toolbar-icons>prefix[yes]]">
{{$:/core/images/unlocked-padlock}} {{$:/core/images/unlocked-padlock}}
</$list> </$list>

View File

@ -3,7 +3,7 @@ tags: $:/tags/PageControls
caption: {{$:/core/images/full-screen-button}} {{$:/language/Buttons/FullScreen/Caption}} caption: {{$:/core/images/full-screen-button}} {{$:/language/Buttons/FullScreen/Caption}}
description: {{$:/language/Buttons/FullScreen/Hint}} description: {{$:/language/Buttons/FullScreen/Hint}}
<$button message="tw-full-screen" title={{$:/language/Buttons/FullScreen/Hint}} aria-label={{$:/language/Buttons/FullScreen/Caption}} class=<<tw-config-toolbar-class>>> <$button message="tm-full-screen" title={{$:/language/Buttons/FullScreen/Hint}} aria-label={{$:/language/Buttons/FullScreen/Caption}} class=<<tw-config-toolbar-class>>>
<$list filter="[<tw-config-toolbar-icons>prefix[yes]]"> <$list filter="[<tw-config-toolbar-icons>prefix[yes]]">
{{$:/core/images/full-screen-button}} {{$:/core/images/full-screen-button}}
</$list> </$list>

View File

@ -3,7 +3,7 @@ tags: $:/tags/PageControls
caption: {{$:/core/images/home-button}} {{$:/language/Buttons/Home/Caption}} caption: {{$:/core/images/home-button}} {{$:/language/Buttons/Home/Caption}}
description: {{$:/language/Buttons/Home/Hint}} description: {{$:/language/Buttons/Home/Hint}}
<$button message="tw-home" title={{$:/language/Buttons/Home/Hint}} aria-label={{$:/language/Buttons/Home/Caption}} class=<<tw-config-toolbar-class>>> <$button message="tm-home" title={{$:/language/Buttons/Home/Hint}} aria-label={{$:/language/Buttons/Home/Caption}} class=<<tw-config-toolbar-class>>>
<$list filter="[<tw-config-toolbar-icons>prefix[yes]]"> <$list filter="[<tw-config-toolbar-icons>prefix[yes]]">
{{$:/core/images/home-button}} {{$:/core/images/home-button}}
</$list> </$list>

View File

@ -3,7 +3,7 @@ tags: $:/tags/PageControls
caption: {{$:/core/images/new-button}} {{$:/language/Buttons/NewTiddler/Caption}} caption: {{$:/core/images/new-button}} {{$:/language/Buttons/NewTiddler/Caption}}
description: {{$:/language/Buttons/NewTiddler/Hint}} description: {{$:/language/Buttons/NewTiddler/Hint}}
<$button message="tw-new-tiddler" title={{$:/language/Buttons/NewTiddler/Hint}} aria-label={{$:/language/Buttons/NewTiddler/Caption}} class=<<tw-config-toolbar-class>>> <$button message="tm-new-tiddler" title={{$:/language/Buttons/NewTiddler/Hint}} aria-label={{$:/language/Buttons/NewTiddler/Caption}} class=<<tw-config-toolbar-class>>>
<$list filter="[<tw-config-toolbar-icons>prefix[yes]]"> <$list filter="[<tw-config-toolbar-icons>prefix[yes]]">
{{$:/core/images/new-button}} {{$:/core/images/new-button}}
</$list> </$list>

View File

@ -3,7 +3,7 @@ tags: $:/tags/PageControls
caption: {{$:/core/images/refresh-button}} {{$:/language/Buttons/Refresh/Caption}} caption: {{$:/core/images/refresh-button}} {{$:/language/Buttons/Refresh/Caption}}
description: {{$:/language/Buttons/Refresh/Hint}} description: {{$:/language/Buttons/Refresh/Hint}}
<$button message="tw-browser-refresh" title={{$:/language/Buttons/Refresh/Hint}} aria-label={{$:/language/Buttons/Refresh/Caption}} class=<<tw-config-toolbar-class>>> <$button message="tm-browser-refresh" title={{$:/language/Buttons/Refresh/Hint}} aria-label={{$:/language/Buttons/Refresh/Caption}} class=<<tw-config-toolbar-class>>>
<$list filter="[<tw-config-toolbar-icons>prefix[yes]]"> <$list filter="[<tw-config-toolbar-icons>prefix[yes]]">
{{$:/core/images/refresh-button}} {{$:/core/images/refresh-button}}
</$list> </$list>

View File

@ -3,7 +3,7 @@ tags: $:/tags/PageControls
caption: {{$:/core/images/save-button}} {{$:/language/Buttons/SaveWiki/Caption}} caption: {{$:/core/images/save-button}} {{$:/language/Buttons/SaveWiki/Caption}}
description: {{$:/language/Buttons/SaveWiki/Hint}} description: {{$:/language/Buttons/SaveWiki/Hint}}
<$button message="tw-save-wiki" param={{$:/config/SaveWikiButton/Template}} title={{$:/language/Buttons/SaveWiki/Hint}} aria-label={{$:/language/Buttons/SaveWiki/Caption}} class=<<tw-config-toolbar-class>>> <$button message="tm-save-wiki" param={{$:/config/SaveWikiButton/Template}} title={{$:/language/Buttons/SaveWiki/Hint}} aria-label={{$:/language/Buttons/SaveWiki/Caption}} class=<<tw-config-toolbar-class>>>
<span class="tc-dirty-indicator"> <span class="tc-dirty-indicator">
<$list filter="[<tw-config-toolbar-icons>prefix[yes]]"> <$list filter="[<tw-config-toolbar-icons>prefix[yes]]">
{{$:/core/images/save-button}} {{$:/core/images/save-button}}

View File

@ -5,8 +5,8 @@ caption: {{$:/language/SideBar/Open/Caption}}
\define lingo-base() $:/language/CloseAll/ \define lingo-base() $:/language/CloseAll/
<$list filter="[list[$:/StoryList]]" history="$:/HistoryList" storyview="pop"> <$list filter="[list[$:/StoryList]]" history="$:/HistoryList" storyview="pop">
<$button message="tw-close-tiddler" title={{$:/language/Buttons/Close/Hint}} aria-label={{$:/language/Buttons/Close/Caption}} class="tc-btn-invisible tc-btn-mini">&times;</$button> <$link to={{!!title}}><$view field="title"/></$link> <$button message="tm-close-tiddler" title={{$:/language/Buttons/Close/Hint}} aria-label={{$:/language/Buttons/Close/Caption}} class="tc-btn-invisible tc-btn-mini">&times;</$button> <$link to={{!!title}}><$view field="title"/></$link>
</$list> </$list>
<$button message="tw-close-all-tiddlers" class="tc-btn-invisible tc-btn-mini"><<lingo Button>></$button> <$button message="tm-close-all-tiddlers" class="tc-btn-invisible tc-btn-mini"><<lingo Button>></$button>

View File

@ -11,8 +11,8 @@ tags: $:/tags/ViewTemplate
{{||$:/core/ui/ImportListing}} {{||$:/core/ui/ImportListing}}
<$button message="tw-delete-tiddler" param=<<currentTiddler>>><<lingo Listing/Cancel/Caption>></$button> <$button message="tm-delete-tiddler" param=<<currentTiddler>>><<lingo Listing/Cancel/Caption>></$button>
<$button message="tw-perform-import" param=<<currentTiddler>>><<lingo Listing/Import/Caption>></$button> <$button message="tm-perform-import" param=<<currentTiddler>>><<lingo Listing/Import/Caption>></$button>
</div> </div>

View File

@ -3,7 +3,7 @@ tags: $:/tags/ViewToolbar
caption: {{$:/core/images/clone-button}} {{$:/language/Buttons/Clone/Caption}} caption: {{$:/core/images/clone-button}} {{$:/language/Buttons/Clone/Caption}}
description: {{$:/language/Buttons/Clone/Hint}} description: {{$:/language/Buttons/Clone/Hint}}
<$button message="tw-new-tiddler" param=<<currentTiddler>> title={{$:/language/Buttons/Clone/Hint}} aria-label={{$:/language/Buttons/Clone/Caption}} class=<<tw-config-toolbar-class>>> <$button message="tm-new-tiddler" param=<<currentTiddler>> title={{$:/language/Buttons/Clone/Hint}} aria-label={{$:/language/Buttons/Clone/Caption}} class=<<tw-config-toolbar-class>>>
<$list filter="[<tw-config-toolbar-icons>prefix[yes]]"> <$list filter="[<tw-config-toolbar-icons>prefix[yes]]">
{{$:/core/images/clone-button}} {{$:/core/images/clone-button}}
</$list> </$list>

View File

@ -3,7 +3,7 @@ tags: $:/tags/ViewToolbar
caption: {{$:/core/images/close-others-button}} {{$:/language/Buttons/CloseOthers/Caption}} caption: {{$:/core/images/close-others-button}} {{$:/language/Buttons/CloseOthers/Caption}}
description: {{$:/language/Buttons/CloseOthers/Hint}} description: {{$:/language/Buttons/CloseOthers/Hint}}
<$button message="tw-close-other-tiddlers" param=<<currentTiddler>> title={{$:/language/Buttons/CloseOthers/Hint}} aria-label={{$:/language/Buttons/CloseOthers/Caption}} class=<<tw-config-toolbar-class>>> <$button message="tm-close-other-tiddlers" param=<<currentTiddler>> title={{$:/language/Buttons/CloseOthers/Hint}} aria-label={{$:/language/Buttons/CloseOthers/Caption}} class=<<tw-config-toolbar-class>>>
<$list filter="[<tw-config-toolbar-icons>prefix[yes]]"> <$list filter="[<tw-config-toolbar-icons>prefix[yes]]">
{{$:/core/images/close-others-button}} {{$:/core/images/close-others-button}}
</$list> </$list>

View File

@ -3,7 +3,7 @@ tags: $:/tags/ViewToolbar
caption: {{$:/core/images/close-button}} {{$:/language/Buttons/Close/Caption}} caption: {{$:/core/images/close-button}} {{$:/language/Buttons/Close/Caption}}
description: {{$:/language/Buttons/Close/Hint}} description: {{$:/language/Buttons/Close/Hint}}
<$button message="tw-close-tiddler" title={{$:/language/Buttons/Close/Hint}} aria-label={{$:/language/Buttons/Close/Caption}} class=<<tw-config-toolbar-class>>> <$button message="tm-close-tiddler" title={{$:/language/Buttons/Close/Hint}} aria-label={{$:/language/Buttons/Close/Caption}} class=<<tw-config-toolbar-class>>>
<$list filter="[<tw-config-toolbar-icons>prefix[yes]]"> <$list filter="[<tw-config-toolbar-icons>prefix[yes]]">
{{$:/core/images/close-button}} {{$:/core/images/close-button}}
</$list> </$list>

View File

@ -3,7 +3,7 @@ tags: $:/tags/ViewToolbar
caption: {{$:/core/images/edit-button}} {{$:/language/Buttons/Edit/Caption}} caption: {{$:/core/images/edit-button}} {{$:/language/Buttons/Edit/Caption}}
description: {{$:/language/Buttons/Edit/Hint}} description: {{$:/language/Buttons/Edit/Hint}}
<$button message="tw-edit-tiddler" title={{$:/language/Buttons/Edit/Hint}} aria-label={{$:/language/Buttons/Edit/Caption}} class=<<tw-config-toolbar-class>>> <$button message="tm-edit-tiddler" title={{$:/language/Buttons/Edit/Hint}} aria-label={{$:/language/Buttons/Edit/Caption}} class=<<tw-config-toolbar-class>>>
<$list filter="[<tw-config-toolbar-icons>prefix[yes]]"> <$list filter="[<tw-config-toolbar-icons>prefix[yes]]">
{{$:/core/images/edit-button}} {{$:/core/images/edit-button}}
</$list> </$list>

View File

@ -3,7 +3,7 @@ tags: $:/tags/ViewToolbar
caption: {{$:/core/images/permalink-button}} {{$:/language/Buttons/Permalink/Caption}} caption: {{$:/core/images/permalink-button}} {{$:/language/Buttons/Permalink/Caption}}
description: {{$:/language/Buttons/Permalink/Hint}} description: {{$:/language/Buttons/Permalink/Hint}}
<$button message="tw-permalink" title={{$:/language/Buttons/Permalink/Hint}} aria-label={{$:/language/Buttons/Permalink/Caption}} class=<<tw-config-toolbar-class>>> <$button message="tm-permalink" title={{$:/language/Buttons/Permalink/Hint}} aria-label={{$:/language/Buttons/Permalink/Caption}} class=<<tw-config-toolbar-class>>>
<$list filter="[<tw-config-toolbar-icons>prefix[yes]]"> <$list filter="[<tw-config-toolbar-icons>prefix[yes]]">
{{$:/core/images/permalink-button}} {{$:/core/images/permalink-button}}
</$list> </$list>

View File

@ -3,7 +3,7 @@ tags: $:/tags/ViewToolbar $:/tags/PageControls
caption: {{$:/core/images/permaview-button}} {{$:/language/Buttons/Permaview/Caption}} caption: {{$:/core/images/permaview-button}} {{$:/language/Buttons/Permaview/Caption}}
description: {{$:/language/Buttons/Permaview/Hint}} description: {{$:/language/Buttons/Permaview/Hint}}
<$button message="tw-permaview" title={{$:/language/Buttons/Permaview/Hint}} aria-label={{$:/language/Buttons/Permaview/Caption}} class=<<tw-config-toolbar-class>>> <$button message="tm-permaview" title={{$:/language/Buttons/Permaview/Hint}} aria-label={{$:/language/Buttons/Permaview/Caption}} class=<<tw-config-toolbar-class>>>
<$list filter="[<tw-config-toolbar-icons>prefix[yes]]"> <$list filter="[<tw-config-toolbar-icons>prefix[yes]]">
{{$:/core/images/permaview-button}} {{$:/core/images/permaview-button}}
</$list> </$list>

View File

@ -1,4 +1,4 @@
title: $:/snippets/download-wiki-button title: $:/snippets/download-wiki-button
\define lingo-base() $:/language/ControlPanel/Tools/Download/ \define lingo-base() $:/language/ControlPanel/Tools/Download/
<$button message="tw-download-file" param="$:/core/save/all" class="tc-btn-big-green"><<lingo Full/Caption>> {{$:/core/images/save-button}}</$button> <$button message="tm-download-file" param="$:/core/save/all" class="tc-btn-big-green"><<lingo Full/Caption>> {{$:/core/images/save-button}}</$button>

View File

@ -3,10 +3,10 @@ title: $:/snippets/encryptionstatus
\define lingo-base() $:/language/ControlPanel/Tools/Encryption/ \define lingo-base() $:/language/ControlPanel/Tools/Encryption/
<$reveal type="match" state="$:/isEncrypted" text="yes"> <$reveal type="match" state="$:/isEncrypted" text="yes">
<<lingo Enabled/Prompt>> <<lingo Enabled/Prompt>>
<$button message="tw-clear-password"><<lingo ClearPassword/Button>></$button> <$button message="tm-clear-password"><<lingo ClearPassword/Button>></$button>
<$button message="tw-set-password"><<lingo ChangePassword/Button>></$button> <$button message="tm-set-password"><<lingo ChangePassword/Button>></$button>
</$reveal> </$reveal>
<$reveal type="nomatch" state="$:/isEncrypted" text="yes"> <$reveal type="nomatch" state="$:/isEncrypted" text="yes">
<<lingo Disabled/Prompt>> <<lingo Disabled/Prompt>>
<$button message="tw-set-password"><<lingo SetPassword/Button>></$button> <$button message="tm-set-password"><<lingo SetPassword/Button>></$button>
</$reveal> </$reveal>

View File

@ -10,14 +10,14 @@ title: $:/snippets/paletteeditor
<$list filter="[all[current]is[shadow]is[tiddler]]" variable="listItem"> <$list filter="[all[current]is[shadow]is[tiddler]]" variable="listItem">
<<lingo Prompt/Modified>> <<lingo Prompt/Modified>>
<$button message="tw-delete-tiddler" param={{$:/palette}}><<lingo Reset/Caption>></$button> <$button message="tm-delete-tiddler" param={{$:/palette}}><<lingo Reset/Caption>></$button>
</$list> </$list>
<$list filter="[all[current]is[shadow]!is[tiddler]]" variable="listItem"> <$list filter="[all[current]is[shadow]!is[tiddler]]" variable="listItem">
<<lingo Clone/Prompt>> <<lingo Clone/Prompt>>
</$list> </$list>
<$button message="tw-new-tiddler" param={{$:/palette}}><<lingo Clone/Caption>></$button> <$button message="tm-new-tiddler" param={{$:/palette}}><<lingo Clone/Caption>></$button>
<table> <table>
<tbody> <tbody>

View File

@ -2,5 +2,5 @@ title: HelloThere
This is an experimental edition of TiddlyWiki5 for use with [[Tahoe-LAFS|https://tahoe-lafs.org/]]. At this point it is largely for experimentation by @zooko. Click the ''save changes'' button to PUT the updated TiddlyWiki HTML file back to the server. This is an experimental edition of TiddlyWiki5 for use with [[Tahoe-LAFS|https://tahoe-lafs.org/]]. At this point it is largely for experimentation by @zooko. Click the ''save changes'' button to PUT the updated TiddlyWiki HTML file back to the server.
<$button message="tw-new-tiddler">New Tiddler</$button> <$button message="tm-new-tiddler">New Tiddler</$button>
<$button message="tw-save-wiki">Save Changes</$button> <$button message="tm-save-wiki">Save Changes</$button>

View File

@ -5,7 +5,7 @@ title: Features
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
\define alert-demo() \define alert-demo()
<$fieldmangler tiddler="SampleAlert"><$set name="currentTiddler" value="SampleAlert"><$button message="tw-add-tag" param="$:/tags/Alert">alerts</$button></$set></$fieldmangler> <$fieldmangler tiddler="SampleAlert"><$set name="currentTiddler" value="SampleAlert"><$button message="tm-add-tag" param="$:/tags/Alert">alerts</$button></$set></$fieldmangler>
\end \end
* The ability to save changes on almost any desktop HTML5 compatible-browser, with custom apps to enable [[Saving on iPad/iPhone]] and [[Android|Saving on Android]], and a cross-platform [[Firefox extension|Saving with TiddlyFox]] that even runs on Android * The ability to save changes on almost any desktop HTML5 compatible-browser, with custom apps to enable [[Saving on iPad/iPhone]] and [[Android|Saving on Android]], and a cross-platform [[Firefox extension|Saving with TiddlyFox]] that even runs on Android
* Support for pluggable themes and colour palettes (see the [[control panel|$:/ControlPanel]]) * Support for pluggable themes and colour palettes (see the [[control panel|$:/ControlPanel]])
@ -15,11 +15,11 @@ type: text/vnd.tiddlywiki
* Integrated [[AES encryption|Saving with Encryption]] * Integrated [[AES encryption|Saving with Encryption]]
* TiddlyWiki isn't just a wiki - you can build custom applications with it like this TaskManagementExample * TiddlyWiki isn't just a wiki - you can build custom applications with it like this TaskManagementExample
* Full internationalization support, with TiddlyWiki itself available in several languages (see the [[control panel|$:/ControlPanel]]) * Full internationalization support, with TiddlyWiki itself available in several languages (see the [[control panel|$:/ControlPanel]])
* Familiar user interface elements like <<alert-demo>>, <$button message="tw-modal" param="SampleWizard">wizards</$button> and <$button message="tw-notify" param="SampleNotification">notifications</$button> * Familiar user interface elements like <<alert-demo>>, <$button message="tm-modal" param="SampleWizard">wizards</$button> and <$button message="tm-notify" param="SampleNotification">notifications</$button>
* Easily [[import|ImportTiddlers]] content via drag and drop, copy and paste, or browsing for local files * Easily [[import|ImportTiddlers]] content via drag and drop, copy and paste, or browsing for local files
* Clone existing tiddlers (for example, <$button message="tw-new-tiddler" param=<<currentTiddler>>>clone this tiddler</$button>) * Clone existing tiddlers (for example, <$button message="tm-new-tiddler" param=<<currentTiddler>>>clone this tiddler</$button>)
* TiddlyWiki is [[surprisingly scalable|Scalability]] to many thousands of tiddlers and megabytes of content * TiddlyWiki is [[surprisingly scalable|Scalability]] to many thousands of tiddlers and megabytes of content
* Try out the <$button message="tw-full-screen">full screen support</$button> * Try out the <$button message="tm-full-screen">full screen support</$button>
* Explore the [[D3.js visualisation plugin|http://tiddlywiki.com/d3demo.html]] * Explore the [[D3.js visualisation plugin|http://tiddlywiki.com/d3demo.html]]
* [[CodeMirror support via a plugin|http://tiddlywiki.com/codemirrordemo.html]] * [[CodeMirror support via a plugin|http://tiddlywiki.com/codemirrordemo.html]]
* [[Markdown support via a plugin|http://tiddlywiki.com/markdowndemo.html]] * [[Markdown support via a plugin|http://tiddlywiki.com/markdowndemo.html]]

View File

@ -14,7 +14,7 @@ This is version <<version-link>> of ~TiddlyWiki, a major reboot designed [[for t
<div class="tc-message-box"> <div class="tc-message-box">
<a class="tw-message-icon" href="http://tiddlywiki.com/" target="_blank">{{TiddlyWiki Classic.png}}</a> <a class="tc-message-icon" href="http://tiddlywiki.com/" target="_blank">{{TiddlyWiki Classic.png}}</a>
!! TiddlyWikiClassic !! TiddlyWikiClassic

View File

@ -183,30 +183,30 @@ $body$
">> ">>
## <<toc-heading "Widget Messages" " ## <<toc-heading "Widget Messages" "
## WidgetMessages ## WidgetMessages
## [[tw-cancel-tiddler|WidgetMessage: tw-cancel-tiddler]] ## [[tm-cancel-tiddler|WidgetMessage: tm-cancel-tiddler]]
## [[tw-clear-password|WidgetMessage: tw-clear-password]] ## [[tm-clear-password|WidgetMessage: tm-clear-password]]
## [[tw-close-all-tiddlers|WidgetMessage: tw-close-all-tiddlers]] ## [[tm-close-all-tiddlers|WidgetMessage: tm-close-all-tiddlers]]
## [[tw-close-other-tiddlers|WidgetMessage: tw-close-other-tiddlers]] ## [[tm-close-other-tiddlers|WidgetMessage: tm-close-other-tiddlers]]
## [[tw-close-tiddler|WidgetMessage: tw-close-tiddler]] ## [[tm-close-tiddler|WidgetMessage: tm-close-tiddler]]
## [[tw-delete-tiddler|WidgetMessage: tw-delete-tiddler]] ## [[tm-delete-tiddler|WidgetMessage: tm-delete-tiddler]]
## [[tw-download-file|WidgetMessage: tw-download-file]] ## [[tm-download-file|WidgetMessage: tm-download-file]]
## [[tw-edit-tiddler|WidgetMessage: tw-edit-tiddler]] ## [[tm-edit-tiddler|WidgetMessage: tm-edit-tiddler]]
## [[tw-full-screen|WidgetMessage: tw-full-screen]] ## [[tm-full-screen|WidgetMessage: tm-full-screen]]
## [[tw-home|WidgetMessage: tw-home]] ## [[tm-home|WidgetMessage: tm-home]]
## [[tw-import-tiddlers|WidgetMessage: tw-import-tiddlers]] ## [[tm-import-tiddlers|WidgetMessage: tm-import-tiddlers]]
## [[tw-login|WidgetMessage: tw-login]] ## [[tm-login|WidgetMessage: tm-login]]
## [[tw-logout|WidgetMessage: tw-logout]] ## [[tm-logout|WidgetMessage: tm-logout]]
## [[tw-modal|WidgetMessage: tw-modal]] ## [[tm-modal|WidgetMessage: tm-modal]]
## [[tw-navigate|WidgetMessage: tw-navigate]] ## [[tm-navigate|WidgetMessage: tm-navigate]]
## [[tw-new-tiddler|WidgetMessage: tw-new-tiddler]] ## [[tm-new-tiddler|WidgetMessage: tm-new-tiddler]]
## [[tw-notify|WidgetMessage: tw-notify]] ## [[tm-notify|WidgetMessage: tm-notify]]
## [[tw-perform-import|WidgetMessage: tw-perform-import]] ## [[tm-perform-import|WidgetMessage: tm-perform-import]]
## [[tw-permalink|WidgetMessage: tw-permalink]] ## [[tm-permalink|WidgetMessage: tm-permalink]]
## [[tw-permaview|WidgetMessage: tw-permaview]] ## [[tm-permaview|WidgetMessage: tm-permaview]]
## [[tw-save-tiddler|WidgetMessage: tw-save-tiddler]] ## [[tm-save-tiddler|WidgetMessage: tm-save-tiddler]]
## [[tw-save-wiki|WidgetMessage: tw-save-wiki]] ## [[tm-save-wiki|WidgetMessage: tm-save-wiki]]
## [[tw-server-refresh|WidgetMessage: tw-server-refresh]] ## [[tm-server-refresh|WidgetMessage: tm-server-refresh]]
## [[tw-set-password|WidgetMessage: tw-set-password]] ## [[tm-set-password|WidgetMessage: tm-set-password]]
">> ">>
## <<toc-heading "Filter Operators" " ## <<toc-heading "Filter Operators" "
## FilterOperators ## FilterOperators

View File

@ -16,7 +16,7 @@ Click this link to get started: HelloThere
<$list filter="[list[MySubStoryList]]" history="MySubHistoryList"> <$list filter="[list[MySubStoryList]]" history="MySubHistoryList">
<div> <div>
! <$button message="tw-close-tiddler" class="tc-btn-invisible">{{$:/core/images/close-button}}</$button> <$view field="title"/> ! <$button message="tm-close-tiddler" class="tc-btn-invisible">{{$:/core/images/close-button}}</$button> <$view field="title"/>
<$transclude/> <$transclude/>
</div> </div>
@ -34,7 +34,7 @@ Click this link to get started: HelloThere
<$list filter="[list[MySubStoryList]]" history="MySubHistoryList"> <$list filter="[list[MySubStoryList]]" history="MySubHistoryList">
<div> <div>
! <$button message="tw-close-tiddler" class="tc-btn-invisible">{{$:/core/images/close-button}}</$button> <$view field="title"/> ! <$button message="tm-close-tiddler" class="tc-btn-invisible">{{$:/core/images/close-button}}</$button> <$view field="title"/>
<$transclude/> <$transclude/>

View File

@ -6,7 +6,7 @@ type: text/vnd.tiddlywiki
Alerts are displayed as yellow boxes overlaying the main TiddlyWiki window. Each one corresponds to a tiddler with the tag [[$:/tags/Alert]]. Clicking the delete icon on an alert deletes the corresponding tiddler. Alerts are displayed as yellow boxes overlaying the main TiddlyWiki window. Each one corresponds to a tiddler with the tag [[$:/tags/Alert]]. Clicking the delete icon on an alert deletes the corresponding tiddler.
Here's a demo <$fieldmangler tiddler="SampleAlert"><$set name="currentTiddler" value="SampleAlert"><$button message="tw-add-tag" param="$:/tags/Alert">alert</$button></$set></$fieldmangler>. Here's a demo <$fieldmangler tiddler="SampleAlert"><$set name="currentTiddler" value="SampleAlert"><$button message="tm-add-tag" param="$:/tags/Alert">alert</$button></$set></$fieldmangler>.
Alert tiddlers should have the following fields: Alert tiddlers should have the following fields:

View File

@ -8,9 +8,9 @@ Several features work in concert to give the desired behaviour for draft tiddler
* The ListWidget can optionally render draft tiddlers through a different template * The ListWidget can optionally render draft tiddlers through a different template
* The NavigatorWidget incorporates handlers for the following events: * The NavigatorWidget incorporates handlers for the following events:
** `tw-new-tiddler` for creating a new tiddler in draft mode ** `tm-new-tiddler` for creating a new tiddler in draft mode
** `tw-edit-tiddler` for moving a tiddler into edit mode ** `tm-edit-tiddler` for moving a tiddler into edit mode
** `tw-cancel-tiddler` for cancelling a tiddler out of edit mode ** `tm-cancel-tiddler` for cancelling a tiddler out of edit mode
** `tw-save-tiddler` for saving a draft tiddler ** `tm-save-tiddler` for saving a draft tiddler
* Draft tiddlers are automatically excluded from search operations * Draft tiddlers are automatically excluded from search operations

View File

@ -12,7 +12,7 @@ The EncryptionMechanism is implemented with the following elements:
* A PasswordVault within the BootMechanism that holds the current encryption password * A PasswordVault within the BootMechanism that holds the current encryption password
* The ability of the BootMechanism to read a block of encrypted tiddlers from the TiddlyWiki file, to prompt the user for a password, and to decrypt the tiddlers * The ability of the BootMechanism to read a block of encrypted tiddlers from the TiddlyWiki file, to prompt the user for a password, and to decrypt the tiddlers
* Handlers for the messages [[WidgetMessage: tw-set-password]] and [[WidgetMessage: tw-clear-password]] that handle the user interface for password changes * Handlers for the messages [[WidgetMessage: tm-set-password]] and [[WidgetMessage: tm-clear-password]] that handle the user interface for password changes
* The EncryptWidget within the main file template that encrypts a filtered list of tiddlers with the currently held password * The EncryptWidget within the main file template that encrypts a filtered list of tiddlers with the currently held password
* The [[$:/isEncrypted]] tiddler that contains "yes" or "no" according to whether there is a password in the password vault * The [[$:/isEncrypted]] tiddler that contains "yes" or "no" according to whether there is a password in the password vault
** The availability of this tiddler allows the RevealWidget to be used to selectively display user interface elements according to whether encryption is in force ** The availability of this tiddler allows the RevealWidget to be used to selectively display user interface elements according to whether encryption is in force

View File

@ -13,7 +13,7 @@ The history list also maintains the field ''current-tiddler'' that contains the
``` ```
<$list filter="[list[$:/StoryList]]" history="$:/HistoryList" storyview="pop"> <$list filter="[list[$:/StoryList]]" history="$:/HistoryList" storyview="pop">
<$button message="tw-close-tiddler" class="tc-btn-invisible tc-btn-mini">&times;</$button> <$link to={{!!title}}><$view field="title"/> <$reveal type="match" state="$:/HistoryList!!current-tiddler" text=<<currentTiddler>>>&#x2713;</$reveal></$link> <$button message="tm-close-tiddler" class="tc-btn-invisible tc-btn-mini">&times;</$button> <$link to={{!!title}}><$view field="title"/> <$reveal type="match" state="$:/HistoryList!!current-tiddler" text=<<currentTiddler>>>&#x2713;</$reveal></$link>
</$list> </$list>
``` ```
@ -22,6 +22,6 @@ Which renders the same as the "Open" sidebar tab, with the addition of a tick ag
<$list filter="[list[$:/StoryList]]" history="$:/HistoryList" storyview="pop"> <$list filter="[list[$:/StoryList]]" history="$:/HistoryList" storyview="pop">
<$button message="tw-close-tiddler" class="tc-btn-invisible tc-btn-mini">&times;</$button> <$link to={{!!title}}><$view field="title"/> <$reveal type="match" state="$:/HistoryList!!current-tiddler" text=<<currentTiddler>>>&#x2713;</$reveal></$link> <$button message="tm-close-tiddler" class="tc-btn-invisible tc-btn-mini">&times;</$button> <$link to={{!!title}}><$view field="title"/> <$reveal type="match" state="$:/HistoryList!!current-tiddler" text=<<currentTiddler>>>&#x2713;</$reveal></$link>
</$list> </$list>

View File

@ -28,7 +28,7 @@ Note how this approach makes the ''open'' tab in the sidebar very easy to implem
``` ```
<$list filter="[list[$:/StoryList]]" history="$:/HistoryList" storyview="pop"> <$list filter="[list[$:/StoryList]]" history="$:/HistoryList" storyview="pop">
<$button message="tw-close-tiddler" class="tc-btn-invisible tc-btn-mini">&times;</$button> <$link to={{!!title}}><$view field="title"/></$link> <$button message="tm-close-tiddler" class="tc-btn-invisible tc-btn-mini">&times;</$button> <$link to={{!!title}}><$view field="title"/></$link>
</$list> </$list>
``` ```

View File

@ -1,9 +1,9 @@
created: 20140819110529062 created: 20140819110529062
modified: 20140826110529062 modified: 20140826110529062
tags: message tags: message
title: WidgetMessage: tw-browser-refresh title: WidgetMessage: tm-browser-refresh
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The `tw-browser-refresh` message refreshes the page, causing the re-initialisation of any plugin tiddlers. It does not require any properties on the `event` object. The `tm-browser-refresh` message refreshes the page, causing the re-initialisation of any plugin tiddlers. It does not require any properties on the `event` object.
The refresh message is usually generated with the ButtonWidget and is handled by the core. The refresh message is usually generated with the ButtonWidget and is handled by the core.

View File

@ -1,10 +1,10 @@
created: 20140226193622350 created: 20140226193622350
modified: 20140226193906089 modified: 20140226193906089
tags: message navigator-message tags: message navigator-message
title: WidgetMessage: tw-cancel-tiddler title: WidgetMessage: tm-cancel-tiddler
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The `tw-cancel-tiddler` message abandons the changes in a draft tiddler. It requires the following properties on the `event` object: The `tm-cancel-tiddler` message abandons the changes in a draft tiddler. It requires the following properties on the `event` object:
|!Name |!Description | |!Name |!Description |
|param |Title of the tiddler that is being cancelled out of edit mode | |param |Title of the tiddler that is being cancelled out of edit mode |

View File

@ -1,9 +1,9 @@
created: 20140226084018038 created: 20140226084018038
modified: 20140226084916556 modified: 20140226084916556
tags: message tags: message
title: WidgetMessage: tw-clear-password title: WidgetMessage: tm-clear-password
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The `tw-clear-password` message clears the current password from the password vault, clearing the [[$:/isEncrypted]] tiddler. See EncryptionMechanism for details. The `tm-clear-password` message clears the current password from the password vault, clearing the [[$:/isEncrypted]] tiddler. See EncryptionMechanism for details.
This message is typically generated with the ButtonWidget, and is handled by the core itself. This message is typically generated with the ButtonWidget, and is handled by the core itself.

View File

@ -1,7 +1,7 @@
created: 20140226194242809 created: 20140226194242809
modified: 20140226194341303 modified: 20140226194341303
tags: message navigator-message tags: message navigator-message
title: WidgetMessage: tw-close-all-tiddlers title: WidgetMessage: tm-close-all-tiddlers
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The close all tiddlers message empties the story list. The close all tiddlers message empties the story list.

View File

@ -1,10 +1,10 @@
created: 20140302183306544 created: 20140302183306544
modified: 20140302183352966 modified: 20140302183352966
tags: message navigator-message tags: message navigator-message
title: WidgetMessage: tw-close-other-tiddlers title: WidgetMessage: tm-close-other-tiddlers
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The `tw-close-other-tiddlers` message removes all but a specified tiddler from the story list. It requires the following properties on the `event` object: The `tm-close-other-tiddlers` message removes all but a specified tiddler from the story list. It requires the following properties on the `event` object:
|!Name |!Description | |!Name |!Description |
|param |Title of the tiddler that is not to be closed | |param |Title of the tiddler that is not to be closed |

View File

@ -1,10 +1,10 @@
created: 20140226193940778 created: 20140226193940778
modified: 20140226194227227 modified: 20140226194227227
tags: message navigator-message tags: message navigator-message
title: WidgetMessage: tw-close-tiddler title: WidgetMessage: tm-close-tiddler
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The `tw-close-tiddler` message removes a specified tiddler from the story list. It requires the following properties on the `event` object: The `tm-close-tiddler` message removes a specified tiddler from the story list. It requires the following properties on the `event` object:
|!Name |!Description | |!Name |!Description |
|param |Title of the tiddler that is to be closed | |param |Title of the tiddler that is to be closed |

View File

@ -1,10 +1,10 @@
created: 20140226090324129 created: 20140226090324129
modified: 20140226090441236 modified: 20140226090441236
tags: message navigator-message tags: message navigator-message
title: WidgetMessage: tw-delete-tiddler title: WidgetMessage: tm-delete-tiddler
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The `tw-delete-tiddler` message deletes the specified tiddler and removes it from the current story. If the tiddler is a draft then it also deletes the tiddler specified in the `draft.of` field. The delete tiddler message requires the following properties on the `event` object: The `tm-delete-tiddler` message deletes the specified tiddler and removes it from the current story. If the tiddler is a draft then it also deletes the tiddler specified in the `draft.of` field. The delete tiddler message requires the following properties on the `event` object:
|!Name |!Description | |!Name |!Description |
|param |Title of the tiddler that is to be deleted | |param |Title of the tiddler that is to be deleted |

View File

@ -1,7 +1,7 @@
created: 20140811112201235 created: 20140811112201235
modified: 20140811115140378 modified: 20140811115140378
tags: message tags: message
title: WidgetMessage: tw-download-file title: WidgetMessage: tm-download-file
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The download file message causes the current saver module to prompt the user to download the result of parsing a specified template tiddler as a file. It requires the following properties on the `event` object: The download file message causes the current saver module to prompt the user to download the result of parsing a specified template tiddler as a file. It requires the following properties on the `event` object:

View File

@ -1,10 +1,10 @@
created: 20140226085529797 created: 20140226085529797
modified: 20140226090641987 modified: 20140226090641987
tags: message navigator-message tags: message navigator-message
title: WidgetMessage: tw-edit-tiddler title: WidgetMessage: tm-edit-tiddler
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The `tw-edit-tiddler` message replaces the specified tiddler in the current story with a draft version of itself. It requires the following properties on the `event` object: The `tm-edit-tiddler` message replaces the specified tiddler in the current story with a draft version of itself. It requires the following properties on the `event` object:
|!Name |!Description | |!Name |!Description |
|param |Title of the tiddler that is being switched to edit mode | |param |Title of the tiddler that is being switched to edit mode |

View File

@ -1,7 +1,7 @@
created: 20140811112400855 created: 20140811112400855
modified: 20140811113627373 modified: 20140811113627373
tags: message tags: message
title: WidgetMessage: tw-full-screen title: WidgetMessage: tm-full-screen
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The fullscreen message toggles the "fullscreen" mode of the browser, if it supports it. The fullscreen message toggles the "fullscreen" mode of the browser, if it supports it.

View File

@ -1,9 +1,9 @@
created: 20140819110529062 created: 20140819110529062
modified: 20140819110529062 modified: 20140819110529062
tags: message tags: message
title: WidgetMessage: tw-home title: WidgetMessage: tm-home
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The `tw-home` message closes any open tiddlers and re-opens the default tiddlers set in [[$:/DefaultTiddlers]]. It also remove any [[permalink|PermaLinks]] from the browser address bar. It does not require any properties on the `event` object. The `tm-home` message closes any open tiddlers and re-opens the default tiddlers set in [[$:/DefaultTiddlers]]. It also remove any [[permalink|PermaLinks]] from the browser address bar. It does not require any properties on the `event` object.
The home message is usually generated with the ButtonWidget and is handled by the core. The home message is usually generated with the ButtonWidget and is handled by the core.

View File

@ -1,10 +1,10 @@
created: 20140716084658099 created: 20140716084658099
modified: 20140716195055502 modified: 20140716195055502
tags: message navigator-message tags: message navigator-message
title: WidgetMessage: tw-import-tiddlers title: WidgetMessage: tm-import-tiddlers
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The `tw-import-tiddlers` message inserts a list of tiddlers into the pending import tiddler [[$:/Import]]. It also applies any active ''upgrader'' modules to each tiddler as it arrives (see the UpgradeMechanism for more details). The `tm-import-tiddlers` message inserts a list of tiddlers into the pending import tiddler [[$:/Import]]. It also applies any active ''upgrader'' modules to each tiddler as it arrives (see the UpgradeMechanism for more details).
|!Name |!Description | |!Name |!Description |
|param |JSON text of the array of tiddlers to be imported | |param |JSON text of the array of tiddlers to be imported |
@ -13,7 +13,7 @@ The import tiddlers message is usually generated with the DropzoneWidget or the
! Configuration Variables ! Configuration Variables
The variable `tw-auto-open-on-import` controls whether the `tw-import-tiddlers` message automatically triggers the display of the pending import tiddler [[$:/Import]]: The variable `tw-auto-open-on-import` controls whether the `tm-import-tiddlers` message automatically triggers the display of the pending import tiddler [[$:/Import]]:
* ''no'': The pending import tiddler is not opened in the story * ''no'': The pending import tiddler is not opened in the story
* ''yes'': The pending import tiddler is opened in th story. This is the default * ''yes'': The pending import tiddler is opened in th story. This is the default

View File

@ -1,7 +1,7 @@
created: 20140811112445887 created: 20140811112445887
modified: 20140811113336694 modified: 20140811113336694
tags: message tags: message
title: WidgetMessage: tw-login title: WidgetMessage: tm-login
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The login message prompts the user for a username and password and attempts to login to the current serverside host. The tiddler [[$:/status/IsLoggedIn]] reflects the current login status with the values "yes" or "no", and [[$:/status/UserName]] reflects the current username. The login message prompts the user for a username and password and attempts to login to the current serverside host. The tiddler [[$:/status/IsLoggedIn]] reflects the current login status with the values "yes" or "no", and [[$:/status/UserName]] reflects the current username.

View File

@ -1,7 +1,7 @@
created: 20140811112457311 created: 20140811112457311
modified: 20140811113344084 modified: 20140811113344084
tags: message tags: message
title: WidgetMessage: tw-logout title: WidgetMessage: tm-logout
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The logout message attempts to log the user out of the current serverside host. The tiddler [[$:/status/IsLoggedIn]] reflects the current login status with the values "yes" or "no", and [[$:/status/UserName]] reflects the current username. The logout message attempts to log the user out of the current serverside host. The tiddler [[$:/status/IsLoggedIn]] reflects the current login status with the values "yes" or "no", and [[$:/status/UserName]] reflects the current username.

View File

@ -1,7 +1,7 @@
created: 20140811112133701 created: 20140811112133701
modified: 20140811120203685 modified: 20140811120203685
tags: message tags: message
title: WidgetMessage: tw-modal title: WidgetMessage: tm-modal
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The modal message displays a specified tiddler in a modal overlay that dims the main page. It requires the following properties on the `event` object: The modal message displays a specified tiddler in a modal overlay that dims the main page. It requires the following properties on the `event` object:

View File

@ -1,10 +1,10 @@
created: 20140226085215941 created: 20140226085215941
modified: 20140226085454346 modified: 20140226085454346
tags: message tags: message
title: WidgetMessage: tw-navigate title: WidgetMessage: tm-navigate
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The `tw-navigate` message inserts the specified tiddler into the story and puts it at the top of the history stack. If the tiddler is not already present in the story then it will be positioned immediately after the tiddler specified in `event.navigateFromTitle`. The `tm-navigate` message inserts the specified tiddler into the story and puts it at the top of the history stack. If the tiddler is not already present in the story then it will be positioned immediately after the tiddler specified in `event.navigateFromTitle`.
The navigate message requires the following properties on the `event` object: The navigate message requires the following properties on the `event` object:

View File

@ -1,7 +1,7 @@
created: 20140226194405353 created: 20140226194405353
modified: 20140724194729158 modified: 20140724194729158
tags: message navigator-message tags: message navigator-message
title: WidgetMessage: tw-new-tiddler title: WidgetMessage: tm-new-tiddler
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The new tiddler message creates a new draft tiddler and adds it to the current story. It requires the following properties on the `event` object: The new tiddler message creates a new draft tiddler and adds it to the current story. It requires the following properties on the `event` object:
@ -17,5 +17,5 @@ The new tiddler message is usually generated with the LinkWidget or the ButtonWi
To make a button that creates new tiddlers tagged "task", create a tiddler called "TaskTemplate" with that tag, and then make your button like this: To make a button that creates new tiddlers tagged "task", create a tiddler called "TaskTemplate" with that tag, and then make your button like this:
``` ```
<$button message="tw-new-tiddler" param="TaskTemplate">New Task</$button> <$button message="tm-new-tiddler" param="TaskTemplate">New Task</$button>
``` ```

View File

@ -1,7 +1,7 @@
created: 20140811112304772 created: 20140811112304772
modified: 20140811120248738 modified: 20140811120248738
tags: message tags: message
title: WidgetMessage: tw-notify title: WidgetMessage: tm-notify
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The notify message briefly displays a specified tiddler as a small alert in the upper right corner of the page. It requires the following properties on the `event` object: The notify message briefly displays a specified tiddler as a small alert in the upper right corner of the page. It requires the following properties on the `event` object:

View File

@ -1,7 +1,7 @@
created: 20140716084242809 created: 20140716084242809
modified: 20140716084341303 modified: 20140716084341303
tags: message navigator-message tags: message navigator-message
title: WidgetMessage: tw-perform-import title: WidgetMessage: tm-perform-import
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The perform import message copies tiddlers from a specified plugin into the main store. See the UpgradeMechanism for an overview of how it is used by the core. The perform import message copies tiddlers from a specified plugin into the main store. See the UpgradeMechanism for an overview of how it is used by the core.

View File

@ -1,10 +1,10 @@
created: 20140723103751357 created: 20140723103751357
modified: 20140723103751357 modified: 20140723103751357
tags: message tags: message
title: WidgetMessage: tw-permalink title: WidgetMessage: tm-permalink
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The `tw-permalink` message changes the browser address bar to form a [[permalink|PermaLinks]] to a specified tiddler, defaulting to the current tiddler. The `tm-permalink` message changes the browser address bar to form a [[permalink|PermaLinks]] to a specified tiddler, defaulting to the current tiddler.
The permalink message supports the following properties on the `event` object: The permalink message supports the following properties on the `event` object:

View File

@ -1,10 +1,10 @@
created: 20140723103751357 created: 20140723103751357
modified: 20140723103751357 modified: 20140723103751357
tags: message tags: message
title: WidgetMessage: tw-permaview title: WidgetMessage: tm-permaview
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The `tw-permaview` message changes the browser address bar to form a [[permaview|PermaLinks]] that specifies all the open tiddlers in the main story river, and the tiddler to be navigated, defaulting to the current tiddler. The `tm-permaview` message changes the browser address bar to form a [[permaview|PermaLinks]] that specifies all the open tiddlers in the main story river, and the tiddler to be navigated, defaulting to the current tiddler.
The permaview message supports the following properties on the `event` object: The permaview message supports the following properties on the `event` object:

View File

@ -1,10 +1,10 @@
created: 20140226090544323 created: 20140226090544323
modified: 20140226090729828 modified: 20140226090729828
tags: message navigator-message tags: message navigator-message
title: WidgetMessage: tw-save-tiddler title: WidgetMessage: tm-save-tiddler
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The `tw-save-tiddler` message is applied to draft tiddlers. It saves the draft over the tiddler identified in the `draft.of` field and then deletes the draft. The save tiddler message requires the following properties on the `event` object: The `tm-save-tiddler` message is applied to draft tiddlers. It saves the draft over the tiddler identified in the `draft.of` field and then deletes the draft. The save tiddler message requires the following properties on the `event` object:
|!Name |!Description | |!Name |!Description |
|param |Title of the tiddler that is being switched out of edit mode | |param |Title of the tiddler that is being switched out of edit mode |

View File

@ -1,7 +1,7 @@
created: 20140811112325641 created: 20140811112325641
modified: 20140811115149288 modified: 20140811115149288
tags: message tags: message
title: WidgetMessage: tw-save-wiki title: WidgetMessage: tm-save-wiki
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The save wiki message causes the current saver module to perform a full save operation. The save operation can involve user interaction. The save wiki message causes the current saver module to perform a full save operation. The save operation can involve user interaction.

View File

@ -1,7 +1,7 @@
created: 20140811112435281 created: 20140811112435281
modified: 20140811113453568 modified: 20140811113453568
tags: message tags: message
title: WidgetMessage: tw-server-refresh title: WidgetMessage: tm-server-refresh
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The server refresh message attempts to synchronise the latest changes to the current serverside host. The server refresh message attempts to synchronise the latest changes to the current serverside host.

View File

@ -1,9 +1,9 @@
created: 20140226084623977 created: 20140226084623977
modified: 20140226085200323 modified: 20140226085200323
tags: message tags: message
title: WidgetMessage: tw-set-password title: WidgetMessage: tm-set-password
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
The `tw-set-password` message prompts the user for a new password and stores it in the password vault, replacing any existing password. It also sets the [[$:/isEncrypted]] tiddler. See EncryptionMechanism for details. The `tm-set-password` message prompts the user for a new password and stores it in the password vault, replacing any existing password. It also sets the [[$:/isEncrypted]] tiddler. See EncryptionMechanism for details.
This message is typically generated with the ButtonWidget, and is handled by the core itself. This message is typically generated with the ButtonWidget, and is handled by the core itself.

View File

@ -1,10 +1,10 @@
title: SampleWizard title: SampleWizard
tags: demo tags: demo
subtitle: I'm a modal wizard subtitle: I'm a modal wizard
footer: <$button message="tw-close-tiddler">Close</$button> footer: <$button message="tm-close-tiddler">Close</$button>
This is a modal wizard dialogue, stored in the tiddler SampleWizard. This is a modal wizard dialogue, stored in the tiddler SampleWizard.
{{Motovun Jack.jpg}} {{Motovun Jack.jpg}}
You can <$button message="tw-modal" param="SampleWizard2">nest wizards</$button>. You can <$button message="tm-modal" param="SampleWizard2">nest wizards</$button>.

View File

@ -1,8 +1,8 @@
title: SampleWizard2 title: SampleWizard2
tags: demo tags: demo
subtitle: I'm another modal wizard subtitle: I'm another modal wizard
footer: <$button message="tw-close-tiddler">Close</$button> footer: <$button message="tm-close-tiddler">Close</$button>
This is another modal wizard dialogue, stored in the tiddler SampleWizard2. This is another modal wizard dialogue, stored in the tiddler SampleWizard2.
You can <$button message="tw-modal" param="SampleWizard">nest wizards</$button>. You can <$button message="tm-modal" param="SampleWizard">nest wizards</$button>.

View File

@ -1,3 +1,3 @@
title: $:/editions/tw5.com/snippets/download-empty-button title: $:/editions/tw5.com/snippets/download-empty-button
<$button message="tw-download-file" param="$:/editions/tw5.com/download-empty" class="tc-btn-big-green">Download Empty {{$:/core/images/save-button}}</$button> <$button message="tm-download-file" param="$:/editions/tw5.com/download-empty" class="tc-btn-big-green">Download Empty {{$:/core/images/save-button}}</$button>

View File

@ -5,7 +5,7 @@ tags: widget
! Introduction ! Introduction
The browse widget displays an HTML file browser button that allows the user to choose one or more files to import. It sends a [[WidgetMessage: tw-import-tiddlers]] carrying a JSON representation of the tiddlers imported from the files up through its parents. This message usually trapped by the NavigatorWidget which adds the tiddlers to the store and updates the story to display them. The browse widget displays an HTML file browser button that allows the user to choose one or more files to import. It sends a [[WidgetMessage: tm-import-tiddlers]] carrying a JSON representation of the tiddlers imported from the files up through its parents. This message usually trapped by the NavigatorWidget which adds the tiddlers to the store and updates the story to display them.
! Content and Attributes ! Content and Attributes

View File

@ -7,7 +7,7 @@ tags: widget
The dropzone widget creates an area into which the user can drag files and other objects. It also supports pasting via the clipboard, although browser support is currently limited. The dropzone widget creates an area into which the user can drag files and other objects. It also supports pasting via the clipboard, although browser support is currently limited.
It sends a [[WidgetMessage: tw-import-tiddlers]] carrying a JSON representation of the tiddlers to be imported up through its parents. This message usually trapped by the NavigatorWidget which adds the tiddlers to the store and updates the story to display them. It sends a [[WidgetMessage: tm-import-tiddlers]] carrying a JSON representation of the tiddlers to be imported up through its parents. This message usually trapped by the NavigatorWidget which adds the tiddlers to the store and updates the story to display them.
! Content and Attributes ! Content and Attributes

View File

@ -9,10 +9,10 @@ type: text/vnd.tiddlywiki
The field mangler widget manipulates the fields and tags of a tiddler. It does so in response to the following WidgetMessages: The field mangler widget manipulates the fields and tags of a tiddler. It does so in response to the following WidgetMessages:
|!Message |!Description | |!Message |!Description |
|''tw-remove-field'' |Remove the field specified in `event.param` | |''tm-remove-field'' |Remove the field specified in `event.param` |
|''tw-add-field'' |Add the field specified in `event.param` | |''tm-add-field'' |Add the field specified in `event.param` |
|''tw-remove-tag'' |Remove the tag specified in `event.param` | |''tm-remove-tag'' |Remove the tag specified in `event.param` |
|''tw-add-tag'' |Add the tag specified in `event.param` | |''tm-add-tag'' |Add the tag specified in `event.param` |
! Content and Attributes ! Content and Attributes

View File

@ -6,7 +6,7 @@ type: text/vnd.tiddlywiki
! Introduction ! Introduction
The link catcher widget traps [[WidgetMessage: tw-navigate]] dispatched within its child content by performing any or all of these actions: The link catcher widget traps [[WidgetMessage: tm-navigate]] dispatched within its child content by performing any or all of these actions:
* sending a different widget message * sending a different widget message
* setting a tiddler to the title of the navigated tiddler * setting a tiddler to the title of the navigated tiddler

View File

@ -6,7 +6,7 @@ type: text/vnd.tiddlywiki
! Introduction ! Introduction
The scrollable widget wraps its content in a scrollable frame. The user can scroll the contents with the mouse or with touch gestures. Code can use the [[WidgetMessage: tw-scroll]] to programmatically scroll specific DOM nodes into view. The scrollable widget wraps its content in a scrollable frame. The user can scroll the contents with the mouse or with touch gestures. Code can use the [[WidgetMessage: tm-scroll]] to programmatically scroll specific DOM nodes into view.
! Content and Attributes ! Content and Attributes
@ -16,7 +16,7 @@ The content of the `<$scrollable>` widget is displayed within a pair of wrapper
|class |The CSS class(es) to be applied to the outer DIV | |class |The CSS class(es) to be applied to the outer DIV |
|fallthrough |See below | |fallthrough |See below |
If a scrollable widget can't handle the `tw-scroll` message because the inner DIV fits within the outer DIV, then by default the message falls through to the parent widget. Setting the ''fallthrough'' attribute to `no` prevents this behaviour. If a scrollable widget can't handle the `tm-scroll` message because the inner DIV fits within the outer DIV, then by default the message falls through to the parent widget. Setting the ''fallthrough'' attribute to `no` prevents this behaviour.
! Examples ! Examples

View File

@ -7,7 +7,7 @@ type: text/vnd.tiddlywiki
Widgets provide rich functionality within WikiText. They have the same syntax as [[HTML elements|HTML in WikiText]], but the tag name always starts with `$`. For example: Widgets provide rich functionality within WikiText. They have the same syntax as [[HTML elements|HTML in WikiText]], but the tag name always starts with `$`. For example:
``` ```
<$button message="tw-close-tiddler">Close Me!</$button> <$button message="tm-close-tiddler">Close Me!</$button>
``` ```
Note that widgets inherit all the features of [[HTML in WikiText]]: Note that widgets inherit all the features of [[HTML in WikiText]]:

View File

@ -1,7 +1,7 @@
title: $:/language/Modals/Download title: $:/language/Modals/Download
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
subtitle: Änderungen Speichern subtitle: Änderungen Speichern
footer: <$button message="tw-close-tiddler">Schließen</$button> footer: <$button message="tm-close-tiddler">Schließen</$button>
help: http://tiddlywiki.com/static/DownloadingChanges.html help: http://tiddlywiki.com/static/DownloadingChanges.html
Ihr Browser unterstützt nur manuelles Speichern. Ihr Browser unterstützt nur manuelles Speichern.

View File

@ -1,7 +1,7 @@
title: $:/language/Modals/SaveInstructions title: $:/language/Modals/SaveInstructions
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
subtitle: Aktuellen Stand speichern subtitle: Aktuellen Stand speichern
footer: <$button message="tw-close-tiddler">Schließen</$button> footer: <$button message="tm-close-tiddler">Schließen</$button>
help: http://tiddlywiki.com/static/SavingChanges.html help: http://tiddlywiki.com/static/SavingChanges.html
Ihre Änderungen sollen als ~TiddlyWiki HTML Datei gespeichert werden. Ihre Änderungen sollen als ~TiddlyWiki HTML Datei gespeichert werden.

View File

@ -1,7 +1,7 @@
title: $:/language/Modals/Download title: $:/language/Modals/Download
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
subtitle: Télécharger vos modifications subtitle: Télécharger vos modifications
footer: <$button message="tw-close-tiddler">Fermer</$button> footer: <$button message="tm-close-tiddler">Fermer</$button>
help: http://tiddlywiki.com/static/DownloadingChanges.html help: http://tiddlywiki.com/static/DownloadingChanges.html
Votre navigateur ne supporte que l'enregistrement manuel. Votre navigateur ne supporte que l'enregistrement manuel.

View File

@ -1,7 +1,7 @@
title: $:/language/Modals/SaveInstructions title: $:/language/Modals/SaveInstructions
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
subtitle: Enregistrez votre travail subtitle: Enregistrez votre travail
footer: <$button message="tw-close-tiddler">Fermer</$button> footer: <$button message="tm-close-tiddler">Fermer</$button>
help: http://tiddlywiki.com/static/SavingChanges.html help: http://tiddlywiki.com/static/SavingChanges.html
Les modifications effectuées dans ce wiki doivent être sauvegardées sous forme de fichier ~TiddlyWiki HTML. Les modifications effectuées dans ce wiki doivent être sauvegardées sous forme de fichier ~TiddlyWiki HTML.

View File

@ -1,7 +1,7 @@
title: $:/language/Modals/Download title: $:/language/Modals/Download
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
subtitle: Download changes subtitle: Download changes
footer: <$button message="tw-close-tiddler">Chiudi</$button> footer: <$button message="tm-close-tiddler">Chiudi</$button>
help: http://tiddlywiki.com/static/DownloadingChanges.html help: http://tiddlywiki.com/static/DownloadingChanges.html
Il tuo browser supporta solo il salvataggio manuale. Il tuo browser supporta solo il salvataggio manuale.

View File

@ -1,7 +1,7 @@
title: $:/language/Modals/SaveInstructions title: $:/language/Modals/SaveInstructions
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
subtitle: Save your work subtitle: Save your work
footer: <$button message="tw-close-tiddler">Chiudi</$button> footer: <$button message="tm-close-tiddler">Chiudi</$button>
help: http://tiddlywiki.com/static/SavingChanges.html help: http://tiddlywiki.com/static/SavingChanges.html
Le modifiche a questo wiki devono essere salvate come un file ~TiddlyWiki HTML. Le modifiche a questo wiki devono essere salvate come un file ~TiddlyWiki HTML.

View File

@ -1,7 +1,7 @@
title: $:/language/Modals/Download title: $:/language/Modals/Download
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
subtitle: 変更のダウンロード subtitle: 変更のダウンロード
footer: <$button message="tw-close-tiddler">閉じる</$button> footer: <$button message="tm-close-tiddler">閉じる</$button>
help: http://tiddlywiki.com/static/DownloadingChanges.html help: http://tiddlywiki.com/static/DownloadingChanges.html
このブラウザは手動での保存しかできません。 このブラウザは手動での保存しかできません。

View File

@ -1,7 +1,7 @@
title: $:/language/Modals/SaveInstructions title: $:/language/Modals/SaveInstructions
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
subtitle: 作業内容を保存する subtitle: 作業内容を保存する
footer: <$button message="tw-close-tiddler">閉じる</$button> footer: <$button message="tm-close-tiddler">閉じる</$button>
help: http://tiddlywiki.com/static/SavingChanges.html help: http://tiddlywiki.com/static/SavingChanges.html
この wiki への変更内容を ~TiddlyWiki HTML ファイルとして保存する必要があります。 この wiki への変更内容を ~TiddlyWiki HTML ファイルとして保存する必要があります。

View File

@ -1,7 +1,7 @@
title: $:/language/Modals/Download title: $:/language/Modals/Download
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
subtitle: Download changes subtitle: Download changes
footer: <$button message="tw-close-tiddler">关闭</$button> footer: <$button message="tm-close-tiddler">关闭</$button>
help: http://tiddlywiki.com/ help: http://tiddlywiki.com/
您的浏览器只支援手动保存。 您的浏览器只支援手动保存。

View File

@ -1,7 +1,7 @@
title: $:/language/Modals/SaveInstructions title: $:/language/Modals/SaveInstructions
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
subtitle: Save your work subtitle: Save your work
footer: <$button message="tw-close-tiddler">关闭</$button> footer: <$button message="tm-close-tiddler">关闭</$button>
help: http://tiddlywiki.com/static/SavingChanges.html help: http://tiddlywiki.com/static/SavingChanges.html
您对此 wiki 的变更需被保存为 ~TiddlyWiki HTML 文件。 您对此 wiki 的变更需被保存为 ~TiddlyWiki HTML 文件。

Some files were not shown because too many files have changed in this diff Show More