Розширення:Comments
Comments Статус релізу: стабільний |
|
---|---|
Реалізація | Парсер розширення , Хук |
Опис | Додає <comments /> тег аналізатора, який дозволяє коментувати статті |
Автор(и) | |
Найновіша версія | 5.0 |
MediaWiki | 1.39+ |
Зміни в БД | Так |
Таблиці | Comments Comments_Vote Comments_block |
Ліцензія | GNU General Public License 2.0 or later |
Завантажити | |
|
|
<comments /> |
|
|
|
Quarterly downloads | 49 (Ranked 85th) |
Translate the Comments extension if it is available at translatewiki.net | |
Issues | Open tasks · Report a bug |
Розширення Comments додає тег аналізатора <comments />
, щоб дозволити коментувати статті, де присутній тег.
Дії коментарів реєструються в Special:Log/comments
, але за умовчанням вони приховані, як і записи журналу patrol .
Ви можете встановити $wgCommentsInRecentChanges = true;
, щоб відображати записи журналу коментарів у Special:RecentChanges (доступно у версії 2.8+).
Більшість виправлень коду було зроблено Misza і Jack Phoenix.
Встановлення
- Завантажте і розмістіть файли в каталозі з назвою
Comments
у вашійextensions/
папці.
Розробники та автори коду повинні замість цього встановити розширення з Git, використовуючи:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Comments - Додайте такий код унизу вашого файлу LocalSettings.php :
wfLoadExtension( 'Comments' );
- Запустіть скрипт оновлення, який автоматично створить необхідні таблиці бази даних, які потрібні цьому розширенню.
- Готово – Перейдіть до Special:Version вашої вікі, щоб переконатися, що розширення встановлено успішно.
Використання
<comments />
— проста форма коментаря, достатня для більшості речей.<comments allow="Derfel,Jack Phoenix,Misza" />
— дозволяє лише користувачам Derfel, Jack Phoenix і Misza надсилати коментарі.<comments voting="Plus" />
— не дозволяє користувачам оцінювати коментарі негативно (великий палець вниз), дозволяючи лише позитивні (великий палець вгору) голоси.
Коментарі дня
Розширення також має функцію «Коментарі дня» (<commentsoftheday />
), яка за замовчуванням вимкнена. Ви можете ввімкнути цю функцію у LocalSettings.php
вікі, додавши наступне після рядка require_once
:
require_once "$IP/extensions/Comments/CommentsOfTheDay.php";
Якщо аргумент nocache
передано хуку парсера (наприклад: <commentsoftheday nocache=true />
), хук синтаксичного аналізатора не використовуватиме memcached і просто отримуватиме дані з бази даних замість кешу.
Це корисно, якщо ви хочете показати найновіші дані, але це може бути дуже інтенсивним для сервера.
Права користувача
Це розширення додає такі нові права користувача:
comment
- що дозволяє залишати коментаріcommentlinks
- що дозволяє розміщувати зовнішні посилання в коментаряхcommentadmin
- який дозволяє видаляти коментарі користувачівcomment-delete-own
- який дозволяє видаляти власні коментарі, напр.
$wgGroupPermissions['sysop']['commentadmin'] = true;
За замовчуванням усі, навіть анонімні користувачі, можуть залишати коментарі, але коментарі, які містять зовнішні посилання, можуть публікувати лише автопідтверджені користувачі.
Якщо ви хочете, щоб анонімні користувачі могли публікувати зовнішні посилання, додайте це після require_once
:
$wgGroupPermissions['*']['commentlinks'] = true;
За замовчуванням лише користувачі з групи commentadmin
можуть видаляти коментарі.
Права користувача
$wgUserStatsPointValues['comment_plus']
— the number of points to give out when another user gives a "thumbs up" to your comment.$wgUserStatsPointValues['comment_ignored']
— the number of points to give out when another user adds your comments to their ignore list (Special:CommentIgnoreList).
Параметри
$wgCommentsDefaultAvatar
— the path to an image which will be displayed instead of an avatar if social tools (SocialProfile extension) aren't installed. It should be 50x50px. Note that there is no default avatar image shipped with this extension. The default is defined inextension.json
and links to an external image onshoutwiki.com
server, an ad-driven wiki farm. You may prefer to set this parameter to point to a local file.$wgCommentsInRecentChanges
— by default, this variable is set tofalse
. Set it totrue
to display comments log entries in Special:RecentChanges, too, in addition to the comments log atSpecial:Log/comments
.$wgCommentsSortDescending
— by default, this variable is set tofalse
. Set it totrue
to sort comments by date descending, with the new comment box and most recent comments at the top.$wgCommentsAbuseFilterGroup
— This is the custom group name for AbuseFilter for when the AbuseFilter extension is enabled. It ensures that AbuseFilter only pulls the filters related to Comments. If you want AbuseFilter to pull all the filters, enter'default'
here. The default value for this is'comment'
, which ensures that AbuseFilter will only look for filters specifically written to target comments.
Чарівні слова/Функції аналізатора
Коментарі містять 2 чарівних слова та функцію аналізатора:
{{NUMBEROFCOMMENTS}}
gives the entire number of comments on the wiki.{{NUMBEROFCOMMENTSPAGE}}
gives number of comments on the current page.{{NUMBEROFCOMMENTSPAGE:<pagename>}}
gives number of comments on the given page.
Хуки
Comments extension adds three hooks, Comment::add
, Comment::delete
and Comment::isSpam
.
Hook name | When it is called | Parameters |
---|---|---|
Comment::add
|
After a comment has been added to the database, at the bottom of Comment::add function |
|
Comment::delete
|
After a comment has been deleted and the caches have been purged (function delete on class Comment )
|
|
Comment::isSpam
|
Called in Comment::isSpam before performing other spam checks.
|
|
Anti-spam
Though (as of Q3/2023) Comments does not (yet) support ConfirmEdit, MediaWiki's de facto CAPTCHA extension, there are plenty of other anti-spam measures built in, including:
- restricting who can add comments and/or comments that contain hyperlinks (see the #User rights section above)
- support for
$wgSpamRegex
and$wgSummarySpamRegex
- possibility for extension developers to implement custom spam checks via the
Comment::isSpam
hook point (see the #Hooks section above) - AbuseFilter interoperability — AbuseFilter can be made to check if the
action
variable's value iscomment
to write filters that apply only to comments made via the Comments extension; thenew_wikitext
variable contains the actual comment text, and thenew_size
variable is calculated on-demand based on the value of thenew_wikitext
variable. Refer to AbuseFilter's documentation for more details on how those variables and filters work.- The new configuration variable
$wgCommentsAbuseFilterGroup
can be set to'default'
to make existing AbuseFilter filters apply to comments as well. By default, it is set to'comment'
, so only filters specifically designed to target comments will be executed against comments made via the Comments extension.
- The new configuration variable
Інтернаціоналізація
The Comments extension currently has (partial or full) support for 68 different languages, including English. Please visit translatewiki.net if you want to translate Comments or other extensions of the social tools family of extensions into your language or modify existing translations.
Див. також
Це розширення включено до таких вікі-ферм/хостів та/або пакетів: Це не авторитетний список. Деякі вікі-ферми/хости та/або пакунки можуть містити це розширення, навіть якщо вони не вказані тут. Завжди звертайтеся до своїх вікі-ферм/хостів або комплекту для підтвердження. |