Create, from the Midgard Project, is a comprehensive web editing interface for Content Management Systems. It is designed to provide a modern, fully browser-based HTML5 environment for managing content. Create can be adapted to work on almost any content management backend.
- Making RDFa-annotated content on pages editable
- Managing collections of content (add, remove)
- Local, in-browser storage and retrieval of unsaved content
- Adaptable connector for communicating with the back-end system
- Running workflows (approval, etc.) for content items
- Browsing and reverting content history
- Easy rebranding of the interface with some CSS
- Adopt the Web Intents specification for better image and link handling
- Content annotation and auto-tagging with Apache Stanbol
- Hallo - distraction-free content editor (optionally, Aloha Editor)
- VIE - editable RDFa library
- Backbone.js - client-side management of models, views, and collections
- jQuery UI - widget and effect library
- Modernizr - HTML5 browser compatibility library
In nutshell, you have to do the following:
- Annotate your content with RDFa
- Include the Create JavaScript file(s)
- Implement Backbone.sync for your back-end
Starting Create:
jQuery(document).ready(function() {
jQuery('body').midgardCreate({
url: '/some/backend/url'
});
});
You can pass Create configuration options when calling the midgardCreate
widget. For example, to use Aloha Editor instead of Hallo, do:
jQuery('body').midgardCreate({
url: '/some/backend/url',
editor: 'aloha'
});
Create communicates with your server-side system using Backbone.sync. By default this means that we send and retrieve content encoded in JSON-LD over XmlHttpRequest calls.
If you're using this default approach, it is important to provide the URL of the endpoint on your server that you want Backbone and Create to talk with. This can be done by passing a string when initializing midgardCreate
:
jQuery('body').midgardCreate({
url: '/some/backend/url'
});
When implemented this way, all communications from Create will happen using normal RESTful HTTP calls to that URL.
- Creating a new object makes a
HTTP POST
to the URL - Updating or fetching an object makes a
HTTP PUT
orHTTP GET
to that URL with theid
of the object appended (for example/some/backend/url/objectId
)
If you need more flexibility with your URL structure, you can also pass a function that returns the URL for an object.
You can override this default communications layer by implementing your own Backbone.sync
method. Some examples:
Create is an event-based user interface. Normally integrators shouldn't need to deal with these events, but they're explained here in case of some customization needs.
midgardcreatestatechange
: when user switches between browse and edit modes. Event data contains an object with keystate
telling the state being changed tomidgardtoolbarstatechange
: when user opens or minimizes the toolbar. Event data contains an object with keydisplay
telling the new statemidgardeditableenable
: when an object has been made editable. Event data contains an object with keyinstance
providing the Backbone model instance andentityElement
providing the element containing the objectmidgardeditabledisable
: when an object has been made non-editable. Event data contains an object with keyinstance
providing the Backbone model instance andentityElement
providing the element containing the objectmidgardeditableactivated
: when a particular property of an object has been activated in an editor. Event data contains keysproperty
,instance
,element
andentityElement
midgardeditabledeactivated
: when a particular property of an object has been deactivated in an editor. Event data contains keysproperty
,instance
,element
andentityElement
midgardeditablechanged
: when a particular property of an object has been changed in an editor. Event data contains keysproperty
,instance
,element
andentityElement
You can use normal jQuery event methods to deal with these events.
- Introducing the Midgard Create user interface
- Using RDFa to make a web page editable
- Midgard Create and VIE presentation in the Aloha Editor conference
- Proposal for using Create as the reference UI in Symfony CMF
This repository contains the new version of Create that is having its dependencies on Midgard MVC removed so that it can work with any back-end system. This work is still ongoing, and so most of the functionality doesn't work yet.