From ad2ff67a3734d0ba9c37d0f57b7bd6a34a113a70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Costa=20Teixeira?= Date: Tue, 21 Apr 2020 22:40:43 +0200 Subject: [PATCH 1/3] commented ig.ini with instructions --- ig.ini | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/ig.ini b/ig.ini index e0c0156..b54f593 100644 --- a/ig.ini +++ b/ig.ini @@ -1,4 +1,34 @@ [IG] +# ini file for the Implementation Guide publisher +# uncomment or edit the lines below + +# ig.ini parameters: +################ + +##### ig ##### +# the name of the implementation guide resource file. ig = input/myig.xml + +##### template: ##### +# the IG template that will be used to create the implementation guide (normally be a package name, but can be a local folder). +# example - base fhir template: template = fhir.base.template -usage-stats-opt-out = false \ No newline at end of file + +# HL7 (non-FHIR) IG template: +#template = hl7.base.template + +# HL7 FHIR template: +#template = hl7.fhir.template + +# it's possible to specify a specific version of the template +#template = fhir.base.template#0.1.0 +# or the current version: +#template = fhir.base.template#current +# if no version is specified, the publisher will take the #current version + +# local templates can be used by prefixing a relative path with # : +#template = #mylocaltemplate +#template = #..\templates\mytesttemplate1 + +# local templates can also use absolute paths: +#template = #C:\MyWork\ImplementationGuides\mytemplates\mytesttemplate1 From 81dbc1d14fbd543c9910851d2438732c7cdb8022 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Costa=20Teixeira?= Date: Tue, 21 Apr 2020 22:56:22 +0200 Subject: [PATCH 2/3] restructure comments in ig.ini --- ig.ini | 33 ++++++++++++++++++++------------- 1 file changed, 20 insertions(+), 13 deletions(-) diff --git a/ig.ini b/ig.ini index b54f593..9541e00 100644 --- a/ig.ini +++ b/ig.ini @@ -1,26 +1,33 @@ [IG] # ini file for the Implementation Guide publisher -# uncomment or edit the lines below +# see comments below for instructions -# ig.ini parameters: -################ - -##### ig ##### -# the name of the implementation guide resource file. ig = input/myig.xml - -##### template: ##### -# the IG template that will be used to create the implementation guide (normally be a package name, but can be a local folder). -# example - base fhir template: template = fhir.base.template -# HL7 (non-FHIR) IG template: + + + +########################## +### ig.ini parameters: ### +########################## + +# ig: the name of the implementation guide resource file. +examples: +# ig = input/myig.xml +# ig = input/implementationguide-example2.xml + +# template: the IG template that will be used to create the implementation guide (normally be a package name, but can be a local folder). +# base fhir template: +#template = fhir.base.template + +# HL7 (non-FHIR) IG template: #template = hl7.base.template -# HL7 FHIR template: +# HL7 FHIR template: #template = hl7.fhir.template -# it's possible to specify a specific version of the template +# it's possible to specify a specific version of the template #template = fhir.base.template#0.1.0 # or the current version: #template = fhir.base.template#current From dd19383e110df603a10c6aaa44b791d36e960ebe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Costa=20Teixeira?= Date: Tue, 21 Apr 2020 23:01:21 +0200 Subject: [PATCH 3/3] add links to additional documentation --- ig.ini | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/ig.ini b/ig.ini index 9541e00..477ea60 100644 --- a/ig.ini +++ b/ig.ini @@ -29,13 +29,22 @@ examples: # it's possible to specify a specific version of the template #template = fhir.base.template#0.1.0 -# or the current version: +# or the current version: #template = fhir.base.template#current -# if no version is specified, the publisher will take the #current version +# if no version is specified, the publisher will take the #current version -# local templates can be used by prefixing a relative path with # : +# local templates can be used by prefixing a relative path with # : #template = #mylocaltemplate #template = #..\templates\mytesttemplate1 -# local templates can also use absolute paths: +# local templates can also use absolute paths: #template = #C:\MyWork\ImplementationGuides\mytemplates\mytesttemplate1 + + +# other parameters are defined in the ImplementationGuide resource: +# https://confluence.hl7.org/display/FHIR/Implementation+Guide+Parameters + +# for more documentation on implementation guides and templates, see the FHIR Guidance ImplementationGuide +# http://build.fhir.org/ig/FHIR/ig-guidance + +