what does error mean and how to fix it
<currentversion vob="<vobname>" label="<labal>"/>
<export vob="<vobname>" bra开发者_运维百科nch="<branch>" label="<label>"/>
error :
The value of attribute "v" associated with an element type "currentversion" must not contain the '<' character.
Replace <
with <
(lt=lower than) and >
with >
(gt = greater than) if it is not part of a tag...
<currentversion vob="<vobname>" label="<labal>"/>
The error message means exactly what it says, and you fix it by ensuring that all "&"
and "<"
characters in your data are escaped as "&"
and "<"
respectively.
精彩评论