Skip to content

Commit

Permalink
Referencing SOEMPIbin for binary distribution on HIPLAB's project pag…
Browse files Browse the repository at this point in the history
…e, also adding about.html and index.html as part of the HIPLAB specific project page, alos some js. Newer Maven settings.xml, which doesn't reflect now the documentation.
  • Loading branch information
Csaba Toth committed Feb 28, 2013
1 parent 03b17a2 commit 5fae9d8
Show file tree
Hide file tree
Showing 6 changed files with 677 additions and 21 deletions.
58 changes: 58 additions & 0 deletions documents/guides/about.html
@@ -0,0 +1,58 @@
<table width="100%">
<tr>
<td valign="top" style="width:50%">
<div style=" border:1px dotted #ffd700; padding:5px; margin:2px">
<b>Privacy Preserving Record Linkage</b>
<div style="margin-left:10px; font:medium">
Secure Open Enterprise Master Patient Index (SOEMPI) is software tool based
on <a href="http://www.openempi.org/">OpenEMPI</a> for privacy preserving
record linkage. SOEMPI is engineered to be extensible and support the PRL lifecycle,
including the distribution of cryptographic keys and the communication between
the participating organizations. This project was initiated, and is
currently maintained, by the <a href="http://www.hiplab.org">
Health Information Privacy Laboratory</a> at Vanderbilt University.
</div>
</div>
<div style="border:1px dotted #ffd700; padding:5px; margin:2px;">
<b>Funding & Grant</b>
<div style="margin-left:10px">
This research was supported by grants CCF-0424422, CNS-1016343, and
CNS-0964350 from the NSF and R01-LM009989 from the NIH.
</div>
</div>
<div style="border:1px dotted #ffd700; padding:5px; margin:2px;">
<b>Publications & References</b>
<li type="square" style="margin-left:10px">
Csaba Toth, Elizabeth Durham, Murat Kantarcioglu, Bradley Malin.
SOEMPI: A Secure Open Enterprise Master Patient Index Software Toolkit for Private Record Linkage.
- under review.
</li>
</div>
</div>

</td>

<td valign="top">
<div style="border:1px dotted #ffd700; padding:5px; margin:2px">
<b>System Requirements</b>
<li type="square" style="margin-left:10px">Java Runtime Environment 1.6+</li>
<li type="square" style="margin-left:10px">PostgreSQL 8.4+</li>
<li type="square" style="margin-left:10px">JBoss 4.2.3.GA-jdk6</li>
For detailed installation instructions please see the Documentation section.
</div>
<div style="border:1px dotted #ffd700; padding:5px; margin:2px">
<b>Binaries</b>
<li type="square" style="margin-left:10px"><a href="https://github.com/MrCsabaToth/SOEMPIbin">Enterprise Application Archive</a> (deployable to JBoss 4.2.3)</li>
</div>
<div style="border:1px dotted #ffd700; padding:5px; margin:2px">
<b>Documentation</b>
<li type="square" style="margin-left:10px"><a href="user_setup.html">Installation Instructions for Users</a></li>
<li type="square" style="margin-left:10px"><a href="developer_setup.html">Installation Instructions for Developers</a></li>
<li type="square" style="margin-left:10px"><a href="2_3rd_party_prl_scenario.html">Example 2 3rd party PRL scenario</a></li>
<li type="square" style="margin-left:10px"><a href="3_3rd_party_prl_scenario.html">Example 3 3rd party PRL scenario</a></li>
<li type="square" style="margin-left:10px"><a href="record_linkage_experiments.html">Experiments with record linkage locally</a></li>
</div>
</td>
</tr>
</table>

55 changes: 55 additions & 0 deletions documents/guides/index.html
@@ -0,0 +1,55 @@
<meta name="viewport" initial-scale="1.0" user-scale="no"
maximum-scale="1.0"/>
<link href="css/default.css" rel="stylesheet" type="text/css">

<script src="js/dom.js"></script>
<script src="js/rpc.js"></script>
<script src="js/utils.js"></script>

<script>
/**
* TODO: Send these functions to their own file
*/
function readIn(html){
var rpc = jx.ajax.getInstance() ;
var fn = function(xmlhttp){
jx.dom.set.value('out',xmlhttp.responseText);
}
rpc.send(html,fn);
}
</script>
<body onload="readIn('about.html')">
<div align="center" onclick="window.location.reload(true)" style="cursor:pointer">
<b style="font-size:22">SOEMPI: Secure Open Enterprise Master Patient Index</b>
<div>
<img src="img/logo.jpg"/>
</div>
<div>Health Information Privacy Lab</div>

</div>
<table align="center" style=" width:85%;height:330px;border:0px solid ffd700">
<tr>
<td valign="top">
<div id='out' style=" height:300px"></div>
</td>
</tr>
</table>
<table align="center" style=" width:85%;margin-top:5px;">
<tr>
<td style="padding:5px" align="">
<div style="float:left;width:49.5%">
<b>&nbsp;</b>
</div>
<div class="notification" style="margin-left:6px">
<b>Developer's Corner</b>
<div style="margin-left:10px">
<li type="square">Design: Components & architecture</li>
<li type="square"><a href="https://github.com/MrCsabaToth/SOEMPI/">Access the source code</a></li>
</div>
</div>
</td>
</tr>
</table>


</body>

0 comments on commit 5fae9d8

Please sign in to comment.