Template:Da smw/doc: Difference between revisions

From Tardis Wiki, the free Doctor Who reference
No edit summary
m (grammar!)
 
(9 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{tlx|dau}} stands for '''dab away unlinked'''.  It is in every way like {{tlx|dab away}}, except that it produces a raw, unlinked version of the titleThis is especially useful in template programming as there are times when you want just a raw title.
{{tlx|da smw}} is a specialised version of {{tl|da}} which makes it possible to strip the [[dab term]] from [[T:SMW|SMW]]-rich variables in infoboxes or other templates whose goal is to both '''collect and display''' data within the same template -- for example, {{tlx|Infobox Person}}In such situations, the normal procedure of using {{tl|da}} fails spectacularly, because SMW itself is creating an unusual kind of link.  The standard linked output looks like this:
<pre>[[The Eleventh Hour (TV story)|The Eleventh Hour (TV story)]]</pre>
For whatever reason, the SMW coders create links in this very redundant way, which means the only solution is to get rid of the ''second'' [[dab term]] only.   


Usage: {{tlx|dau|[[Castrovalva (TV story)]]}}, or more usually, {{tlx|dau|{{{variable}}}}}
The only recourse is the use of the #sub parser function, with which you can take off a negative number of letters at the end of the string, resulting in<pre>[[The Eleventh Hour (TV story)|The Eleventh Hour</pre>
Add a closing pair of brackets — ]] — and you're golden!


This template is heavily used in the programming of [[T:SMW|SMW]] tables.
This is a very different principle, however, to the one on which {{tl|da}} works. ''That'' template uses a #switch parser function to figure out what ''kind'' of page it's on -- (TV story), (comic story), etc. -- and then truncates ''that specific'' [[dab term]].
 
''This'' template doesn't use a #switch at all. Instead, it uses a single calculation to figure out the position of the parentheses, and then it eliminates everything from the space before the opening parentheses to the closing parentheses.
<noinclude>[[category:template documentation|{{PAGENAME}}]]</noinclude>

Latest revision as of 01:53, 1 May 2018

{{da smw}} is a specialised version of {{da}} which makes it possible to strip the dab term from SMW-rich variables in infoboxes or other templates whose goal is to both collect and display data within the same template -- for example, {{Infobox Person}}. In such situations, the normal procedure of using {{da}} fails spectacularly, because SMW itself is creating an unusual kind of link. The standard linked output looks like this:

[[The Eleventh Hour (TV story)|The Eleventh Hour (TV story)]]

For whatever reason, the SMW coders create links in this very redundant way, which means the only solution is to get rid of the second dab term only.

The only recourse is the use of the #sub parser function, with which you can take off a negative number of letters at the end of the string, resulting in

[[The Eleventh Hour (TV story)|The Eleventh Hour

Add a closing pair of brackets — ]] — and you're golden!

This is a very different principle, however, to the one on which {{da}} works. That template uses a #switch parser function to figure out what kind of page it's on -- (TV story), (comic story), etc. -- and then truncates that specific dab term.

This template doesn't use a #switch at all. Instead, it uses a single calculation to figure out the position of the parentheses, and then it eliminates everything from the space before the opening parentheses to the closing parentheses.