f8e3e64955f7bc9d3a29dd5690f7def2698b9d5c
[Sone.git] / src / main / resources / templates / include / viewReply.html
1 <div id="reply-<% reply.id|html>" class="reply<%if !reply.sone.local><%if reply.new> new<%/if><%/if>">
2         <a name="reply-<% reply.id|html>"></a>
3         <div class="reply-time hidden"><% reply.time|html></div>
4         <div class="reply-author hidden"><% reply.sone.id|html></div>
5         <div class="reply-author-local hidden"><% reply.sone.local></div>
6         <%include include/soneMenu.html class=="sone-reply-menu" sone=reply.sone>
7         <div class="avatar reply-avatar">
8                 <img src="/WebOfTrust/GetIdenticon?identity=<% reply.sone.id|html>&amp;width=36&height=36" width="36" height="36" alt="Avatar Image" />
9         </div>
10         <div class="inner-part">
11                 <div>
12                         <div class="author profile-link"><a href="viewSone.html?sone=<% reply.sone.id|html>"><% reply.sone.niceName|html></a></div>
13                         <% reply.text|html|store key=originalText text=true>
14                         <% reply.text|parse sone=reply.sone|store key=parsedText text=true>
15                         <% reply.text|parse sone=reply.sone length=core.preferences.charactersPerPost cut-off-length=core.preferences.postCutOffLength|store key=shortText text=true>
16                         <div class="reply-text raw-text<%if !raw> hidden<%/if>"><% originalText></div>
17                         <div class="reply-text text<%if raw> hidden<%/if><%if !shortText|match key=parsedText> hidden<%/if>"><% parsedText></div>
18                         <div class="reply-text short-text<%if raw> hidden<%/if><%if shortText|match key=parsedText> hidden<%/if>"><% shortText></div>
19                         <%if !shortText|match key=parsedText><%if !raw><a class="expand-reply-text" href="viewPost.html?post=<% reply.post.id|html>&amp;raw=true"><%= View.Post.ShowMore|l10n|html></a><%/if><%/if>
20                         <%if !shortText|match key=parsedText><%if !raw><a class="shrink-reply-text hidden"><%= View.Post.ShowLess|l10n|html></a><%/if><%/if>
21                 </div>
22                 <div class="reply-status-line status-line">
23                         <div class="time"><% reply.time|date format="MMM d, yyyy, HH:mm:ss"></div>
24                         <span class='separator'>·</span>
25                         <div class="permalink permalink-author"><a href="sone://<%reply.sone.id|html>">[<%= View.Post.PermalinkAuthor|l10n|html>]</a></div>
26                         <%if ! originalText|match key=parsedText>
27                                 <span class='separator'>·</span>
28                                 <div class="show-reply-source"><a href="viewPost.html?post=<% post.id|html>&amp;raw=<%if raw>false<%else>true<%/if>"><%= View.Post.ShowSource|l10n|html></a></div>
29                         <%/if>
30                         <div class="likes<%if reply.likes.size|match value=0> hidden<%/if>">
31                                 <span class='separator'>·</span>
32                                 <span title="<% reply.likes.soneNames|html>">↑<span class="like-count"><% reply.likes.size></span></span>
33                         </div>
34                         <%ifnull ! currentSone>
35                                 <span class='separator'>·</span>
36                                 <form class="like like-reply<%if reply.liked> hidden<%/if>" action="like.html" method="post">
37                                         <input type="hidden" name="formPassword" value="<% formPassword|html>" />
38                                         <input type="hidden" name="returnPage" value="<% request.uri|html>" />
39                                         <input type="hidden" name="type" value="reply" />
40                                         <input type="hidden" name="reply" value="<% reply.id|html>" />
41                                         <button type="submit" value="1"><%= View.Post.LikeLink|l10n|html></button>
42                                 </form>
43                                 <form class="unlike unlike-reply<%if ! reply.liked> hidden<%/if>" action="unlike.html" method="post">
44                                         <input type="hidden" name="formPassword" value="<% formPassword|html>" />
45                                         <input type="hidden" name="returnPage" value="<% request.uri|html>" />
46                                         <input type="hidden" name="type" value="reply" />
47                                         <input type="hidden" name="reply" value="<% reply.id|html>" />
48                                         <button type="submit" value="1"><%= View.Post.UnlikeLink|l10n|html></button>
49                                 </form>
50                                 <%if !reply.sone.current>
51                                         <span class='separator'>·</span>
52                                         <form class="trust reply-trust<%if reply.sone.trust.assigned> hidden<%/if>" action="trust.html" method="post">
53                                                 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
54                                                 <input type="hidden" name="returnPage" value="<% request.uri|html>" />
55                                                 <input type="hidden" name="sone" value="<% reply.sone.id|html>" />
56                                                 <button type="submit" title="<%= View.Trust.Tooltip.Trust|l10n|html>">✓</button>
57                                         </form>
58                                         <form class="distrust reply-distrust<%if reply.sone.trust.assigned> hidden<%/if>" action="distrust.html" method="post">
59                                                 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
60                                                 <input type="hidden" name="returnPage" value="<% request.uri|html>" />
61                                                 <input type="hidden" name="sone" value="<% reply.sone.id|html>" />
62                                                 <button type="submit" title="<%= View.Trust.Tooltip.Distrust|l10n|html>">✗</button>
63                                         </form>
64                                         <form class="untrust reply-untrust<%if !reply.sone.trust.assigned> hidden<%/if>" action="untrust.html" method="post">
65                                                 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
66                                                 <input type="hidden" name="returnPage" value="<% request.uri|html>" />
67                                                 <input type="hidden" name="sone" value="<% reply.sone.id|html>" />
68                                                 <button type="submit" title="<%= View.Trust.Tooltip.Untrust|l10n|html>">↶</button>
69                                         </form>
70                                 <%/if>
71                         <%/if>
72                         <%if reply.sone.local>
73                                 <span class='separator'>·</span>
74                                 <form class="delete delete-reply" action="deleteReply.html" method="post">
75                                         <input type="hidden" name="formPassword" value="<% formPassword|html>" />
76                                         <input type="hidden" name="returnPage" value="<% request.uri|html>" />
77                                         <input type="hidden" name="reply" value="<% reply.id|html>" />
78                                         <button type="submit"><%= View.Post.Reply.DeleteLink|l10n|html></button>
79                                 </form>
80                         <%/if>
81                 </div>
82         </div>
83 </div>