commit 1e9970744c20e5fb951ab837c44e9a02a4d5d934
Author:     Alex Lehmann <alexl...@gmail.com>
AuthorDate: Sat Jul 28 09:59:02 2012 +0200
Commit:     Alex Lehmann <alexl...@gmail.com>
CommitDate: Sat Jul 28 09:59:02 2012 +0200

    addition to JBEHAVE-802 - Some template-generated reports are invalid.
    in html template, removed excess backslash chars for step outcome
    not necessary in ftl code, only in java code inside ftl

diff --git a/jbehave-core/src/main/resources/ftl/jbehave-html-output.ftl 
b/jbehave-core/src/main/resources/ftl/jbehave-html-output.ftl
index 527407e..b41f117 100755
--- a/jbehave-core/src/main/resources/ftl/jbehave-html-output.ftl
+++ b/jbehave-core/src/main/resources/ftl/jbehave-html-output.ftl
@@ -76,7 +76,7 @@
 </div>
 </#if>
 </#macro>
-<#macro renderStepOutcome outcome><#if outcome=="pending"><span 
class=\"keyword ${outcome}\">(${keywords.pending})</span></#if><#if 
outcome=="failed"><span class=\"keyword 
${outcome}\">(${keywords.failed})</span></#if><#if 
outcome=="notPerformed"><span class=\"keyword 
${outcome}\">(${keywords.notPerformed})</span></#if></#macro>
+<#macro renderStepOutcome outcome><#if outcome=="pending"><span class="keyword 
${outcome}">(${keywords.pending})</span></#if><#if outcome=="failed"><span 
class="keyword ${outcome}">(${keywords.failed})</span></#if><#if 
outcome=="notPerformed"><span class="keyword 
${outcome}">(${keywords.notPerformed})</span></#if></#macro>
 
 <html>
 <body>



Reply via email to