Once you have Tag elements in the registry, you can take control of where variable settings appear in the registries that are delivered.
Do this by applying an added XSL transformation to the registry. In the XSL, you can now select all the settings tagged with the "admin" tag by writing an XPath expression such as:
...Setting[Tagged_with/Tag[@name='admin']]...
When you work in this way, you typically want to strip the original tag information from the output. Do this by including this line:
<xsl:template match="Tagged_with"/>
|