Difference between revisions of "Template:See Also2"

From Pathfinder Wiki
 
(28 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{#dpl:
+
<noinclude>
|format=Earning this honor is a prerequisite for,\n*[[%PAGE%¦,]]<br/>,
+
Displays a list of all the honors tagged as a "See Also" for which the specified honor.  This includes all pages for which it is listed as a prerequisite, as well as any that are adjacent in a series labelled with Roman numerals. Every Honor-Link is separated by "%|%".
|include={Honor desc/es}:honorname
+
 
|category=Adventist Youth Honors Answer Book/Prerequisite/{{{1|}}}
+
==Parameters==
|notcategory=Adventist Youth Honors Answer Book/Secondary
+
;honorname: This parameter specifies the name of the honor.  If omitted, the template assumes the can be found as the second element of the page title invoking the template.
|titlematch=%/es
+
 
|order=ascending
+
This template is related to [[:Template:Honor prerequisite]] which is used as the answer to most requirements to earn some other honor.  That template will add whatever invokes it to <nowiki>[[</nowiki>Category:AY Honors/See Also/''honor'']], where ''honor'' is the prerequisite.  Every honor in that category has ''honor'' as a prerequisite or is related to ''honor'' in some other way (such as being the adjacent in a series.  This template merely lists all the honors in that category to indicate that once you've earned this one, you're partway to earning another.
|namespace=0
+
 
|suppresserrors = true
+
==Example==
}}
+
<div class="toccolours">
 +
:<nowiki>{{</nowiki>See Also|honorname=Camping Skills IV}} &rarr;{{{{FULLPAGENAME}}|honorname=Camping Skills IV}}
 +
:<nowiki>{{</nowiki>See Also|honorname=Basic Water Safety}} &rarr;{{{{FULLPAGENAME}}|honorname=Basic Water Safety}}
 +
:<nowiki>{{</nowiki>See Also|honorname=Tumbling & Balancing}} &rarr;{{{{FULLPAGENAME}}|honorname=Tumbling & Balancing}}
 +
 
 +
</div>
 +
 
 +
 
 +
==Mechanics==
 +
First define a variable for honorname.  If the honorname parameter is specified, it gets used.  Otherwise, it extracts the honorname from the second element of the page title.
 +
 
 +
Next define the honor category honcat.  We're looking for the category AY_Honors/See_Also/''honorname''/language.  The honor specified by honorname is related to every honor in this category, such as if it is a prerequisite, or if it is adjacent in a series.
 +
 
 +
Then define an IA category.  This honor is related to the IA pages in the category AY_Honors/Prerequisite_IA/''honorname''/language.
 +
 
 +
If honcat has any pages in it, we invoke a dpl query and format the output as a link with the translated honorname as the link display.
 +
 
 +
This is repeated for iacat.
 +
 
 +
Of special note is that the dpl is using categorymatch instead of category.  The reason for this is because category can specify multiple categories using the "&" character as a delimiter, and some honornames (I'm looking at you Tumbling & Balancing) have & in them.  This has tragic consequences for dpl's category specifier.  The categorymatch specifier is very much like category, except that it can use % as a wildcard - using the same format as an SQL LIKE statement.  If there are no % wildcards, then it's largely the same as category, except that categorymatch does not recognize & as a delimiter.
 +
 
 +
That bug took half a week to track down and slay.
 +
 
 +
</noinclude><includeonly>
 +
{{#vardefine:honorname|{{{honorname|{{#titleparts:{{PAGENAME}}|1|2}} }}} }}
 +
{{#vardefine:honcat|AY Honors/See Also/{{#var:honorname}}{{GetLangSuffix}}}}
 +
{{#vardefine:iacat|AY Honors/Prerequisite IA/{{#var:honorname}}{{GetLangSuffix}}}}
 +
{{#dpl:format=,²{GetHonorLandingLink¦page=%PAGE%,}²%{{!}}%
 +
      |categorymatch={{#replace:{{#var:honcat}}|&|%}}
 +
      |notcategory=AY Honors/Secondary
 +
      |nottitleregexp=.*/en$
 +
      |ordermethod=sortkey
 +
      |debug=0
 +
}}{{#dpl:format=,²{GetHonorLandingLink¦page=%PAGE%,}²%{{!}}%,
 +
      |categorymatch={{#replace:{{#var:iacat}}|&|%}}
 +
      |notcategory=AY Honors/Secondary
 +
      |nottitleregexp=.*/en$
 +
      |ordermethod=sortkey
 +
      |debug=0
 +
}}{{#if:{{{debug|}}}
 +
<li>honcat={{#var:honcat}}</li>
 +
}}</includeonly>

Latest revision as of 04:01, 18 May 2021

Displays a list of all the honors tagged as a "See Also" for which the specified honor. This includes all pages for which it is listed as a prerequisite, as well as any that are adjacent in a series labelled with Roman numerals. Every Honor-Link is separated by "%|%".

Parameters

honorname
This parameter specifies the name of the honor. If omitted, the template assumes the can be found as the second element of the page title invoking the template.

This template is related to Template:Honor prerequisite which is used as the answer to most requirements to earn some other honor. That template will add whatever invokes it to [[Category:AY Honors/See Also/honor]], where honor is the prerequisite. Every honor in that category has honor as a prerequisite or is related to honor in some other way (such as being the adjacent in a series. This template merely lists all the honors in that category to indicate that once you've earned this one, you're partway to earning another.

Example

{{See Also|honorname=Camping Skills IV}} →


Camp Safety - Advanced

%|%Outdoor Leadership

%|%Camping Skills III

%|%[[Investiture Achievement/Ranger|]]

%|%

{{See Also|honorname=Basic Water Safety}} →


Swimming - Beginner

%|%[[Investiture Achievement/Friend|]]

%|%[[Investiture Achievement/Companion|]]

%|%[[Investiture Achievement/Explorer|]]

%|%[[Investiture Achievement/Ranger|]]

%|%[[Investiture Achievement/Voyager|]]

%|%[[Investiture Achievement/Guide|]]

%|%

{{See Also|honorname=Tumbling & Balancing}} →


Tumbling & Balancing - Advanced

%|%


Mechanics

First define a variable for honorname. If the honorname parameter is specified, it gets used. Otherwise, it extracts the honorname from the second element of the page title.

Next define the honor category honcat. We're looking for the category AY_Honors/See_Also/honorname/language. The honor specified by honorname is related to every honor in this category, such as if it is a prerequisite, or if it is adjacent in a series.

Then define an IA category. This honor is related to the IA pages in the category AY_Honors/Prerequisite_IA/honorname/language.

If honcat has any pages in it, we invoke a dpl query and format the output as a link with the translated honorname as the link display.

This is repeated for iacat.

Of special note is that the dpl is using categorymatch instead of category. The reason for this is because category can specify multiple categories using the "&" character as a delimiter, and some honornames (I'm looking at you Tumbling & Balancing) have & in them. This has tragic consequences for dpl's category specifier. The categorymatch specifier is very much like category, except that it can use % as a wildcard - using the same format as an SQL LIKE statement. If there are no % wildcards, then it's largely the same as category, except that categorymatch does not recognize & as a delimiter.

That bug took half a week to track down and slay.