I want to use XSL to remove some elements from a tree.
Suppose I have the following XML tree:
<?xml version="1.0" ?>
<mydoc>
<file>
<colors>
<blue />
<red />
<green />
</colors>
<secret>
<username />
<password />
</secret>
</file>
</mydoc>
I want to remove the username and password nodes from it. How would I proceed with XSL ?