Dear Wiki user, You have subscribed to a wiki page or wiki category on "Lenya Wiki" for change notification.
The following page has been changed by AndreasHartmann: http://wiki.apache.org/lenya/JcrContentModel ------------------------------------------------------------------------------ Issues: + * Changing the site structure requires to remove the involved nodes from all non-authoring areas (like now) + * Copying access control definitions? * {{{Node.update(workspace)}}} copies the subtree: * either nodes must be kept in a flat structure (no hierarchy) * or nodes and properties must be copied manually - * Changing the site structure requires to remove the involved nodes from all non-authoring areas (like now) - * Copying access control definitions? + * or use referenceable child nodes + + {{{ + /de + /foo < mix:referenceable + /lenya:document < mix:referenceable + /jcr:content = "Hello" + /bar + }}} + + Publish single node: + + {{{ + getItem("/de/foo/lenya:document").update("staging"); + }}} + + Publish subtree: + + {{{ + getItem("/de/foo").update("staging"); + }}} === Separated Areas in a Single Workspace === --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
