mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-27 03:57:21 +00:00
This reverts commit a689f31978
.
This commit is contained in:
parent
a689f31978
commit
24ef51df01
@ -609,13 +609,10 @@ NavigatorWidget.prototype.handleUnfoldAllTiddlersEvent = function(event) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
NavigatorWidget.prototype.handleRenameTiddlerEvent = function(event) {
|
NavigatorWidget.prototype.handleRenameTiddlerEvent = function(event) {
|
||||||
var options = {},
|
var paramObject = event.paramObject || {},
|
||||||
paramObject = event.paramObject || {},
|
|
||||||
from = paramObject.from || event.tiddlerTitle,
|
from = paramObject.from || event.tiddlerTitle,
|
||||||
to = paramObject.to;
|
to = paramObject.to;
|
||||||
options.dontRenameInTags = (paramObject.dontRenameInTags === "true" || paramObject.dontRenameInTags === "yes") ? true : false;
|
this.wiki.renameTiddler(from,to);
|
||||||
options.dontRenameInLists = (paramObject.dontRenameInLists === "true" || paramObject.dontRenameInLists === "yes") ? true : false;
|
|
||||||
this.wiki.renameTiddler(from,to,options);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
exports.navigator = NavigatorWidget;
|
exports.navigator = NavigatorWidget;
|
||||||
|
@ -10,27 +10,5 @@ The `tm-rename-tiddler` message renames a tiddler by deleting it and recreating
|
|||||||
|!Name |!Description |
|
|!Name |!Description |
|
||||||
|from |Current title of tiddler |
|
|from |Current title of tiddler |
|
||||||
|to |New title of tiddler |
|
|to |New title of tiddler |
|
||||||
|dontRenameInTags |<<.from-version "5.1.23">> Optional value "yes" to disable renaming in tags fields of other tiddlers (defaults to "no") |
|
|
||||||
|dontRenameInLists |<<.from-version "5.1.23">> Optional value "yes" to disable renaming in list fields of other tiddlers (defaults to "no") |
|
|
||||||
|
|
||||||
The rename tiddler message is usually generated with the ButtonWidget and is handled by the NavigatorWidget.
|
The rename tiddler message is usually generated with the ButtonWidget and is handled by the NavigatorWidget.
|
||||||
|
|
||||||
! Examples
|
|
||||||
|
|
||||||
To rename a tiddler called Tiddler1 to Tiddler2 and also renaming Tiddler1 in tags and list fields of other tiddlers:
|
|
||||||
|
|
||||||
```
|
|
||||||
<$action-sendmessage $message="tm-rename-tiddler" from="Tiddler1" to="Tiddler2" />
|
|
||||||
```
|
|
||||||
|
|
||||||
To rename a tiddler called Tiddler1 to Tiddler2 and not rename Tiddler1 in tags and list fields of other tiddlers:
|
|
||||||
|
|
||||||
```
|
|
||||||
<$action-sendmessage $message="tm-rename-tiddler" from="Tiddler1" to="Tiddler2" dontRenameInTags="yes" dontRenameInLists="yes"/>
|
|
||||||
```
|
|
||||||
|
|
||||||
To rename a tiddler called Tiddler1 to Tiddler2 and respect the setting $:/config/RelinkOnRename for whether to rename Tiddler1 in tags and list fields of other tiddlers:
|
|
||||||
|
|
||||||
```
|
|
||||||
<$action-sendmessage $message="tm-rename-tiddler" from="Tiddler1" to="Tiddler2" dontRenameInTags={{$:/config/RelinkOnRename}} dontRenameInLists={{$:/config/RelinkOnRename}}/>
|
|
||||||
```
|
|
||||||
|
Loading…
Reference in New Issue
Block a user