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>
|
</p>
|
||||||
<h4>Replies last month</h4>
|
<h4>Replies last month</h4>
|
||||||
<p>
|
<p>
|
||||||
This is the number of times the user posted a reply to someone
|
This is the number of times the user posted a reply to someone any time in the last month.
|
||||||
else, on a thread the user did not start, any time in the last
|
|
||||||
month.
|
|
||||||
</p>
|
</p>
|
||||||
<h4>Reply likes</h4>
|
<h4>Reply likes</h4>
|
||||||
<p>
|
<p>
|
||||||
|
@ -88,8 +86,8 @@
|
||||||
Likes to replies are not necessarily a positive thing, but if
|
Likes to replies are not necessarily a positive thing, but if
|
||||||
the person you're replying to approves the reply, that's a very
|
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
|
good sign. Of course it's also common in a debate for neither
|
||||||
side to like the other side's comments without that indicating
|
side to like the other side's comments, but the debate still can
|
||||||
an unhealthy interaction, so interpret this statistic cautiously.
|
be valuable.
|
||||||
</p>
|
</p>
|
||||||
<h4>OP likes</h4>
|
<h4>OP likes</h4>
|
||||||
<p>
|
<p>
|
||||||
|
@ -105,10 +103,10 @@
|
||||||
<h4>Reply guy score</h4>
|
<h4>Reply guy score</h4>
|
||||||
<p>
|
<p>
|
||||||
A <a href="https://en.wikipedia.org/wiki/Reply_guy">"reply
|
A <a href="https://en.wikipedia.org/wiki/Reply_guy">"reply
|
||||||
guy"</a> is a common Internet phenomenon of people
|
guy"</a> is a common Internet phenomenon of people (disproportionately male)
|
||||||
(disproportionately male) posting unwanted comments on other
|
posting unwanted comments on other (disproportionately female)
|
||||||
(disproportionately female) people's threads, derailing the
|
people's threads, derailing the
|
||||||
conversation. This score loosely quantifies this phenomenon,
|
conversation. This score loosely approximates this phenomenon,
|
||||||
as the ratio betwen the number of replies and the sum of likes,
|
as the ratio betwen the number of replies and the sum of likes,
|
||||||
respondee likes, and OP likes. This formula gives extra weight
|
respondee likes, and OP likes. This formula gives extra weight
|
||||||
to particularly relevant likes: a reply to a top-level post that
|
to particularly relevant likes: a reply to a top-level post that
|
||||||
|
|
|
@ -121,7 +121,18 @@
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
|
|
||||||
</td>
|
</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>
|
</tr>
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue