I spent a while writing apps for Plone and feel that Plone "does content management right" compared to many other CMS offerings. I'm wondering if there's a comparable CMS that runs on Google App Engine. The big pluses that I'm looking for are:
WSIWYG Content Management - I like how Plone's content management features don't require logging into a hidden management UI. It made my life easier training my users because I didn't have to teach them two different UIs - the content management features are integrated into the site's UI.
Everything is a "content" object - Plone treats most anything that users create as a content object: images, articles, events, even users (if you want), meaning Plone's content management features can be applied to all of these things: access control, workflow, etc.
Workflow - absolutely essential for modeling user tasks in the software. States & transitions. Scripts that run on state transitions.
Content objects having "strong-typing" - Plone allows you to create (in software parlance) content "classes" whose relationships with other instances of content types are restricted by type. So for instance, I can create an
articletype that has a reference to anevent, and the UI makes sure I can createarticles and reference onlyeventobjects for theeventfield of myarticleobjects. (The creation of these "classes" can be a developer task or be hidden behind an admin UI)
Does a CMS for Google App Engine exist that has these features? Either Python or Java is acceptable for me.