Is there a CMS running on the Google App Engine that is comparable to Plone (in some ways)?

I spent some time writing applications for Plone, and I believe that Plone "manages content properly" compared to many other CMS offerings. I am wondering if there is a comparable CMS that works in the Google App Engine. The big pluses I'm looking for are the following:

  • WSIWYG Content Management - I like how the Plone content management features do not require entering the hidden management interface. This made my life easier for my users because I didn’t have to teach them two different user interfaces - the content management functions are integrated into the user interface of the site.

  • All of this is a content object. Plone handles most of everything that users create as a content object: images, articles, events, even users (if you want), which means that Plone's content management features can be applied to all of these things: access control, workflow, etc. d.

  • The workflow is absolutely necessary for modeling user tasks in software. States and transitions. Scripts executed on state transitions.

  • Content objects that have a "strong typing" - Plone allows you to create (in a programming language) content "classes" whose relationships with other instances of content types are limited by type. For example, I can create an article type that has a link to event , and the user interface ensures that I can create an article and only reference event objects for the event field of my article objects. (Creating these "classes" may be the task of the developer or hiding behind the admin user interface)

Is there a CMS for the Google App Engine that has these features? Either Python or Java is acceptable to me.

+6
source share
1 answer

Vosao CMS works with the Google app. I have not tried Plone CMS. But Vosao CMS has all the features you are looking for.

he has version control, workflow, WYSIWYG editing, design templates. Not sure about your fourth point. I'm not sure what you mean by saying:

Content objects that have a "strong typing" - Plone allows you to create (in a programming language) content "classes" whose relationships with other instances of content types are limited by type. Thus, for an instance, I can create an article type that has an event link, and the user interface ensures that I can create articles and links only event objects for the event field of my article objects. (Creating these "classes" may be the task of the developer or hiding behind the admin UI)

check this google codepage for vasao CMS

Also see this vasao CMS FAQ page

For more help check the vasao cms website

0
source

Source: https://habr.com/ru/post/905023/


All Articles