forked from friendica/friendica-addons
Compare commits
No commits in common. "ee8c852d38cd74ca770a8d2445c4975607260bfc" and "8ba4cd5f6140a1ad64ad5404e603ed76b8d535f3" have entirely different histories.
ee8c852d38
...
8ba4cd5f61
2 changed files with 19 additions and 10 deletions
|
@ -70,9 +70,7 @@
|
|||
</p>
|
||||
<h4>Replies last month</h4>
|
||||
<p>
|
||||
This is the number of times the user posted a reply to someone
|
||||
else, on a thread the user did not start, any time in the last
|
||||
month.
|
||||
This is the number of times the user posted a reply to someone any time in the last month.
|
||||
</p>
|
||||
<h4>Reply likes</h4>
|
||||
<p>
|
||||
|
@ -88,8 +86,8 @@
|
|||
Likes to replies are not necessarily a positive thing, but if
|
||||
the person you're replying to approves the reply, that's a very
|
||||
good sign. Of course it's also common in a debate for neither
|
||||
side to like the other side's comments without that indicating
|
||||
an unhealthy interaction, so interpret this statistic cautiously.
|
||||
side to like the other side's comments, but the debate still can
|
||||
be valuable.
|
||||
</p>
|
||||
<h4>OP likes</h4>
|
||||
<p>
|
||||
|
@ -105,10 +103,10 @@
|
|||
<h4>Reply guy score</h4>
|
||||
<p>
|
||||
A <a href="https://en.wikipedia.org/wiki/Reply_guy">"reply
|
||||
guy"</a> is a common Internet phenomenon of people
|
||||
(disproportionately male) posting unwanted comments on other
|
||||
(disproportionately female) people's threads, derailing the
|
||||
conversation. This score loosely quantifies this phenomenon,
|
||||
guy"</a> is a common Internet phenomenon of people (disproportionately male)
|
||||
posting unwanted comments on other (disproportionately female)
|
||||
people's threads, derailing the
|
||||
conversation. This score loosely approximates this phenomenon,
|
||||
as the ratio betwen the number of replies and the sum of likes,
|
||||
respondee likes, and OP likes. This formula gives extra weight
|
||||
to particularly relevant likes: a reply to a top-level post that
|
||||
|
|
|
@ -121,7 +121,18 @@
|
|||
{{/foreach}}
|
||||
|
||||
</td>
|
||||
<td class="text-right"></td>
|
||||
<td class="text-right">
|
||||
{{if $u.is_deletable}}
|
||||
<a href="{{$baseurl}}/moderation/users/active/block/{{$u.uid}}?t={{$form_security_token}}" class="admin-settings-action-link" title="{{$block}}">
|
||||
<i class="fa fa-ban" aria-hidden="true"></i>
|
||||
</a>
|
||||
<a href="{{$baseurl}}/moderation/users/active/delete/{{$u.uid}}?t={{$form_security_token}}" class="admin-settings-action-link" title="{{$delete}}" onclick="return confirm_delete('{{$confirm_delete}}','{{$u.name}}')">
|
||||
<i class="fa fa-trash" aria-hidden="true"></i>
|
||||
</a>
|
||||
{{else}}
|
||||
|
||||
{{/if}}
|
||||
</td>
|
||||
</tr>
|
||||
{{/foreach}}
|
||||
</tbody>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue