Changes between Version 1 and Version 2 of WebForum
- Timestamp:
- Apr 25, 2007, 9:02:32 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebForum
v1 v2 1 1 = Message boards = 2 2 3 BOINC provides its own software for web based message-boards (also called 'forums'). Messages, and descriptions of the message boards, are stored in the BOINC database. Two types of message boards are supported: 3 BOINC provides its own software for web based message-boards (also called 'forums'). Messages, and descriptions of the message boards, are stored in the BOINC database. Two types of message boards are supported: 4 4 5 * '''Questions and answers''': These provide a 'self-organizing FAQ' that shows questions (sorted so that current and frequently-asked questions are listed first) and answers (sorted so that 'good' answers are listed first). 5 6 * '''Forums''': These are conventional message boards, typically sorted so that most recent messages are first. 6 7 7 8 To create message boards for your project, edit the file html/ops/create_forums.php to create a set of message boards appropriate for your project, and then run that script, i.e. type 8 9 {{{ 9 10 php create_forums.php … … 11 12 12 13 == User attributes == 13 14 The Special user feature allows certain users, like project administrators, developers etc., to be shown with that title under their name in the forums. It is important that people who are new to a project knows who to pay attention to - and this is a way of giving them a hint. To enable the feature simply run a query on the forum_preferences table. You can currently use the following list of titles: 14 15 15 16 … … 23 24 $special_user_bitfield[6]="Project scientist"; 24 25 }}} 25 So if the project administrator has the user number 42 run this query to make him a moderator and project administrator: 26 27 So if the project administrator has the user number 42 run this query to make him a moderator and project administrator: 26 28 {{{ 27 29 UPDATE forum_preferences SET special_user=1100000 where userid=42; … … 54 56 55 57 == Word-level moderation/filtering abilities == 56 58 None, all words are allowed. 57 59 == Sub-post-level moderation abilities == 58 60 None, moderators are not allowed to edit people's posts.