Difference between revisions of "Test includetrim"

From FollowTheScore
Jump to: navigation, search
Line 17: Line 17:
 
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 :
 
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 :
  
 +
<pre>
 +
<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>
 +
</pre>
 +
 +
This piece of code has the includetrim=true switch, and it produces this :
  
 
<DPL>
 
<DPL>
Line 27: Line 41:
 
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%¶|}¶
 
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
 
includetrim        =true
 +
</DPL>
 +
 +
 +
Now what would have happened if we did not use includetrim=true ? Here it is :
 +
 +
<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%¶|}¶
 
</DPL>
 
</DPL>

Revision as of 05:23, 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
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. 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


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