sites/www.qmsk.net/__init__.py
branchsites
changeset 31 107062ebb6f9
parent 30 a86a25a9f75b
child 32 be954df4f0e8
equal deleted inserted replaced
30:a86a25a9f75b 31:107062ebb6f9
     1 """
     1 """
     2     The www.qmsk.net site is just a simple site with a filesystem-based URL mapping
     2     The www.qmsk.net site is just a simple site with a filesystem-based URL mapping
     3 """
     3 """
     4 
     4 
     5 from lib.map import fstree
     5 from lib.filesystem.map import FilesystemMapper as _fstree
     6 
     6 
     7 build_mapper = lambda: fstree("site/www.qmsk.net")
     7 # global mapper attribute
       
     8 handler = _fstree("pages")
     8 
     9