This page you are viewing is part of the SEVA Wiki Archive, Please visit the new Official Website!
NOTICE: Visit the Maillist page for help joining the new google groups email list, the old maillist is no more.
SEVA meetings are held every second Tuesday.


Difference between revisions of "Talk:EVents 2008"

From SeattleEVA
Jump to navigation Jump to search
(notes on DPL)
 
(unused templates removed)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
+
== Using DPL for auto generation of EVent page descriptions ==
 
Testing an alternate method for automating the display of the "Chapters" or "Sections" of various EVent pages.
 
Testing an alternate method for automating the display of the "Chapters" or "Sections" of various EVent pages.
 
These are pages from the EVents category who's titles match "2008" and which are not meeting minutes.
 
These are pages from the EVents category who's titles match "2008" and which are not meeting minutes.
Line 8: Line 8:
 
See the [http://semeb.com/dpldemo/index.php?title=Category:DPL_Manual DPL_Manual] for more.
 
See the [http://semeb.com/dpldemo/index.php?title=Category:DPL_Manual DPL_Manual] for more.
  
 +
=== DPL example 1 ===
 
<DPL>
 
<DPL>
 
category      = EVents
 
category      = EVents
titlematch    = EVents_2008%
+
titlematch    = EVents_2008_%
 
notnamespace  = Talk
 
notnamespace  = Talk
 
notcategory  = Minutes
 
notcategory  = Minutes
 
headingcount  = true
 
headingcount  = true
addpagesize  = false
 
shownamespace = false
 
 
 
include        =%1[0 &nbsp;]
 
include        =%1[0 &nbsp;]
 
secseparators=&nbsp;--&nbsp;[[%PAGE%#%SECTION%|%SECTION%]]
 
secseparators=&nbsp;--&nbsp;[[%PAGE%#%SECTION%|%SECTION%]]
Line 22: Line 20:
  
 
<!--
 
<!--
 +
=== DPL Example 2 ===
 +
__NOTOC__
 +
<DPL>
 +
category      = EVents
 +
titlematch    = EVents_2008_%
 +
notnamespace  = Talk
 +
notcategory  = Minutes
 +
headingcount  = true
 +
addpagesize  = false
 +
shownamespace = false
 +
include        =%1[0 &nbsp;]
 
mode=userformat
 
mode=userformat
 
listseparators=,\n* <big>[[%PAGE%]]</big>\n<div>,</div>
 
listseparators=,\n* <big>[[%PAGE%]]</big>\n<div>,</div>
 
secseparators=\n=====[[%PAGE%#%SECTION%|%SECTION%]]=====\n
 
secseparators=\n=====[[%PAGE%#%SECTION%|%SECTION%]]=====\n
 
multisecseparators=&nbsp;##&nbsp;
 
multisecseparators=&nbsp;##&nbsp;
 +
</DPL>
 
-->
 
-->

Latest revision as of 21:58, 27 May 2008

Using DPL for auto generation of EVent page descriptions

Testing an alternate method for automating the display of the "Chapters" or "Sections" of various EVent pages. These are pages from the EVents category who's titles match "2008" and which are not meeting minutes. Though we can list multiple Sections from a page their titles only appear by using secseparators and %SECTION%" which causes ugly %N variables to appear if that Section number doesn't exist. So if we simply limit it to the first Section, which has generally been used to describe the EVent then a new method must be devised for EVents pages which contain multiple unique EVents... See the DPL_Manual for more.

DPL example 1