Difference between revisions of "Test includetrim"

From FollowTheScore
Jump to: navigation, search
Line 47: Line 47:
  
 
<DPL>
 
<DPL>
 +
debug=5
 
category            =Random Chapter Content
 
category            =Random Chapter Content
 
mode                =userformat
 
mode                =userformat

Revision as of 05:27, 7 April 2008

Test includetrim

Or Why is it always good to use includetrim=true when you want to include chapter content with mode=userformat ?


We create pages that contain chapter contents :

Random Chapter Content 1

Random Chapter Content 2

Random Chapter Content 3


Now we want to create tables that will call the chapter content from some sections (chapters) of these pages. Using the mode userformat we want to have full freedom on the output of DPL. When using mode=userformat and including chapter content, it is good to also switch includetrim=true. Here is when includetrim=true is put :

<DPL>
category            =Random Chapter Content
mode                =userformat
nottitlematch       =Random Chapter Content
includepage         =#Random,#Chapter,#Content
addfirstcategorydate=true
listseparators      =,,,
secseparators       ={| border="0" style="background:black; color:white" cellspacing="0" border-collapse="collapse" bordercolor="black"¶|- style="background:black; color:white"¶!width="425"|[[%PAGE%|,]],¶!width="300"|,,,¶!width="200"|%DATE%¶|}¶
includetrim         =true
</DPL>

This piece of code has the includetrim=true switch, and it produces this :

This is a random sentence. 1. This is a chapter. 1.This is some content. 1. 2008-04-07 05:03:20
This is a random sentence. 2. This is a chapter. 2.This is some content. 2. 2008-04-07 05:04:08
This is a random sentence. 3. This is a chapter. 3.This is some content. 3. 2008-04-07 05:04:50


Now what would have happened if we did not use includetrim=true ? Here it is :

{{Extension DPL}}{| border="0" style="background:black; color:white" cellspacing="0" border-collapse="collapse" bordercolor="black"
|- style="background:black; color:white"
!width="425"|[[Random Chapter Content 1|
This is a random sentence. 1.]]
!width="300"|
This is a chapter. 1.
This is some content. 1.
!width="200"|2008-04-07 05:03:20
|}
{| border="0" style="background:black; color:white" cellspacing="0" border-collapse="collapse" bordercolor="black"
|- style="background:black; color:white"
!width="425"|[[Random Chapter Content 2|
This is a random sentence. 2.]]
!width="300"|
This is a chapter. 2.
This is some content. 2.
!width="200"|2008-04-07 05:04:08
|}
{| border="0" style="background:black; color:white" cellspacing="0" border-collapse="collapse" bordercolor="black"
|- style="background:black; color:white"
!width="425"|[[Random Chapter Content 3|
This is a random sentence. 3.]]
!width="300"|
This is a chapter. 3.
This is some content. 3.
!width="200"|2008-04-07 05:04:50
|}