configurationengine/source/scripts/validation_report_template.xml
changeset 3 e7e0ae78773e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/configurationengine/source/scripts/validation_report_template.xml	Tue Aug 10 14:29:28 2010 +0300
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<diamonds-build>
+	<quality aspect="SW Configurability">
+		<summary message="Total Problems" value="{{ problems | length }}"/>
+		<summary message="Total Errors" value="{{ problems | filter_by_severity('error') | length }}"/>
+		<summary message="Total Warnings" value="{{ problems | filter_by_severity('warning') | length  }}"/>
+    {% for problem in problems %}
+		<message severity="{{ problem.severity }}" type="{{ problem.type }}" message="{{ problem.msg | escape}}" />
+    {% endfor %}
+	</quality> 
+</diamonds-build>
\ No newline at end of file