Extension:Comments
Comments Sürüm durumu: kararlı |
|
---|---|
Uygulama | Ayrıştırıcı uzantısı , Kanca |
Açıklama | Maddelere yorum yapılmasına izin veren <comments /> ayrıştırıcı kancası etiketi ekler |
Yazar(lar) | |
En son sürüm | 5.0 |
MediaWiki | 1.39+ |
Veritabanı değişiklikleri | Evet |
Tablolar | Comments Comments_Vote Comments_block |
Lisans | GNU Genel Kamu Lisansı 2.0 veya üstü |
İndir | |
|
|
<comments /> |
|
|
|
Quarterly downloads | 49 (Ranked 85th) |
Translatewiki.net adresinde mevcutsa, Comments uzantısını çevirin | |
Sorunlar | Açık görevler · Hata bildir |
Comments uzantısı, etiketin bulunduğu makalelere yorum yapılmasına izin vermek için <comments />
ayrıştırıcı kancası etiketini ekler.
Yorum eylemleri "Special:Log/comments
" ile kaydedilir, ancak varsayılan olarak gizlidirler, tıpkı devriye günlük girişleri gibi.
Yorum günlüğü girişlerini Special:RecentChanges olarak göstermek için $wgCommentsInRecentChanges = true;
ayarlayabilirsiniz (2.8+ sürümünde mevcuttur).
Kod düzeltmelerinin çoğu Misza ve Jack Phoenix olarak yapıldı.
Kurulum
- Dosyaları indirin ve
extensions/
klasörünüzdekiComments
adlı dizine yerleştirin.
Developers and code contributors should install the extension from Git instead, using:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Comments - LocalSettings.php dosyanızın altına aşağıdaki kodu ekleyin:
wfLoadExtension( 'Comments' );
- Bu uzantının ihtiyaç duyduğu gerekli veritabanı tablolarını otomatik olarak oluşturacak betik güncelleme komutunu çalıştırın.
- Yapıldı – Uzantının başarıyla yüklendiğini doğrulamak için vikinizde Special:Version seçeneğine gidin.
Kullanım
<comments />
— temel yorum formu, çoğu şey için yeterlidir.<comments allow="Derfel,Jack Phoenix,Misza" />
— yalnızca Derfel, Jack Phoenix ve Misza kullanıcılarının yorum göndermesine izin verir.<comments voting="Plus" />
— kullanıcıların yorumları olumsuz (başparmak aşağı) değerlendirmesini engeller ve yalnızca olumlu (başparmak yukarı) oylara izin verir.
Günün Yorumları
Uzantı ayrıca, varsayılan olarak "etkin olmayan" bir "Günün Yorumları" özelliğine (<commentsoftheday />
) sahiptir. Bu özelliği vikinin LocalSettings.php
dosyasında, require_once
satırından sonra aşağıdakileri ekleyerek etkinleştirebilirsiniz:
require_once "$IP/extensions/Comments/CommentsOfTheDay.php";
nocache
argümanı ayrıştırıcı kancasına aktarılırsa (bunun gibi: <commentsoftheday nocache=true />
), ayrıştırıcı kancası memcached kullanmaz ve verileri önbellek yerine veritabanından alır.
En güncel verileri göstermek istiyorsanız bu kullanışlıdır, ancak çok sunucu yoğun olabilir.
Kullanıcı hakları
Bu uzantı, üç yeni kullanıcı hakları ekler:
comment
- (yorum göndermeye izin verir)commentlinks
- (yorumlarda harici bağlantıların yayınlanmasına izin verir)commentadmin
- (kullanıcı tarafından gönderilen yorumların silinmesine izin verir), ör.comment-delete-own
- which allows deleting one's own comments, e.g.
$wgGroupPermissions['sysop']['commentadmin'] = true;
Varsayılan olarak, herkes, hatta anonim kullanıcılar bile yorum gönderebilir, ancak harici bağlantılar içeren yorumların gönderilmesi otomatik onaylanan kullanıcılar ile sınırlıdır.
Anonim kullanıcıların harici bağlantılar gönderebilmesini istiyorsanız, bunu require_once
sonrası ekleyin:
$wgGroupPermissions['*']['commentlinks'] = true;
Varsayılan olarak, yalnızca commentadmin
grubundaki kullanıcılar yorumları silebilir.
Kullanıcı puanları
$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).
Parametreler
$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.
Sihirli kelimeler/Ayrıştırıcı işlevleri
Yorumlar, 2 sihirli kelime ve bir ayrıştırıcı işlevi içerir:
{{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.
Kancalar
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
Uluslararasılaştırma
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.
Ayrıca bakınız
This extension is included in the following wiki farms/hosts and/or packages: This is not an authoritative list. Some wiki farms/hosts and/or packages may contain this extension even if they are not listed here. Always check with your wiki farms/hosts or bundle to confirm. |