diff -r a86a25a9f75b -r 107062ebb6f9 sites/www.qmsk.net/__init__.py --- a/sites/www.qmsk.net/__init__.py Sat Feb 07 06:54:52 2009 +0200 +++ b/sites/www.qmsk.net/__init__.py Sat Feb 07 16:33:27 2009 +0200 @@ -2,7 +2,8 @@ The www.qmsk.net site is just a simple site with a filesystem-based URL mapping """ -from lib.map import fstree +from lib.filesystem.map import FilesystemMapper as _fstree -build_mapper = lambda: fstree("site/www.qmsk.net") +# global mapper attribute +handler = _fstree("pages")