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 ------------------------------------------------------------------------------ === Labelled Versions === + * Issues: + * All changes applied immediately, without calling {{{Session.save()}}} + * Access control to version history? + + Submit: + + {{{ + VersionHistory history = node.getVersionHistory(); + Version base = node.getBaseVersion(); + boolean move = true; + history.addVersionLabel(base.getName(), "staging", move); + }}} + + Obtaining live version: + {{{ VersionHistory history = node.getVersionHistory(); Node liveVersion = history.getVersionByLabel("live"); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
