generated from openhie/empty-fhir-ig-custom
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 53208d5
Showing
11,421 changed files
with
5,543,906 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# This is a simple workflow that runs the publisher and copies the output to https://<owner>.github.io/<repo>/index.html | ||
# Based on the instructions from Elliot Silver, available from: https://www.argentixinfo.com/archives/156 | ||
|
||
# Make sure your repo has a branch called gh-pages | ||
|
||
name: CI | ||
|
||
# Controls when the action will run. | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the main branch | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
# This workflow contains a single job called "build" | ||
build: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
- name: Update the image to the latest publisher | ||
uses: docker://hl7fhir/ig-publisher-base:latest | ||
with: | ||
# Get the latest publisher - don't run the batch script but run the line directly | ||
args: curl -L https://github.com/HL7/fhir-ig-publisher/releases/latest/download/publisher.jar -o ./input-cache/publisher.jar --create-dirs | ||
|
||
- name: Run the IG publisher | ||
uses: docker://hl7fhir/ig-publisher-base:latest | ||
with: | ||
# Run the publisher - don't run the batch script but run the line directly | ||
args: java -jar ./input-cache/publisher.jar publisher -ig . | ||
|
||
- name: Deploy | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./output | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,303 @@ | ||
<!-- layouts\layout-changehistory.html --> | ||
<!-- get modelType --> | ||
|
||
|
||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE HTML> | ||
<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||
<head> | ||
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/> | ||
<title> - Zambia Immunizations FHIR Implementation Guide v1.0.0</title> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> | ||
<meta name="author" content="http://hl7.org/fhir"/> | ||
|
||
<link href="fhir.css" rel="stylesheet"/> | ||
|
||
<!-- Bootstrap core CSS --> | ||
<link href="assets/css/bootstrap-fhir.css" rel="stylesheet"/> | ||
|
||
<!-- Project extras --> | ||
<link href="assets/css/project.css" rel="stylesheet"/> | ||
<link href="assets/css/pygments-manni.css" rel="stylesheet"/> | ||
<link href="assets/css/jquery-ui.css" rel="stylesheet"/> | ||
<link href="assets/css/prism.css" rel="stylesheet" /> | ||
<!-- Placeholder for child template CSS declarations --> | ||
<link href="assets/css/openhie.css" rel="stylesheet"/> | ||
<link href="assets/css/lforms.min.css" rel="stylesheet"/> | ||
|
||
|
||
<script type="text/javascript" src="fhir-table-scripts.js"> </script> | ||
|
||
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> | ||
<!--[if lt IE 9]> | ||
<script src="assets/js/html5shiv.js"></script> | ||
<script src="assets/js/respond.min.js"></script> | ||
<![endif]--> | ||
|
||
<!-- Favicons --> | ||
<link rel="fhir-logo" sizes="144x144" href="assets/ico/icon-fhir-144.png"/> | ||
<link rel="fhir-logo" sizes="114x114" href="assets/ico/icon-fhir-114.png"/> | ||
<link rel="fhir-logo" sizes="72x72" href="assets/ico/icon-fhir-72.png"/> | ||
<link rel="fhir-logo" href="assets/ico/icon-fhir-57.png"/> | ||
<link rel="shortcut icon" href="assets/ico/favicon.png"/> | ||
</head> | ||
<body onload="document.body.style.opacity='1'"> | ||
|
||
<script src="assets/js/prism.js"></script> | ||
|
||
<style type="text/css">h2{--heading-prefix:""} | ||
h3,h4,h5,h6{--heading-prefix:""}</style> | ||
<div id="segment-header" class="segment"> <!-- segment-header --> | ||
<div class="container"> <!-- container --> | ||
<!-- Placeholder for child template header declarations --> | ||
|
||
<!-- Left logo - typically the publisher's logo - project or affiliate --> | ||
<div id="project-nav"> | ||
<a id="project-logo" no-external="true" href="https://ohie.org/"> | ||
<img height="71" alt="Project home" src="assets/images/home.png"/> | ||
</a> | ||
</div> | ||
|
||
<!-- Right logo - for example the FHIR logo --> | ||
<!-- Make sure you have authorization to use the FHIR logo --> | ||
<div id="family-nav"> | ||
<a id="family-logo" no-external="true" href="http://hl7.org/fhir"><img height="70" alt="FHIR website" src="assets/images/fire.png"/> </a> | ||
</div> | ||
|
||
<!-- search icon - if you want --> | ||
<!-- | ||
<div id="hl7-search"> | ||
<a id="hl7-search-lnk" no-external="true" href="http://hl7.org/fhir/search.cfm"><img alt="Search FHIR" src="assets/images/search.png"/></a> | ||
</div> | ||
--> | ||
|
||
|
||
<div id="ig-status"> | ||
<p><span style="font-size:12pt;font-weight:bold">Zambia Immunizations FHIR Implementation Guide</span> | ||
<br/> | ||
<span style="display:inline-block;">1.0.0 - STU1 | ||
|
||
|
||
|
||
<img alt="International flag" src="assets/images/001.svg" height="16" title="International"/> | ||
|
||
|
||
</span> | ||
</p> | ||
</div> | ||
</div> <!-- /container --> | ||
</div> <!-- /segment-header --> | ||
|
||
<div id="segment-navbar" class="segment"> <!-- segment-navbar --> | ||
<div id="stripe"> </div> | ||
<div class="container"> <!-- container --> | ||
<!-- HEADER CONTENT --> | ||
|
||
<nav class="navbar navbar-inverse"> | ||
<!--status-bar--> | ||
<div class="container"> | ||
<button data-target=".navbar-inverse-collapse" class="navbar-toggle" data-toggle="collapse" type="button"> | ||
<span class="icon-bar"> </span> | ||
<span class="icon-bar"> </span> | ||
<span class="icon-bar"> </span> | ||
</button> | ||
<a class="navbar-brand hidden" href="http://hl7.org/fhir/R5/index.html">FHIR</a> | ||
<div class="nav-collapse collapse navbar-inverse-collapse"> | ||
<ul | ||
xmlns="http://www.w3.org/1999/xhtml" class="nav navbar-nav"> | ||
<li> | ||
<a href="index.html">IG Home</a> | ||
</li> | ||
<li> | ||
<a href="toc.html">Table of Contents</a> | ||
</li> | ||
<!-- | ||
<li class="dropdown"> | ||
<a data-toggle="dropdown" href="#" class="dropdown-toggle">Background<b class="caret"></b> | ||
</a> | ||
</li> | ||
<li class="dropdown"> | ||
<a data-toggle="dropdown" href="#" class="dropdown-toggle">Functional Description<b class="caret"></b> | ||
</a> | ||
</li> | ||
--> | ||
<li class="dropdown"> | ||
<a data-toggle="dropdown" href="#" class="dropdown-toggle">Specifications<b class="caret"></b> | ||
</a> | ||
<ul class="dropdown-menu"> | ||
<li> | ||
<a href="artifacts.html">Artifact Index</a> | ||
</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</div> <!-- /.nav-collapse --> | ||
</div> <!-- /.container --> | ||
</nav> <!-- /.navbar --> | ||
<!-- /HEADER CONTENT --> | ||
</div> <!-- /container --> | ||
</div> <!-- /segment-navbar --> | ||
<!--status-bar--> | ||
|
||
<div id="segment-breadcrumb" class="segment"> <!-- segment-breadcrumb --> | ||
<div class="container"> <!-- container --> | ||
<ul class="breadcrumb"> | ||
|
||
|
||
</ul> | ||
</div> <!-- /container --> | ||
</div> <!-- /segment-breadcrumb --> | ||
|
||
<a name="top"> </a> | ||
<div id="segment-content" class="segment"> <!-- segment-content --> | ||
<div class="container"> <!-- container --> | ||
<div class="row"> | ||
<div class="inner-wrapper"> | ||
|
||
|
||
<div style="counter-reset: section 10" class="col-12"> | ||
<!--ReleaseHeader--><p id="publish-box">Zambia Immunizations FHIR Implementation Guide, published by Jembi Health Systems. This guide is not an authorized publication; it is the continuous build for version 1.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of <a href="https://github.com/jembi/Zambia-Immunizations">https://github.com/jembi/Zambia-Immunizations</a> and changes regularly. See the <a href="http://openhie.org/fhir/zambia-immunizations/history.html">Directory of published versions</a></p><!--EndReleaseHeader--> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<ul class="nav nav-tabs"> | ||
|
||
<li> | ||
<a href="Bundle-Smartcare.html">Narrative Content</a> | ||
</li> | ||
|
||
|
||
|
||
|
||
<li> | ||
<a href="Bundle-Smartcare.xml.html">XML</a> | ||
</li> | ||
|
||
|
||
|
||
|
||
<li> | ||
<a href="Bundle-Smartcare.json.html">JSON</a> | ||
</li> | ||
|
||
|
||
|
||
|
||
<li> | ||
<a href="Bundle-Smartcare.ttl.html">TTL</a> | ||
</li> | ||
|
||
|
||
|
||
|
||
</ul> | ||
|
||
|
||
<a name="root"> </a> | ||
<h2 id="root">: Bundle/Smartcare - Change History</h2> | ||
<p>History of changes for Smartcare .</p> | ||
|
||
|
||
|
||
</div> | ||
|
||
</div> <!-- /inner-wrapper --> | ||
</div> <!-- /row --> | ||
</div> <!-- /container --> | ||
</div> <!-- /segment-content --> | ||
|
||
<script type="text/javascript" src="assets/js/jquery.js"> </script> <!-- note keep space here, otherwise it will be transformed to empty tag -> fails --> | ||
<script type="text/javascript" src="assets/js/jquery-ui.min.js"> </script> | ||
|
||
<script type="text/javascript"> | ||
try { | ||
var currentTabIndex = sessionStorage.getItem('fhir-resource-tab-index'); | ||
} catch(exception) { | ||
} | ||
|
||
if (!currentTabIndex) | ||
currentTabIndex = '0'; | ||
|
||
$( '#tabs' ).tabs({ | ||
active: currentTabIndex, | ||
activate: function( event, ui ) { | ||
var active = $('.selector').tabs('option', 'active'); | ||
currentTabIndex = ui.newTab.index(); | ||
document.activeElement.blur(); | ||
try { | ||
sessionStorage.setItem('fhir-resource-tab-index', currentTabIndex); | ||
} catch(exception) { | ||
} | ||
} | ||
}); | ||
</script> | ||
|
||
<script type="text/javascript"> | ||
$(document).ready(function(){ | ||
if(window.location.hash != "") { | ||
$('a[href="' + window.location.hash + '"]').click() | ||
} | ||
}); | ||
</script> | ||
<a name="bottom"> </a> | ||
<div id="segment-footer" igtool="footer" class="segment"> <!-- segment-footer --> | ||
<div class="container"> <!-- container --> | ||
|
||
|
||
<div class="inner-wrapper"> | ||
<p> | ||
IG © 2021+ <a style="color: #81BEF7" href="https://www.jembi.org">Jembi Health Systems</a>. Package openhie.fhir.zambia-immunizations#1.0.0 based on <a style="color: #81BEF7" href="http://hl7.org/fhir/R5/">FHIR 5.0.0</a>. Generated <span title="Sun, Feb 18, 2024 07:22+0000">2024-02-18</span> | ||
<br/> | ||
<span style="color: #FFFF77"> | ||
Links: <a style="color: #81BEF7" href="toc.html">Table of Contents</a> | | ||
<a style="color: #81BEF7" href="qa.html">QA Report</a> | | ||
|
||
<a style="color: #81BEF7" target="_blank" href="http://openhie.org/fhir/zambia-immunizations/history.html">Version History</a> | | ||
<a style="color: #81BEF7" rel="license" href="http://hl7.org/fhir/R5/license.html"><img style="border-style: none;" alt="CC-BY" src="assets/images/cc-by.png" height="17"/></a> | | ||
<!--<a style="color: #81BEF7" href="todo.html">Search</a> | --> | ||
|
||
|
||
</span> | ||
</p> | ||
</div> <!-- /inner-wrapper --> | ||
</div> <!-- /container --> | ||
</div> <!-- /segment-footer --> | ||
|
||
<div id="segment-post-footer" class="segment hidden"> <!-- segment-post-footer --> | ||
<div class="container"> <!-- container --> | ||
</div> <!-- /container --> | ||
</div> <!-- /segment-post-footer --> | ||
|
||
<!-- JS and analytics only. --> | ||
<!-- Bootstrap core JavaScript | ||
================================================== --> | ||
<!-- Placed at the end of the document so the pages load faster --> | ||
<script type="text/javascript" src="assets/js/bootstrap.min.js"> </script> | ||
<script type="text/javascript" src="assets/js/respond.min.js"> </script> | ||
<script type="text/javascript" src="assets/js/anchor.min.js"> </script> | ||
<script type="text/javascript" src="assets/js/clipboard.min.js"> </script> | ||
<script type="text/javascript" src="assets/js/clipboard-btn.js"> </script> | ||
<script>anchors.options.visible = 'hover' | ||
anchors.add()</script> | ||
|
||
<!-- feedback form - Google forms --> | ||
<!-- v0.1, 2021-01-09 --> | ||
|
||
|
||
|
||
<!-- / feedback form --> | ||
|
||
<!-- Analytics Below | ||
================================================== --> | ||
</body> | ||
</html> | ||
|
Oops, something went wrong.