From 1d63364c4ea2f522023f1a6b0556b0a29e4a0d3b Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Fri, 8 Aug 2014 17:53:28 -0400 Subject: [PATCH] Add xml filter on the new template include files. I forgot to do this after testing them. Signed-off-by: Jason Stephenson --- templates/includes/LookupVersionResponse.inc | 2 +- templates/includes/ResponseHeader.inc | 4 ++-- templates/includes/problem.inc | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/templates/includes/LookupVersionResponse.inc b/templates/includes/LookupVersionResponse.inc index 676e8ad..5cfcc8e 100644 --- a/templates/includes/LookupVersionResponse.inc +++ b/templates/includes/LookupVersionResponse.inc @@ -1,5 +1,5 @@ [% FOREACH version IN data.versions -%] -[%- version -%] +[%- version | xml -%] [% END -%] diff --git a/templates/includes/ResponseHeader.inc b/templates/includes/ResponseHeader.inc index 78f69ea..669d7ec 100644 --- a/templates/includes/ResponseHeader.inc +++ b/templates/includes/ResponseHeader.inc @@ -1,12 +1,12 @@ -[% header.FromAgencyId.AgencyId %] +[% header.FromAgencyId.AgencyId | xml %] -[% header.ToAgencyId.AgencyId %] +[% header.ToAgencyId.AgencyId | xml %] diff --git a/templates/includes/problem.inc b/templates/includes/problem.inc index 8dd0dc6..c55c73b 100644 --- a/templates/includes/problem.inc +++ b/templates/includes/problem.inc @@ -1,14 +1,14 @@ -[% problem.ProblemType %] +[% problem.ProblemType | xml %] -[% problem.ProblemDetail %] +[% problem.ProblemDetail | xml %] -[% problem.ProblemElement %] +[% problem.ProblemElement | xml %] -[% problem.ProblemValue %] +[% problem.ProblemValue | xml %] -- 2.43.2