# HG changeset patch # User Paul Boddie # Date 1264980565 -3600 # Node ID 007ddda87bdb9077280d08f76c5043cb91adbad0 # Parent 817c6d531cf81af179c9ca1eb365506c3625628e Added multiple events per page support notes. diff -r 817c6d531cf8 -r 007ddda87bdb pages/HelpOnEventAggregator --- a/pages/HelpOnEventAggregator Fri Jan 29 01:05:53 2010 +0100 +++ b/pages/HelpOnEventAggregator Mon Feb 01 00:29:25 2010 +0100 @@ -54,6 +54,26 @@ Topics:: Python, <>, Zope }}} +=== Listing Many Events on a Page === + +Sometimes, it can be useful to list many events or event occurrences on a single page. For example, unlike something like an annual conference where a different event page makes sense for each occurrence of the conference, something like a regular meeting of a group of people might merit its own event page, but it would be inconvenient to make a new page for every single meeting occasion. + +It is therefore possible to list many event occurrences on the same page by adding a new set of properties for each occurrence. For example: + +{{{ + Start:: Monday 1st February 2010 (2010-02-01) + End:: Monday 1st February 2010 (2010-02-01) + Summary:: MoinMoin User Group Meeting + +Previous meetings: + + Start:: Monday 4th January 2010 (2010-01-04) + End:: Monday 4th January 2010 (2010-01-04) + Summary:: MoinMoin User Group Meeting +}}} + +To start a distinct event, just define a property that has already been recorded for the previous event on the page, if any. Usually, the start and end dates will be the most suitable properties for this purpose. + <> == Preparing a Calendar ==