Editors
There are different editors implemented in BxCMS. For XHTML documents (the most common use), these are:
Which editor for which resource can be used is usually defined in the resource class, but you can reorder and exclude this in conf/editors/$resourcetype.xml
for xhtml, this is per default:
<bxcms xmlns="http://bitflux.org/editorconfig">
<editors>
<editor name="bxe"/>
<editor name="kupu"/>
<editor name="oneform"/>
</editors>
</bxcms>
If you want to have kupu as default, just write
<editor name="kupu"/>
<editor name="bxe"/>
<editor name="oneform"/>
If you don't want to allow the oneform editor, just remove it:
<editor name="kupu"/>
<editor name="bxe"/>