]> git.mxchange.org Git - friendica.git/blob - view/templates/diaspora_conversation.tpl
Merge pull request #2170 from fabrixxm/issue_1953
[friendica.git] / view / templates / diaspora_conversation.tpl
1
2 <XML>
3   <post>
4     <conversation>
5       <guid>{{$conv.guid}}</guid>
6       <subject>{{$conv.subject}}</subject>
7       <created_at>{{$conv.created_at}}</created_at>
8
9       {{foreach $conv.messages as $msg}}
10
11       <message>
12         <guid>{{$msg.guid}}</guid>
13         <parent_guid>{{$msg.parent_guid}}</parent_guid>
14         {{if $msg.parent_author_signature}}
15         <parent_author_signature>{{$msg.parent_author_signature}}</parent_author_signature>
16         {{/if}}
17         <author_signature>{{$msg.author_signature}}</author_signature>
18         <text>{{$msg.text}}</text>
19         <created_at>{{$msg.created_at}}</created_at>
20         <diaspora_handle>{{$msg.diaspora_handle}}</diaspora_handle>
21         <conversation_guid>{{$msg.conversation_guid}}</conversation_guid>
22       </message>
23
24       {{/foreach}}
25
26       <diaspora_handle>{{$conv.diaspora_handle}}</diaspora_handle>
27       <participant_handles>{{$conv.participant_handles}}</participant_handles>
28     </conversation>
29   </post>
30 </XML>