forked from OokTech/TW5-Bob
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConflictList.tid
45 lines (43 loc) · 931 Bytes
/
ConflictList.tid
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
caption: Conflict List
title: $:/plugins/OokTech/Bob/ConflictList
These are the tiddlers that currently have conflicts from resyncing with the server:
<$list
filter='[prefix[$:/state/Bob/Conflicts/]]'
variable='dummy'
emptyMessage="''There are no syncing conflicts, you can close this tiddler''"
>
<table
style='width:100%'
>
<tr>
<th>
Server Version
</th>
<th>
Conflicted Version
</th>
</tr>
<$list
filter='[prefix[$:/state/Bob/Conflicts/]]'
>
<tr>
<td>
<$list
filter='[<currentTiddler>removeprefix[$:/state/Bob/Conflicts/]]'
>
<$link>
<<currentTiddler>>
</$link>
</$list>
</td>
<td>
<$link
to=<<currentTiddler>>
>
Conflicted Version
</$link>
</td>
</tr>
</$list>
</table>
</$list>