Checks and reports which articles that transcludes a template that are not linked from the template, and which articles that are linked from a template but don't transclude it. Typical usage is to check navigational templates/navboxes.
Parameters | ||
---|---|---|
Name | Status | Description |
lang | Required | Language code for wiki |
name | Required | Name for template including namespace |
complete | Optional | If set to 1 then also the complete transclusion/link lists are displayed |
// Add Chameleon's Template Linking and Transclusion Check to the toolbox
if (mw.config.get('wgAction') == 'view') {
$(function() {
if (mw.config.get('wgNamespaceNumber') == 10) { // 10 == NS_TEMPLATE
mw.util.addPortletLink('p-tb', "//tools.wmflabs.org/templatetransclusioncheck/index.php?lang=en&name=" + wgPageName, "Transclusion Check");
}
});
}
Tool provided by Chameleon 2015. Powered by Wikimedia Labs.