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