Rosetta Code:Village Pump/Adding transclusion plugin: Difference between revisions

From Rosetta Code
Content added Content deleted
(Adding pages which might appreciate this one)
m (Mcint moved page Rosetta Code:Village Pump/Transclusion-Content from other pages to Rosetta Code:Village Pump/Adding transclusion plugin: Refocusing page as plugin proposal. Other vp topics already cover desire for language-aggregation pages.)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Vptopic
{{Vptopic
|topic=Adding transclusion plugin
|topic=Transclusion-Content from other pages
|summary=Suggestion to add an existing mediawiki plugin, Transclusion, to address other village pump topics
|summary=Creating a template page which will extract content from existing pages on the fly and present cross-cutting content. For example, a page of all examples in a particular language
}}
}}
==Relevant vp-topics==
I think this is relevant to
# [[Rosetta Code:Village Pump/Download Perl Code]]
# [[Rosetta Code:Village Pump/Language template enhancements]]
# [[Rosetta Code:Village Pump/SMW Examples by language and concept]]
# [[Rosetta Code:Village Pump/SMW Examples by language and concept]]
# [[Rosetta Code:Village Pump/Language template enhancements]]
but I'd like to wait until I have a working small example to add to those pages.
# [[Rosetta Code:Village Pump/Download Perl Code]]
--[[User:Mcint|Mcint]] ([[User talk:Mcint|talk]]) 08:04, 25 September 2015 (UTC)
==MediaWiki support and documentation==
[[mw:Transclusion|Transclusion]] is the inclusion of content by reference. MediaWiki has a [[mw:Extension:Labeled_Section_Transclusion|plugin]] for it, which would be ready for use in RosettaCode thanks to consistent use of headers per-programming language, through the [[mw:Extension:Labeled_Section_Transclusion#Transcluding_sections_by_headings|header-based transclusion]] command it adds to wiki markup.

The plugin is not currently installed, according to the [[Special:Version]] page.

--[[User:Mcint|Mcint]] ([[User talk:Mcint|talk]]) 05:51, 5 December 2015 (UTC)

=Transclusion scratch space=
It says the function can be called as follows:
{{#lsth:pagename|sectionX}}

Current guess is that using the <nowiki>{{header|...}}</nowiki> macro in a section name is preventing the title from being recognized to do the transclusion
: The extension "Labeled Section Transclusion" isn't available on Rosetta Code. Thus <code>lsth</code> isn't recognized as a parser hook and the whole <code>{{#...}}</code> part is interpreted as normal text. --[[User:AndiPersti|Andreas Perstinger]] ([[User talk:AndiPersti|talk]]) 09:25, 25 September 2015 (UTC)

==Attempted Usage==
I would like to call:
<nowiki>=={{header|OCaml}}==</nowiki>
from the [[Pythagorean triples]] page. Also not working:
<nowiki>{{#lsth:Pythagorean triples|OCaml}}</nowiki>
{{#lsth:Pythagorean triples|OCaml}}
nor:
<nowiki>{{#lsth:Pythagorean triples|{{header|OCaml}}}}</nowiki>
{{#lsth:Pythagorean triples|{{header|OCaml}}}}

Latest revision as of 06:03, 5 December 2015

Adding transclusion plugin
This is a particular discussion thread among many which consider Rosetta Code.

Summary

Suggestion to add an existing mediawiki plugin, Transclusion, to address other village pump topics

Discussion

Relevant vp-topics

  1. Rosetta Code:Village Pump/SMW Examples by language and concept
  2. Rosetta Code:Village Pump/Language template enhancements
  3. Rosetta Code:Village Pump/Download Perl Code

MediaWiki support and documentation

Transclusion is the inclusion of content by reference. MediaWiki has a plugin for it, which would be ready for use in RosettaCode thanks to consistent use of headers per-programming language, through the header-based transclusion command it adds to wiki markup.

The plugin is not currently installed, according to the Special:Version page.

--Mcint (talk) 05:51, 5 December 2015 (UTC)

Transclusion scratch space

It says the function can be called as follows:

{{#lsth:pagename|sectionX}}

Current guess is that using the {{header|...}} macro in a section name is preventing the title from being recognized to do the transclusion

The extension "Labeled Section Transclusion" isn't available on Rosetta Code. Thus lsth isn't recognized as a parser hook and the whole {{#...}} part is interpreted as normal text. --Andreas Perstinger (talk) 09:25, 25 September 2015 (UTC)

Attempted Usage

I would like to call:

=={{header|OCaml}}==

from the Pythagorean triples page. Also not working:

{{#lsth:Pythagorean triples|OCaml}}

{{#lsth:Pythagorean triples|OCaml}} nor:

{{#lsth:Pythagorean triples|{{header|OCaml}}}}

{{#lsth:Pythagorean triples|OCaml}}