Details
-
Bug
-
Resolution: Not an issue
-
Major
-
None
-
None
-
None
-
Unix
-
-
Empty show more show less
Description
We are using Magnolia Enterprise edition magnolia-4.4.4 and the JCR 170 API.
Our application code reads property content from XML data files to load this into Magnolia Data workspace via the JCR API.
For each property in the XML file a JCR node is created and Magnolia is configured so that you can see properties loaded in the Data Workspace
via the AdminCentral Data Menu.
You can also add and edit loaded properties from the Data Menu.
We have defined our own types in Magnolia which is used as the NodeType when creating
nodes of that type.
I changed the code to version the property nodes as follows;-
node.addMixin(JcrConstants.MIX_VERSIONABLE);
jcrSession.save();
node.checkin();
And executed some more data loads. Now we have a problem because the loaded properties that are versioned cannot be edited from the
AdminCentral Data Menu.
Are we doing something wrong here?