Welcome to Xierpa. This is the stable 1.2 version which was developed by Petr van Blokland + Claudia Mens (buro@petr.com) and is maintained by Michiel Kauw-A-Tjoe. It is subclassed by the Museum Meermanno and American Express applications.

How to...

...build a site with CmsDefaultApp

Starting a new website it is best to choose one of the high level builder classes and inherit the new application class from it.
If the site needs to include a CMS, then the currently the best choice is to inherit from CmsDefaultApp. Like (and inheriting from) SiteBuilder.CmsBuilder,the CmsDefaultApp implements a complete site platform, including the building of layout and CMS applications. The inheriting application class can decide to redefined class values and method to make the site and CMS behave in the requested way.
from xpyth.xierpa.builders.cmsdfaultapp import CmsDefaultApp
Super = CmsDefaultApp
class MyApp(Super): pass
MyApp(e, result).build()
...to be finished