mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-18 07:44:51 +00:00
Merge branch 'master' into parameterised-transclusions
This commit is contained in:
commit
0196844f17
@ -48,7 +48,9 @@ Logger.prototype.log = function(/* args */) {
|
|||||||
this.saveBufferLogger.buffer = this.saveBufferLogger.buffer.slice(-this.saveBufferLogger.saveLimit);
|
this.saveBufferLogger.buffer = this.saveBufferLogger.buffer.slice(-this.saveBufferLogger.saveLimit);
|
||||||
}
|
}
|
||||||
if(console !== undefined && console.log !== undefined) {
|
if(console !== undefined && console.log !== undefined) {
|
||||||
return Function.apply.call(console.log, console, [$tw.utils.terminalColour(this.colour),this.componentName + ":"].concat(Array.prototype.slice.call(arguments,0)).concat($tw.utils.terminalColour()));
|
var logMessage = [$tw.utils.terminalColour(this.colour) + this.componentName + ":"].concat(Array.prototype.slice.call(arguments,0));
|
||||||
|
logMessage[logMessage.length-1] += $tw.utils.terminalColour();
|
||||||
|
return Function.apply.call(console.log, console, logMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -1,33 +0,0 @@
|
|||||||
created: 20160504080001125
|
|
||||||
modified: 20160504080318928
|
|
||||||
title: $:/core/ui/TagTemplate
|
|
||||||
type: text/vnd.tiddlywiki
|
|
||||||
|
|
||||||
\define tag-styles()
|
|
||||||
background-color:$(backgroundColor)$;
|
|
||||||
fill:$(foregroundColor)$;
|
|
||||||
color:$(foregroundColor)$;
|
|
||||||
\end
|
|
||||||
|
|
||||||
\define tag-body-inner(colour,fallbackTarget,colourA,colourB)
|
|
||||||
<$set name="foregroundColor" value=<<contrastcolour target:"""$colour$""" fallbackTarget:"""$fallbackTarget$""" colourA:"""$colourA$""" colourB:"""$colourB$""">>>
|
|
||||||
<$set name="backgroundColor" value="""$colour$""">
|
|
||||||
<$button popup=<<qualify "$:/state/popup/tag">> class="tc-btn-invisible tc-tag-label" style=<<tag-styles>>>
|
|
||||||
<$transclude tiddler={{!!icon}}/> <$view field="fr-title"><$view field="title" format="text" /></$view>
|
|
||||||
</$button>
|
|
||||||
<$reveal state=<<qualify "$:/state/popup/tag">> type="popup" position="below" animate="yes"><div class="tc-drop-down"><$transclude tiddler="$:/core/ui/ListItemTemplate"/>
|
|
||||||
<hr>
|
|
||||||
<$list filter="[all[current]tagging[]]" template="$:/core/ui/ListItemTemplate"/>
|
|
||||||
</div>
|
|
||||||
</$reveal>
|
|
||||||
</$set>
|
|
||||||
</$set>
|
|
||||||
\end
|
|
||||||
|
|
||||||
\define tag-body(colour,palette)
|
|
||||||
<span class="tc-tag-list-item">
|
|
||||||
<$macrocall $name="tag-body-inner" colour="""$colour$""" fallbackTarget={{$palette$##tag-background}} colourA={{$palette$##foreground}} colourB={{$palette$##background}}/>
|
|
||||||
</span>
|
|
||||||
\end
|
|
||||||
|
|
||||||
<$macrocall $name="tag-body" colour={{!!color}} palette={{$:/palette}}/>
|
|
113
editions/fr-FR/tiddlers/system/$__core_macros_list.tid
Normal file
113
editions/fr-FR/tiddlers/system/$__core_macros_list.tid
Normal file
@ -0,0 +1,113 @@
|
|||||||
|
created: 20220830224607117
|
||||||
|
modified: 20220830224638865
|
||||||
|
tags: $:/tags/Macro
|
||||||
|
title: $:/core/macros/list
|
||||||
|
|
||||||
|
\define list-links(filter,type:"ul",subtype:"li",class:"",emptyMessage)
|
||||||
|
\whitespace trim
|
||||||
|
<$type$ class="$class$">
|
||||||
|
<$list filter="$filter$" emptyMessage=<<__emptyMessage__>>>
|
||||||
|
<$subtype$>
|
||||||
|
<$link to={{!!title}}>
|
||||||
|
<$let tv-wikilinks="no">
|
||||||
|
<$transclude field="caption">
|
||||||
|
<$view field="title"/>
|
||||||
|
</$transclude>
|
||||||
|
</$let>
|
||||||
|
</$link>
|
||||||
|
</$subtype$>
|
||||||
|
</$list>
|
||||||
|
</$type$>
|
||||||
|
\end
|
||||||
|
|
||||||
|
\define list-links-draggable-drop-actions()
|
||||||
|
<$action-listops $tiddler=<<targetTiddler>> $field=<<targetField>> $subfilter="+[insertbefore<actionTiddler>,<currentTiddler>]"/>
|
||||||
|
\end
|
||||||
|
|
||||||
|
\define list-links-draggable(tiddler,field:"list",emptyMessage,type:"ul",subtype:"li",class:"",itemTemplate)
|
||||||
|
\whitespace trim
|
||||||
|
<span class="tc-links-draggable-list">
|
||||||
|
<$vars targetTiddler="""$tiddler$""" targetField="""$field$""">
|
||||||
|
<$type$ class="$class$">
|
||||||
|
<$list filter="[list[$tiddler$!!$field$]]" emptyMessage=<<__emptyMessage__>>>
|
||||||
|
<$droppable actions=<<list-links-draggable-drop-actions>> tag="""$subtype$""" enable=<<tv-enable-drag-and-drop>>>
|
||||||
|
<div class="tc-droppable-placeholder"/>
|
||||||
|
<div>
|
||||||
|
<$transclude tiddler="""$itemTemplate$""">
|
||||||
|
<$link to={{!!title}}>
|
||||||
|
<$let tv-wikilinks="no">
|
||||||
|
<$transclude field="caption">
|
||||||
|
<$view field="title"/>
|
||||||
|
</$transclude>
|
||||||
|
</$let>
|
||||||
|
</$link>
|
||||||
|
</$transclude>
|
||||||
|
</div>
|
||||||
|
</$droppable>
|
||||||
|
</$list>
|
||||||
|
<$tiddler tiddler="">
|
||||||
|
<$droppable actions=<<list-links-draggable-drop-actions>> tag="div" enable=<<tv-enable-drag-and-drop>>>
|
||||||
|
<div class="tc-droppable-placeholder">
|
||||||
|
{{$:/core/images/blank}}
|
||||||
|
</div>
|
||||||
|
<div style="height:0.5em;"/>
|
||||||
|
</$droppable>
|
||||||
|
</$tiddler>
|
||||||
|
</$type$>
|
||||||
|
</$vars>
|
||||||
|
</span>
|
||||||
|
\end
|
||||||
|
|
||||||
|
\define list-tagged-draggable-drop-actions(tag)
|
||||||
|
\whitespace trim
|
||||||
|
<!-- Save the current ordering of the tiddlers with this tag -->
|
||||||
|
<$set name="order" filter="[<__tag__>tagging[]]">
|
||||||
|
<!-- Remove any list-after or list-before fields from the tiddlers with this tag -->
|
||||||
|
<$list filter="[<__tag__>tagging[]]">
|
||||||
|
<$action-deletefield $field="list-before"/>
|
||||||
|
<$action-deletefield $field="list-after"/>
|
||||||
|
</$list>
|
||||||
|
<!-- Save the new order to the Tag Tiddler -->
|
||||||
|
<$action-listops $tiddler=<<__tag__>> $field="list" $filter="+[enlist<order>] +[insertbefore<actionTiddler>,<currentTiddler>]"/>
|
||||||
|
<!-- Make sure the newly added item has the right tag -->
|
||||||
|
<!-- Removing this line makes dragging tags within the dropdown work as intended -->
|
||||||
|
<!--<$action-listops $tiddler=<<actionTiddler>> $tags=<<__tag__>>/>-->
|
||||||
|
<!-- Using the following 5 lines as replacement makes dragging titles from outside into the dropdown apply the tag -->
|
||||||
|
<$list filter="[<actionTiddler>!contains:tags<__tag__>]">
|
||||||
|
<$fieldmangler tiddler=<<actionTiddler>>>
|
||||||
|
<$action-sendmessage $message="tm-add-tag" $param=<<__tag__>>/>
|
||||||
|
</$fieldmangler>
|
||||||
|
</$list>
|
||||||
|
</$set>
|
||||||
|
\end
|
||||||
|
|
||||||
|
\define list-tagged-draggable(tag,subFilter,emptyMessage,itemTemplate,elementTag:"div",storyview:"")
|
||||||
|
\whitespace trim
|
||||||
|
<span class="tc-tagged-draggable-list">
|
||||||
|
<$set name="tag" value=<<__tag__>>>
|
||||||
|
<$list filter="[<__tag__>tagging[]$subFilter$]" emptyMessage=<<__emptyMessage__>> storyview=<<__storyview__>>>
|
||||||
|
<$elementTag$ class="tc-menu-list-item">
|
||||||
|
<$droppable actions="""<$macrocall $name="list-tagged-draggable-drop-actions" tag=<<__tag__>>/>""" enable=<<tv-enable-drag-and-drop>>>
|
||||||
|
<$elementTag$ class="tc-droppable-placeholder"/>
|
||||||
|
<$elementTag$>
|
||||||
|
<$transclude tiddler="""$itemTemplate$""">
|
||||||
|
<$link to={{!!title}}>
|
||||||
|
<$view field="fr-title">
|
||||||
|
<$view field="title"/>
|
||||||
|
</$view>
|
||||||
|
</$link>
|
||||||
|
</$transclude>
|
||||||
|
</$elementTag$>
|
||||||
|
</$droppable>
|
||||||
|
</$elementTag$>
|
||||||
|
</$list>
|
||||||
|
<$tiddler tiddler="">
|
||||||
|
<$droppable actions="""<$macrocall $name="list-tagged-draggable-drop-actions" tag=<<__tag__>>/>""" enable=<<tv-enable-drag-and-drop>>>
|
||||||
|
<$elementTag$ class="tc-droppable-placeholder"/>
|
||||||
|
<$elementTag$ style="height:0.5em;">
|
||||||
|
</$elementTag$>
|
||||||
|
</$droppable>
|
||||||
|
</$tiddler>
|
||||||
|
</$set>
|
||||||
|
</span>
|
||||||
|
\end
|
39
editions/fr-FR/tiddlers/system/$__core_macros_tag.tid
Normal file
39
editions/fr-FR/tiddlers/system/$__core_macros_tag.tid
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
created: 20220830190922373
|
||||||
|
modified: 20220830191056761
|
||||||
|
tags: $:/tags/Macro
|
||||||
|
title: $:/core/macros/tag
|
||||||
|
|
||||||
|
\define tag-pill-styles()
|
||||||
|
background-color:$(backgroundColor)$;
|
||||||
|
fill:$(foregroundColor)$;
|
||||||
|
color:$(foregroundColor)$;
|
||||||
|
\end
|
||||||
|
|
||||||
|
<!-- This has no whitespace trim to avoid modifying $actions$. Closing tags omitted for brevity. -->
|
||||||
|
\define tag-pill-inner(tag,icon,colour,fallbackTarget,colourA,colourB,element-tag,element-attributes,actions)
|
||||||
|
<$vars
|
||||||
|
foregroundColor=<<contrastcolour target:"""$colour$""" fallbackTarget:"""$fallbackTarget$""" colourA:"""$colourA$""" colourB:"""$colourB$""">>
|
||||||
|
backgroundColor="""$colour$"""
|
||||||
|
><$element-tag$
|
||||||
|
$element-attributes$
|
||||||
|
class="tc-tag-label tc-btn-invisible"
|
||||||
|
style=<<tag-pill-styles>>
|
||||||
|
>$actions$<$transclude tiddler="""$icon$"""/><$view tiddler=<<__tag__>> field="fr-title" format="text"><$view tiddler=<<__tag__>> field="title" format="text" /></$view></$element-tag$>
|
||||||
|
\end
|
||||||
|
|
||||||
|
\define tag-pill-body(tag,icon,colour,palette,element-tag,element-attributes,actions)
|
||||||
|
<$macrocall $name="tag-pill-inner" tag=<<__tag__>> icon="""$icon$""" colour="""$colour$""" fallbackTarget={{$palette$##tag-background}} colourA={{$palette$##foreground}} colourB={{$palette$##background}} element-tag="""$element-tag$""" element-attributes="""$element-attributes$""" actions="""$actions$"""/>
|
||||||
|
\end
|
||||||
|
|
||||||
|
\define tag-pill(tag,element-tag:"span",element-attributes:"",actions:"")
|
||||||
|
\whitespace trim
|
||||||
|
<span class="tc-tag-list-item" data-tag-title=<<__tag__>>>
|
||||||
|
<$let currentTiddler=<<__tag__>>>
|
||||||
|
<$macrocall $name="tag-pill-body" tag=<<__tag__>> icon={{{ [<currentTiddler>] :cascade[all[shadows+tiddlers]tag[$:/tags/TiddlerIconFilter]!is[draft]get[text]] }}} colour={{{ [<currentTiddler>] :cascade[all[shadows+tiddlers]tag[$:/tags/TiddlerColourFilter]!is[draft]get[text]] }}} palette={{$:/palette}} element-tag="""$element-tag$""" element-attributes="""$element-attributes$""" actions="""$actions$"""/>
|
||||||
|
</$let>
|
||||||
|
</span>
|
||||||
|
\end
|
||||||
|
|
||||||
|
\define tag(tag)
|
||||||
|
{{$tag$||$:/core/ui/TagTemplate}}
|
||||||
|
\end
|
@ -0,0 +1,25 @@
|
|||||||
|
created: 20220830194301860
|
||||||
|
modified: 20220830194658750
|
||||||
|
title: $:/core/ui/TagPickerTagTemplate
|
||||||
|
|
||||||
|
\whitespace trim
|
||||||
|
<$button class=<<button-classes>> tag="a" tooltip={{$:/language/EditTemplate/Tags/Add/Button/Hint}}>
|
||||||
|
<$list filter="[<saveTiddler>minlength[1]]">
|
||||||
|
<$action-listops $tiddler=<<saveTiddler>> $field=<<tagField>> $subfilter="[<tag>]"/>
|
||||||
|
</$list>
|
||||||
|
<$set name="currentTiddlerCSSEscaped" value={{{ [<saveTiddler>escapecss[]] }}}>
|
||||||
|
<$action-sendmessage $message="tm-focus-selector" $param=<<get-tagpicker-focus-selector>> preventScroll="true"/>
|
||||||
|
</$set>
|
||||||
|
<<delete-tag-state-tiddlers>>
|
||||||
|
<$list filter="[<refreshTitle>minlength[1]]">
|
||||||
|
<$action-setfield $tiddler=<<refreshTitle>> text="yes"/>
|
||||||
|
</$list>
|
||||||
|
<<actions>>
|
||||||
|
<$set name="backgroundColor" value={{{ [<currentTiddler>] :cascade[all[shadows+tiddlers]tag[$:/tags/TiddlerColourFilter]!is[draft]get[text]] }}}>
|
||||||
|
<$wikify name="foregroundColor" text="""<$macrocall $name="contrastcolour" target=<<backgroundColor>> fallbackTarget=<<fallbackTarget>> colourA=<<colourA>> colourB=<<colourB>>/>""">
|
||||||
|
<span class="tc-tag-label tc-btn-invisible" style=<<tag-pill-styles>>>
|
||||||
|
{{||$:/core/ui/TiddlerIcon}}<$view field="fr-title" format="text"><$view field="title" format="text"/></$view>
|
||||||
|
</span>
|
||||||
|
</$wikify>
|
||||||
|
</$set>
|
||||||
|
</$button>
|
@ -1,5 +1,5 @@
|
|||||||
created: 20220721200137586
|
created: 20220721200137586
|
||||||
modified: 20220721200137586
|
modified: 20220819200137586
|
||||||
tags: [[Table of Contents]]
|
tags: [[Table of Contents]]
|
||||||
title: Code of Conduct
|
title: Code of Conduct
|
||||||
type: text/vnd.tiddlywiki
|
type: text/vnd.tiddlywiki
|
||||||
@ -17,6 +17,7 @@ These principles guide technical and non-technical decisions, and help contribut
|
|||||||
* We recognise that the motivation for sharing and helping is usually for appreciation, and not financial gain, and so we take care to acknowledge and ''thank the people who enrich the community by sharing what they have created''
|
* We recognise that the motivation for sharing and helping is usually for appreciation, and not financial gain, and so we take care to acknowledge and ''thank the people who enrich the community by sharing what they have created''
|
||||||
* While we are united in our interest in TiddlyWiki, we differ in every other conceivable way. We choose to focus on what unites us, and ''avoid unnecessarily mixing contentious topics like religion and politics''
|
* While we are united in our interest in TiddlyWiki, we differ in every other conceivable way. We choose to focus on what unites us, and ''avoid unnecessarily mixing contentious topics like religion and politics''
|
||||||
* We treat each other with respect, and start with the assumption that ''others are acting in good faith''
|
* We treat each other with respect, and start with the assumption that ''others are acting in good faith''
|
||||||
|
* We avoid discriminatory language
|
||||||
* We try to use our strength as a community to help others
|
* We try to use our strength as a community to help others
|
||||||
* We avoid responding when angry or upset because we try to de-escalate conflict
|
* We avoid responding when angry or upset because we try to de-escalate conflict
|
||||||
* We make sure we critique ideas, not people
|
* We make sure we critique ideas, not people
|
||||||
@ -27,4 +28,6 @@ These principles guide technical and non-technical decisions, and help contribut
|
|||||||
|
|
||||||
Our discussions are in English. It is not the first language of many people in the community, nor do we all share the same cultural background and reference points. So we take care to use language that is clear and unambigous, and avoid cultural references or jokes that will not be widely understood.
|
Our discussions are in English. It is not the first language of many people in the community, nor do we all share the same cultural background and reference points. So we take care to use language that is clear and unambigous, and avoid cultural references or jokes that will not be widely understood.
|
||||||
|
|
||||||
|
It is not acceptable to make jokes or other comments that discriminate by race, gender, sexuality, or other protected characteristic.
|
||||||
|
|
||||||
As an inclusive community, we are committed to making sure that TiddlyWiki is an accessible tool that understands the needs of people with disabilities.
|
As an inclusive community, we are committed to making sure that TiddlyWiki is an accessible tool that understands the needs of people with disabilities.
|
@ -1,9 +1,9 @@
|
|||||||
created: 20141230182901899
|
created: 20141230182901899
|
||||||
modified: 20210106151027090
|
modified: 20220226205227090
|
||||||
tags: [[Community Editions]] [[Community Plugins]]
|
tags: [[Community Editions]] [[Community Plugins]]
|
||||||
title: "GSD5" by Roma Hicks
|
title: "GSD5" by Roma Hicks
|
||||||
type: text/vnd.tiddlywiki
|
type: text/vnd.tiddlywiki
|
||||||
url: http://gsd5.tiddlyspot.com/
|
url: http://gsd5.tiddlyhost.com/
|
||||||
|
|
||||||
An adaptation of the [[TiddlyWiki powered GTD® system formerly known as MonkeyGTD|http://mgsd.tiddlyspot.com/]] for TiddlyWiki version 5.
|
An adaptation of the [[TiddlyWiki powered GTD® system formerly known as MonkeyGTD|http://mgsd.tiddlyspot.com/]] for TiddlyWiki version 5.
|
||||||
|
|
||||||
|
@ -1,16 +1,12 @@
|
|||||||
created: 20131129090249275
|
created: 20131129090249275
|
||||||
modified: 20200507203622933
|
modified: 20220819041016415
|
||||||
tags: [[Working with TiddlyWiki]]
|
tags: [[Working with TiddlyWiki]]
|
||||||
title: GettingStarted
|
title: GettingStarted
|
||||||
type: text/vnd.tiddlywiki
|
type: text/vnd.tiddlywiki
|
||||||
|
|
||||||
The easiest way to use TiddlyWiki is to sign up for a free account with [[Tiddlyhost]], an independently run community service:
|
The easiest way to use ~TiddlyWiki is to sign up for a free account with [[Tiddlyhost|https://tiddlyhost.com/]], an independently run community service. If you find Tiddlyhost useful, please consider [[donation or sponsorship|https://tiddlyhost.com/donate]].
|
||||||
|
|
||||||
https://tiddlyhost.com/
|
Click here to download an empty copy of ~TiddlyWiki: {{$:/editions/tw5.com/snippets/download-empty-button}}
|
||||||
|
|
||||||
If you find Tiddlyhost useful, please consider [[donation or sponsorship|https://tiddlyhost.com/donate]].
|
|
||||||
|
|
||||||
Click here to download an empty copy of TiddlyWiki: {{$:/editions/tw5.com/snippets/download-empty-button}}
|
|
||||||
|
|
||||||
The next step is to choose a method for saving changes. There's a wide variety of methods available, with different features and limitations. Click on the badge for a method to see more information about it. You can also click on one of the platform filters to restrict the listing to methods that work with that platform.
|
The next step is to choose a method for saving changes. There's a wide variety of methods available, with different features and limitations. Click on the badge for a method to see more information about it. You can also click on one of the platform filters to restrict the listing to methods that work with that platform.
|
||||||
|
|
||||||
|
@ -0,0 +1,13 @@
|
|||||||
|
created: 20220909094340097
|
||||||
|
modified: 20220909094340097
|
||||||
|
title: Hidden Setting: Sync System Tiddlers From Server
|
||||||
|
tags: [[Hidden Settings]]
|
||||||
|
|
||||||
|
<<.from-version "5.1.23">> Determines whether system tiddlers are synced from the server under Node.js. (Note that this is a one-way setting; system tiddlers are always synced //to// the server).
|
||||||
|
|
||||||
|
* `no` -- system tiddlers are not synced from the server (default)
|
||||||
|
* `yes` -- system tiddlers are synced from the server
|
||||||
|
|
||||||
|
Engaging sync of system tiddlers means that tiddlers such as $:/StoryList and $:/HistoryList get synced, which can lead to unexpected outcomes when multiple users are connected to the same server at the same time (it means that the story sequence is synced between all the users).
|
||||||
|
|
||||||
|
$:/config/SyncSystemTiddlersFromServer
|
@ -22,7 +22,7 @@ The new tiddler message is usually generated with the ButtonWidget or ActionSend
|
|||||||
|
|
||||||
! Examples
|
! Examples
|
||||||
|
|
||||||
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="tm-new-tiddler" param="TaskTemplate">New Task</$button>
|
<$button message="tm-new-tiddler" param="TaskTemplate">New Task</$button>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
created: 20140912140651119
|
created: 20140912140651119
|
||||||
modified: 20220401151525812
|
modified: 20220812144516626
|
||||||
saving-browser: Firefox Chrome Edge [[Internet Explorer]] Safari Opera [[Standalone App]]
|
saving-browser: Firefox Chrome Edge [[Internet Explorer]] Safari Opera [[Standalone App]]
|
||||||
saving-os: Windows Mac Linux Android iOS
|
saving-os: Windows Mac Linux Android iOS
|
||||||
tags: [[Working with TiddlyWiki]]
|
tags: [[Working with TiddlyWiki]]
|
||||||
@ -34,7 +34,7 @@ type: text/vnd.tiddlywiki
|
|||||||
\end
|
\end
|
||||||
<$vars stateTiddler=<<qualify "$:/state/gettingstarted">> >
|
<$vars stateTiddler=<<qualify "$:/state/gettingstarted">> >
|
||||||
|
|
||||||
Available methods for saving changes with TiddlyWiki:
|
Available methods for saving changes with ~TiddlyWiki:
|
||||||
|
|
||||||
<div class="tc-wrapper-flex">
|
<div class="tc-wrapper-flex">
|
||||||
<div class="tc-saving-sidebar">
|
<div class="tc-saving-sidebar">
|
||||||
|
@ -46,15 +46,11 @@ open the ''example edition'' in a new window
|
|||||||
|
|
||||||
<$macrocall $name="copy-to-clipboard-above-right" src=<<__src__>>/>
|
<$macrocall $name="copy-to-clipboard-above-right" src=<<__src__>>/>
|
||||||
|
|
||||||
```
|
<$codeblock code=<<__src__>>/>
|
||||||
$src$
|
|
||||||
```
|
|
||||||
|
|
||||||
That renders as:
|
That renders as:
|
||||||
|
|
||||||
$$$text/vnd.tiddlywiki
|
<$macrocall $name="__src__"/>
|
||||||
$src$
|
|
||||||
$$$
|
|
||||||
|
|
||||||
... and the underlying HTML is:
|
... and the underlying HTML is:
|
||||||
|
|
||||||
@ -69,15 +65,11 @@ $$$
|
|||||||
|
|
||||||
<$macrocall $name="copy-to-clipboard-above-right" src=<<__src__>>/>
|
<$macrocall $name="copy-to-clipboard-above-right" src=<<__src__>>/>
|
||||||
|
|
||||||
```
|
<$codeblock code=<<__src__>>/>
|
||||||
$src$
|
|
||||||
```
|
|
||||||
|
|
||||||
That renders as:
|
That renders as:
|
||||||
|
|
||||||
$$$text/vnd.tiddlywiki
|
<$macrocall $name="__src__"/>
|
||||||
$src$
|
|
||||||
$$$
|
|
||||||
</div>
|
</div>
|
||||||
\end
|
\end
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
created: 20181002131215403
|
created: 20181002131215403
|
||||||
modified: 2020031109590546
|
modified: 20220909094340097
|
||||||
tags: [[WebServer API]]
|
tags: [[WebServer API]]
|
||||||
title: WebServer API: Get All Tiddlers
|
title: WebServer API: Get All Tiddlers
|
||||||
type: text/vnd.tiddlywiki
|
type: text/vnd.tiddlywiki
|
||||||
@ -17,6 +17,8 @@ Parameters:
|
|||||||
|
|
||||||
In order to avoid denial of service attacks with malformed filters in the default configuration the only filter that is accepted is the default filter "[all[tiddlers]!is[system]sort[title]]"; attempts to use any other filter will result in an HTTP 403 error.
|
In order to avoid denial of service attacks with malformed filters in the default configuration the only filter that is accepted is the default filter "[all[tiddlers]!is[system]sort[title]]"; attempts to use any other filter will result in an HTTP 403 error.
|
||||||
|
|
||||||
|
<<.note "System tiddlers will not be returned by this API unless the [[Hidden Setting: Sync System Tiddlers From Server]] is explicitly switched on by setting $:/config/SyncSystemTiddlersFromServer to `yes`">>
|
||||||
|
|
||||||
To enable a particular filter, create a tiddler with the title "$:/config/Server/ExternalFilters/" concatenated with the filter text, and the text field set to "yes". For example, the TiddlyWeb plugin includes the following shadow tiddler to enable the filter that it requires:
|
To enable a particular filter, create a tiddler with the title "$:/config/Server/ExternalFilters/" concatenated with the filter text, and the text field set to "yes". For example, the TiddlyWeb plugin includes the following shadow tiddler to enable the filter that it requires:
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -497,3 +497,5 @@ Nolan Darilek, @NDarilek, 2022/06/21
|
|||||||
Keiichi Shiga (🎈 BALLOON | FU-SEN), @fu-sen. 2022/07/07
|
Keiichi Shiga (🎈 BALLOON | FU-SEN), @fu-sen. 2022/07/07
|
||||||
|
|
||||||
Nathaniel Knight, @nathanielknight, 2022/07/26
|
Nathaniel Knight, @nathanielknight, 2022/07/26
|
||||||
|
|
||||||
|
HuanCheng Bai, @bestony, 2022/09/17
|
||||||
|
Loading…
Reference in New Issue
Block a user