Github mirror of MediaWiki extension OrphanedTalkPages - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
转到文件
libraryupgrader 4324b491fe build: Updating grunt-banana-checker to 0.12.0
Change-Id: Iabd62f1c8c1402dacec617daf9ca38ef1c9eefe0
2024-05-10 18:39:33 +00:00
.phan Add phan 2020-10-01 17:03:51 +02:00
i18n Localisation updates from https://translatewiki.net. 2023-08-07 08:39:09 +02:00
src Use SelectQueryBuilder and namespaced classes 2023-09-21 17:48:40 +02:00
.eslintrc.json build: Updating eslint-config-wikimedia to 0.19.0 2021-03-14 04:56:16 +00:00
.gitignore build: Updating lodash to 4.17.15 2019-08-03 01:04:42 +00:00
.gitreview Add .gitreview 2017-04-29 11:43:59 +02:00
.phpcs.xml build: Updating mediawiki/mediawiki-codesniffer to 41.0.0 2023-03-12 07:18:09 +00:00
CODE_OF_CONDUCT.md build: Updating mediawiki/mediawiki-codesniffer to 23.0.0 2018-11-16 06:28:54 +00:00
COPYING Add MediaWiki Code Sniffer and get the sniffs to pass 2018-10-08 10:16:33 +02:00
Gruntfile.js build: Updating dependencies 2021-01-30 06:52:46 +00:00
OrphanedTalkPages.alias.php Add MediaWiki Code Sniffer and get the sniffs to pass 2018-10-08 10:16:33 +02:00
README Adhere to MediaWiki's Coding conventions 2017-07-01 17:40:39 +00:00
composer.json build: Updating composer dependencies 2024-05-05 23:36:28 +00:00
extension.json Also update the config callback 2023-09-21 19:53:41 +02:00
package-lock.json build: Updating grunt-banana-checker to 0.12.0 2024-05-10 18:39:33 +00:00
package.json build: Updating grunt-banana-checker to 0.12.0 2024-05-10 18:39:33 +00:00

README

== About ==
Orphaned talk pages adds a new Special page to MediaWiki: Special:OrphanedTalkPages. This special page lists all talk pages that do not have an accompanying page. The namespaces that are exempt from these checks is the user talk namespace by default, but this can be configured.

== Installation instructions ==
Note: you can also find these on https://www.mediawiki.org/wiki/Extension:OrphanedTalkPages

To use this extension, add:
wfLoadExtension( 'OrphanedTalkPages' );
to your LocalSettings.php file.

== Configuration instructions ==
This extension introduces two new configuration variables: $wgOrphanedTalkPagesExemptedNamespaces and $wgOrphanedTalkPagesIgnoreUserTalk.

* $wgOrphanedTalkPagesExemptedNamespaces controls which talk namespaces should be ignored when looking for orphaned talk pages. This variable is an array of namespace ids and is empty by default.
* $wgOrphanedTalkPagesIgnoreUserTalk determines if the user talk namespace (3, or NS_USER_TALK) should be ignored when looking for orphaned talk pages. This variable is a boolean and set to true by default.

== Other important notes ==
* The query that this special page uses is considered expensive. This means that when $wgMiserMode is enabled, the results will be served from cache.
* The special page may report talk pages as orphaned when they are not. The most common situation where this happens is File talk pages when $wgUseInstantCommons or $wgForeignFileRepos is enabled.