Creating tiddler uid test and TW tiddlers missing uid collection.
This commit is contained in:
parent
37741df191
commit
fbfb5fbf7d
@ -267,6 +267,12 @@ Tiddler >> gtTextFor: aView [
|
||||
text: [ text ]
|
||||
]
|
||||
|
||||
{ #category : #testing }
|
||||
Tiddler >> hasUID [
|
||||
|
||||
^ self customFields includesKey: 'uid'
|
||||
]
|
||||
|
||||
{ #category : #accessing }
|
||||
Tiddler >> importFedWikiPage: pageViewUrlString [
|
||||
| pageTitle pageViewUrl pageData |
|
||||
|
@ -827,6 +827,12 @@ TiddlyWiki >> tiddlersJSONUrl [
|
||||
self remote ifNil: [^ nil].
|
||||
]
|
||||
|
||||
{ #category : #accessing }
|
||||
TiddlyWiki >> tiddlersMissingUID [
|
||||
|
||||
^ self tiddlers reject: [ :tiddler | (tiddler customFields includesKey: 'uid') or: [ (tiddler title beginsWith:'$') ] ].
|
||||
]
|
||||
|
||||
{ #category : #accessing }
|
||||
TiddlyWiki >> updateFilesFromRemote [
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user