W3TPL/recipes: Difference between revisions

From Woozle Writes Code
Jump to navigation Jump to search
(fixed markup tags)
m (updated format tag)
Line 2: Line 2:
List all categorized Titles without defining any VIEWs:
List all categorized Titles without defining any VIEWs:
===Wikitext===
===Wikitext===
<source lang=xml>
<syntaxhighlight lang=xml>
<hide>
<hide>
   <for sql="SELECT * FROM categorylinks AS cl LEFT JOIN page AS p ON cl_from=page_id">
   <for sql="SELECT * FROM categorylinks AS cl LEFT JOIN page AS p ON cl_from=page_id">
Line 16: Line 16:
   </for>
   </for>
</hide><get name=out />
</hide><get name=out />
</source>
</syntaxhighlight>


List all Titles in a specific category:
List all Titles in a specific category:


===SQL===
===SQL===
<source lang=mysql>CREATE OR REPLACE VIEW qryW3_Titles_Catgs AS
<syntaxhighlight lang=mysql>CREATE OR REPLACE VIEW qryW3_Titles_Catgs AS
   SELECT * FROM
   SELECT * FROM
   categorylinks AS cl LEFT JOIN page AS p ON cl_from=page_id;</source>
   categorylinks AS cl LEFT JOIN page AS p ON cl_from=page_id;</source>
* Very similar to the [http://semeb.com/dpldemo/index.php?title=DPL:Installation dpl_clview] view used by DPL
* Very similar to the [http://semeb.com/dpldemo/index.php?title=DPL:Installation dpl_clview] view used by DPL
===Wikitext===
===Wikitext===
<source lang=xml>
<syntaxhighlight lang=xml>
<let name=including val="1" />
<let name=including val="1" />
</hide><for table="qryW3_Titles_Catgs" where="(cl_to='Data/target') AND (page_namespace=0)" name=pg hide>
</hide><for table="qryW3_Titles_Catgs" where="(cl_to='Data/target') AND (page_namespace=0)" name=pg hide>
Line 40: Line 40:
* <get name=title_link />: "<get name=title />": <get name=source /></echo>
* <get name=title_link />: "<get name=title />": <get name=source /></echo>
</for>
</for>
</source>
</syntaxhighlight>
* Replace "Data/target" with the name of the category you want to list
* Replace "Data/target" with the name of the category you want to list
* Alter the line which begins with {{xmltag|1=get name=title_link /}} (i.e. everything between the {{xmltag|echo}} tags) to display what you want; "title" and "source" are from an actual live installation ([[PsyCrit]]) and are defined within the pages in that category, so each output line gives a little information about the page (effectively a mini-"[[dataset report|report]]")
* Alter the line which begins with {{xmltag|1=get name=title_link /}} (i.e. everything between the {{xmltag|echo}} tags) to display what you want; "title" and "source" are from an actual live installation ([[PsyCrit]]) and are defined within the pages in that category, so each output line gives a little information about the page (effectively a mini-"[[dataset report|report]]")
Line 46: Line 46:


To use the same data to generate a form with a drop-down list of all titles returned:
To use the same data to generate a form with a drop-down list of all titles returned:
<source lang=xml><func xmltag contents>
<syntaxhighlight lang=xml><func xmltag contents>
   <let name=out chr=60 />
   <let name=out chr=60 />
   <let name=out append copy=contents />
   <let name=out append copy=contents />
Line 62: Line 62:
<call xmltag contents="/SELECT" />
<call xmltag contents="/SELECT" />
<call xmltag contents="/form" />
<call xmltag contents="/form" />
</source>
</syntaxhighlight>

Revision as of 18:57, 15 April 2022

Pages and Categories

List all categorized Titles without defining any VIEWs:

Wikitext

<hide>
  <for sql="SELECT * FROM categorylinks AS cl LEFT JOIN page AS p ON cl_from=page_id">
    <let name=pg_title val=@row.page_title />
    <let name=out append>
* [[</let>
    <let name=out append copy=pg_title />
    <let name=out append>|</let>

    <let load page=$pg_title name=data />
    <let name=out append copy=data[summary] />
    <let name=out append>]]</let>
  </for>
</hide><get name=out />

List all Titles in a specific category:

SQL

CREATE OR REPLACE VIEW qryW3_Titles_Catgs AS
  SELECT * FROM
  categorylinks AS cl LEFT JOIN page AS p ON cl_from=page_id;</source>
* Very similar to the [http://semeb.com/dpldemo/index.php?title=DPL:Installation dpl_clview] view used by DPL
===Wikitext===
<syntaxhighlight lang=xml>
<let name=including val="1" />
</hide><for table="qryW3_Titles_Catgs" where="(cl_to='Data/target') AND (page_namespace=0)" name=pg hide>
  <let name=pg_title val="@row.pg.page_title" />
  <load page=$pg_title />

  <let name=title_link>[[</let>
  <let name=title_link append copy=pg_title />
  <let name=title_link append>|</let>
  <let name=title_link append copy=keyname />
  <let name=title_link append>]]</let>
  <echo>
* <get name=title_link />: "<get name=title />": <get name=source /></echo>
</for>
  • Replace "Data/target" with the name of the category you want to list
  • Alter the line which begins with Template:Xmltag (i.e. everything between the Template:Xmltag tags) to display what you want; "title" and "source" are from an actual live installation (PsyCrit) and are defined within the pages in that category, so each output line gives a little information about the page (effectively a mini-"report")
  • The "including" variable tells the included pages not to show their category, so that this page won't think it is also in that same category.

To use the same data to generate a form with a drop-down list of all titles returned:

<func xmltag contents>
  <let name=out chr=60 />
  <let name=out append copy=contents />
  <let name=out append chr=62 />
  <echo><get name=out raw /></echo>
</func>

<call xmltag contents="form" />
<call xmltag contents="SELECT NAME=target" />
<for table="qryW3_Titles_Catgs" where="(cl_to='Data/target') AND (page_namespace=0)" sort="page_title DESC" name=pg hide>
  <let name=pg_title val="@row.pg.page_title" />
  <load page=$pg_title />
  <echo><call xmltag contents="OPTION" /><get name=keyname /> - <get name=title /><call xmltag contents="/OPTION" /></echo>
</for>
<call xmltag contents="/SELECT" />
<call xmltag contents="/form" />