mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-05-03 15:27:29 +00:00
tm-new-tiddler - Create empty tags field only if template or additionalFields contain a tags-field (#8559)
* create empty tags only if template or additionalFields contain a tags-field * fix typos * add tests for tm-new-tiddler message * tm-new-tiddler add standard test with tags field
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
title: Message/tm-new-tiddler/create-a-new-tiddler-with-a-tag
|
||||
description: tm-new-tiddler message will create a new draft tiddler with a tag
|
||||
type: text/vnd.tiddlywiki-multiple
|
||||
tags: [[$:/tags/wiki-test-spec]]
|
||||
|
||||
title: Output
|
||||
|
||||
<pre>{{Draft of 'New Tiddler'||output-template}}</pre>
|
||||
+
|
||||
title: Actions
|
||||
|
||||
<$navigator story="$:/StoryList">
|
||||
|
||||
<$action-sendmessage $message="tm-new-tiddler"
|
||||
text="some text"
|
||||
z-field="a"
|
||||
tags="test [[with spaces]]"
|
||||
/>
|
||||
|
||||
</$navigator>
|
||||
|
||||
+
|
||||
title: output-template
|
||||
|
||||
<!-- This template is used for saving tiddlers in TiddlyWeb *.tid format -->
|
||||
<$fields exclude='text bag created modified' template='$name$: $value$
|
||||
'></$fields>
|
||||
<$view field="text" format="text" />
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><pre>draft.of: New Tiddler
|
||||
draft.title: New Tiddler
|
||||
tags: test [[with spaces]]
|
||||
title: Draft of 'New Tiddler'
|
||||
z-field: a
|
||||
|
||||
some text</pre></p>
|
||||
@@ -0,0 +1,39 @@
|
||||
title: Message/tm-new-tiddler/default
|
||||
description: tm-new-tiddler message will create a new draft tiddler
|
||||
type: text/vnd.tiddlywiki-multiple
|
||||
tags: [[$:/tags/wiki-test-spec]]
|
||||
|
||||
title: Output
|
||||
|
||||
<pre>{{Draft of 'New Tiddler'||output-template}}</pre>
|
||||
+
|
||||
title: Actions
|
||||
|
||||
<$navigator story="$:/StoryList">
|
||||
|
||||
New in TW v5.3.6
|
||||
Create a draft tiddler which should have __no__ tags field
|
||||
|
||||
<$action-sendmessage $message="tm-new-tiddler"
|
||||
text="some text"
|
||||
z-field="a"
|
||||
/>
|
||||
|
||||
</$navigator>
|
||||
|
||||
+
|
||||
title: output-template
|
||||
|
||||
<!-- This template is used for saving tiddlers in TiddlyWeb *.tid format -->
|
||||
<$fields exclude='text bag created modified' template='$name$: $value$
|
||||
'></$fields>
|
||||
<$view field="text" format="text" />
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><pre>draft.of: New Tiddler
|
||||
draft.title: New Tiddler
|
||||
title: Draft of 'New Tiddler'
|
||||
z-field: a
|
||||
|
||||
some text</pre></p>
|
||||
@@ -0,0 +1,44 @@
|
||||
title: Message/tm-new-tiddler/new-from-template-with-tag
|
||||
description: tm-new-tiddler create a draft from a template. Template has an empty tags field
|
||||
type: text/vnd.tiddlywiki-multiple
|
||||
tags: [[$:/tags/wiki-test-spec]]
|
||||
|
||||
title: Output
|
||||
|
||||
<pre>{{ Draft of 'new-tiddler-template 1'||output-template}}</pre>
|
||||
+
|
||||
title: Actions
|
||||
|
||||
<$navigator story="$:/StoryList">
|
||||
|
||||
<$action-sendmessage $message="tm-new-tiddler"
|
||||
$param="new-tiddler-template"
|
||||
text="some text"
|
||||
z-field="a"
|
||||
/>
|
||||
|
||||
</$navigator>
|
||||
|
||||
+
|
||||
title: new-tiddler-template
|
||||
asdf: asdf
|
||||
tags:
|
||||
|
||||
+
|
||||
title: output-template
|
||||
|
||||
<!-- This template is used for saving tiddlers in TiddlyWeb *.tid format -->
|
||||
<$fields exclude='text bag created modified' template='$name$: $value$
|
||||
'></$fields>
|
||||
<$view field="text" format="text" />
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><pre>asdf: asdf
|
||||
draft.of: new-tiddler-template 1
|
||||
draft.title: new-tiddler-template 1
|
||||
tags:
|
||||
title: Draft of 'new-tiddler-template 1'
|
||||
z-field: a
|
||||
|
||||
some text</pre></p>
|
||||
@@ -0,0 +1,65 @@
|
||||
title: Message/tm-new-tiddler/new-from-template-without-tag
|
||||
description: tm-new-tiddler create 2 drafts from a template. Template has no tags field
|
||||
type: text/vnd.tiddlywiki-multiple
|
||||
tags: [[$:/tags/wiki-test-spec]]
|
||||
|
||||
title: Output
|
||||
|
||||
<pre>{{ Draft of 'new-tiddler-template 1'||output-template}}</pre>
|
||||
<pre>{{ Draft of 'new-tiddler-template 2'||output-template}}</pre>
|
||||
+
|
||||
title: Actions
|
||||
|
||||
<$navigator story="$:/StoryList">
|
||||
|
||||
New in TW v5.3.6
|
||||
Create a new tiddler from a template, which has no tags field
|
||||
So draft should also have __no__ tags field
|
||||
|
||||
<$action-sendmessage $message="tm-new-tiddler"
|
||||
$param="new-tiddler-template"
|
||||
text="some text"
|
||||
z-field="a"
|
||||
/>
|
||||
|
||||
Create a new tiddler from a template, which has no tag field
|
||||
AND __add__ a tags field with the command below
|
||||
|
||||
<$action-sendmessage $message="tm-new-tiddler"
|
||||
$param="new-tiddler-template"
|
||||
text="some text"
|
||||
z-field="a"
|
||||
tag=""
|
||||
/>
|
||||
|
||||
</$navigator>
|
||||
|
||||
+
|
||||
title: new-tiddler-template
|
||||
asdf: asdf
|
||||
|
||||
+
|
||||
title: output-template
|
||||
|
||||
<!-- This template is used for saving tiddlers in TiddlyWeb *.tid format -->
|
||||
<$fields exclude='text bag created modified' template='$name$: $value$
|
||||
'></$fields>
|
||||
<$view field="text" format="text" />
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><pre>asdf: asdf
|
||||
draft.of: new-tiddler-template 1
|
||||
draft.title: new-tiddler-template 1
|
||||
title: Draft of 'new-tiddler-template 1'
|
||||
z-field: a
|
||||
|
||||
some text</pre>
|
||||
<pre>asdf: asdf
|
||||
draft.of: new-tiddler-template 2
|
||||
draft.title: new-tiddler-template 2
|
||||
tag:
|
||||
title: Draft of 'new-tiddler-template 2'
|
||||
z-field: a
|
||||
|
||||
some text</pre></p>
|
||||
@@ -0,0 +1,40 @@
|
||||
title: Message/tm-new-tiddler/new-with-tag
|
||||
description: tm-new-tiddler message creates a draft tiddler with an empty tag field
|
||||
type: text/vnd.tiddlywiki-multiple
|
||||
tags: [[$:/tags/wiki-test-spec]]
|
||||
|
||||
title: Output
|
||||
|
||||
<pre>{{Draft of 'New Tiddler'||output-template}}</pre>
|
||||
+
|
||||
title: Actions
|
||||
|
||||
<$navigator story="$:/StoryList">
|
||||
|
||||
Create a draft tiddler which __should have a tags field__
|
||||
|
||||
<$action-sendmessage $message="tm-new-tiddler"
|
||||
text="some text"
|
||||
z-field="a"
|
||||
tag=""
|
||||
/>
|
||||
|
||||
</$navigator>
|
||||
|
||||
+
|
||||
title: output-template
|
||||
|
||||
<!-- This template is used for saving tiddlers in TiddlyWeb *.tid format -->
|
||||
<$fields exclude='text bag created modified' template='$name$: $value$
|
||||
'></$fields>
|
||||
<$view field="text" format="text" />
|
||||
+
|
||||
title: ExpectedResult
|
||||
|
||||
<p><pre>draft.of: New Tiddler
|
||||
draft.title: New Tiddler
|
||||
tag:
|
||||
title: Draft of 'New Tiddler'
|
||||
z-field: a
|
||||
|
||||
some text</pre></p>
|
||||
Reference in New Issue
Block a user