*** empty log message ***

svn path=/trunk/boinc/; revision=10327
This commit is contained in:
David Anderson 2006-06-13 15:10:52 +00:00
parent 4b29aee71a
commit 881a1827e8
2 changed files with 58 additions and 0 deletions

27
html/user/moderation.php Normal file
View File

@ -0,0 +1,27 @@
<?php
require_once("../inc/util.inc");
require_once("../inc/forum.inc");
require_once("../project/project.inc");
page_head("Moderation");
echo "
To maximize discussion and flow of information,
our message boards are moderated.
Message board postings are subject to the following posting rules:
".post_rules()."
Moderators may delete posts that violate any of these rules.
The authors of deleted posts will be notified via email.
<p>
If you think a post violates any of the posting rules,
click the red X on the post and fill out the form;
moderators will be notified of your complaint.
<p>
This moderation policy is set by the ".PROJECT." project.
If you have comments about the policy, email ".SYS_ADMIN_EMAIL.".
";
page_tail();
?>

View File

@ -0,0 +1,31 @@
<?php
require_once("../inc/util.inc");
require_once("../inc/forum.inc");
require_once("../project/project.inc");
page_head("Moderator instructions");
echo "
Your job as a moderator is to enforce the following rules:
".post_rules()."
Delete posts or threads only if they clearly violate
one or more of these rules.
If in doubt, discuss it with other moderators on the email list.
Please respect the following guidelines:
<ul>
<li> Don't let your personal feelings
affect your moderation decisions.
You may not delete a post simply because
you disagree with it or dislike its author.
<li> Don't discuss moderation decisions on the forums
of this or other BOINC projects.
Use the email list that has been set up for this purpose.
<li> Don't preemptively delete posts.
Except for obscene language or pictures,
avoid deleting a post until someone complains about it
(and, of course, don't delete it simply because someone
has complained).
</ul>
";
page_tail();
?>