Extension:Subpage Fun
Subpage Fun リリースの状態: 安定 |
|
---|---|
実装 | パーサー関数 , 変数 |
説明 | Defines some new parser functions to get advanced information about subpages. |
作者 | Daniel Werner (Danweトーク) |
最新バージョン | 0.7.0 (2020-02-16) |
MediaWiki | 1.25+ |
データベースの変更 | いいえ |
ライセンス | ISC ライセンス |
ダウンロード | README RELEASE-NOTES |
translatewiki.net で翻訳を利用できる場合は、Subpage Fun 拡張機能の翻訳にご協力ください | |
The Subpage Fun extension provides your wiki with seven new parser functions/variables to get information about subpages which you can't get with MediaWikis existing magic Words. Also, this extension has a slightly different concept about what is considered a subpage than MediaWikis existing functions.
You can read almost everything you need to know about MediaWiki subpages here.
This extension goes one step further and says a subpage is not simply the part behind a slash (/
).
A page only is a subpage in case a parent page exists.
This means Subpage Fun wouldn't consider the page AC/DC a subpage as long as the page AC doesn't exist.
Assuming the page AC/DC/Discography exists, the page AC/DC/Discography/1975/1976 would have the {{SUBPAGETITLE}}
1975/1976.
The MediaWiki {{SUBPAGENAME}}
variable would only output 1976 in this case which is nonsense since this page doesn't even exist.
For developers, this extension provides the php class SubpageInfo
which can be helpful to gather information about subpages within other extensions.
使用法
Subpage Fun defines {{SUBPAGETITLE}}
, {{SUBPAGES}}
, {{PARENTPAGES}}
, {{SIBLINGPAGES}}
, {{NUMBEROFSUBPAGES}}
and {{TOPLEVELPAGE}}
.
You can use them either like that as variables for the current page or you can use them with a parameter like {{NUMBEROFSUBPAGES: Pagename}}
to use them for any page you want.
- SUBPAGETITLE
- The real name of a subpage, not only the part behind the last slash (
/
) like MediaWiki's SUBPAGENAME outputs it. - SUBPAGELEVEL
- The subpage level of a page. A normal page which is no subpage at all would return
0
. - NUMBEROFSUBPAGES
- How many subpages does a page have. Also works with subpages to see how many subpages they have. Counts all descendant pages, not only direct child pages.
- TOPLEVELPAGE
- The top level page which is the page with subpage level
0
within the same subpage tree. - SUBPAGES
- Outputs all Subpages as a comma separated list. This means all descendant pages, not only direct child pages. The output has no specific order.
- PARENTPAGES
- Outputs all ancestor pages as a comma separated list. The output begins with the top level page and ends with the direct parent page.
- SIBLINGPAGES
- Outputs all sibling pages of the same subpage level and tree as a comma separated list. The output has no specific order.
{{SUBPAGES}}
, {{PARENTPAGES}}
, {{SIBLINGPAGES}}
have a list output.
You can use this output for further use with Extension:Arrays for example.
If one function is used with parameter 1 on a page with invalid characters, the output value will be an empty string.
Advanced formatting
There are several more parameters for some functions beside 1 which is available for all functions and allows to define the page to get the information from.
- linked
- If this parameter has any value at all the pages in the list of list generating functions become links
- sep
- Allows to define a different list separator than the default separator
,
- depth
- Works with
{{SUBPAGES}}
,{{NUMBEROFSUBPAGES}}
and{{PARENTPAGES}}
. It allows to define the relative depth to the most distant page. If the depth is set to a value smaller than 0 or not set, the functions will output everything, for{{PARENTPAGES}}
a negative value will return that many elements starting from the top-level page. - filter
- Works with
{{SUBPAGES}}
,{{PARENTPAGES}}
,{{SIBLINGPAGES}}
and{{NUMBEROFSUBPAGES}}
. This parameter allows to define a regular expression (allowed delimiters/%|
, allowed modifiersimsSuUx
) which will filter all elements out of the list who don't match the expression. Alternatively, it is possible to define a simple word which must be part of a list entry or the entry won't be outputted. It is possible to define several words separated by an escaped|
for example with help of a template like Template:! using{{!}}
.
{{PARENTPAGES: linked=true |depth=1}}
will output the current page's direct parent page as link.{{PARENTPAGES: <page> |depth=-1}}
will give the same result as{{TOPLEVELPAGE}}
with the only difference that if<page>
is the top-level page already, an empty string is returned.{{SUBPAGES: somepage |depth=1 |sep=<nowiki> </nowiki>}}
will output all direct subpages below somepage seperated by a simple space.
Developers support
Developers can use some static php functions from the SubpageInfo class which delivers information about subpages which the MediaWiki Title class doesn't provide.
インストール
- ダウンロードして、ファイルを
extensions/
フォルダー内のSubpageFun
という名前のディレクトリ内に配置します。
開発者とコード寄稿者は、上記の代わりに以下を使用してGitからインストールします:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/SubpageFun - 以下のコードを LocalSettings.php ファイルの末尾に追加します:
wfLoadExtension( 'SubpageFun' );
- 完了 – ウィキの「Special:Version」に移動して、拡張機能が正しくインストールされたことを確認します。
See also
- SubPageList - Allows to list and count subpages.
- SubpageNavigation - Shows direct children of current page in article header and provides Special Page Browse subpages to browse all articles of the wiki in different modalities.
この拡張機能は以下のウィキ ファーム/ウィキ ホスト/パッケージに含まれています: これは正式な一覧ではありません。 一部のウィキ ファーム/ウィキ ホスト/パッケージは、ここに記載されていなくてもこの拡張機能を含んでいる場合があります。 必ずご利用のウィキ ファーム、ウィキ ホスト、バンドルで確認してください。 |
- Stable extensions/ja
- Parser function extensions/ja
- Variable extensions/ja
- ISC licensed extensions/ja
- Extensions in Wikimedia version control/ja
- GetThisVariableValueSwitch extensions/ja
- MagicWordwgVariableIDs extensions/ja
- ParserFirstCallInit extensions/ja
- ParserGetVariableValueSwitch extensions/ja
- All extensions/ja
- Extensions included in Miraheze/ja
- Extensions included in MyWikis/ja
- Extensions included in WikiForge/ja
- Subpage extensions/ja