diff MoinMoin/config/multiconfig.py @ 1624:0b0b94e1680f

cache pagelist using new cache mechanism
author Thomas Waldmann <tw AT waldmann-edv DOT de>
date Wed, 18 Oct 2006 05:40:48 +0200
parents a86f20280204
children 2a1f570ea6d4
line wrap: on
line diff
--- a/MoinMoin/config/multiconfig.py	Wed Oct 18 03:22:43 2006 +0200
+++ b/MoinMoin/config/multiconfig.py	Wed Oct 18 05:40:48 2006 +0200
@@ -527,8 +527,9 @@
         self.siteid = siteid
         self.cache = CacheClass()
 
-        from MoinMoin.Page import ItemMetaDataCache
-        self.cache.meta = ItemMetaDataCache()
+        from MoinMoin.Page import ItemCache
+        self.cache.meta = ItemCache('meta')
+        self.cache.pagelists = ItemCache('pagelists')
 
         if self.config_check_enabled:
             self._config_check()