W3TPL/tags

From Woozle Writes Code
< W3TPL(Redirected from W3TPL/tag)
Jump to navigation Jump to search

About

W3TPL implements a set of XML-style tags for embedding within wikitext, and uses the MediaWiki parser (via a standard hook) to notice them and call the appropriate W#TPL code for processing.

The MW parser does not always do things in the expected order, so most of these tags have ways of using internal data for their values rather than depending on the literal sequencing of the tags.

Another issue with the MediaWiki parser is that it cannot deal with nested tags properly; the ending-tag of a tag-pair nested inside another tag-pair results in closure of the outer tag-pair as well, and any text past the internal closing-tag is displayed rather than being passed to the tag handler. W3TPL allows you to get around this limitation by defining functions which are parsed separately from the code-block in which they are executing.

My plan has been to create a <w3tpl> content-tag which supports directly-parsed scripting, based on the names and attributes of the existing W3 tags.

Tags

alphabetical by function

Supported

Unsupported

These tags have been written but not checked with current versions of MediaWiki and PHP; they may not work.

  • Text block inclusion:
    • <hide>: Runs the parser on everything in between the tags, but doesn't display the result. Useful for doing a lot of "programmish" stuff, so you can format it nicely and comment it without messing up your display
    • <echo>: overrides the "hide" attribute (and eventually the <hide> tag), i.e. displays contents
    • <load>: includes the contents of another page – like templates, but without creating a separate instance of the page object
  • <let>, <get>: much like PageVars extension, but using XML tags instead of {{#parser}} functions
  • <func>: defines a function which can be called with arguments later
    • <arg>: optional method of passing arguments to a function
    • <call>: call a previously defined function
  • Control structures:
    • <if>, <else>
    • <for>
    • <xploop>: Same as {{#xploop}}, but uses varname instead of $s$
      • syntax: xploop list="\demarcated\list" repl=string-to-replace sep=separator
  • Debugging:
    • <dump>: show diagnostic information
  • In development:
    • <class>
    • <w3tpl>: currently, is only used for disabling cache; will later enclose blocks of executable w3tpl code
  • Content management:
    • <load>
    • <save> - experimental; may not be useful without a lot more support

Common Attributes

  • name=: name of variable being accessed (usage depends on tag)
  • hide: if present, the contents of the tag will not be displayed except for those enclosed by <echo> tags. If absent, the contents of the <echo><echo> tags are ignored and only the remainder of the content is shown. (At present, contents of the <hide> tag itself are never displayed; this will be changed to enable the <echo> tag at some point.)
  • parse: parse any wikitext when reading the value of a variable

Technical Notes

At startup, the hook for each tag is initialized:

  • $mwoParser->setHook( <tag name>,<tag class>::Call() )

The content-processing flow for tags goes like this:

  • <tag object>->Call()
  • <tag object>->Setup((string) $sInput,$arArgs,$mwoParser,$mwoFrame);
  • → return <tag object>->FigureReturnValue()
    • → $sOut = $this->Go(); // $sOut gets a bit of extra processing and is eventually returned
      • → $sIn = $this->GetTagInput();
      • → $sOut = $this->UseTagInput($sIn);
      • → return $sOut;

GetTagInput() and UseTagInput() are then specialized by the various tag classes.