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()
