대부분의 어댑터 템플리트는 BOM 보고서에 변경 세부사항을 로깅합니다(변경 세부사항을 로깅하는 데 diff 명령이 사용됨).
다음 단계는 ClearCaseByDate 템플리트의 요소를 참조하지만 어댑터 템플리트 변경 세부사항을 제거하는 데 사용할 수 있습니다.
BOM 보고서에서 변경 세부사항을 제거하려면 다음을 수행하십시오.
<run command="cc_diff" params="$VIEW $1 $2" server="$CCSERVER" dir="/" timeout="360"/>
<!-- The cc_diff command does a generic clearcase diff, logging the full output
of the diff in the BuildForge BOM -->
<command name="cc_diff">
<execute>
pushd \\view\$1 && cleartool diff -pred -diff_format "$2$3"
</execute>
<resultsblock>
<match pattern=".+">
<bom category="Source" section="diff">
<field name="diff" text="$_"/>
</bom>
</match>
<resultsblock/>
</command>
<section name="diff">
<field name="diff" title="Change Details"/>
</section>