# HG changeset patch # User Paul Boddie # Date 1381853995 -7200 # Node ID 255af38fb932a9ec2aa13c8c8364a783883741f7 # Parent 25791000f3dbf2d71e22ea3a7b9bff37f42e312a Removed the "pages" dependency from the macro for potential page cache usage. diff -r 25791000f3db -r 255af38fb932 README.txt --- a/README.txt Fri Oct 11 09:07:02 2013 +0200 +++ b/README.txt Tue Oct 15 18:19:55 2013 +0200 @@ -363,6 +363,8 @@ table headings; added link titles; supported the opening of pop-up menus and map labels using links and link targets. * Fixed event parser formatting of wiki text from page-based events. + * Removed the "pages" dependency from the macro, suggested by Marcel Häfner, + permitting cached page content to be used where appropriate. New in EventAggregator 0.10.1 (Changes since EventAggregator 0.10) ------------------------------------------------------------------ diff -r 25791000f3db -r 255af38fb932 macros/EventAggregator.py --- a/macros/EventAggregator.py Fri Oct 11 09:07:02 2013 +0200 +++ b/macros/EventAggregator.py Tue Oct 15 18:19:55 2013 +0200 @@ -14,7 +14,7 @@ from MoinDateSupport import getFormMonth from MoinMoin import wikiutil -Dependencies = ['pages'] +Dependencies = [] # Macro functions.