http://onionworks.net/2006/data/application
renameObject (target : xlink, newName : string) : boolean
Für den Fall, dass ein Element umbenannt werden soll, bietet die Methode renameObject die Möglichkeit mit Angabe des xlinks und des neuen Namens, das Element umzubenennen.
<xsl:stylesheet xmlns:app="http://onionworks.net/2006/data/application" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:onion="http://onionworks.net/2004/data" version="1.0">
<xsl:template match="/">
</xsl:stylesheet><xsl:variable name="object">onion://data/objects/100</xsl:variable>
<xsl:variable name="objectName">neuer Objektname</xsl:variable>
<xsl:choose>
</xsl:template><xsl:when test="app:renameObject($object, $objectName)">
Das Objekt wurde umbenannt.
</xsl:when>
<xsl:otherwise>
Das Objekt konnte nicht umbenannt werden.
</xsl:otherwise>
</xsl:choose>