Manual:$wgEnableScaryTranscluding

This page is a translated version of the page Manual:$wgEnableScaryTranscluding and the translation is 41% complete.
Outdated translations are marked like this.
構文解析: $wgEnableScaryTranscluding
テンプレートを別のウィキから取り込み/参照読み込みできるようにする。
導入されたバージョン:1.5.0 (r9860)
除去されたバージョン:使用中
許容される値:(真偽値)
既定値:false

詳細

scary transclusion (他のウィキからのページやテンプレートの参照読み込み) を有効にします。 ちょっと変わったネーミングの理由は: なんだか効率が悪い。

この機能を有効にするには、interwiki テーブルの $wgEnableScaryTranscludingiw_trans ビットの両方が設定されている必要があります。 代わりに、Extension:Interwiki を使用して管理することもできます。

scary transclusion の使用方法

  • $wgEnableScaryTranscluding を有効にする
    $wgEnableScaryTranscluding = true;
    
  • データベースで関連するインターウィキ接頭辞の interwiki.iw_trans に 1 が設定されていることを確認してください。

純粋な参照読み込み

You should now be able to type {{wiki:template name}} or {{wiki:main namespace page name}} to transclude the page from a foreign wiki. However, these will transclude the foreign wiki page content to your wiki, not the wikicode of templates, etc. So, with the former, you will see the documentation, if any, but the template will not function, it will be as if you were viewing the template page on the foreign wiki - because you will be. Wikilinks on the transcluded page will appear to be blue links but will link to locations on the foreign wiki. Other issues may arise due to missing style sheets or JavaScript modules (T318060#9451386).

生の参照読み込み

You can also use {{raw:wiki:template name}} to do a raw transclude, where all templates on the foreign page are expanded as if they come from your wiki instead of the other wiki. This will display the results of the wikicode on your wiki. Templates function to the extent required pages exist locally: i.e. where the template displays a link that doesn't exist on the local wiki, the link will be red, where the template includes other templates nested within its code, local templates by those names will be called, and unless the required templates exist in the required form, the template will be broken. File links may function normally, depending on whether InstantCommons is in use on both the local and foreign wikis.

subst展開

You can substitute scary transcluded templates with {{subst:wiki:template name}} or {{subst:wiki:main namespace page name}}. The results will be similar to using raw but will save the fully expanded code to your wiki. With templates, this will have the effect of copying the code to the local wiki. (note: {{subst:raw:foo}} and {{subst:foo}} appear to be equivalent.)

Transclusion of non-MediaWiki content

This will work for wiki pages from wikis that use software other than MediaWiki to some degree, but the local MediaWiki software will attempt to parse the non-MediaWiki wikitext (such as MoinMoin) and html on the foreign wiki, resulting in some meaningless content and some content displayed other than as expected due to differing rules for dealing with HTML. Transclusion of non-wiki pages (HTML, code, etc.) will display plain text, those portions of any HTML that is allowed by the MediaWiki, and anything which intentionally or unintentionally includes things that MediaWiki interprets as wikicode, which will result in varying degrees of meaninglessness. Links not on a MediaWiki wiki page may be blue links but incorrectly direct to non-existent local pages and other styling or JavaScript errors may occur, as in "pure" transclusion.

関連項目