This commit is contained in:
Lloyd McKenzie
2020-07-07 21:50:08 -06:00
5 changed files with 8 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
@ECHO OFF @ECHO OFF
SET publisher_jar=org.hl7.fhir.publisher.jar SET publisher_jar=publisher.jar
SET input_cache_path=%CD%\input-cache SET input_cache_path=%CD%\input-cache
ECHO Checking internet connection... ECHO Checking internet connection...

View File

@@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
publisher_jar=org.hl7.fhir.publisher.jar publisher_jar=publisher.jar
input_cache_path=./input-cache/ input_cache_path=./input-cache/
echo Checking internet connection... echo Checking internet connection...
curl -sSf tx.fhir.org > /dev/null curl -sSf tx.fhir.org > /dev/null

View File

@@ -2,8 +2,8 @@
SETLOCAL SETLOCAL
SET dlurl=https://storage.googleapis.com/ig-build/org.hl7.fhir.publisher.jar SET dlurl=https://github.com/HL7/fhir-ig-publisher/releases/latest/download/publisher.jar
SET publisher_jar=org.hl7.fhir.publisher.jar SET publisher_jar=publisher.jar
SET input_cache_path=%CD%\input-cache\ SET input_cache_path=%CD%\input-cache\
SET skipPrompts=false SET skipPrompts=false

View File

@@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
dlurl=https://storage.googleapis.com/ig-build/org.hl7.fhir.publisher.jar dlurl=https://github.com/HL7/fhir-ig-publisher/releases/latest/download/publisher.jar
publisher_jar=org.hl7.fhir.publisher.jar publisher_jar=publisher.jar
input_cache_path=./input-cache/ input_cache_path=./input-cache/
set -e set -e
@@ -58,7 +58,7 @@ fi
if [[ "$FORCE" == true ]] || [[ "$response" =~ ^([yY])$ ]]; then if [[ "$FORCE" == true ]] || [[ "$response" =~ ^([yY])$ ]]; then
echo "Downloading most recent publisher to $jarlocationname - it's ~100 MB, so this may take a bit" echo "Downloading most recent publisher to $jarlocationname - it's ~100 MB, so this may take a bit"
# wget "https://fhir.github.io/latest-ig-publisher/org.hl7.fhir.publisher.jar" -O "$jarlocation" # wget "https://fhir.github.io/latest-ig-publisher/org.hl7.fhir.publisher.jar" -O "$jarlocation"
curl $dlurl -o "$jarlocation" --create-dirs curl -L $dlurl -o "$jarlocation" --create-dirs
else else
echo cancel... echo cancel...
fi fi

View File

@@ -307,7 +307,7 @@
{% if c.contentType = 'text/cql' %} {% if c.contentType = 'text/cql' %}
<tr> <tr>
<table> <table>
<tr><th><b>Content: </b> {{c.contentType}}</th></tr> <tr><th><a id="cql-content"><b>Content: </b></a> {{c.contentType}}</th></tr>
<tr><td><pre><code>{{c.data.decode('base64').escape('html')}}</code></pre></td></tr> <tr><td><pre><code>{{c.data.decode('base64').escape('html')}}</code></pre></td></tr>
</table> </table>
</tr> </tr>