Difference between revisions of "FHIR Implementation Guide Authoring"
(Created page with "= Steps = Execute the following steps to create an IG == Install the Build Tools == Setting up the Build == Adding an Implementation Guide to the...") |
|||
Line 24: | Line 24: | ||
If your resource profile is in guides\StructureDefinition\gao-order.xml | If your resource profile is in guides\StructureDefinition\gao-order.xml | ||
− | Having made this change, you can no longer edit your IG in Forge, and will have to switch it back. An XSLT is available [[file:switcheroo. | + | Having made this change, you can no longer edit your IG in Forge, and will have to switch it back. An XSLT is available [[file:switcheroo.txt]] to go back and forth between these two formats. A newer version of Forge will eventually support sourceUri correctly. |
== Cheating the build == | == Cheating the build == | ||
Comment out the other IGs in your local copy of igs.xml and you won't have to build them. Eventually the build tools will support building a guide. | Comment out the other IGs in your local copy of igs.xml and you won't have to build them. Eventually the build tools will support building a guide. |
Revision as of 10:15, 19 November 2015
Contents
Steps
Execute the following steps to create an IG
Install the Build Tools
Adding an Implementation Guide to the Build
- Assign an identifier to the IG (e.g., gao)
- Add a folder to the guides folder with that identifier
- Add the guide as gao.xml to that folder
- Add its overview html page as gao.html to that folder
- Add a new line to source\igs.xml in the form:
<ig code="gao" name="Guideline Appropriate Ordering" brief="GAO" source="\guides\gao\gao.xml" committeereview="0" committee="cds" ballot="draft" fmm="0" section="K"/>
Where code is the identifier you created above
Dealing with Resource Locations in Forge
If you used Forge to create the IG, when you save it, the build will NOT know where to find your files. In the XML file, you will need to change:
<sourceReference> <reference value="http://hl7.org/fhir/StructureDefinition/gao-order" /> </sourceReference>
To look like:
<sourceUri value="gao-order.xml" />
If your resource profile is in guides\gao\gao-order.xml, Or:
<sourceUri value="StructureDefinition/gao-order.xml" />
If your resource profile is in guides\StructureDefinition\gao-order.xml
Having made this change, you can no longer edit your IG in Forge, and will have to switch it back. An XSLT is available File:Switcheroo.txt to go back and forth between these two formats. A newer version of Forge will eventually support sourceUri correctly.
Cheating the build
Comment out the other IGs in your local copy of igs.xml and you won't have to build them. Eventually the build tools will support building a guide.