Deprecating conditional attribute values
You can deprecate conditional attribute values so that they no longer appear in the IXIASOFT CCMS Desktop dialogs.
This can be useful if your deployment has a large number of conditional attributes and some of them are no longer used. When you deprecate a value, it no longer appears as an option when you apply conditions.
To deprecate a value, you add the 
		deprecated="true" attribute to the
					<allowedvalue> element, as
				follows:<condtextsettings>    
    <category name="Audience" xmlattribute="audience">
        <allowedvalue>expert</allowedvalue>
        <allowedvalue>novice</allowedvalue>
    </category>
    <category name="Platform" xmlattribute="platform">
        <allowedvalue>linux</allowedvalue>
        <allowedvalue>mac</allowedvalue>
        <allowedvalue deprecated="true">solaris</allowedvalue>
        <allowedvalue>windows</allowedvalue>
    </category>
</condtextsettings>