MediaWiki Suggested Configuration

From Hack Sphere Labs Open Access Wiki
Revision as of 06:53, 20 October 2020 by Neoweb (talk | contribs) (LocalSettings.php)
Jump to: navigation, search

LocalSettings.php

  • Enable Subpages, because they are awesome[1][2]
$wgNamespacesWithSubpages[NS_MAIN] = true;
  • Edit Template:Subpages
<div style="font-size:100%>
{{Special:Prefixindex/{{{1|{{BASEPAGENAMEE}}|{{FULLPAGENAMEE}} }}}/}}
</div>
  • Edit Template:Subpages/doc
{{documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
===Usage===
<tt>{{subpages}}</tt> shows all the subpages of a given page. It should not be used in the main namespace, only on pages such as user pages, Wiktionary pages and appendices. It takes one, optional parameter, the target page name. The default is {{PAGENAME}}

* <tt>{{subpages}}</tt>: shows the subpages for the current page (in this case, Template:subpages)
* <tt>{{subpages|User:Example}}</tt>: shows the subpages for [[User:Example]]

== Alternative ==
You can also embed the [[Special:PrefixIndex]] directly, e.g.

<code>{{Special:Prefixindex|prefix=User:Example/|hideredirects=1|stripprefix=1}}</code>

If you want use in your wiki a sorted lists of subpages, or get counts of it for using in templates, you may try extension [[Extension:SubPageList]]. Example using of this, see wiki code of template [https://www.thewoodcraft.org/wiki/index.php?title=%C5%A0ablona:pages&action=edit Template:pages]. It's alternative solution without tag <code><pages></code> for pages of books from the [[Extension:ProofreadPage]]. This template generate i.e. content of page [https://www.thewoodcraft.org/wiki/index.php/The_Birch-Bark_Roll_1906_(kniha) The Birch-Bark Roll 1906 (kniha)]. It is solution '''without''' dependency on the [[Lua]] modules.

<includeonly>
<!-- CATEGORIES AND INTERWIKIS HERE, THANKS -->
[[fr:Modèle:sous-pages]]
</includeonly>

References