Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What's wrong with following jelly script template for cppcheck in email-ext plugin of hudson.

<!-- CppCheck TEMPLATE -->
<!--<j:set var="cppClassName" value="CppcheckBuildAction" />-->
<j:set var="cppcheckAction" value="${it.getAction('com.thalesgroup.hudson.plugins.cppcheck.CppcheckBuildAction')}" />
<TABLE width="100%">
    <TR><TD class="bg1" colspan="2"><B>CppCheck Result</B></TD></TR>
         <TR bgcolor="white"><TD class="test_failed" colspan="2"><B><li>Failed: ${cppcheckResult.summary} </li></B></TD></TR>
</TABLE>
<j:if test="${cppcheckAction!=null}">
  <j:set var="cppcheckResult" value="${cppcheckAction.result}" />
  <j:if test="${cppcheckResult!=null}">
  <TABLE width="100%">
    <TR><TD class="bg1" colspan="2"><B>CppCheck Result</B></TD></TR>
         <TR bgcolor="white"><TD class="test_failed" colspan="2"><B><li>Failed: ${cppcheckResult.getSummary} </li></B></TD></TR>
  </TABLE>
  </j:if>
<BR/>
</j:if>
share|improve this question
Can you please give some more information, like what error do you get? – Toon Krijthe Nov 13 '12 at 8:59
@Toon, crystal ball says cppCheckAction is null. See similar question – Josh Unger Feb 28 at 6:01

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.