Difference between revisions of "DPL Example 013"

From FollowTheScore
Jump to: navigation, search
(New page: <pre><nowiki> {{#vardefine:count|10}}{{#vardefine:thispage|:DPL_Example_013}} {{#dpl: |namespace= |titlematch=C% |count={{#var:count}} |offset={{{offset|0}}} |resultsfooter= ²{#ife...)
 
Line 1: Line 1:
<pre><nowiki>
+
This example demonstrates how a big result set can be split into several pages. The central idea is to use the ''Call'' extension as a vehicle for calling the original page with a varying parameter for the offset.
 +
 
 +
To avoid redundancies we use the ''variables'' extension; thus the ''limit'' and the ''pagename'' can be defined at a single place.
 +
 
 +
----
 +
 
 
{{#vardefine:count|10}}{{#vardefine:thispage|:DPL_Example_013}}
 
{{#vardefine:count|10}}{{#vardefine:thispage|:DPL_Example_013}}
 
{{#dpl:
 
{{#dpl:
Line 26: Line 31:
 
   &nbsp; [[{{#var:thispage}}|''reset'']]
 
   &nbsp; [[{{#var:thispage}}|''reset'']]
 
}}
 
}}
</nowiki></pre>
 
  
----
 
  
The code uses the variables extension and the Call extension and produces the following result:
 
  
----
 
  
 +
 +
 +
 +
 +
 +
<pre><nowiki>
 
{{#vardefine:count|10}}{{#vardefine:thispage|:DPL_Example_013}}
 
{{#vardefine:count|10}}{{#vardefine:thispage|:DPL_Example_013}}
 
{{#dpl:
 
{{#dpl:
Line 60: Line 67:
 
   &nbsp; [[{{#var:thispage}}|''reset'']]
 
   &nbsp; [[{{#var:thispage}}|''reset'']]
 
}}
 
}}
 +
</nowiki></pre>

Revision as of 17:36, 9 May 2009

This example demonstrates how a big result set can be split into several pages. The central idea is to use the Call extension as a vehicle for calling the original page with a varying parameter for the offset.

To avoid redundancies we use the variables extension; thus the limit and the pagename can be defined at a single place.


{{#vardefine:count|10}}{{#vardefine:thispage|:DPL_Example_013}}

Extension:DynamicPageList (DPL), version 3.2.1: Warning: Skipping bad option '{{#var:count}}' for parameter 'count'.

Expression error: Unrecognized punctuation character "{".





{{#vardefine:count|10}}{{#vardefine:thispage|:DPL_Example_013}}
{{#dpl:
 |namespace=
 |titlematch=C%
 |count={{#var:count}}
 |offset={{{offset|0}}}
 |resultsfooter=
  ²{#ifexpr:%TOTALPAGES% > {{#var:count}}¦
\n-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --<br/>
  {{#ifexpr:{{{offset|0}}} > 0|
    [[Special:Call/{{#var:thispage}},offset={{#expr:{{{offset}}} - {{#var:count}}}}¦{{#expr:{{{offset}}} - {{#var:count}} + 1}}..{{{offset}}}]]  
  }}
  '''{{#expr:{{{offset|0}}} + 1}}..{{#expr:{{{offset|0}}} + {{#var:count}}}}'''  
  ²{#ifexpr:%TOTALPAGES% - {{#var:count}} > {{{offset|0}}}¦
    ²{#ifexpr:%TOTALPAGES% - 2 * {{#var:count}} <= {{{offset|0}}}¦
    [[Special:Call/{{#var:thispage}},offset={{#expr:{{{offset|0}}} + {{#var:count}}}}|{{#expr:{{{offset|0}}} + {{#var:count}} + 1}}..%TOTALPAGES%]]¦
    [[Special:Call/{{#var:thispage}},offset={{#expr:{{{offset|0}}} + {{#var:count}}}}|{{#expr:{{{offset|0}}} + {{#var:count}} + 1}}..{{#expr:{{{offset|0}}} + 2 * {{#var:count}}}}]]
    }²
  }²
    [[{{#var:thispage}}|reset]]     (total %TOTALPAGES%)
  }²
 |noresultsfooter=no more results<br/>-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --<br/>
  ²{#ifexpr:{{{offset|0}}} > 0¦
  [[Special:Call/{{#var:thispage}},offset={{#expr:{{{offset}}} - {{#var:count}}}}¦{{#expr:{{{offset}}} - {{#var:count}} + 1}}..%TOTALPAGES%]]  }²
    [[{{#var:thispage}}|''reset'']]
}}