Skip to content

Commit 174359f

Browse files
authored
Merge pull request #28 from ansforge/specifications
ANS-009-011 - Création de l'étude fonctionnelle
2 parents 67618ae + 53110d8 commit 174359f

40 files changed

Lines changed: 1604 additions & 83 deletions

Requirements-fromNarrative.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"resourceType" : "Requirements",
3+
"id" : "fromNarrative",
4+
"url" : "https://interop.esante.gouv.fr/ig/fhir/pdlgc/Requirements/fromNarrative",
5+
"name" : "FromNarrative",
6+
"title" : "Narrative Conformance Statements",
7+
"status" : "active",
8+
"experimental" : false,
9+
"description" : "Conformance statements found throughout the narrative of the IG consolidated into this computable resource for traceability purposes"
10+
}

_build.bat

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ GOTO collectArgs
5656

5757
echo ---------------------------------------------------------------
5858
ECHO Checking internet connection...
59-
PING tx.fhir.org -4 -n 1 -w 4000 >nul 2>&1 && SET "online_status=true" || SET "online_status=false"
59+
powershell -Command "try { $r=[System.Net.WebRequest]::Create('https://tx.fhir.org/r4/metadata'); $r.Timeout=4000; $r.GetResponse().Close(); exit 0 } catch { exit 1 }"
60+
IF %ERRORLEVEL% EQU 0 (SET "online_status=true") ELSE (SET "online_status=false")
6061

6162
IF "%online_status%"=="true" (
6263
ECHO We are online and tx.fhir.org is available.

0 commit comments

Comments
 (0)