fixes on capability statement rendering
This commit is contained in:
parent
73786a16f1
commit
c60b2bfe1d
|
@ -576,7 +576,7 @@ public class CapabilityStatementRenderer extends ResourceRenderer {
|
|||
capExpectation = getExtValueCode(c.getExtensionByUrl(EXPECTATION));
|
||||
if (!Utilities.noString(capExpectation)) {
|
||||
lItem.addTag("strong").addText(capExpectation);
|
||||
lItem.addText(context.formatPhrase(" " + RenderingContext.CAPABILITY_SUPP) + " ");
|
||||
lItem.addText(" " + context.formatPhrase(RenderingContext.CAPABILITY_SUPP) + " ");
|
||||
}
|
||||
lItem.code().addText(c.getCode());
|
||||
first = false;
|
||||
|
|
|
@ -690,7 +690,7 @@ public class XhtmlNode extends XhtmlFluent implements IBaseXhtml {
|
|||
|
||||
|
||||
public XhtmlNode nbsp() {
|
||||
addText(" ");
|
||||
addText(NBSP);
|
||||
return this;
|
||||
}
|
||||
|
||||
|
|
9
pom.xml
9
pom.xml
|
@ -21,7 +21,7 @@
|
|||
<commons_compress_version>1.26.0</commons_compress_version>
|
||||
<guava_version>32.0.1-jre</guava_version>
|
||||
<hapi_fhir_version>6.4.1</hapi_fhir_version>
|
||||
<validator_test_case_version>1.5.19</validator_test_case_version>
|
||||
<validator_test_case_version>1.5.20-SNAPSHOT</validator_test_case_version>
|
||||
<jackson_version>2.17.0</jackson_version>
|
||||
<junit_jupiter_version>5.9.2</junit_jupiter_version>
|
||||
<junit_platform_launcher_version>1.8.2</junit_platform_launcher_version>
|
||||
|
@ -73,13 +73,18 @@
|
|||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>local2</id>
|
||||
<url>file:///home/vassil/.m2/repository</url>
|
||||
</repository>
|
||||
<!--
|
||||
<repository>
|
||||
<id>github-releases</id>
|
||||
<url>https://maven.pkg.github.com/FHIR/fhir-test-cases/</url>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repository> -->
|
||||
</repositories>
|
||||
|
||||
<dependencies>
|
||||
|
|
Loading…
Reference in New Issue