From 5d0f14c69d8352d206175d70292bd0f60efda357 Mon Sep 17 00:00:00 2001 From: Johnathan Aspinwall Date: Wed, 8 May 2024 21:24:24 -0600 Subject: [PATCH] chore: Update adiwg-mdtranslator gem dependency to version 2.19.0.pre.beta.15 --- .../html/sections/html_dataQualityReport.rb | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/lib/adiwg/mdtranslator/writers/html/sections/html_dataQualityReport.rb b/lib/adiwg/mdtranslator/writers/html/sections/html_dataQualityReport.rb index b5d47ab9..29dcb07d 100644 --- a/lib/adiwg/mdtranslator/writers/html/sections/html_dataQualityReport.rb +++ b/lib/adiwg/mdtranslator/writers/html/sections/html_dataQualityReport.rb @@ -185,6 +185,13 @@ def writeConformanceResult(conformanceResult) end end end + + # Name + unless result[:name].nil? + @html.em('Name: ') + @html.text!(result[:name]) + @html.br + end # Specification (citation) unless result[:specification].empty? @@ -242,6 +249,13 @@ def writeCoverageResult(coverageResult) end end + # Name + unless result[:name].nil? + @html.em('Name: ') + @html.text!(result[:name]) + @html.br + end + # SpatialRepresentationType unless result[:spatialRepresentationType].nil? @html.em('Spatial Representation Type: ') @@ -317,6 +331,13 @@ def writeDescriptiveResult(descriptiveResult) end end end + + # Name + unless result[:name].nil? + @html.em('Name: ') + @html.text!(result[:name]) + @html.br + end # Statement unless result[:statement].nil? @@ -352,6 +373,13 @@ def writeQuantitativeResult(quantitativeResult) end end end + + # Name + unless result[:name].nil? + @html.em('Name: ') + @html.text!(result[:name]) + @html.br + end # Value unless result[:values].empty?