Test includetrim

From FollowTheScore
Revision as of 05:25, 7 April 2008 by EmuWikiAdmin1 (talk | contribs)
Jump to: navigation, search
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
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 :

This is a random sentence. 1.

This is a chapter. 1.

2008-04-07 05:03:20
This is a random sentence. 2.

This is a chapter. 2.

2008-04-07 05:04:08
This is a random sentence. 3.

This is a chapter. 3.

2008-04-07 05:04:50