You can subscribe to this list here.
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(18) |
Dec
(100) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2009 |
Jan
(76) |
Feb
(45) |
Mar
(68) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <an...@us...> - 2009-04-07 07:08:04
|
Revision: 317
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=317&view=rev
Author: anil114
Date: 2009-04-07 07:07:57 +0000 (Tue, 07 Apr 2009)
Log Message:
-----------
Updated scripts for page navigation
Modified Paths:
--------------
trunk/OpenWeb/Web/pages/MessageStore.jsp
trunk/OpenWeb/Web/scripts/messagestore.js
Modified: trunk/OpenWeb/Web/pages/MessageStore.jsp
===================================================================
--- trunk/OpenWeb/Web/pages/MessageStore.jsp 2009-03-24 16:06:05 UTC (rev 316)
+++ trunk/OpenWeb/Web/pages/MessageStore.jsp 2009-04-07 07:07:57 UTC (rev 317)
@@ -13,7 +13,7 @@
<script type="text/javascript" language="javascript" src="<c:url value="/scripts/domTT.js"/>"></script>
<script type="text/javascript" src="<c:url value='/scripts/jquery-1.2.2.pack.js'/>"></script>
<script type="text/javascript" src="<c:url value='/scripts/messagestore.js'/>"></script>
-<script type="text/javascript" src="<c:url value='/scripts/grid.js'/>"></script>
+<!--script type="text/javascript" src="<c:url value='/scripts/grid.js'/>"></script> -->
Modified: trunk/OpenWeb/Web/scripts/messagestore.js
===================================================================
--- trunk/OpenWeb/Web/scripts/messagestore.js 2009-03-24 16:06:05 UTC (rev 316)
+++ trunk/OpenWeb/Web/scripts/messagestore.js 2009-04-07 07:07:57 UTC (rev 317)
@@ -5,6 +5,7 @@
setExportToLimit(id, '');
createHiddenInputFieldsForLimit(id);
+
var x= document.getElementsByName('action');
x[0].click();
}
@@ -172,10 +173,32 @@
function overflowTooltip(object, event) {
var child = object.firstChild;
- alert(child);
+ //alert(child);
// need to add 4 because of the space the ellipse takes up
if (object.offsetWidth < child.offsetWidth + 4) {
domTT_activate(object, event, 'content', child.cloneNode(true), 'styleClass', 'domTTClassic', 'closeAction', 'destroy');
}
}
+// No longer used as this functionality is built into extremecomponents
+function highlightTableRows(tableId) {
+ var previousClass = null;
+ var table = document.getElementById(tableId);
+ var tbody = table.getElementsByTagName("tbody")[0];
+ if (tbody == null) {
+ var rows = table.getElementsByTagName("tr");
+ } else {
+ var rows = tbody.getElementsByTagName("tr");
+ }
+ // add event handlers so rows light up
+ for (i=0; i < rows.length; i++) {
+ rows[i].onmouseover = function() { previousClass=this.className;this.className+=' highlight' };
+ rows[i].onmouseout = function() { this.className=previousClass };
+ }
+}
+
+// set the value of an input
+function setInput(inputId, value) {
+ var input = document.getElementById(inputId);
+ input.value = value;
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <we...@us...> - 2009-03-24 16:06:17
|
Revision: 316
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=316&view=rev
Author: wenzhi
Date: 2009-03-24 16:06:05 +0000 (Tue, 24 Mar 2009)
Log Message:
-----------
Added OpenPIXPDQ website documentation for SourceForge
Added Paths:
-----------
trunk/Resources/Documents/website/
trunk/Resources/Documents/website/IHE Integration Statement.pdf
trunk/Resources/Documents/website/IHEIS.html
trunk/Resources/Documents/website/css/
trunk/Resources/Documents/website/css/base.css
trunk/Resources/Documents/website/css/print.css
trunk/Resources/Documents/website/css/theme.css
trunk/Resources/Documents/website/images/
trunk/Resources/Documents/website/images/Thumbs.db
trunk/Resources/Documents/website/images/clip_image002.jpg
trunk/Resources/Documents/website/images/image002.jpg
trunk/Resources/Documents/website/images/image004.gif
trunk/Resources/Documents/website/images/image004.jpg
trunk/Resources/Documents/website/images/image006.jpg
trunk/Resources/Documents/website/images/image008.jpg
trunk/Resources/Documents/website/images/image010.jpg
trunk/Resources/Documents/website/index.html
trunk/Resources/Documents/website/javadoc/
trunk/Resources/Documents/website/javadoc/allclasses-frame.html
trunk/Resources/Documents/website/javadoc/allclasses-noframe.html
trunk/Resources/Documents/website/javadoc/constant-values.html
trunk/Resources/Documents/website/javadoc/deprecated-list.html
trunk/Resources/Documents/website/javadoc/help-doc.html
trunk/Resources/Documents/website/javadoc/index-files/
trunk/Resources/Documents/website/javadoc/index-files/index-1.html
trunk/Resources/Documents/website/javadoc/index-files/index-10.html
trunk/Resources/Documents/website/javadoc/index-files/index-11.html
trunk/Resources/Documents/website/javadoc/index-files/index-12.html
trunk/Resources/Documents/website/javadoc/index-files/index-13.html
trunk/Resources/Documents/website/javadoc/index-files/index-14.html
trunk/Resources/Documents/website/javadoc/index-files/index-15.html
trunk/Resources/Documents/website/javadoc/index-files/index-16.html
trunk/Resources/Documents/website/javadoc/index-files/index-17.html
trunk/Resources/Documents/website/javadoc/index-files/index-18.html
trunk/Resources/Documents/website/javadoc/index-files/index-19.html
trunk/Resources/Documents/website/javadoc/index-files/index-2.html
trunk/Resources/Documents/website/javadoc/index-files/index-20.html
trunk/Resources/Documents/website/javadoc/index-files/index-21.html
trunk/Resources/Documents/website/javadoc/index-files/index-22.html
trunk/Resources/Documents/website/javadoc/index-files/index-23.html
trunk/Resources/Documents/website/javadoc/index-files/index-3.html
trunk/Resources/Documents/website/javadoc/index-files/index-4.html
trunk/Resources/Documents/website/javadoc/index-files/index-5.html
trunk/Resources/Documents/website/javadoc/index-files/index-6.html
trunk/Resources/Documents/website/javadoc/index-files/index-7.html
trunk/Resources/Documents/website/javadoc/index-files/index-8.html
trunk/Resources/Documents/website/javadoc/index-files/index-9.html
trunk/Resources/Documents/website/javadoc/index.html
trunk/Resources/Documents/website/javadoc/org/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/data/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/data/DriversLicense.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/data/MessageHeader.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/data/Patient.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/data/PatientIdentifier.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/data/PersonIdentifier.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/data/PersonName.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/data/class-use/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/data/class-use/DriversLicense.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/data/class-use/MessageHeader.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/data/class-use/Patient.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/data/class-use/PatientIdentifier.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/data/class-use/PersonIdentifier.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/data/class-use/PersonName.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/data/package-frame.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/data/package-summary.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/data/package-tree.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/data/package-use.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/HL7Actor.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/IPdSupplier.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/IPdSupplierAdapter.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/IPixManager.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/IPixManagerAdapter.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/IPixUpdateNotificationRequest.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/PatientBroker.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/PdSupplierException.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/PixManagerException.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/PixPdqServer.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/PixUpdateNotifier.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/AuditObjectFactory.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/AuditTrailDescription.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/BsdMessenger.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/EventId.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/IMessageTransmitter.Severity.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/IMessageTransmitter.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/IheAuditTrail.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/Log4JMessenger.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/ParticipantObject.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/RSyslogMessenger.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/class-use/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/class-use/AuditObjectFactory.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/class-use/AuditTrailDescription.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/class-use/BsdMessenger.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/class-use/EventId.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/class-use/IMessageTransmitter.Severity.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/class-use/IMessageTransmitter.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/class-use/IheAuditTrail.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/class-use/Log4JMessenger.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/class-use/ParticipantObject.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/class-use/RSyslogMessenger.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/ActiveParticipantType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/AuditMessage.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/AuditMessageType.ActiveParticipantType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/AuditMessageType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/AuditSourceIdentificationType.AuditSourceTypeCodeType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/AuditSourceIdentificationType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/CodedValueType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/EventIdentificationType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/ObjectFactory.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/ParticipantObjectIdentificationType.ParticipantObjectIDTypeCodeType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/ParticipantObjectIdentificationType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/TypeValuePairType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/class-use/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/class-use/ActiveParticipantType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/class-use/AuditMessage.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/class-use/AuditMessageType.ActiveParticipantType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/class-use/AuditMessageType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/class-use/AuditSourceIdentificationType.AuditSourceTypeCodeType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/class-use/AuditSourceIdentificationType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/class-use/CodedValueType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/class-use/EventIdentificationType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/class-use/ObjectFactory.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/class-use/ParticipantObjectIdentificationType.ParticipantObjectIDTypeCodeType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/class-use/ParticipantObjectIdentificationType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/class-use/TypeValuePairType.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/ActiveParticipantTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/ActiveParticipantTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/AuditMessageImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/AuditMessageImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/AuditMessageTypeImpl.ActiveParticipantTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/AuditMessageTypeImpl.ActiveParticipantTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/AuditMessageTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/AuditMessageTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/AuditSourceIdentificationTypeImpl.AuditSourceTypeCodeTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/AuditSourceIdentificationTypeImpl.AuditSourceTypeCodeTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/AuditSourceIdentificationTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/AuditSourceIdentificationTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/CodedValueTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/CodedValueTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/EventIdentificationTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/EventIdentificationTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/JAXBVersion.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/ParticipantObjectIdentificationTypeImpl.ParticipantObjectIDTypeCodeTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/ParticipantObjectIdentificationTypeImpl.ParticipantObjectIDTypeCodeTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/ParticipantObjectIdentificationTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/ParticipantObjectIdentificationTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/TypeValuePairTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/TypeValuePairTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/ActiveParticipantTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/ActiveParticipantTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/AuditMessageImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/AuditMessageImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/AuditMessageTypeImpl.ActiveParticipantTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/AuditMessageTypeImpl.ActiveParticipantTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/AuditMessageTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/AuditMessageTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/AuditSourceIdentificationTypeImpl.AuditSourceTypeCodeTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/AuditSourceIdentificationTypeImpl.AuditSourceTypeCodeTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/AuditSourceIdentificationTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/AuditSourceIdentificationTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/CodedValueTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/CodedValueTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/EventIdentificationTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/EventIdentificationTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/JAXBVersion.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/ParticipantObjectIdentificationTypeImpl.ParticipantObjectIDTypeCodeTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/ParticipantObjectIdentificationTypeImpl.ParticipantObjectIDTypeCodeTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/ParticipantObjectIdentificationTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/ParticipantObjectIdentificationTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/TypeValuePairTypeImpl.Unmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/class-use/TypeValuePairTypeImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/package-frame.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/package-summary.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/package-tree.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/package-use.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/AbstractUnmarshallingEventHandlerImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/ContentHandlerAdaptor.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/DefaultJAXBContextImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/Discarder.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/ErrorHandlerAdaptor.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/GrammarInfo.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/GrammarInfoFacade.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/GrammarInfoImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/InterningUnmarshallerHandler.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/MSVValidator.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/MarshallerImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/NamespaceContext2.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/NamespaceContextImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/PrefixCallback.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/SAXMarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/SAXUnmarshallerHandler.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/SAXUnmarshallerHandlerImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/UnmarshallableObject.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/UnmarshallerImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/UnmarshallingContext.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/UnmarshallingEventHandler.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/UnmarshallingEventHandlerAdaptor.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/Util.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/ValidatableObject.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/ValidatingUnmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/ValidationContext.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/ValidatorImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/XMLSerializable.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/XMLSerializer.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/AbstractUnmarshallingEventHandlerImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/ContentHandlerAdaptor.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/DefaultJAXBContextImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/Discarder.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/ErrorHandlerAdaptor.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/GrammarInfo.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/GrammarInfoFacade.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/GrammarInfoImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/InterningUnmarshallerHandler.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/MSVValidator.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/MarshallerImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/NamespaceContext2.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/NamespaceContextImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/PrefixCallback.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/SAXMarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/SAXUnmarshallerHandler.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/SAXUnmarshallerHandlerImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/UnmarshallableObject.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/UnmarshallerImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/UnmarshallingContext.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/UnmarshallingEventHandler.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/UnmarshallingEventHandlerAdaptor.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/Util.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/ValidatableObject.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/ValidatingUnmarshaller.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/ValidationContext.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/ValidatorImpl.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/XMLSerializable.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/class-use/XMLSerializer.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/package-frame.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/package-summary.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/package-tree.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/impl/runtime/package-use.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/package-frame.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/package-summary.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/package-tree.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/jaxb/package-use.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/package-frame.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/package-summary.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/package-tree.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/audit/package-use.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/class-use/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/class-use/HL7Actor.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/class-use/IPdSupplier.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/class-use/IPdSupplierAdapter.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/class-use/IPixManager.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/class-use/IPixManagerAdapter.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/class-use/IPixUpdateNotificationRequest.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/class-use/PatientBroker.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/class-use/PdSupplierException.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/class-use/PixManagerException.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/class-use/PixPdqServer.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/class-use/PixUpdateNotifier.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/Configuration.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/ConfigurationLoader.ActorDescription.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/ConfigurationLoader.IheBrokerController.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/ConfigurationLoader.PixManagerActorDescription.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/ConfigurationLoader.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/IheActorDescription.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/IheConfigurationException.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/class-use/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/class-use/Configuration.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/class-use/ConfigurationLoader.ActorDescription.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/class-use/ConfigurationLoader.IheBrokerController.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/class-use/ConfigurationLoader.PixManagerActorDescription.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/class-use/ConfigurationLoader.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/class-use/IheActorDescription.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/class-use/IheConfigurationException.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/package-frame.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/package-summary.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/package-tree.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/configuration/package-use.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/BaseHandler.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/PdQueryHandler.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/PdSupplier.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/PixFeedHandler.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/PixFeedHandlerV25.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/PixManager.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/PixQueryHandler.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/PixUpdateNotificationRequest.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/class-use/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/class-use/BaseHandler.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/class-use/PdQueryHandler.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/class-use/PdSupplier.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/class-use/PixFeedHandler.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/class-use/PixFeedHandlerV25.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/class-use/PixManager.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/class-use/PixQueryHandler.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/class-use/PixUpdateNotificationRequest.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/HL7Channel.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/HL7Header.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/HL7Server.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/HL7Util.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/HL7v231.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/HL7v231ToBaseConvertor.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/HL7v25.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/HL7v25ToBaseConvertor.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/class-use/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/class-use/HL7Channel.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/class-use/HL7Header.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/class-use/HL7Server.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/class-use/HL7Util.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/class-use/HL7v231.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/class-use/HL7v231ToBaseConvertor.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/class-use/HL7v25.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/class-use/HL7v25ToBaseConvertor.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/package-frame.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/package-summary.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/package-tree.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/package-use.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/package-frame.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/package-summary.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/package-tree.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/impl_v2/package-use.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/log/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/log/IMesaLogger.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/log/IMessageStoreLogger.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/log/Log4jLogger.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/log/MessageStore.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/log/class-use/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/log/class-use/IMesaLogger.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/log/class-use/IMessageStoreLogger.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/log/class-use/Log4jLogger.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/log/class-use/MessageStore.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/log/package-frame.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/log/package-summary.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/log/package-tree.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/log/package-use.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/package-frame.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/package-summary.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/package-tree.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/package-use.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/pdq/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/pdq/ContinuationPointer.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/pdq/PdqQuery.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/pdq/PdqResult.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/pdq/class-use/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/pdq/class-use/ContinuationPointer.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/pdq/class-use/PdqQuery.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/pdq/class-use/PdqResult.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/pdq/package-frame.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/pdq/package-summary.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/pdq/package-tree.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/pdq/package-use.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/registry/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/registry/HL7.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/registry/class-use/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/registry/class-use/HL7.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/registry/package-frame.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/registry/package-summary.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/registry/package-tree.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/ihe/registry/package-use.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/util/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/util/AssigningAuthorityUtil.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/util/AxiomUtil.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/util/DateUtil.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/util/ExceptionUtil.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/util/class-use/
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/util/class-use/AssigningAuthorityUtil.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/util/class-use/AxiomUtil.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/util/class-use/DateUtil.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/util/class-use/ExceptionUtil.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/util/package-frame.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/util/package-summary.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/util/package-tree.html
trunk/Resources/Documents/website/javadoc/org/openhealthexchange/openpixpdq/util/package-use.html
trunk/Resources/Documents/website/javadoc/overview-frame.html
trunk/Resources/Documents/website/javadoc/overview-summary.html
trunk/Resources/Documents/website/javadoc/overview-tree.html
trunk/Resources/Documents/website/javadoc/package-list
trunk/Resources/Documents/website/javadoc/resources/
trunk/Resources/Documents/website/javadoc/resources/inherit.gif
trunk/Resources/Documents/website/javadoc/serialized-form.html
trunk/Resources/Documents/website/javadoc/stylesheet.css
trunk/Resources/Documents/website/javadoc.html
trunk/Resources/Documents/website/mesatests.html
trunk/Resources/Documents/website/messagesamples.html
trunk/Resources/Documents/website/news.html
trunk/Resources/Documents/website/overview.html
trunk/Resources/Documents/website/userdoc1.html
trunk/Resources/Documents/website/userdoc1_files/
trunk/Resources/Documents/website/userdoc1_files/filelist.xml
trunk/Resources/Documents/website/userdoc1_files/header.html
trunk/Resources/Documents/website/userdoc1_files/image001.png
trunk/Resources/Documents/website/userdoc1_files/image002.jpg
trunk/Resources/Documents/website/userdoc1_files/image003.png
trunk/Resources/Documents/website/userdoc1_files/image004.jpg
trunk/Resources/Documents/website/userdoc1_files/image005.png
trunk/Resources/Documents/website/userdoc1_files/image006.jpg
trunk/Resources/Documents/website/userdoc1_files/image007.png
trunk/Resources/Documents/website/userdoc1_files/image008.jpg
trunk/Resources/Documents/website/userdoc1_files/image009.png
trunk/Resources/Documents/website/userdoc1_files/image010.jpg
trunk/Resources/Documents/website/userdoc1_files/image011.png
Added: trunk/Resources/Documents/website/IHE Integration Statement.pdf
===================================================================
(Binary files differ)
Property changes on: trunk/Resources/Documents/website/IHE Integration Statement.pdf
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/Resources/Documents/website/IHEIS.html
===================================================================
--- trunk/Resources/Documents/website/IHEIS.html (rev 0)
+++ trunk/Resources/Documents/website/IHEIS.html 2009-03-24 16:06:05 UTC (rev 316)
@@ -0,0 +1,105 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html>
+ <head>
+ <title>OpenPIXPDQ</title>
+ <style type="text/css" media="all">
+ @import url("./css/base.css");
+ @import url("./css/theme.css");
+ @import url("./css/site.css");
+ </style>
+ <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+ </head>
+ <body class="composite">
+ <div id="banner">
+ <a href="" id="bannerLeft">
+ <font size="5"> OpenPIXPDQ</font>
+ </a>
+ <div class="clear">
+ <hr/>
+ </div>
+ </div>
+ <div id="breadcrumbs">
+ <div class="xright">
+ <a href="http://www.ihe.net/Technical_Framework/index.cfm#IT" target="_blank">IHE Profiles</a>|
+ <a href="http://misys.com/corp/OpenSource/" target="_blank">Misys OpenSource</a>
+ </div>
+ <div class="clear">
+ <hr/>
+ </div>
+ </div>
+ <div id="leftColumn">
+ <div id="navcolumn">
+ <h5>Welcome</h5>
+ <ul>
+ <li class="none">
+ <a href="index.html">Overview</strong>
+ </li>
+ <li class="none">
+ <a href="news.html">News</a>
+ </li>
+ </ul>
+ <h5>OpenPIXPDQ</h5>
+ <ul>
+ <li class="none">
+ <a href="https://sourceforge.net/project/showfiles.php?group_id=241607">Download</a>
+ </li>
+ <li class="none">
+ <a href="javadoc/index.html" >JavaDocs (API)</a>
+ </li>
+ </ul>
+ <h5>Developer Guides</h5>
+ <ul>
+ <li class="none">
+ <a href="userdoc1.html">User Manual</a>
+ </li>
+ <li class="none">
+ <a href="messagesamples.html">Message Samples</a>
+ </li>
+ <li class="none">
+ <a href="https://openhie.projects.openhealthtools.org/" target="contentBox">OpenEMPI</a>
+ </li>
+ </ul>
+ <h5>Project Info</h5>
+ <ul>
+ <li class="none">
+ <a href="https://sourceforge.net/tracker/?group_id=241607" target="OpenPIXPDQDoc">Issue Tracking</a>
+ </li>
+ <li class="none">
+ <a href="https://sourceforge.net/svn/?group_id=241607" target="OpenPIXPDQDoc">SVN Repository</a>
+ </li>
+ <li class="none">
+ <a href="https://sourceforge.net/mail/?group_id=241607" target="OpenPIXPDQDoc">Mailing Lists</a>
+ </li>
+ <li class="none">
+ <a href="https://sourceforge.net/project/memberlist.php?group_id=241607" target="OpenPIXPDQDoc">Developers</a>
+ </li>
+ </ul>
+ <h5>Project Reports</h5>
+ <ul>
+ <li class="none">
+ <a href="mesatests.html">Mesa Tests</a>
+ </li>
+ <li class="none">
+ <strong>IHE Integration Statement</strong>
+ </li>
+ </ul>
+
+ <a href="http://sourceforge.net" title="Hosted on SourceForge.net" id="poweredBy">
+ <img alt="Hosted on SourceForge.net" src="http://sflogo.sourceforge.net/sflogo.php?group_id=38899&type=1" />
+ </a>
+ <a href="http://www.misys.com/" title="powered by Misys" id="poweredBy">
+ <img alt="powered by Misys" src="images/clip_image002.jpg" />
+ </a>
+ </div>
+ </div>
+ <div id="bodyColumn">
+ <div id="contentBox">
+ <object data="IHE Integration Statement.pdf" type="application/pdf" width="100%" height="500">
+alt : <a href="IHE Integration Statement.pdf">test.pdf</a>
+</object>
+ </div>
+ </div>
+</body>
+</html>
+
Added: trunk/Resources/Documents/website/css/base.css
===================================================================
--- trunk/Resources/Documents/website/css/base.css (rev 0)
+++ trunk/Resources/Documents/website/css/base.css 2009-03-24 16:06:05 UTC (rev 316)
@@ -0,0 +1,151 @@
+
+body {
+margin:0;
+padding:0;
+}
+img {
+border:medium none;
+}
+table {
+margin-left:-2px;
+margin-right:-2px;
+padding:0;
+width:100%;
+}
+acronym {
+border-bottom:1px dotted #FFEEBB;
+cursor:help;
+}
+table.bodyTable th, table.bodyTable td {
+padding:2px 4px;
+vertical-align:top;
+}
+div.clear {
+clear:both;
+visibility:hidden;
+}
+div.clear hr {
+display:none;
+}
+#bannerLeft, #bannerRight {
+font-size:xx-large;
+font-weight:bold;
+}
+#bannerLeft img, #bannerRight img {
+margin:0;
+}
+.xleft, #bannerLeft img {
+float:left;
+}
+.xright, #bannerRight img {
+float:right;
+}
+#banner {
+padding:0;
+}
+#banner img {
+border:medium none;
+}
+#breadcrumbs {
+padding:3px 10px;
+}
+#leftColumn {
+float:left;
+overflow:auto;
+width:185px;
+}
+#bodyColumn {
+margin-left:197px;
+margin-right:1.5em;
+}
+#legend {
+padding:8px 0;
+}
+#navcolumn {
+padding:8px 4px 0 8px;
+}
+#navcolumn h5 {
+font-size:small;
+margin:0;
+padding:0;
+}
+#navcolumn ul {
+font-size:small;
+margin:0;
+padding:0;
+}
+#navcolumn li {
+background-image:none;
+background-position:0 0.4em;
+background-repeat:no-repeat;
+font-size:smaller;
+line-height:1.2em;
+list-style-position:outside;
+list-style-type:none;
+padding-left:16px;
+}
+#poweredBy {
+text-align:center;
+}
+#navcolumn img {
+margin-bottom:3px;
+margin-top:10px;
+}
+#poweredBy img {
+border:1px solid black;
+display:block;
+height:30px;
+margin:20px 0 20px 17px;
+width:90px;
+
+}
+#search img {
+display:block;
+margin:0;
+}
+#search #q, #search #btnG {
+border:1px solid #999999;
+margin-bottom:10px;
+}
+#search form {
+margin:0;
+}
+#lastPublished {
+font-size:x-small;
+}
+.navSection {
+margin-bottom:2px;
+padding:8px;
+}
+.navSectionHead {
+font-size:x-small;
+font-weight:bold;
+}
+.section {
+padding:4px;
+}
+.section a{
+line-height:1.3em;
+}
+#contents li {
+ list-style-type:none;
+}
+#footer {
+font-size:x-small;
+padding:3px 10px;
+}
+#breadcrumbs {
+font-size:x-small;
+margin:0;
+}
+.source {
+margin:1em 7px;
+padding:12px;
+}
+.source pre {
+margin:0;
+padding:0;
+}
+#object {
+width:100%;
+}
Added: trunk/Resources/Documents/website/css/print.css
===================================================================
--- trunk/Resources/Documents/website/css/print.css (rev 0)
+++ trunk/Resources/Documents/website/css/print.css 2009-03-24 16:06:05 UTC (rev 316)
@@ -0,0 +1,7 @@
+#banner, #footer, #leftcol, #breadcrumbs, .docs #toc, .docs .courtesylinks, #leftColumn, #navColumn {
+display:none !important;
+}
+#bodyColumn, body.docs div.docs {
+border:medium none !important;
+margin:0 !important;
+}
Added: trunk/Resources/Documents/website/css/theme.css
===================================================================
--- trunk/Resources/Documents/website/css/theme.css (rev 0)
+++ trunk/Resources/Documents/website/css/theme.css 2009-03-24 16:06:05 UTC (rev 316)
@@ -0,0 +1,111 @@
+body {
+padding:0 0 10px;
+}
+body, td, select, input, li {
+font-family:Verdana,Helvetica,Arial,sans-serif;
+font-size:13px;
+}
+code {
+font-family:Courier,monospace;
+font-size:13px;
+}
+a {
+text-decoration:none;
+}
+a:link {
+color:#3366AA;
+}
+a:visited {
+color:#4477AA;
+}
+a:active, a:hover {
+color:#6699CC;
+}
+h2 {
+background-color:#DDDDDD;
+border:1px solid #999999;
+color:#990000;
+font-size:x-large;
+font-weight:900;
+padding:4px 4px 4px 6px;
+}
+h3 {
+background-color:#EEEEEE;
+border:1px solid #AAAAAA;
+color:#990000;
+font-size:medium;
+font-weight:900;
+padding:4px 4px 4px 6px;
+}
+h4 {
+background-color:#FFFFFF;
+border:1px solid #BBBBBB;
+color:#990000;
+font-size:large;
+font-weight:normal;
+padding:4px 4px 4px 6px;
+}
+h5 {
+color:#990000;
+padding:2px 2px 2px 2px;
+}
+p {
+font-size:small;
+line-height:1.3em;
+padding-left:20px;
+}
+
+#breadcrumbs {
+background-color:#CCCCCC;
+border-bottom:1px solid #AAAAAA;
+border-top:0px solid #AAAAAA;
+}
+#leftColumn {
+background-color:#EEEEEE;
+border:1px solid #999999;
+margin:10px 0 0 5px;
+}
+#navcolumn h5 {
+border-bottom:1px solid #AAAAAA;
+color:#000000;
+font-size:smaller;
+padding-top:2px;
+}
+table.bodyTable th {
+background-color:#BBBBBB;
+color:white;
+font-weight:bold;
+text-align:left;
+}
+table.bodyTable th, table.bodyTable td {
+font-size:1em;
+}
+table.bodyTable tr.a {
+background-color:#DDDDDD;
+}
+table.bodyTable tr.b {
+background-color:#EEEEEE;
+}
+.source {
+border:1px solid #999999;
+}
+dl {
+background-color:#FFFFCC;
+border:1px solid #AAAAAA;
+padding:4px 4px 4px 6px;
+}
+dt {
+color:#990000;
+}
+#organizationLogo img, #projectLogo img, #projectLogo span {
+margin:8px;
+}
+#banner {
+padding-bottom:20px;
+padding-left:10px;
+border-bottom:0px solid #FFFFFF;
+background-color:#CCCCCC;
+}
+#contentBox p{
+font-size: samller;
+}
\ No newline at end of file
Added: trunk/Resources/Documents/website/images/Thumbs.db
===================================================================
(Binary files differ)
Property changes on: trunk/Resources/Documents/website/images/Thumbs.db
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/Resources/Documents/website/images/clip_image002.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/Resources/Documents/website/images/clip_image002.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/Resources/Documents/website/images/image002.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/Resources/Documents/website/images/image002.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/Resources/Documents/website/images/image004.gif
===================================================================
(Binary files differ)
Property changes on: trunk/Resources/Documents/website/images/image004.gif
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/Resources/Documents/website/images/image004.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/Resources/Documents/website/images/image004.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/Resources/Documents/website/images/image006.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/Resources/Documents/website/images/image006.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/Resources/Documents/website/images/image008.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/Resources/Documents/website/images/image008.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/Resources/Documents/website/images/image010.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/Resources/Documents/website/images/image010.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/Resources/Documents/website/index.html
===================================================================
--- trunk/Resources/Documents/website/index.html (rev 0)
+++ trunk/Resources/Documents/website/index.html 2009-03-24 16:06:05 UTC (rev 316)
@@ -0,0 +1,151 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html>
+ <head>
+ <title>OpenPIXPDQ</title>
+ <style type="text/css" media="all">
+ @import url("./css/base.css");
+ @import url("./css/theme.css");
+ @import url("./css/site.css");
+ </style>
+ <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+ </head>
+ <body class="composite">
+ <div id="banner">
+ <a href="" id="bannerLeft">
+ <font size="5"> OpenPIXPDQ</font>
+ </a>
+ <div class="clear">
+ <hr/>
+ </div>
+ </div>
+ <div id="breadcrumbs">
+ <div class="xright">
+ <a href="http://www.ihe.net/Technical_Framework/index.cfm#IT" target="_blank">IHE Profiles</a>|
+ <a href="http://misys.com/corp/OpenSource/" target="_blank">Misys OpenSource</a>
+ </div>
+ <div class="clear">
+ <hr/>
+ </div>
+ </div>
+ <div id="leftColumn">
+ <div id="navcolumn">
+ <h5>Welcome</h5>
+ <ul>
+ <li class="none">
+ <strong>Overview</strong>
+ </li>
+ <li class="none">
+ <a href="news.html">News</a>
+ </li>
+ </ul>
+ <h5>OpenPIXPDQ</h5>
+ <ul>
+ <li class="none">
+ <a href="https://sourceforge.net/project/showfiles.php?group_id=241607">Download</a>
+ </li>
+ <li class="none">
+ <a href="javadoc/index.html">JavaDocs (API)</a>
+ </li>
+ </ul>
+ <h5>Developer Guides</h5>
+ <ul>
+ <li class="none">
+ <a href="userdoc1.html">User Manual</a>
+ </li>
+ <li class="none">
+ <a href="messagesamples.html">Message Samples</a>
+ </li>
+ <li class="none">
+ <a href="https://openhie.projects.openhealthtools.org...
[truncated message content] |
|
From: <we...@us...> - 2009-03-24 14:58:14
|
Revision: 315
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=315&view=rev
Author: wenzhi
Date: 2009-03-24 14:57:46 +0000 (Tue, 24 Mar 2009)
Log Message:
-----------
changed format.
Modified Paths:
--------------
trunk/README.txt
Modified: trunk/README.txt
===================================================================
--- trunk/README.txt 2009-03-24 11:43:06 UTC (rev 314)
+++ trunk/README.txt 2009-03-24 14:57:46 UTC (rev 315)
@@ -15,57 +15,57 @@
Included in this release are the following:
- README.txt This file
- LICENSE.txt Software license
- NOTICE.txt Copyright and contribution Notice
+ README.txt This file
+ LICENSE.txt Software license
+ NOTICE.txt Copyright and contribution Notice
openempi/openempi.ear
OpenEMPI ear file, can be run in a JEE container
openempi/conf/ICS.properties
The main OpenEMPI configuration file
openempi/conf/IcsSql.xml
- The SQL filed used by OpenEMPI
+ The SQL filed used by OpenEMPI
openempi/conf/IcsLog4j.xml
The Log4j properties for OpenEMPI
openempi/conf/ICS_schema_create-mysql.sql
- The OpenEMPI database creation script for MySQL
+ The OpenEMPI database creation script for MySQL
openempi/conf/ICS_schema_create-postgres.sql
- The OpenEMPI database creation script for Postgresql
- openpixpdq-1.0/openpixpdq.war
- OpenPIXPDQ war file. PIX/PDQ server can be run
- in a web container
- openpixpdq-1.0/openpixpdq-1.0.jar
- Core OpenPIXPDQ jar file. PIX/PDQ server can be run
- in a stand alone mode outside web container
- openpixpdq-1.0/openempi-adapter-1.0.jar
- The OpenPIXPDQ adapter for OpenEMPI.
- openpixpdq-1.0/conf/log4j.xml
- The log4j properties for OpenPIXPDQ
- openpixpdq-1.0/conf/mesatests/actors
- This folder contains PIX/PDQ actors configuration
- XML files for mesa tests and Connectathon. It can
- also be used as an example for your configuration.
- openpixpdq-1.0/conf/mesatests/actors/certs
- This folder contains the TLS key and truststore files
- openpixpdq-1.0/conf/tests/actors
- This folder contains actor configuration for junit tests.
- openpixpdq-1.0/conf/tests/actors/certs
- Contains TLS key and truststore files, but not currently used
- openpixpdq-1.0/data/ConnectathonTestPatients.txt
- The data file for bulk loading patients for Connectathon
- 2009. An integrated test (PixLoadConnectathonPatientTest)
- will load these patients into your database.
- openpixpdq-1.0/lib
- All the libs needed for running stand alone PIX/PDQ server
- openpixpdq-1.0/licenses
- All the licenses file for the third part libraries distributed
+ The OpenEMPI database creation script for Postgresql
+ openpixpdq-1.0/openpixpdq.war
+ OpenPIXPDQ war file. PIX/PDQ server can be run
+ in a web container
+ openpixpdq-1.0/openpixpdq-1.0.jar
+ Core OpenPIXPDQ jar file. PIX/PDQ server can be run
+ in a stand alone mode outside web container
+ openpixpdq-1.0/openempi-adapter-1.0.jar
+ The OpenPIXPDQ adapter for OpenEMPI.
+ openpixpdq-1.0/conf/log4j.xml
+ The log4j properties for OpenPIXPDQ
+ openpixpdq-1.0/conf/mesatests/actors
+ This folder contains PIX/PDQ actors configuration
+ XML files for mesa tests and Connectathon. It can
+ also be used as an example for your configuration.
+ openpixpdq-1.0/conf/mesatests/actors/certs
+ This folder contains the TLS key and truststore files
+ openpixpdq-1.0/conf/tests/actors
+ This folder contains actor configuration for junit tests.
+ openpixpdq-1.0/conf/tests/actors/certs
+ Contains TLS key and truststore files, but not currently used
+ openpixpdq-1.0/data/ConnectathonTestPatients.txt
+ The data file for bulk loading patients for Connectathon
+ 2009. An integrated test (PixLoadConnectathonPatientTest)
+ will load these patients into your database.
+ openpixpdq-1.0/lib
+ All the libs needed for running stand alone PIX/PDQ server
+ openpixpdq-1.0/licenses
+ All the licenses file for the third part libraries distributed
Requirements
------------
- JDK Version
- OpenPIXPDQ supports JDK 1.6 or higher. Note that we have
- currently tested this implementation only with JDK 1.6.
+ JDK Version
+ OpenPIXPDQ supports JDK 1.6 or higher. Note that we have
+ currently tested this implementation only with JDK 1.6.
JBoss
OpenEMPI is a JEE application, so it requires a JEE container. Our
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <an...@us...> - 2009-03-24 11:43:18
|
Revision: 314
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=314&view=rev
Author: anil114
Date: 2009-03-24 11:43:06 +0000 (Tue, 24 Mar 2009)
Log Message:
-----------
Added build scripts to create source distribution(zip, tar)
Modified Paths:
--------------
trunk/build.xml
Modified: trunk/build.xml
===================================================================
--- trunk/build.xml 2009-03-22 18:40:40 UTC (rev 313)
+++ trunk/build.xml 2009-03-24 11:43:06 UTC (rev 314)
@@ -6,6 +6,8 @@
<property name="final.name" value="${project}-${version}" />
<property name="zipfilename" value="${final.name}.zip"/>
<property name="tarfilename" value="${final.name}.tar.gz"/>
+ <property name="source.zipfilename" value="${final.name}-source.zip"/>
+ <property name="source.tarfilename" value="${final.name}-source.tar.gz"/>
<property name="jarname" value="openpixpdq.jar"/>
<property name="earname" value="openempi.ear"/>
<property name="openpixpdq.dir" value="OpenPIXPDQ"/>
@@ -19,6 +21,7 @@
<property name="build.openpixpdq.data.dir" value="${build.openpixpdq.dir}/data" />
<property name="build.openpixpdq.lib.dir" value="${build.openpixpdq.dir}/lib" />
<property name="build.openpixpdq.licenses.dir" value="${build.openpixpdq.dir}/licenses" />
+ <property name="buildsorce" location="temp"/>
<target name="build" depends="clean" description="build the software">
<!-- make directories -->
@@ -51,7 +54,7 @@
<include name="**/*.*" />
</fileset>
</copy>
-
+
<!-- copy openpixpdq library to build lib directory-->
<copy todir="${build.openpixpdq.lib.dir}">
<fileset dir="${openpixpdq.dir}/lib">
@@ -99,8 +102,54 @@
</copy>
</target>
+ <target name="build.source">
+ <!-- make directories -->
+ <mkdir dir="${buildsorce}/${openpixpdq.dir}" />
+ <mkdir dir="${buildsorce}/${openweb.dir}" />
+ <mkdir dir="${buildsorce}/${adapter.dir}" />
+ <!-- copy openpixpdq src,lib,conf,licences and build files to build directory-->
+ <copy todir="${buildsorce}/${openpixpdq.dir}">
+ <fileset dir="${openpixpdq.dir}">
+ <include name="build.*" />
+ <include name="src/" />
+ <include name="lib/" />
+ <include name="conf/" />
+ <include name="licenses/" />
+ </fileset>
+ </copy>
+
+ <!-- copy openweb src,web,licences and build files to build directory-->
+ <copy todir="${buildsorce}/OpenWeb">
+ <fileset dir="${openweb.dir}">
+ <include name="build.*" />
+ <include name="src/" />
+ <include name="Web/" />
+ <include name="licenses/" />
+ </fileset>
+ </copy>
+
+ <!-- copy openempiadapter src,lib,licences and build files to build directory-->
+ <copy todir="${buildsorce}/${adapter.dir}">
+ <fileset dir="${adapter.dir}">
+ <include name="build.*" />
+ <include name="src/" />
+ <include name="lib/" />
+ <include name="licenses/" />
+ </fileset>
+ </copy>
+
+ <!-- copy README, LICENSE, NOTICE files to build directory-->
+ <copy todir="${buildsorce}">
+ <fileset dir=".">
+ <include name="*.txt" />
+ </fileset>
+ </copy>
+
+ </target>
+
+
<!-- Packages the openpixpdq project in zip format -->
<target name="package-openpixpdq-zip" depends="build">
<zip zipfile="${zipfilename}" >
@@ -119,17 +168,41 @@
</tar>
</target>
+ <!-- Packages the openpixpdq project source in zip format -->
+ <target name="package-openpixpdq-source-zip" depends="build.source">
+ <zip zipfile="${source.zipfilename}">
+ <zipfileset dir="${buildsorce}">
+ <include name="**/*" />
+ </zipfileset>
+ </zip>
+ </target>
+
+ <!-- Packages the openpixpdq project source in tar format -->
+ <target name="package-openpixpdq-source-tgz" depends="build.source">
+ <zip zipfile="${source.tarfilename}">
+ <zipfileset dir="${buildsorce}">
+ <include name="**/*"/>
+ </zipfileset>
+ </zip>
+ </target>
<!-- clean up the build folder -->
<target name="clean" description="clean up" >
<delete dir="${build}"/>
+ <delete dir="${buildsorce}"/>
</target>
<target name="openpixpdq-zip-tar">
+
<antcall target="package-openpixpdq-zip">
</antcall>
<antcall target="package-openpixpdq-tgz">
</antcall>
- <!--antcall target="clean">
- </antcall-->
+ <antcall target="package-openpixpdq-source-zip">
+ </antcall>
+ <antcall target="package-openpixpdq-source-tgz">
+ </antcall>
+ <antcall target="clean">
+ </antcall>
+
</target>
</project>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <we...@us...> - 2009-03-22 18:40:57
|
Revision: 313
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=313&view=rev
Author: wenzhi
Date: 2009-03-22 18:40:40 +0000 (Sun, 22 Mar 2009)
Log Message:
-----------
Minor message change.
Modified Paths:
--------------
trunk/OpenPIXPDQ/src/java/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/HL7Server.java
Modified: trunk/OpenPIXPDQ/src/java/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/HL7Server.java
===================================================================
--- trunk/OpenPIXPDQ/src/java/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/HL7Server.java 2009-03-22 18:37:51 UTC (rev 312)
+++ trunk/OpenPIXPDQ/src/java/org/openhealthexchange/openpixpdq/ihe/impl_v2/hl7/HL7Server.java 2009-03-22 18:40:40 UTC (rev 313)
@@ -61,7 +61,7 @@
IServerConnection serverConn = ConnectionFactory.getServerConnection(connection);
ServerSocket ss = serverConn.getServerSocket();
ss.setSoTimeout(10000);
- log.info(connection.getDescription() + " running on port " + ss.getLocalPort());
+ log.info(connection.getDescription() + " is running on port " + ss.getLocalPort());
while (keepRunning()) {
try {
Socket newSocket = ss.accept();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <we...@us...> - 2009-03-22 18:38:03
|
Revision: 312
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=312&view=rev
Author: wenzhi
Date: 2009-03-22 18:37:51 +0000 (Sun, 22 Mar 2009)
Log Message:
-----------
Updated license files for oscache and proxool.
Modified Paths:
--------------
trunk/OpenWeb/licenses/oscache-LICENSE.txt
trunk/OpenWeb/licenses/proxool-LICENSE.txt
Modified: trunk/OpenWeb/licenses/oscache-LICENSE.txt
===================================================================
--- trunk/OpenWeb/licenses/oscache-LICENSE.txt 2009-03-21 14:59:19 UTC (rev 311)
+++ trunk/OpenWeb/licenses/oscache-LICENSE.txt 2009-03-22 18:37:51 UTC (rev 312)
@@ -1,202 +1,47 @@
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright [yyyy] [name of copyright owner]
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-
+The OpenSymphony Software License, Version 1.1
+
+ (this license is derived and fully compatible with the Apache Software
+ License - see http://www.apache.org/LICENSE.txt)
+
+ Copyright (c) 2001-2004 The OpenSymphony Group. All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in
+ the documentation and/or other materials provided with the
+ distribution.
+
+ 3. The end-user documentation included with the redistribution,
+ if any, must include the following acknowledgment:
+ "This product includes software developed by the
+ OpenSymphony Group (http://www.opensymphony.com/)."
+ Alternately, this acknowledgment may appear in the software itself,
+ if and wherever such third-party acknowledgments normally appear.
+
+ 4. The names "OpenSymphony" and "The OpenSymphony Group"
+ must not be used to endorse or promote products derived from this
+ software without prior written permission. For written
+ permission, please contact li...@op... .
+
+ 5. Products derived from this software may not be called "OpenSymphony"
+ or "OSCache", nor may "OpenSymphony" or "OSCache" appear in their
+ name, without prior written permission of the OpenSymphony Group.
+
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+ WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
+ ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+ USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+ OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ SUCH DAMAGE.
Modified: trunk/OpenWeb/licenses/proxool-LICENSE.txt
===================================================================
--- trunk/OpenWeb/licenses/proxool-LICENSE.txt 2009-03-21 14:59:19 UTC (rev 311)
+++ trunk/OpenWeb/licenses/proxool-LICENSE.txt 2009-03-22 18:37:51 UTC (rev 312)
@@ -1,202 +1,49 @@
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright [yyyy] [name of copyright owner]
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-
+Copyright (c) 2002-2003 Proxool. All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in
+ the documentation and/or other materials provided with the
+ distribution.
+
+ 3. All advertising materials mentioning features or use of this
+ software must display the following acknowledgment:
+ "This product includes software developed by the Proxool
+ Project (http://proxool.sourceforge.net/)."
+
+ 4. The name "Proxool" must not be used to endorse or promote products
+ derived from this software without prior written permission. For
+ written permission, please contact bi...@lo....
+
+ 5. Products derived from this software may not be called "Proxool"
+ nor may "Proxool" appear in their names without prior written
+ permission of the Proxool Project.
+
+ 6. Redistributions of any form whatsoever must retain the following
+ acknowledgment:
+ "This product includes software developed by the Proxool Project
+ (http://proxool.sourceforge.net/)."
+
+ THIS SOFTWARE IS PROVIDED BY THE PROXOOL PROJECT ``AS IS'' AND ANY
+ EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PROXOOL PROJECT OR
+ ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+ OF THE POSSIBILITY OF SUCH DAMAGE.
+ ====================================================================
+
+ This software consists of voluntary contributions made by many
+ individuals on behalf of the Proxool Project. For more information
+ on the Proxool Project, please see .
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <an...@us...> - 2009-03-21 14:59:28
|
Revision: 311
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=311&view=rev
Author: anil114
Date: 2009-03-21 14:59:19 +0000 (Sat, 21 Mar 2009)
Log Message:
-----------
Added DB clean scripts,
Added new target to Load patients first,
Updated to exclude files
Modified Paths:
--------------
trunk/OpenPIXPDQ/build.xml
Added Paths:
-----------
trunk/OpenPIXPDQ/conf/DBCleanup.sql
Modified: trunk/OpenPIXPDQ/build.xml
===================================================================
--- trunk/OpenPIXPDQ/build.xml 2009-03-20 20:47:20 UTC (rev 310)
+++ trunk/OpenPIXPDQ/build.xml 2009-03-21 14:59:19 UTC (rev 311)
@@ -3,7 +3,7 @@
<property file="build.properties" />
<property name="build.root" location="temp" />
<property name="build.src" location="${build.root}/src" />
- <property name="build.conf" location="${build.root}/config" />
+ <property name="build.conf" location="${build.root}/conf" />
<property name="dist.root" location="dist" />
<property name="lib.src" location="lib" />
<property name="src.dir" location="src" />
@@ -29,7 +29,7 @@
</fileset>
<fileset dir="${openempi.adapter.lib.dir}">
<include name="**/*.jar" />
- <exclude name="openpixpdq*.jar"/>
+ <!--exclude name="openpixpdq*.jar"/-->
<exclude name="braid-base*.jar"/>
</fileset>
</path>
@@ -93,21 +93,35 @@
</javadoc>
</target>
- <target name="test" depends="db.clean,-init,setClasspath,debug">
+ <target name="test.setup" depends="db.clean,-init,setClasspath,debug">
<mkdir dir="reports" />
-
<junit printsummary="yes" haltonfailure="no">
<classpath>
<pathelement path="${classpath}" />
</classpath>
<formatter type="plain" />
- <test name="org.openhealthexchange.openpixpdq.integrationtests.PdqLoadPatientTest" todir="reports" />
+ <test name="org.openhealthexchange.openpixpdq.integrationtests.PdqLoadPatientTest" todir="reports" haltonfailure="no">
+ </test>
+ </junit>
+ </target>
+
+ <target name="test" depends="test.setup">
+
+ <junit printsummary="yes" haltonfailure="no">
+ <classpath>
+ <pathelement path="${classpath}" />
+ </classpath>
+
+ <formatter type="plain" />
<batchtest fork="yes" todir="reports">
<fileset dir="${build.root}">
<include name="**/*Test*.java" />
- <exclude name="PdqLoadPatientTest.java" />
- <exclude name="PixLoadConnectathonPatientTest.java" />
+ <exclude name="**/TestLogContext.java" />
+ <exclude name="**/AbstractEJBTestCase.java" />
+ <exclude name="**/AbstractPixPdqTestCase.java" />
+ <exclude name="**/PdqLoadPatientTest.java" />
+ <exclude name="**/PixLoadConnectathonPatientTest.java" />
</fileset>
</batchtest>
</junit>
Added: trunk/OpenPIXPDQ/conf/DBCleanup.sql
===================================================================
--- trunk/OpenPIXPDQ/conf/DBCleanup.sql (rev 0)
+++ trunk/OpenPIXPDQ/conf/DBCleanup.sql 2009-03-21 14:59:19 UTC (rev 311)
@@ -0,0 +1,3 @@
+
+DELETE FROM person WHERE person_id IN
+(SELECT dh.person_id FROM document_header dh INNER JOIN person_info pi USING(dh_id));
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <we...@us...> - 2009-03-20 20:47:30
|
Revision: 310
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=310&view=rev
Author: wenzhi
Date: 2009-03-20 20:47:20 +0000 (Fri, 20 Mar 2009)
Log Message:
-----------
Updated classpath
Modified Paths:
--------------
trunk/OpenEmpiAdapter/.classpath
Modified: trunk/OpenEmpiAdapter/.classpath
===================================================================
--- trunk/OpenEmpiAdapter/.classpath 2009-03-20 20:43:35 UTC (rev 309)
+++ trunk/OpenEmpiAdapter/.classpath 2009-03-20 20:47:20 UTC (rev 310)
@@ -6,7 +6,7 @@
<classpathentry kind="lib" path="lib/jbossall-client.jar"/>
<classpathentry kind="lib" path="lib/log4j-1.2.12.jar"/>
<classpathentry kind="lib" path="lib/openempi-ejb.jar" sourcepath="C:/projects/CDE/openempi/src/java"/>
- <classpathentry kind="lib" path="lib/openpixpdq.jar"/>
<classpathentry kind="lib" path="lib/braid-base-1.2.jar"/>
+ <classpathentry kind="lib" path="lib/openpixpdq-1.0.jar"/>
<classpathentry kind="output" path="build/classes"/>
</classpath>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <we...@us...> - 2009-03-20 20:43:40
|
Revision: 309
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=309&view=rev
Author: wenzhi
Date: 2009-03-20 20:43:35 +0000 (Fri, 20 Mar 2009)
Log Message:
-----------
Fixed the contents in the zip and tar.gz
Modified Paths:
--------------
trunk/build.xml
Modified: trunk/build.xml
===================================================================
--- trunk/build.xml 2009-03-20 20:02:39 UTC (rev 308)
+++ trunk/build.xml 2009-03-20 20:43:35 UTC (rev 309)
@@ -20,7 +20,7 @@
<property name="build.openpixpdq.lib.dir" value="${build.openpixpdq.dir}/lib" />
<property name="build.openpixpdq.licenses.dir" value="${build.openpixpdq.dir}/licenses" />
- <target name="build" description="build the software">
+ <target name="build" depends="clean" description="build the software">
<!-- make directories -->
<mkdir dir="${build.openempi.dir}"/>
<mkdir dir="${build.openpixpdq.dir}"/>
@@ -105,12 +105,7 @@
<target name="package-openpixpdq-zip" depends="build">
<zip zipfile="${zipfilename}" >
<zipfileset dir="${build}">
- <include name="lib/**"/>
- <include name="licenses/**"/>
- <include name="conf/**"/>
- <include name="**/*.jar"/>
- <include name="**/*.war"/>
- <include name="LICENSE"/>
+ <include name="**/*"/>
</zipfileset>
</zip>
</target>
@@ -119,12 +114,7 @@
<target name="package-openpixpdq-tgz">
<tar longfile="gnu" compression="gzip" tarfile="${tarfilename}">
<tarfileset dir="${build}">
- <include name="lib/**"/>
- <include name="licenses/**"/>
- <include name="conf/**"/>
- <include name="**/*.jar"/>
- <include name="**/*.war"/>
- <include name="LICENSE"/>
+ <include name="**/*"/>
</tarfileset>
</tar>
</target>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <we...@us...> - 2009-03-20 20:02:57
|
Revision: 308
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=308&view=rev
Author: wenzhi
Date: 2009-03-20 20:02:39 +0000 (Fri, 20 Mar 2009)
Log Message:
-----------
1. Fixed the build script to generate a distributable file
2. Added REAME.txt, NOTICE.txt etc
3. Add OpenEMPI conf files
Modified Paths:
--------------
trunk/OpenEmpiAdapter/build.properties
trunk/OpenPIXPDQ/build.properties
trunk/build.xml
Added Paths:
-----------
trunk/LICENSE.txt
trunk/NOTICE.txt
trunk/OpenEmpiAdapter/lib/openpixpdq-1.0.jar
trunk/README.txt
trunk/Resources/OpenEMPI/conf/
trunk/Resources/OpenEMPI/conf/ICS.properties
trunk/Resources/OpenEMPI/conf/ICS_schema_create-mysql.sql
trunk/Resources/OpenEMPI/conf/ICS_schema_create-postgres.sql
trunk/Resources/OpenEMPI/conf/IcsLog4j.xml
trunk/Resources/OpenEMPI/conf/IcsSql.xml
Removed Paths:
-------------
trunk/OpenEmpiAdapter/lib/openpixpdq.jar
Copied: trunk/LICENSE.txt (from rev 300, trunk/LICENSE)
===================================================================
--- trunk/LICENSE.txt (rev 0)
+++ trunk/LICENSE.txt 2009-03-20 20:02:39 UTC (rev 308)
@@ -0,0 +1,202 @@
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
Added: trunk/NOTICE.txt
===================================================================
--- trunk/NOTICE.txt (rev 0)
+++ trunk/NOTICE.txt 2009-03-20 20:02:39 UTC (rev 308)
@@ -0,0 +1,6 @@
+OpenPIXPDQ
+Copyright 2009 Misys PLC
+
+This product includes software developed by
+Misys PLC (http://www.misys.com/).
+
Modified: trunk/OpenEmpiAdapter/build.properties
===================================================================
--- trunk/OpenEmpiAdapter/build.properties 2009-03-20 19:54:42 UTC (rev 307)
+++ trunk/OpenEmpiAdapter/build.properties 2009-03-20 20:02:39 UTC (rev 308)
@@ -1,2 +1,2 @@
to.exclude=**/*.java
-jar.name=openempi-adapter.jar
+jar.name=openempi-adapter-1.0.jar
Added: trunk/OpenEmpiAdapter/lib/openpixpdq-1.0.jar
===================================================================
(Binary files differ)
Property changes on: trunk/OpenEmpiAdapter/lib/openpixpdq-1.0.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Deleted: trunk/OpenEmpiAdapter/lib/openpixpdq.jar
===================================================================
(Binary files differ)
Modified: trunk/OpenPIXPDQ/build.properties
===================================================================
--- trunk/OpenPIXPDQ/build.properties 2009-03-20 19:54:42 UTC (rev 307)
+++ trunk/OpenPIXPDQ/build.properties 2009-03-20 20:02:39 UTC (rev 308)
@@ -1,4 +1,4 @@
to.exclude=**/*.java
-jar.name=openpixpdq.jar
+jar.name=openpixpdq-1.0.jar
openempiadapter.root=../OpenEmpiAdapter
javadoc.root=../Resources/Documents/javadoc
Added: trunk/README.txt
===================================================================
--- trunk/README.txt (rev 0)
+++ trunk/README.txt 2009-03-20 20:02:39 UTC (rev 308)
@@ -0,0 +1,118 @@
+
+ O p e n P I X P D Q
+
+
+ What is it?
+ -----------
+
+ OpenPIXPDQ a server side implementation of the Patient Identifier Cross-
+ Reference (PIX) and Patient Demographic Query (PDQ) profiles specified by
+ IHE (IHE.net). The actors implemented are PIX Manager and PDQ Supplier.
+
+
+ Contents
+ --------
+
+ Included in this release are the following:
+
+ README.txt This file
+ LICENSE.txt Software license
+ NOTICE.txt Copyright and contribution Notice
+ openempi/openempi.ear
+ OpenEMPI ear file, can be run in a JEE container
+ openempi/conf/ICS.properties
+ The main OpenEMPI configuration file
+ openempi/conf/IcsSql.xml
+ The SQL filed used by OpenEMPI
+ openempi/conf/IcsLog4j.xml
+ The Log4j properties for OpenEMPI
+ openempi/conf/ICS_schema_create-mysql.sql
+ The OpenEMPI database creation script for MySQL
+ openempi/conf/ICS_schema_create-postgres.sql
+ The OpenEMPI database creation script for Postgresql
+ openpixpdq-1.0/openpixpdq.war
+ OpenPIXPDQ war file. PIX/PDQ server can be run
+ in a web container
+ openpixpdq-1.0/openpixpdq-1.0.jar
+ Core OpenPIXPDQ jar file. PIX/PDQ server can be run
+ in a stand alone mode outside web container
+ openpixpdq-1.0/openempi-adapter-1.0.jar
+ The OpenPIXPDQ adapter for OpenEMPI.
+ openpixpdq-1.0/conf/log4j.xml
+ The log4j properties for OpenPIXPDQ
+ openpixpdq-1.0/conf/mesatests/actors
+ This folder contains PIX/PDQ actors configuration
+ XML files for mesa tests and Connectathon. It can
+ also be used as an example for your configuration.
+ openpixpdq-1.0/conf/mesatests/actors/certs
+ This folder contains the TLS key and truststore files
+ openpixpdq-1.0/conf/tests/actors
+ This folder contains actor configuration for junit tests.
+ openpixpdq-1.0/conf/tests/actors/certs
+ Contains TLS key and truststore files, but not currently used
+ openpixpdq-1.0/data/ConnectathonTestPatients.txt
+ The data file for bulk loading patients for Connectathon
+ 2009. An integrated test (PixLoadConnectathonPatientTest)
+ will load these patients into your database.
+ openpixpdq-1.0/lib
+ All the libs needed for running stand alone PIX/PDQ server
+ openpixpdq-1.0/licenses
+ All the licenses file for the third part libraries distributed
+
+
+ Requirements
+ ------------
+
+ JDK Version
+ OpenPIXPDQ supports JDK 1.6 or higher. Note that we have
+ currently tested this implementation only with JDK 1.6.
+
+ JBoss
+ OpenEMPI is a JEE application, so it requires a JEE container. Our
+ tested JEE Application Server is JBoss 4.0.5GA.
+
+ Database
+ Either Postgresql or MySQL is needed. Our tested database is
+ Postgresql 8.3.
+
+
+ Installation and Configuration
+ ------------------------------
+
+ Installation and configuration guide is available on the OpenPIXPDQ Project
+ web site on Source Forge <http://openpixpdq.sourceforge.net/>.
+
+
+ Documentation
+ -------------
+
+ Documentation is available on the OpenPIXPDQ Project web site
+ on Source Forge <http://openpixpdq.sourceforge.net/>.
+
+
+ The Latest Version
+ ------------------
+
+ Details of the latest version can be found on the OpenPIXPDQ Project web
+ site on Source Forge <http://openpixpdq.sourceforge.net/>.
+
+
+ Problems
+ ---------
+
+ Our web page at http://openpixpdq.sourceforge.net/ has pointers where you can post
+ questions, report bugs or request features. You'll also find information on how to
+ subscribe to our dev list and forum.
+
+
+ Licensing
+ ---------
+
+ This software is licensed under the terms you may find in the file
+ named "LICENSE.txt" in this directory.
+
+
+ Thanks for using OpenPIXPDQ.
+
+ Misys Open Source Solutions - Healthcare
+ <http://www.misys.com/>
Added: trunk/Resources/OpenEMPI/conf/ICS.properties
===================================================================
--- trunk/Resources/OpenEMPI/conf/ICS.properties (rev 0)
+++ trunk/Resources/OpenEMPI/conf/ICS.properties 2009-03-20 20:02:39 UTC (rev 308)
@@ -0,0 +1,55 @@
+
+#
+# The jndi lookup url. Should be set to appropriate t3://host:port per env
+#
+IIOP_URL = t3://devcde:80
+
+#
+# The log4j log level: INFO, DEBUG, WARN, ERROR
+#
+LOG_LEVEL=DEBUG
+
+#
+# Turns on ICS tracing. Setting to true will produce detail tracing
+# of all ICS events in the logs/ics_trace.log file. Turning this on
+# may adversely affect performance
+#
+TRACE=false
+
+#
+# The jdni data source for the ICS database pool.
+#
+JNDI_DATASOURCE = java:/OpenempiDS
+
+#
+# Sets the sensitivity of the ICS Searching for the UI. The higher the
+# value, the better the quality of the matches returned, but generally
+# fewer will be returned. The lower the value, the lower the quality of
+# the matching but more and broader matches are returned
+#
+ICS_SEARCH_QUALITY = 0.75
+
+#
+# File containing all SQL and Database Type elements for the ICS
+#
+ICS_SQL_FILE = IcsSql.xml
+
+#
+# Location of Neural Network file
+#
+LOCA_NN_FILE = corsys.nn
+
+#
+# The size of the Person Cache which is used for id/domain/facility lookups
+#
+CACHE_SIZE=1000
+
+#
+# The age, in seconds, of an element in the cache before it is removed
+#
+CACHE_AGE_SECS=3600
+
+#
+# Comma seperated list of domains to apply EID alerting to
+#
+EID_DOMAINS=CHS
Added: trunk/Resources/OpenEMPI/conf/ICS_schema_create-mysql.sql
===================================================================
--- trunk/Resources/OpenEMPI/conf/ICS_schema_create-mysql.sql (rev 0)
+++ trunk/Resources/OpenEMPI/conf/ICS_schema_create-mysql.sql 2009-03-20 20:02:39 UTC (rev 308)
@@ -0,0 +1,507 @@
+--
+-- Create Schema Script
+-- Database Version : 9.0.1.4.0
+-- TOAD Version : 8.6.0.38
+-- DB Connect String : LCDE.DB01
+-- Schema : ICSSYS
+-- Script Created by : SYS
+-- Script Created at : 3/16/2007 2:35:52 PM
+-- Physical Location :
+-- Notes :
+--
+
+-- Object Counts:
+-- Database Links: 2
+-- Indexes: 28 Columns: 39
+-- Object Privileges: 32
+-- Sequences: 5
+-- Tables: 13 Columns: 118 Constraints: 24
+
+
+-- DROP SEQUENCE IF EXISTS DOCUMENT_HEADER_ID_SEQ;
+
+-- CREATE SEQUENCE DOCUMENT_HEADER_ID_SEQ
+-- START WITH 4759867
+-- MAXVALUE 9999999999999
+-- MINVALUE 1;
+
+-- DROP SEQUENCE IF EXISTS ICS_LOG_ID_SEQ;
+
+-- CREATE SEQUENCE ICS_LOG_ID_SEQ
+-- START WITH 2690305
+-- MAXVALUE 999999999999999
+-- MINVALUE 1;
+
+-- DROP SEQUENCE IF EXISTS PERSON_ID_SEQ;
+
+-- CREATE SEQUENCE PERSON_ID_SEQ
+-- START WITH 2469769
+-- MAXVALUE 99999999999999999
+-- MINVALUE 1;
+
+-- DROP SEQUENCE IF EXISTS PERSON_INFO_ID_SEQ;
+
+-- CREATE SEQUENCE PERSON_INFO_ID_SEQ
+-- START WITH 6427404
+-- MAXVALUE 99999999999999999
+-- MINVALUE 1;
+
+-- DROP SEQUENCE IF EXISTS PERSON_QUEUE_SEQ;
+
+-- CREATE SEQUENCE PERSON_QUEUE_SEQ
+-- START WITH 237082
+-- MAXVALUE 99999999999999999
+-- MINVALUE 1;
+
+DROP TABLE IF EXISTS PERSON_INFO;
+
+CREATE TABLE PERSON_INFO
+(
+ PERSON_INFO_ID NUMERIC NOT NULL,
+ DH_ID NUMERIC NOT NULL,
+ LNAME VARCHAR(64),
+ FNAME VARCHAR(64),
+ SECNAME VARCHAR(64),
+ SUFFIX VARCHAR(64),
+ PREFIX VARCHAR(64),
+ DEGREE VARCHAR(64),
+ NAME_TYPE_CD VARCHAR(64),
+ NAME_TYPE_REP_CD VARCHAR(64),
+ SEARCH_KEY VARCHAR(64),
+ START_DATE DATE,
+ END_DATE DATE,
+ ALIAS NUMERIC,
+ ADDRESS_1 VARCHAR(64),
+ ADDRESS_2 VARCHAR(64),
+ CITY VARCHAR(64),
+ STATE_PROV VARCHAR(64),
+ ZIP VARCHAR(64),
+ COUNTRY VARCHAR(64),
+ PARISH_CD VARCHAR(64),
+ PA_START_DT DATE,
+ PA_END_DT DATE,
+ TELECOM_USE_CD VARCHAR(64),
+ PHONE_COUNTRY_CD VARCHAR(64),
+ PHONE_AREA_CD VARCHAR(64),
+ PHONE_NUM VARCHAR(64),
+ PHONE_EXT VARCHAR(64),
+ EMAIL VARCHAR(64),
+ GENDER CHAR(1),
+ MARITAL_STATUS CHAR(1),
+ DRV_LICENSE_NUM VARCHAR(64),
+ DRV_LICENSE_ISSUING_STATE CHAR(2),
+ DRV_LICENSE_ISSUE_DATE DATE,
+ ETHNIC_GROUP_CD VARCHAR(64),
+ RELIGION_TYPE_CD VARCHAR(64),
+ RACE_CD VARCHAR(64),
+ PI_IDENTIFIER_TYPE_CD VARCHAR(64),
+ PI_EFFECTIVE_DATE DATE,
+ PI_EXPIRATION_DATE DATE,
+ PATIENT_CONSENT NUMERIC,
+ ADDRESS_TYPE_CD VARCHAR(64),
+ AA_UNIV_ID VARCHAR(64),
+ AA_UNIV_ID_TYPE_CD VARCHAR(64),
+ AA_NAMESPACE_ID VARCHAR(64),
+ AF_UNIV_ID VARCHAR(64),
+ AF_UNIV_ID_TYPE_CD VARCHAR(64),
+ AF_NAMESPACE_ID VARCHAR(64),
+ PI_IDENTIFIER VARCHAR(256),
+ SSN VARCHAR(64),
+ DOB DATE,
+ CORPORATE_ID VARCHAR(64),
+ UPDATED_CORPORATE_ID VARCHAR(64)
+);
+
+DROP TABLE IF EXISTS ETHNIC_GROUP;
+
+CREATE TABLE ETHNIC_GROUP
+(
+ ETHNIC_GROUP_CD VARCHAR(64) NOT NULL,
+ ETHNIC_GROUP_DESC VARCHAR(64)
+);
+
+DROP TABLE IF EXISTS ICS_EVENT_LOG;
+
+CREATE TABLE ICS_EVENT_LOG
+(
+ ICS_LOG_ID INTEGER NOT NULL,
+ EVENT_TYPE VARCHAR(64),
+ EVENT_DATE TIMESTAMP(6),
+ CURRENT_PERSON_ID INTEGER,
+ CURRENT_PERSON_SSN VARCHAR(64),
+ CURRENT_PERSON_DOB DATE,
+ ALT_PERSON_ID INTEGER,
+ ALT_PERSON_SSN VARCHAR(64),
+ ALT_PERSON_DOB DATE,
+ USER_ID VARCHAR(15),
+ REASON VARCHAR(2000)
+);
+
+DROP TABLE IF EXISTS ADDRESS_TYPE;
+
+CREATE TABLE ADDRESS_TYPE
+(
+ ADDRESS_TYPE_CD VARCHAR(64) NOT NULL,
+ ADDRESS_TYPE_DESC VARCHAR(64)
+);
+
+DROP TABLE IF EXISTS DOCUMENT_HEADER;
+
+CREATE TABLE DOCUMENT_HEADER
+(
+ DH_ID NUMERIC NOT NULL,
+ PERSON_ID NUMERIC,
+ MSG_DATE DATE NOT NULL,
+ MSG_CTRL_ID VARCHAR(64),
+ SEQ_NUM VARCHAR(64),
+ CONT_PTR VARCHAR(64),
+ ACK_TYPE VARCHAR(64),
+ APP_ACK_TYPE VARCHAR(64),
+ MSG_SECURITY VARCHAR(64),
+ REC_APP VARCHAR(64),
+ REC_FAC VARCHAR(64),
+ SEND_APP VARCHAR(64),
+ SEND_FAC VARCHAR(64),
+ EVENT_CD VARCHAR(64),
+ MSG_TYPE VARCHAR(64),
+ TRIGGER_EVENT VARCHAR(64),
+ MSG_STRUCTURE VARCHAR(64)
+);
+
+DROP TABLE IF EXISTS PERSON_NAME_TYPE;
+
+CREATE TABLE PERSON_NAME_TYPE
+(
+ PERSON_NAME_TYPE_CD VARCHAR(64) NOT NULL,
+ PERSON_NAME_TYPE_DESC VARCHAR(64)
+);
+
+DROP TABLE IF EXISTS PERSON_QUEUE_ELEMENT;
+
+CREATE TABLE PERSON_QUEUE_ELEMENT
+(
+ QUEUE_ID NUMERIC NOT NULL,
+ PERSON_ID NUMERIC NOT NULL
+);
+
+DROP TABLE IF EXISTS PERSON_QUEUE;
+
+CREATE TABLE PERSON_QUEUE
+(
+ QUEUE_ID NUMERIC NOT NULL,
+ DESCRIPTION VARCHAR(1000) NOT NULL,
+ USER_ID VARCHAR(15),
+ USER_DOMAIN VARCHAR(100),
+ CREATE_DATE DATE NOT NULL
+);
+
+DROP TABLE IF EXISTS PERSON;
+
+CREATE TABLE PERSON
+(
+ PERSON_ID NUMERIC NOT NULL,
+ NATIONALITY_CD VARCHAR(64),
+ NAMESEARCHKEY VARCHAR(64),
+ PRIMARYLANGUAGE_CD VARCHAR(64),
+ EXPIRED NUMERIC,
+ ISPROVIDER NUMERIC,
+ MAIDEN_LNAME VARCHAR(64),
+ MAIDEN_FNAME VARCHAR(64),
+ MAIDEN_SECNAME VARCHAR(64),
+ MAIDEN_SUFFIX VARCHAR(64),
+ MAIDEN_PREFIX VARCHAR(64),
+ MAIDEN_DEGREE VARCHAR(64),
+ MAIDEN_NAME_TYPE_CD VARCHAR(64),
+ MAIDEN_NAME_TYPE_REP_CD VARCHAR(64),
+ MAIDEN_SEARCH_KEY VARCHAR(64),
+ BIRTHPLACE VARCHAR(64)
+);
+
+DROP TABLE IF EXISTS LANGUAGE;
+
+CREATE TABLE LANGUAGE
+(
+ LANGUAGE_CD VARCHAR(64) NOT NULL,
+ LANGUAGE_DESC VARCHAR(64)
+);
+
+DROP TABLE IF EXISTS NATIONALITY;
+
+CREATE TABLE NATIONALITY
+(
+ NATIONALITY_CD VARCHAR(64) NOT NULL,
+ NATIONALITY_DESC VARCHAR(64)
+);
+
+DROP TABLE IF EXISTS RACE;
+
+CREATE TABLE RACE
+(
+ RACE_CD VARCHAR(64) NOT NULL,
+ RACE_DESC VARCHAR(64)
+);
+
+DROP TABLE IF EXISTS RELIGION_TYPE;
+
+CREATE TABLE RELIGION_TYPE
+(
+ RELIGION_TYPE_CD VARCHAR(64) NOT NULL,
+ RELIGION_TYPE_DESC VARCHAR(64)
+);
+
+
+CREATE INDEX DH_DHID_PID ON DOCUMENT_HEADER
+(DH_ID, PERSON_ID);
+
+
+CREATE INDEX DH_PID_DHID ON DOCUMENT_HEADER
+(PERSON_ID, DH_ID);
+
+
+CREATE INDEX IEL_ILI_ET_ED ON ICS_EVENT_LOG
+(ICS_LOG_ID, EVENT_TYPE, EVENT_DATE);
+
+
+CREATE INDEX PI_ATC ON PERSON_INFO
+(ADDRESS_TYPE_CD);
+
+
+CREATE INDEX PI_DHID_PIID ON PERSON_INFO
+(DH_ID, PI_IDENTIFIER);
+
+
+CREATE INDEX PI_EGC ON PERSON_INFO
+(ETHNIC_GROUP_CD);
+
+
+CREATE INDEX PI_LN_FN ON PERSON_INFO
+(LNAME, FNAME);
+
+CREATE INDEX PI_NTC ON PERSON_INFO
+(NAME_TYPE_CD);
+
+CREATE INDEX PI_PIID_SK ON PERSON_INFO
+(PI_IDENTIFIER, SEARCH_KEY);
+
+CREATE INDEX PI_RC ON PERSON_INFO
+(RACE_CD);
+
+CREATE INDEX PI_RTC ON PERSON_INFO
+(RELIGION_TYPE_CD);
+
+CREATE INDEX PI_SK_DHID ON PERSON_INFO
+(SEARCH_KEY, DH_ID);
+
+CREATE INDEX PI_SSN_SK_DHID ON PERSON_INFO
+(SSN, SEARCH_KEY, DH_ID);
+
+CREATE INDEX PI_UPPPI_DHID ON PERSON_INFO
+(PI_IDENTIFIER, DH_ID);
+
+CREATE UNIQUE INDEX PQ_QID_UQ ON PERSON_QUEUE
+(QUEUE_ID);
+
+CREATE INDEX P_NC ON PERSON
+(NATIONALITY_CD);
+
+CREATE INDEX P_PLC ON PERSON
+(PRIMARYLANGUAGE_CD);
+
+ALTER TABLE ADDRESS_TYPE ADD
+ PRIMARY KEY
+ (ADDRESS_TYPE_CD);
+
+ALTER TABLE DOCUMENT_HEADER ADD
+ PRIMARY KEY
+ (DH_ID);
+
+ALTER TABLE ETHNIC_GROUP ADD
+ PRIMARY KEY
+ (ETHNIC_GROUP_CD);
+
+ALTER TABLE ICS_EVENT_LOG ADD
+ PRIMARY KEY
+ (ICS_LOG_ID);
+
+ALTER TABLE LANGUAGE ADD
+ PRIMARY KEY
+ (LANGUAGE_CD);
+
+ALTER TABLE NATIONALITY ADD
+ PRIMARY KEY
+ (NATIONALITY_CD);
+
+ALTER TABLE PERSON ADD
+ PRIMARY KEY
+ (PERSON_ID);
+
+ALTER TABLE PERSON_INFO ADD
+ PRIMARY KEY
+ (PERSON_INFO_ID);
+
+ALTER TABLE PERSON_NAME_TYPE ADD
+ PRIMARY KEY
+ (PERSON_NAME_TYPE_CD);
+
+ALTER TABLE RACE ADD
+ PRIMARY KEY
+ (RACE_CD);
+
+ALTER TABLE RELIGION_TYPE ADD
+ PRIMARY KEY
+ (RELIGION_TYPE_CD);
+
+ALTER TABLE DOCUMENT_HEADER ADD
+ CONSTRAINT DH_PRID_TO_PR_PRID_FKEY
+ FOREIGN KEY (PERSON_ID)
+ REFERENCES PERSON (PERSON_ID)
+ ON DELETE CASCADE;
+
+ALTER TABLE ICS_EVENT_LOG ADD
+ CONSTRAINT EVENT_ALT_PERSON_FKEY
+ FOREIGN KEY (ALT_PERSON_ID)
+ REFERENCES PERSON (PERSON_ID)
+ ON DELETE NO ACTION;
+
+ALTER TABLE ICS_EVENT_LOG ADD
+ CONSTRAINT EVENT_PERSON_FKEY
+ FOREIGN KEY (CURRENT_PERSON_ID)
+ REFERENCES PERSON (PERSON_ID)
+ ON DELETE NO ACTION;
+
+ALTER TABLE PERSON ADD
+ CONSTRAINT LANGUAGE_FKEY
+ FOREIGN KEY (PRIMARYLANGUAGE_CD)
+ REFERENCES LANGUAGE (LANGUAGE_CD);
+
+ALTER TABLE PERSON ADD
+ CONSTRAINT NATIONALITY_FKEY
+ FOREIGN KEY (NATIONALITY_CD)
+ REFERENCES NATIONALITY (NATIONALITY_CD);
+
+ALTER TABLE PERSON_INFO ADD
+ CONSTRAINT ADDRESS_FKEY
+ FOREIGN KEY (ADDRESS_TYPE_CD)
+ REFERENCES ADDRESS_TYPE (ADDRESS_TYPE_CD);
+
+ALTER TABLE PERSON_INFO ADD
+ CONSTRAINT ETHNIC_FKEY
+ FOREIGN KEY (ETHNIC_GROUP_CD)
+ REFERENCES ETHNIC_GROUP (ETHNIC_GROUP_CD);
+
+ALTER TABLE PERSON_INFO ADD
+ CONSTRAINT PER_NAME_TYPE_FKEY
+ FOREIGN KEY (NAME_TYPE_CD)
+ REFERENCES PERSON_NAME_TYPE (PERSON_NAME_TYPE_CD);
+
+ALTER TABLE PERSON_INFO ADD
+ CONSTRAINT PI_DHID_TO_DH_DHID_FKEY
+ FOREIGN KEY (DH_ID)
+ REFERENCES DOCUMENT_HEADER (DH_ID)
+ ON DELETE CASCADE;
+
+ALTER TABLE PERSON_INFO ADD
+ CONSTRAINT RACE_FKEY
+ FOREIGN KEY (RACE_CD)
+ REFERENCES RACE (RACE_CD);
+
+ALTER TABLE PERSON_INFO ADD
+ CONSTRAINT RELIGION_FKEY
+ FOREIGN KEY (RELIGION_TYPE_CD)
+ REFERENCES RELIGION_TYPE (RELIGION_TYPE_CD);
+
+ALTER TABLE PERSON_QUEUE_ELEMENT ADD
+ CONSTRAINT PQE_PID_P_PID_FK
+ FOREIGN KEY (PERSON_ID)
+ REFERENCES PERSON (PERSON_ID);
+
+ALTER TABLE PERSON_QUEUE_ELEMENT ADD
+ CONSTRAINT PQE_QID_PQ_QID_FK
+ FOREIGN KEY (QUEUE_ID)
+ REFERENCES PERSON_QUEUE (QUEUE_ID);
+
+GRANT REFERENCES, SELECT ON PERSON TO openempi;
+
+GRANT SELECT ON ADDRESS_TYPE TO openempi;
+
+GRANT SELECT ON DOCUMENT_HEADER TO openempi;
+
+GRANT SELECT ON ETHNIC_GROUP TO openempi;
+
+GRANT SELECT ON ICS_EVENT_LOG TO openempi;
+
+GRANT SELECT ON LANGUAGE TO openempi;
+
+GRANT SELECT ON NATIONALITY TO openempi;
+
+GRANT SELECT ON PERSON TO openempi;
+
+GRANT SELECT ON PERSON_INFO TO openempi;
+
+GRANT SELECT ON PERSON_NAME_TYPE TO openempi;
+
+GRANT SELECT ON PERSON_QUEUE TO openempi;
+
+GRANT SELECT ON PERSON_QUEUE_ELEMENT TO openempi;
+
+GRANT SELECT ON RACE TO openempi;
+
+GRANT SELECT ON RELIGION_TYPE TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON ADDRESS_TYPE TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON DOCUMENT_HEADER TO openempi;
+
+GRANT SELECT ON DOCUMENT_HEADER_ID_SEQ TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON ETHNIC_GROUP TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON ICS_EVENT_LOG TO openempi;
+
+GRANT SELECT ON ICS_LOG_ID_SEQ TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON LANGUAGE TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON NATIONALITY TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON PERSON TO openempi;
+
+GRANT SELECT ON PERSON_ID_SEQ TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON PERSON_INFO TO openempi;
+
+GRANT SELECT ON PERSON_INFO_ID_SEQ TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON PERSON_NAME_TYPE TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON PERSON_QUEUE TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON PERSON_QUEUE_ELEMENT TO openempi;
+
+GRANT SELECT ON PERSON_QUEUE_SEQ TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON RACE TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON RELIGION_TYPE TO openempi;
+
+INSERT INTO ADDRESS_TYPE VALUES ('C', 'Current or Temporary');
+INSERT INTO ADDRESS_TYPE VALUES ('P', 'Permanent');
+INSERT INTO ADDRESS_TYPE VALUES ('M', 'Mailing');
+INSERT INTO ADDRESS_TYPE VALUES ('B', 'Firm/Business');
+INSERT INTO ADDRESS_TYPE VALUES ('O', 'Office');
+INSERT INTO ADDRESS_TYPE VALUES ('H', 'Home');
+INSERT INTO ADDRESS_TYPE VALUES ('N', 'Birth (nee) (birth address, not otherwise specified)');
+INSERT INTO ADDRESS_TYPE VALUES ('BDL', 'Birth delivery location (address where birth occurred)');
+INSERT INTO ADDRESS_TYPE VALUES ('BR', 'Residence at birth (home address at time of birth)');
+INSERT INTO ADDRESS_TYPE VALUES ('F', 'Country Of Origin');
+INSERT INTO ADDRESS_TYPE VALUES ('L', 'Legal Address');
+INSERT INTO ADDRESS_TYPE VALUES ('RH', 'Registry Home');
+INSERT INTO ADDRESS_TYPE VALUES ('BA', 'Bad Address');
+
+
+INSERT INTO RACE VALUES('AI','American Indian or Alaskan Native');
+INSERT INTO RACE VALUES('AP','Asian or Pacific Islander');
+INSERT INTO RACE VALUES ('BL', 'Black');
+INSERT INTO RACE VALUES('HI','Hispanic');
+INSERT INTO RACE VALUES ('WH', 'White');
+
Added: trunk/Resources/OpenEMPI/conf/ICS_schema_create-postgres.sql
===================================================================
--- trunk/Resources/OpenEMPI/conf/ICS_schema_create-postgres.sql (rev 0)
+++ trunk/Resources/OpenEMPI/conf/ICS_schema_create-postgres.sql 2009-03-20 20:02:39 UTC (rev 308)
@@ -0,0 +1,505 @@
+--
+-- Create Schema Script
+-- Database Version : 9.0.1.4.0
+-- TOAD Version : 8.6.0.38
+-- DB Connect String : LCDE.DB01
+-- Schema : ICSSYS
+-- Script Created by : SYS
+-- Script Created at : 3/16/2007 2:35:52 PM
+-- Physical Location :
+-- Notes :
+--
+
+-- Object Counts:
+-- Database Links: 2
+-- Indexes: 28 Columns: 39
+-- Object Privileges: 32
+-- Sequences: 5
+-- Tables: 13 Columns: 118 Constraints: 24
+
+
+DROP SEQUENCE IF EXISTS DOCUMENT_HEADER_ID_SEQ;
+
+CREATE SEQUENCE DOCUMENT_HEADER_ID_SEQ
+ START WITH 4759867
+ MAXVALUE 9999999999999
+ MINVALUE 1;
+
+DROP SEQUENCE IF EXISTS ICS_LOG_ID_SEQ;
+
+CREATE SEQUENCE ICS_LOG_ID_SEQ
+ START WITH 2690305
+ MAXVALUE 999999999999999
+ MINVALUE 1;
+
+DROP SEQUENCE IF EXISTS PERSON_ID_SEQ;
+
+CREATE SEQUENCE PERSON_ID_SEQ
+ START WITH 2469769
+ MAXVALUE 99999999999999999
+ MINVALUE 1;
+
+DROP SEQUENCE IF EXISTS PERSON_INFO_ID_SEQ;
+
+CREATE SEQUENCE PERSON_INFO_ID_SEQ
+ START WITH 6427404
+ MAXVALUE 99999999999999999
+ MINVALUE 1;
+
+DROP SEQUENCE IF EXISTS PERSON_QUEUE_SEQ;
+
+CREATE SEQUENCE PERSON_QUEUE_SEQ
+ START WITH 237082
+ MAXVALUE 99999999999999999
+ MINVALUE 1;
+
+DROP TABLE IF EXISTS PERSON_INFO;
+
+CREATE TABLE PERSON_INFO
+(
+ PERSON_INFO_ID NUMERIC NOT NULL,
+ DH_ID NUMERIC NOT NULL,
+ LNAME VARCHAR(64),
+ FNAME VARCHAR(64),
+ SECNAME VARCHAR(64),
+ SUFFIX VARCHAR(64),
+ PREFIX VARCHAR(64),
+ DEGREE VARCHAR(64),
+ NAME_TYPE_CD VARCHAR(64),
+ NAME_TYPE_REP_CD VARCHAR(64),
+ SEARCH_KEY VARCHAR(64),
+ START_DATE DATE,
+ END_DATE DATE,
+ ALIAS NUMERIC,
+ ADDRESS_1 VARCHAR(64),
+ ADDRESS_2 VARCHAR(64),
+ CITY VARCHAR(64),
+ STATE_PROV VARCHAR(64),
+ ZIP VARCHAR(64),
+ COUNTRY VARCHAR(64),
+ PARISH_CD VARCHAR(64),
+ PA_START_DT DATE,
+ PA_END_DT DATE,
+ TELECOM_USE_CD VARCHAR(64),
+ PHONE_COUNTRY_CD VARCHAR(64),
+ PHONE_AREA_CD VARCHAR(64),
+ PHONE_NUM VARCHAR(64),
+ PHONE_EXT VARCHAR(64),
+ EMAIL VARCHAR(64),
+ GENDER CHAR(1),
+ MARITAL_STATUS CHAR(1),
+ DRV_LICENSE_NUM VARCHAR(64),
+ DRV_LICENSE_ISSUING_STATE CHAR(2),
+ DRV_LICENSE_ISSUE_DATE DATE,
+ ETHNIC_GROUP_CD VARCHAR(64),
+ RELIGION_TYPE_CD VARCHAR(64),
+ RACE_CD VARCHAR(64),
+ PI_IDENTIFIER_TYPE_CD VARCHAR(64),
+ PI_EFFECTIVE_DATE DATE,
+ PI_EXPIRATION_DATE DATE,
+ PATIENT_CONSENT NUMERIC,
+ ADDRESS_TYPE_CD VARCHAR(64),
+ AA_UNIV_ID VARCHAR(64),
+ AA_UNIV_ID_TYPE_CD VARCHAR(64),
+ AA_NAMESPACE_ID VARCHAR(64),
+ AF_UNIV_ID VARCHAR(64),
+ AF_UNIV_ID_TYPE_CD VARCHAR(64),
+ AF_NAMESPACE_ID VARCHAR(64),
+ PI_IDENTIFIER VARCHAR(256),
+ SSN VARCHAR(64),
+ DOB DATE,
+ CORPORATE_ID VARCHAR(64),
+ UPDATED_CORPORATE_ID VARCHAR(64)
+);
+
+DROP TABLE IF EXISTS ETHNIC_GROUP;
+
+CREATE TABLE ETHNIC_GROUP
+(
+ ETHNIC_GROUP_CD VARCHAR(64) NOT NULL,
+ ETHNIC_GROUP_DESC VARCHAR(64)
+);
+
+DROP TABLE IF EXISTS ICS_EVENT_LOG;
+
+CREATE TABLE ICS_EVENT_LOG
+(
+ ICS_LOG_ID INTEGER NOT NULL,
+ EVENT_TYPE VARCHAR(64),
+ EVENT_DATE TIMESTAMP(6),
+ CURRENT_PERSON_ID INTEGER,
+ CURRENT_PERSON_SSN VARCHAR(64),
+ CURRENT_PERSON_DOB DATE,
+ ALT_PERSON_ID INTEGER,
+ ALT_PERSON_SSN VARCHAR(64),
+ ALT_PERSON_DOB DATE,
+ USER_ID VARCHAR(15),
+ REASON VARCHAR(2000)
+);
+
+DROP TABLE IF EXISTS ADDRESS_TYPE;
+
+CREATE TABLE ADDRESS_TYPE
+(
+ ADDRESS_TYPE_CD VARCHAR(64) NOT NULL,
+ ADDRESS_TYPE_DESC VARCHAR(64)
+);
+
+DROP TABLE IF EXISTS DOCUMENT_HEADER;
+
+CREATE TABLE DOCUMENT_HEADER
+(
+ DH_ID NUMERIC NOT NULL,
+ PERSON_ID NUMERIC,
+ MSG_DATE DATE NOT NULL,
+ MSG_CTRL_ID VARCHAR(64),
+ SEQ_NUM VARCHAR(64),
+ CONT_PTR VARCHAR(64),
+ ACK_TYPE VARCHAR(64),
+ APP_ACK_TYPE VARCHAR(64),
+ MSG_SECURITY VARCHAR(64),
+ REC_APP VARCHAR(64),
+ REC_FAC VARCHAR(64),
+ SEND_APP VARCHAR(64),
+ SEND_FAC VARCHAR(64),
+ EVENT_CD VARCHAR(64),
+ MSG_TYPE VARCHAR(64),
+ TRIGGER_EVENT VARCHAR(64),
+ MSG_STRUCTURE VARCHAR(64)
+);
+
+DROP TABLE IF EXISTS PERSON_NAME_TYPE;
+
+CREATE TABLE PERSON_NAME_TYPE
+(
+ PERSON_NAME_TYPE_CD VARCHAR(64) NOT NULL,
+ PERSON_NAME_TYPE_DESC VARCHAR(64)
+);
+
+DROP TABLE IF EXISTS PERSON_QUEUE_ELEMENT;
+
+CREATE TABLE PERSON_QUEUE_ELEMENT
+(
+ QUEUE_ID NUMERIC NOT NULL,
+ PERSON_ID NUMERIC NOT NULL
+);
+
+DROP TABLE IF EXISTS PERSON_QUEUE;
+
+CREATE TABLE PERSON_QUEUE
+(
+ QUEUE_ID NUMERIC NOT NULL,
+ DESCRIPTION VARCHAR(1000) NOT NULL,
+ USER_ID VARCHAR(15),
+ USER_DOMAIN VARCHAR(100),
+ CREATE_DATE DATE NOT NULL
+);
+
+DROP TABLE IF EXISTS PERSON;
+
+CREATE TABLE PERSON
+(
+ PERSON_ID NUMERIC NOT NULL,
+ NATIONALITY_CD VARCHAR(64),
+ NAMESEARCHKEY VARCHAR(64),
+ PRIMARYLANGUAGE_CD VARCHAR(64),
+ EXPIRED NUMERIC,
+ ISPROVIDER NUMERIC,
+ MAIDEN_LNAME VARCHAR(64),
+ MAIDEN_FNAME VARCHAR(64),
+ MAIDEN_SECNAME VARCHAR(64),
+ MAIDEN_SUFFIX VARCHAR(64),
+ MAIDEN_PREFIX VARCHAR(64),
+ MAIDEN_DEGREE VARCHAR(64),
+ MAIDEN_NAME_TYPE_CD VARCHAR(64),
+ MAIDEN_NAME_TYPE_REP_CD VARCHAR(64),
+ MAIDEN_SEARCH_KEY VARCHAR(64),
+ BIRTHPLACE VARCHAR(64)
+);
+
+DROP TABLE IF EXISTS LANGUAGE;
+
+CREATE TABLE LANGUAGE
+(
+ LANGUAGE_CD VARCHAR(64) NOT NULL,
+ LANGUAGE_DESC VARCHAR(64)
+);
+
+DROP TABLE IF EXISTS NATIONALITY;
+
+CREATE TABLE NATIONALITY
+(
+ NATIONALITY_CD VARCHAR(64) NOT NULL,
+ NATIONALITY_DESC VARCHAR(64)
+);
+
+DROP TABLE IF EXISTS RACE;
+
+CREATE TABLE RACE
+(
+ RACE_CD VARCHAR(64) NOT NULL,
+ RACE_DESC VARCHAR(64)
+);
+
+DROP TABLE IF EXISTS RELIGION_TYPE;
+
+CREATE TABLE RELIGION_TYPE
+(
+ RELIGION_TYPE_CD VARCHAR(64) NOT NULL,
+ RELIGION_TYPE_DESC VARCHAR(64)
+);
+
+
+CREATE INDEX DH_DHID_PID ON DOCUMENT_HEADER
+(DH_ID, PERSON_ID);
+
+
+CREATE INDEX DH_PID_DHID ON DOCUMENT_HEADER
+(PERSON_ID, DH_ID);
+
+
+CREATE INDEX IEL_ILI_ET_ED ON ICS_EVENT_LOG
+(ICS_LOG_ID, EVENT_TYPE, EVENT_DATE);
+
+
+CREATE INDEX PI_ATC ON PERSON_INFO
+(ADDRESS_TYPE_CD);
+
+
+CREATE INDEX PI_DHID_PIID ON PERSON_INFO
+(DH_ID, PI_IDENTIFIER);
+
+
+CREATE INDEX PI_EGC ON PERSON_INFO
+(ETHNIC_GROUP_CD);
+
+
+CREATE INDEX PI_LN_FN ON PERSON_INFO
+(LNAME, FNAME);
+
+CREATE INDEX PI_NTC ON PERSON_INFO
+(NAME_TYPE_CD);
+
+CREATE INDEX PI_PIID_SK ON PERSON_INFO
+(PI_IDENTIFIER, SEARCH_KEY);
+
+CREATE INDEX PI_RC ON PERSON_INFO
+(RACE_CD);
+
+CREATE INDEX PI_RTC ON PERSON_INFO
+(RELIGION_TYPE_CD);
+
+CREATE INDEX PI_SK_DHID ON PERSON_INFO
+(SEARCH_KEY, DH_ID);
+
+CREATE INDEX PI_SSN_SK_DHID ON PERSON_INFO
+(SSN, SEARCH_KEY, DH_ID);
+
+CREATE INDEX PI_UPPPI_DHID ON PERSON_INFO
+(UPPER(PI_IDENTIFIER), DH_ID);
+
+CREATE UNIQUE INDEX PQ_QID_UQ ON PERSON_QUEUE
+(QUEUE_ID);
+
+CREATE INDEX P_NC ON PERSON
+(NATIONALITY_CD);
+
+CREATE INDEX P_PLC ON PERSON
+(PRIMARYLANGUAGE_CD);
+
+ALTER TABLE ADDRESS_TYPE ADD
+ PRIMARY KEY
+ (ADDRESS_TYPE_CD);
+
+ALTER TABLE DOCUMENT_HEADER ADD
+ PRIMARY KEY
+ (DH_ID);
+
+ALTER TABLE ETHNIC_GROUP ADD
+ PRIMARY KEY
+ (ETHNIC_GROUP_CD);
+
+ALTER TABLE ICS_EVENT_LOG ADD
+ PRIMARY KEY
+ (ICS_LOG_ID);
+
+ALTER TABLE LANGUAGE ADD
+ PRIMARY KEY
+ (LANGUAGE_CD);
+
+ALTER TABLE NATIONALITY ADD
+ PRIMARY KEY
+ (NATIONALITY_CD);
+
+ALTER TABLE PERSON ADD
+ PRIMARY KEY
+ (PERSON_ID);
+
+ALTER TABLE PERSON_INFO ADD
+ PRIMARY KEY
+ (PERSON_INFO_ID);
+
+ALTER TABLE PERSON_NAME_TYPE ADD
+ PRIMARY KEY
+ (PERSON_NAME_TYPE_CD);
+
+ALTER TABLE RACE ADD
+ PRIMARY KEY
+ (RACE_CD);
+
+ALTER TABLE RELIGION_TYPE ADD
+ PRIMARY KEY
+ (RELIGION_TYPE_CD);
+
+ALTER TABLE DOCUMENT_HEADER ADD
+ CONSTRAINT DH_PRID_TO_PR_PRID_FKEY
+ FOREIGN KEY (PERSON_ID)
+ REFERENCES PERSON (PERSON_ID)
+ ON DELETE CASCADE;
+
+ALTER TABLE ICS_EVENT_LOG ADD
+ CONSTRAINT EVENT_ALT_PERSON_FKEY
+ FOREIGN KEY (ALT_PERSON_ID)
+ REFERENCES PERSON (PERSON_ID)
+ ON DELETE NO ACTION;
+
+ALTER TABLE ICS_EVENT_LOG ADD
+ CONSTRAINT EVENT_PERSON_FKEY
+ FOREIGN KEY (CURRENT_PERSON_ID)
+ REFERENCES PERSON (PERSON_ID)
+ ON DELETE NO ACTION;
+
+ALTER TABLE PERSON ADD
+ CONSTRAINT LANGUAGE_FKEY
+ FOREIGN KEY (PRIMARYLANGUAGE_CD)
+ REFERENCES LANGUAGE (LANGUAGE_CD);
+
+ALTER TABLE PERSON ADD
+ CONSTRAINT NATIONALITY_FKEY
+ FOREIGN KEY (NATIONALITY_CD)
+ REFERENCES NATIONALITY (NATIONALITY_CD);
+
+ALTER TABLE PERSON_INFO ADD
+ CONSTRAINT ADDRESS_FKEY
+ FOREIGN KEY (ADDRESS_TYPE_CD)
+ REFERENCES ADDRESS_TYPE (ADDRESS_TYPE_CD);
+
+ALTER TABLE PERSON_INFO ADD
+ CONSTRAINT ETHNIC_FKEY
+ FOREIGN KEY (ETHNIC_GROUP_CD)
+ REFERENCES ETHNIC_GROUP (ETHNIC_GROUP_CD);
+
+ALTER TABLE PERSON_INFO ADD
+ CONSTRAINT PER_NAME_TYPE_FKEY
+ FOREIGN KEY (NAME_TYPE_CD)
+ REFERENCES PERSON_NAME_TYPE (PERSON_NAME_TYPE_CD);
+
+ALTER TABLE PERSON_INFO ADD
+ CONSTRAINT PI_DHID_TO_DH_DHID_FKEY
+ FOREIGN KEY (DH_ID)
+ REFERENCES DOCUMENT_HEADER (DH_ID)
+ ON DELETE CASCADE;
+
+ALTER TABLE PERSON_INFO ADD
+ CONSTRAINT RACE_FKEY
+ FOREIGN KEY (RACE_CD)
+ REFERENCES RACE (RACE_CD);
+
+ALTER TABLE PERSON_INFO ADD
+ CONSTRAINT RELIGION_FKEY
+ FOREIGN KEY (RELIGION_TYPE_CD)
+ REFERENCES RELIGION_TYPE (RELIGION_TYPE_CD);
+
+ALTER TABLE PERSON_QUEUE_ELEMENT ADD
+ CONSTRAINT PQE_PID_P_PID_FK
+ FOREIGN KEY (PERSON_ID)
+ REFERENCES PERSON (PERSON_ID);
+
+ALTER TABLE PERSON_QUEUE_ELEMENT ADD
+ CONSTRAINT PQE_QID_PQ_QID_FK
+ FOREIGN KEY (QUEUE_ID)
+ REFERENCES PERSON_QUEUE (QUEUE_ID);
+
+GRANT REFERENCES, SELECT ON PERSON TO openempi;
+
+GRANT SELECT ON ADDRESS_TYPE TO openempi;
+
+GRANT SELECT ON DOCUMENT_HEADER TO openempi;
+
+GRANT SELECT ON ETHNIC_GROUP TO openempi;
+
+GRANT SELECT ON ICS_EVENT_LOG TO openempi;
+
+GRANT SELECT ON LANGUAGE TO openempi;
+
+GRANT SELECT ON NATIONALITY TO openempi;
+
+GRANT SELECT ON PERSON TO openempi;
+
+GRANT SELECT ON PERSON_INFO TO openempi;
+
+GRANT SELECT ON PERSON_NAME_TYPE TO openempi;
+
+GRANT SELECT ON PERSON_QUEUE TO openempi;
+
+GRANT SELECT ON PERSON_QUEUE_ELEMENT TO openempi;
+
+GRANT SELECT ON RACE TO openempi;
+
+GRANT SELECT ON RELIGION_TYPE TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON ADDRESS_TYPE TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON DOCUMENT_HEADER TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON DOCUMENT_HEADER_ID_SEQ TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON ETHNIC_GROUP TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON ICS_EVENT_LOG TO openempi;
+
+GRANT SELECT ON ICS_LOG_ID_SEQ TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON LANGUAGE TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON NATIONALITY TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON PERSON TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON PERSON_ID_SEQ TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON PERSON_INFO TO openempi;
+
+GRANT SELECT ON PERSON_INFO_ID_SEQ TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON PERSON_NAME_TYPE TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON PERSON_QUEUE TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON PERSON_QUEUE_ELEMENT TO openempi;
+
+GRANT SELECT ON PERSON_QUEUE_SEQ TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON RACE TO openempi;
+
+GRANT DELETE, INSERT, SELECT, UPDATE ON RELIGION_TYPE TO openempi;
+
+INSERT INTO ADDRESS_TYPE VALUES ('C', 'Current or Temporary');
+INSERT INTO ADDRESS_TYPE VALUES ('P', 'Permanent');
+INSERT INTO ADDRESS_TYPE VALUES ('M', 'Mailing');
+INSERT INTO ADDRESS_TYPE VALUES ('B', 'Firm/Business');
+INSERT INTO ADDRESS_TYPE VALUES ('O', 'Office');
+INSERT INTO ADDRESS_TYPE VALUES ('H', 'Home');
+INSERT INTO ADDRESS_TYPE VALUES ('N', 'Birth (nee) (birth address, not otherwise specified)');
+INSERT INTO ADDRESS_TYPE VALUES ('BDL', 'Birth delivery location (address where birth occurred)');
+INSERT INTO ADDRESS_TYPE VALUES ('BR', 'Residence at birth (home address at time of birth)');
+INSERT INTO ADDRESS_TYPE VALUES ('F', 'Country Of Origin');
+INSERT INTO ADDRESS_TYPE VALUES ('L', 'Legal Address');
+INSERT INTO ADDRESS_TYPE VALUES ('RH', 'Registry Home');
+INSERT INTO ADDRESS_TYPE VALUES ('BA', 'Bad Address');
+
+INSERT INTO RACE VALUES('AI','American Indian or Alaskan Native');
+INSERT INTO RACE VALUES('AP','Asian or Pacific Islander');
+INSERT INTO RACE VALUES ('BL', 'Black');
+INSERT INTO RACE VALUES('HI','Hispanic');
+INSERT INTO RACE VALUES ('WH', 'White');
Added: trunk/Resources/OpenEMPI/conf/IcsLog4j.xml
===================================================================
--- trunk/Resources/OpenEMPI/conf/IcsLog4j.xml (rev 0)
+++ trunk/Resources/OpenEMPI/conf/IcsLog4j.xml 2009-03-20 20:02:39 UTC (rev 308)
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
+
+<!-- ===================================================================== -->
+<!-- -->
+<!-- Log4j Configuration -->
+<!-- -->
+<!-- ===================================================================== -->
+
+<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
+ <appender name="FILE" class="org.apache.log4j.RollingFileAppender">
+ <param name="File" value="logs/ics.log"/>
+ <param name="Append" value="true"/>
+ <param name="Threshold" value="ALL"/>
+ <param name="MaxFileSize" value="1MB"/>
+ <param name="MaxBackupIndex" value="5"/>
+
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="%d{yyyy-MM-dd HH:mm:ss} %-5p [%c:%C{1}] %m%n"/>
+ </layout>
+ </appender>
+
+ <appender name="TRACE" class="org.apache.log4j.RollingFileAppender">
+ <param name="File" value="logs/ics_trace.log"/>
+ <param name="Append" value="true"/>
+ <param name="Threshold" value="ALL"/>
+ <param name="MaxFileSize" value="1MB"/>
+ <param name="MaxBackupIndex" value="5"/>
+
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="%d{yyyy-MM-dd HH:mm:ss} %m%n"/>
+ </layout>
+ </appender>
+
+ <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
+ <param name="Threshold" value="OFF"/>
+ <param name="Target" value="System.out"/>
+
+ <layout class="org.apache.log4j.PatternLayout">
+ <!-- The default pattern: Date Priority [Category] Message\n -->
+ <param name="ConversionPattern" value="%d{yyyy-MM-dd HH:mm:ss} %-5p [%c] %m%n"/>
+ </layout>
+ </appender>
+
+ <logger name="ICS">
+ <appender-ref ref="FILE"/>
+ </logger>
+
+ <logger name="ICS_TRACE">
+ <appender-ref ref="TRACE"/>
+ </logger>
+
+ <root>
+ <appender-ref ref="CONSOLE"/>
+ </root>
+
+</log4j:configuration>
Added: trunk/Resources/OpenEMPI/conf/IcsSql.xml
===================================================================
--- trunk/Resources/OpenEMPI/conf/IcsSql.xml (rev 0)
+++ trunk/Resources/OpenEMPI/conf/IcsSql.xml 2009-03-20 20:02:39 UTC (rev 308)
@@ -0,0 +1,249 @@
+<?xml version="1.0"?>
+<ICS-SQL>
+ <!-- Attribute Types are used for the QUERY-PERSONS tag for WHERE clauses. -->
+ <!-- These are the column names used when querying for a particular Attribute, such as ADDRESS -->
+ <!-- In the Attribute tag (ATTR-#), the # MUST mirror the com.carescience.db.AttributeType numbering -->
+ <!-- COLNAME must include the table alias, common throughout each SQL statement -->
+ <!-- COLTYPE must match ATTR_COLTYPE_ defs in com.carescience.db.jdbc.DatabaseServicesJdbc class -->
+ <!-- as String, Number or Date -->
+ <QUERY-ATTRIBUTE-TYPES>
+ <ATTR-1>
+ <COLNAME>pi.lname</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-1>
+ <ATTR-2>
+ <COLNAME>pi.ssn</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-2>
+ <ATTR-3>
+ <COLNAME>pi.drv_license_num</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-3>
+ <ATTR-4>
+ <COLNAME>pi.address_1</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-4>
+ <ATTR-5>
+ <COLNAME>pi.email</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-5>
+ <ATTR-6>
+ <COLNAME>pi.lname</COLNAME>
+ <COLTYPE>LikeString</COLTYPE>
+ </ATTR-6>
+ <ATTR-7>
+ <COLNAME>pi.search_key</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-7>
+ <ATTR-8>
+ <COLNAME>pi.search_key</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-8>
+ <ATTR-9>
+ <COLNAME>pi.PI_Identifier</COLNAME>
+ <COLTYPE>UString</COLTYPE>
+ </ATTR-9>
+ <ATTR-10>
+ <COLNAME>pi.ethnic_group_cd</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-10>
+ <ATTR-11>
+ <COLNAME>pi.gender</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-11>
+ <ATTR-12>
+ <COLNAME>pi.marital_status</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-12>
+
+<!-- NOT USED
+ <ATTR-13>
+ <COLNAME>dh.SOURCE_DOCUMENTED??????????????????????????</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-13>
+-->
+ <ATTR-14>
+ <COLNAME>pi.race_cd</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-14>
+ <ATTR-15>
+ <COLNAME>pi.religion_type_cd</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-15>
+<!-- NOT USED
+ <ATTR-16>
+ <COLNAME>pp.PHONENUMBER?????????????????????????????</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-16>
+-->
+ <ATTR-17>
+ <COLNAME>p.person_id</COLNAME>
+ <COLTYPE>Number</COLTYPE>
+ </ATTR-17>
+ <ATTR-18>
+ <COLNAME>pi.fname</COLNAME>
+ <COLTYPE>LikeString</COLTYPE>
+ </ATTR-18>
+ <ATTR-19>
+ <COLNAME>pi.aa_namespace_id</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-19>
+ <ATTR-20>
+ <COLNAME>pi.af_namespace_id</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-20>
+ <ATTR-21>
+ <COLNAME>pi.corporate_id</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-21>
+ <ATTR-22>
+ <COLNAME>pi.updated_corporate_id</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-22>
+ <ATTR-23>
+ <COLNAME>pi.dh_id</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-23>
+ <ATTR-24>
+ <COLNAME>pi.PI_Identifier</COLNAME>
+ <COLTYPE>LikeString</COLTYPE>
+ </ATTR-24>
+ <ATTR-25>
+ <COLNAME>pi.dob</COLNAME>
+ <COLTYPE>String</COLTYPE>
+ </ATTR-25>
+
+ </QUERY-ATTRIBUTE-TYPES>
+
+
+ <!-- Used in databaseservices.Query() to retrieve all elements needed to build a Person object -->
+ <!-- CONSTRAINTS AND LIMITATIONS - PLEASE READ IF MODIFYING SQL -->
+ <!-- 1) Column positions MUST remain constant, but names can change if database schema is different -->
+ <!-- 2) Each record returned MUST EQUAL a SINGLE PERSON ALIAS. Many Person Alias's may make up a SINGLE PERSON OBJECT. -->
+ <!-- You cannot have multiple record returned for each attribute (ie: assigning authority and facility domain identifiers must be returned as a single record associated with that Person Alias. They must be denormalized -->
+ <QUERY-GETPERSONS>
+ <!-- Use For DeNormalized Schema -->
+ <SQL-SELECT>select p.person_id, dh.msg_date, dh.msg_ctrl_id, dh.seq_num, dh.cont_ptr, dh.ack_type, dh.app_ack_type, dh.msg_security, dh.rec_app, dh.rec_fac, dh.send_app, dh.send_fac, dh.event_cd, dh.msg_type, dh.trigger_event, dh.msg_structure, p.nationality_cd, pi.search_key, p.primarylanguage_cd, pi.ssn, pi.dob, p.expired, p.isprovider, pi.lname, pi.fname, pi.secname, pi.suffix, pi.prefix, pi.degree, pi.name_type_cd, pi.name_type_rep_cd, pi.search_key, pi.start_date, pi.end_date, pi.alias, pi.address_1, pi.address_2, pi.city, pi.state_prov, pi.zip, pi.country, pi.parish_cd, pi.pa_start_dt, pi.pa_end_dt, pi.pi_identifier_type_cd, pi.pi_effective_date, pi.pi_expiration_date, pi.patient_consent, pi.aa_univ_id, pi.aa_univ_id_type_cd, pi.aa_namespace_id, pi.af_univ_id, pi.af_univ_id_type_cd, pi.af_namespace_id, pi.telecom_use_cd, pi.phone_country_cd, pi.phone_area_cd, pi.phone_num, pi.phone_ext, pi.email, pi.gender, pi.marital_status, pi.drv_license_num, pi.drv_license_issuing_state, pi.drv_license_issue_date, pi.ethnic_group_cd, pi.religion_type_cd, pi.race_cd, pi.pi_identifier, p.maiden_lname, p.maiden_fname, p.maiden_secname, p.maiden_suffix, p.maiden_prefix, p.maiden_degree, p.maiden_name_type_cd, p.maiden_name_type_rep_cd, p.maiden_search_key, p.birthplace, dh.dh_id, pi.person_info_id, pi.corporate_id, pi.updated_corporate_id</SQL-SELECT>
+ <SQL-FROM>from document_header dh, person_info pi, person p</SQL-FROM>
+ <SQL-JOIN>where dh.dh_id = pi.dh_id and dh.person_id = p.person_id and p.person_id in (select p.person_id from document_header dh, person_info pi, person p where p.person_id = dh.person_id and dh.dh_id = pi.dh_id</SQL-JOIN>
+ </QUERY-GETPERSONS>
+
+ <!-- Used for inserting a new Person object into the database, using various tables defined here. -->
+ <!-- The following 3 tables are expected for adding a Person: PERSON, DOCUMENT_HEADER (1-many with PERSON), -->
+ <!-- and PERSON_INFO (1-many with DOCUMENT_HEADER). -->
+ <!-- CONSTRAINTS AND LIMITATIONS - PLEASE READ IF MODIFYING SQL -->
+ <!-- 1) Column positions MUST remain constant, but names can change if database schema is different -->
+ <INSERT-PERSON>
+ <SQL-GET-PREINSERTID></SQL-GET-PREINSERTID>
+ <SQL-INSERTINTO>insert into person (person_id, nationality_cd, namesearchkey, primarylanguage_cd, expired, isprovider, maiden_lname, maiden_fname, maiden_secname, maiden_suffix, maiden_prefix, maiden_degree, maiden_name_type_cd, maiden_name_type_rep_cd, maiden_search_key, birthplace)</SQL-INSERTINTO>
+ <SQL-INSERTVALUES>values (nextval('person_id_seq'), ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)</SQL-INSERTVALUES>
+ <SQL-GET-POSTINSERTID>select currval('person_id_seq')</SQL-GET-POSTINSERTID>
+ </INSERT-PERSON>
+ <INSERT-DOCUMENT-HEADER>
+ <SQL-GET-PREINSERTID></SQL-GET-PREINSERTID>
+ <SQL-INSERTINTO>insert into document_header (dh_id, person_id, msg_date, msg_ctrl_id, seq_num, cont_ptr, ack_type, app_ack_type, msg_security, rec_app, rec_fac, send_app, send_fac, event_cd, msg_type, trigger_event, msg_structure)</SQL-INSERTINTO>
+ <SQL-INSERTVALUES>values (nextval('document_header_id_seq'), ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)</SQL-INSERTVALUES>
+ <SQL-GET-POSTINSERTID>select currval('document_header_id_seq')</SQL-GET-POSTINSERTID>
+ </INSERT-DOCUMENT-HEADER>
+ <INSERT-PERSON-INFO>
+ <SQL-GET-PREINSERTID></SQL-GET-PREINSERTID>
+ <SQL-INSERTINTO>insert into person_info (person_info_id, dh_id, lname, fname, secname, suffix, prefix, degree, name_type_cd, name_type_rep_cd, search_key, start_date, end_date, alias, address_1, address_2, city, state_prov, zip, country, parish_cd, pa_start_dt, pa_end_dt, telecom_use_cd, phone_country_cd, phone_area_cd, phone_num, phone_ext, email, gender, marital_status, drv_license_num, drv_license_issuing_state, drv_license_issue_date, ethnic_group_cd, religion_type_cd, ...
[truncated message content] |
|
From: <we...@us...> - 2009-03-20 19:54:52
|
Revision: 307
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=307&view=rev
Author: wenzhi
Date: 2009-03-20 19:54:42 +0000 (Fri, 20 Mar 2009)
Log Message:
-----------
Re-factored a couple of items
Modified Paths:
--------------
trunk/OpenPIXPDQ/build.xml
Modified: trunk/OpenPIXPDQ/build.xml
===================================================================
--- trunk/OpenPIXPDQ/build.xml 2009-03-20 16:41:53 UTC (rev 306)
+++ trunk/OpenPIXPDQ/build.xml 2009-03-20 19:54:42 UTC (rev 307)
@@ -3,12 +3,11 @@
<property file="build.properties" />
<property name="build.root" location="temp" />
<property name="build.src" location="${build.root}/src" />
- <property name="dist.root" location="dist" />
<property name="build.conf" location="${build.root}/config" />
+ <property name="dist.root" location="dist" />
<property name="lib.src" location="lib" />
<property name="src.dir" location="src" />
<property name="test.src.dir" location="src/test" />
- <property name="adapter.dir" location="../OpenEmpiAdapter" />
<property name="openempi.adapter.lib.dir" location="${openempiadapter.root}/lib" />
<target name="clean" description="Clean out compiled src">
@@ -28,10 +27,10 @@
<fileset dir="${lib.src}">
<include name="**/*.jar" />
</fileset>
- <fileset dir="${adapter.dir}/lib">
+ <fileset dir="${openempi.adapter.lib.dir}">
<include name="**/*.jar" />
- <!--exclude name="openpixpdq.jar"/-->
- <exclude name="braid-base-1.1.jar"/>
+ <exclude name="openpixpdq*.jar"/>
+ <exclude name="braid-base*.jar"/>
</fileset>
</path>
<property name="classpath" refid="build.classpath" />
@@ -94,7 +93,7 @@
</javadoc>
</target>
- <target name="test" depends="db.claen,-init,setClasspath,debug">
+ <target name="test" depends="db.clean,-init,setClasspath,debug">
<mkdir dir="reports" />
<junit printsummary="yes" haltonfailure="no">
@@ -114,7 +113,7 @@
</junit>
</target>
- <target name="db.claen">
+ <target name="db.clean">
<sql driver="org.postgresql.Driver" url="jdbc:postgresql://localhost/openempi?useUnicode=true&characterEncoding=UTF-8" userid="openempi" password="openempi">
<classpath>
<pathelement path="../OpenWeb/Web/WEB-INF/lib/postgresql-8.3-603.jdbc4.jar"/>
@@ -122,6 +121,5 @@
<transaction src="conf/DBCleanup.sql"/>
</sql>
</target>
-
</project>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <an...@us...> - 2009-03-20 16:41:57
|
Revision: 306
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=306&view=rev
Author: anil114
Date: 2009-03-20 16:41:53 +0000 (Fri, 20 Mar 2009)
Log Message:
-----------
Added target to clean DB,
Added target to run unit tests
Modified Paths:
--------------
trunk/OpenPIXPDQ/build.xml
Modified: trunk/OpenPIXPDQ/build.xml
===================================================================
--- trunk/OpenPIXPDQ/build.xml 2009-03-20 16:39:53 UTC (rev 305)
+++ trunk/OpenPIXPDQ/build.xml 2009-03-20 16:41:53 UTC (rev 306)
@@ -2,10 +2,13 @@
<project basedir="." default="Jar" name="OpenPIX/PDQ">
<property file="build.properties" />
<property name="build.root" location="temp" />
+ <property name="build.src" location="${build.root}/src" />
<property name="dist.root" location="dist" />
<property name="build.conf" location="${build.root}/config" />
<property name="lib.src" location="lib" />
- <property name="src.dir" location="src/java" />
+ <property name="src.dir" location="src" />
+ <property name="test.src.dir" location="src/test" />
+ <property name="adapter.dir" location="../OpenEmpiAdapter" />
<property name="openempi.adapter.lib.dir" location="${openempiadapter.root}/lib" />
<target name="clean" description="Clean out compiled src">
@@ -16,7 +19,7 @@
</target>
<target name="compile" depends="setClasspath">
- <javac failonerror="true" debug="true" srcdir="${src.dir}" destdir="${build.root}" classpath="${classpath}" />
+ <javac failonerror="true" debug="true" srcdir="${build.root}" destdir="${build.root}" classpath="${classpath}" />
</target>
<target name="setClasspath">
@@ -25,6 +28,11 @@
<fileset dir="${lib.src}">
<include name="**/*.jar" />
</fileset>
+ <fileset dir="${adapter.dir}/lib">
+ <include name="**/*.jar" />
+ <!--exclude name="openpixpdq.jar"/-->
+ <exclude name="braid-base-1.1.jar"/>
+ </fileset>
</path>
<property name="classpath" refid="build.classpath" />
<echo message="Classpath Settings done: ${classpath}" />
@@ -32,6 +40,17 @@
<target name="debug" depends="-init" unless="built" description="Buid with debug flags">
+ <copy todir="${build.root}">
+ <fileset dir="${src.dir}/java">
+ <include name="**/*.java" />
+ </fileset>
+ </copy>
+ <copy todir="${build.root}">
+ <fileset dir="${src.dir}/test">
+ <include name="**/*.java" />
+ </fileset>
+ </copy>
+
<antcall target="compile" inheritAll="true" inheritRefs="true">
<param name="optimize" value="false" />
<param name="debug" value="true" />
@@ -74,6 +93,35 @@
<packageset dir="${src.dir}" />
</javadoc>
</target>
-
+
+ <target name="test" depends="db.claen,-init,setClasspath,debug">
+ <mkdir dir="reports" />
+
+ <junit printsummary="yes" haltonfailure="no">
+ <classpath>
+ <pathelement path="${classpath}" />
+ </classpath>
+
+ <formatter type="plain" />
+ <test name="org.openhealthexchange.openpixpdq.integrationtests.PdqLoadPatientTest" todir="reports" />
+ <batchtest fork="yes" todir="reports">
+ <fileset dir="${build.root}">
+ <include name="**/*Test*.java" />
+ <exclude name="PdqLoadPatientTest.java" />
+ <exclude name="PixLoadConnectathonPatientTest.java" />
+ </fileset>
+ </batchtest>
+ </junit>
+ </target>
+
+ <target name="db.claen">
+ <sql driver="org.postgresql.Driver" url="jdbc:postgresql://localhost/openempi?useUnicode=true&characterEncoding=UTF-8" userid="openempi" password="openempi">
+ <classpath>
+ <pathelement path="../OpenWeb/Web/WEB-INF/lib/postgresql-8.3-603.jdbc4.jar"/>
+ </classpath>
+ <transaction src="conf/DBCleanup.sql"/>
+ </sql>
+ </target>
+
</project>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <an...@us...> - 2009-03-20 16:39:58
|
Revision: 305
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=305&view=rev
Author: anil114
Date: 2009-03-20 16:39:53 +0000 (Fri, 20 Mar 2009)
Log Message:
-----------
Updated configuration page style,
Fixed session transaction isolation problem
Modified Paths:
--------------
trunk/OpenWeb/Web/css/table.css
trunk/OpenWeb/src/org/openhealthexchange/messagestore/service/HiberUtil.java
Modified: trunk/OpenWeb/Web/css/table.css
===================================================================
--- trunk/OpenWeb/Web/css/table.css 2009-03-20 16:12:20 UTC (rev 304)
+++ trunk/OpenWeb/Web/css/table.css 2009-03-20 16:39:53 UTC (rev 305)
@@ -86,9 +86,9 @@
border-bottom: 1px solid silver;
cursor: default;
font-weight: bold;
- font-size: 11px;
+ font-size: 12px;
padding-left: 20px;
- padding-top: 0px;
+ padding-top: 5px;
}
TD.TableRG {
font-family: verdana, arial, helvetica, sans-serif;
Modified: trunk/OpenWeb/src/org/openhealthexchange/messagestore/service/HiberUtil.java
===================================================================
--- trunk/OpenWeb/src/org/openhealthexchange/messagestore/service/HiberUtil.java 2009-03-20 16:12:20 UTC (rev 304)
+++ trunk/OpenWeb/src/org/openhealthexchange/messagestore/service/HiberUtil.java 2009-03-20 16:39:53 UTC (rev 305)
@@ -42,15 +42,15 @@
if(session == null) {
session = sessionFactory.openSession();
- session.connection().setTransactionIsolation(Connection.TRANSACTION_READ_COMMITTED);
+ // session.connection().setTransactionIsolation(Connection.TRANSACTION_READ_COMMITTED);
logger.debug("Opened session for thread :" + Thread.currentThread().getId());
threadSession.set(session);
}
} catch(HibernateException e) {
logger.error("Can not open session"+e);
- } catch(SQLException e) {
+ } /*catch(SQLException e) {
logger.error("Can not open session"+e);
- }
+ }*/
return threadSession.get();
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <we...@us...> - 2009-03-20 16:12:32
|
Revision: 304
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=304&view=rev
Author: wenzhi
Date: 2009-03-20 16:12:20 +0000 (Fri, 20 Mar 2009)
Log Message:
-----------
Updated Braid-base lib version
Modified Paths:
--------------
trunk/OpenWeb/.classpath
trunk/OpenWeb/.settings/org.eclipse.wst.common.component
Modified: trunk/OpenWeb/.classpath
===================================================================
--- trunk/OpenWeb/.classpath 2009-03-20 16:12:03 UTC (rev 303)
+++ trunk/OpenWeb/.classpath 2009-03-20 16:12:20 UTC (rev 304)
@@ -10,16 +10,12 @@
<attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
</attributes>
</classpathentry>
- <classpathentry kind="lib" path="/OpenPIXPDQ/lib/braid/braid-base-1.1.jar" sourcepath="/base/src">
- <attributes>
- <attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
- </attributes>
- </classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="/OpenPIXPDQ/lib/apache-commons/commons-httpclient-3.0.1.jar">
<attributes>
<attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
</attributes>
</classpathentry>
+ <classpathentry kind="lib" path="/OpenPIXPDQ/lib/braid/braid-base-1.2.jar"/>
<classpathentry kind="output" path="classes"/>
</classpath>
Modified: trunk/OpenWeb/.settings/org.eclipse.wst.common.component
===================================================================
--- trunk/OpenWeb/.settings/org.eclipse.wst.common.component 2009-03-20 16:12:03 UTC (rev 303)
+++ trunk/OpenWeb/.settings/org.eclipse.wst.common.component 2009-03-20 16:12:20 UTC (rev 304)
@@ -24,6 +24,9 @@
<dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/lib/OpenPIXPDQ/lib/jaxb/xsdlib.jar">
<dependency-type>uses</dependency-type>
</dependent-module>
+ <dependent-module deploy-path="/WEB-INF/lib" handle="module:/classpath/lib/OpenPIXPDQ/lib/braid/braid-base-1.2.jar">
+ <dependency-type>uses</dependency-type>
+ </dependent-module>
<property name="java-output-path" value="build/classes"/>
<property name="context-root" value="OpenPIXPDQ"/>
</wb-module>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <we...@us...> - 2009-03-20 16:12:17
|
Revision: 303
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=303&view=rev
Author: wenzhi
Date: 2009-03-20 16:12:03 +0000 (Fri, 20 Mar 2009)
Log Message:
-----------
Updated Braid-base lib version
Modified Paths:
--------------
trunk/OpenEmpiAdapter/.classpath
Added Paths:
-----------
trunk/OpenEmpiAdapter/lib/braid-base-1.2.jar
Removed Paths:
-------------
trunk/OpenEmpiAdapter/lib/braid-base-1.1.jar
Modified: trunk/OpenEmpiAdapter/.classpath
===================================================================
--- trunk/OpenEmpiAdapter/.classpath 2009-03-20 16:11:42 UTC (rev 302)
+++ trunk/OpenEmpiAdapter/.classpath 2009-03-20 16:12:03 UTC (rev 303)
@@ -3,10 +3,10 @@
<classpathentry kind="src" path="src/java"/>
<classpathentry kind="src" path="src/test"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
- <classpathentry kind="lib" path="lib/braid-base-1.1.jar" sourcepath="/base/src"/>
<classpathentry kind="lib" path="lib/jbossall-client.jar"/>
<classpathentry kind="lib" path="lib/log4j-1.2.12.jar"/>
<classpathentry kind="lib" path="lib/openempi-ejb.jar" sourcepath="C:/projects/CDE/openempi/src/java"/>
<classpathentry kind="lib" path="lib/openpixpdq.jar"/>
+ <classpathentry kind="lib" path="lib/braid-base-1.2.jar"/>
<classpathentry kind="output" path="build/classes"/>
</classpath>
Deleted: trunk/OpenEmpiAdapter/lib/braid-base-1.1.jar
===================================================================
(Binary files differ)
Added: trunk/OpenEmpiAdapter/lib/braid-base-1.2.jar
===================================================================
(Binary files differ)
Property changes on: trunk/OpenEmpiAdapter/lib/braid-base-1.2.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <we...@us...> - 2009-03-20 16:11:51
|
Revision: 302
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=302&view=rev
Author: wenzhi
Date: 2009-03-20 16:11:42 +0000 (Fri, 20 Mar 2009)
Log Message:
-----------
Updated Braid-base lib version
Modified Paths:
--------------
trunk/OpenPIXPDQ/.classpath
Added Paths:
-----------
trunk/OpenPIXPDQ/lib/braid/braid-base-1.2.jar
Removed Paths:
-------------
trunk/OpenPIXPDQ/lib/braid/braid-base-1.1.jar
Modified: trunk/OpenPIXPDQ/.classpath
===================================================================
--- trunk/OpenPIXPDQ/.classpath 2009-03-20 01:41:57 UTC (rev 301)
+++ trunk/OpenPIXPDQ/.classpath 2009-03-20 16:11:42 UTC (rev 302)
@@ -24,9 +24,9 @@
<classpathentry kind="lib" path="lib/junit/junit-3.8.1.jar"/>
<classpathentry kind="lib" path="lib/apache-commons/commons-httpclient-3.0.1.jar"/>
<classpathentry kind="lib" path="lib/apache-commons/commons-logging-1.1.jar"/>
- <classpathentry kind="lib" path="lib/braid/braid-base-1.1.jar" sourcepath="/base/src"/>
<classpathentry combineaccessrules="false" kind="src" path="/OpenEmpiAdapter"/>
<classpathentry kind="lib" path="/OpenEmpiAdapter/lib/openempi-ejb.jar" sourcepath="C:/projects/CDE/openempi/src/java"/>
<classpathentry kind="lib" path="/OpenEmpiAdapter/lib/jbossall-client.jar"/>
+ <classpathentry kind="lib" path="lib/braid/braid-base-1.2.jar"/>
<classpathentry kind="output" path="build"/>
</classpath>
Deleted: trunk/OpenPIXPDQ/lib/braid/braid-base-1.1.jar
===================================================================
(Binary files differ)
Added: trunk/OpenPIXPDQ/lib/braid/braid-base-1.2.jar
===================================================================
(Binary files differ)
Property changes on: trunk/OpenPIXPDQ/lib/braid/braid-base-1.2.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <we...@us...> - 2009-03-20 01:42:03
|
Revision: 301
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=301&view=rev
Author: wenzhi
Date: 2009-03-20 01:41:57 +0000 (Fri, 20 Mar 2009)
Log Message:
-----------
Renames Resource to Resources
Modified Paths:
--------------
trunk/build.xml
Added Paths:
-----------
trunk/Resources/
Removed Paths:
-------------
trunk/Resource/
Modified: trunk/build.xml
===================================================================
--- trunk/build.xml 2009-03-19 22:27:44 UTC (rev 300)
+++ trunk/build.xml 2009-03-20 01:41:57 UTC (rev 301)
@@ -1,4 +1,4 @@
-<project name="braid" default="openpixpdq-zip-tar" basedir=".">
+<project name="OpenPIXPDQ" default="openpixpdq-zip-tar" basedir=".">
<!-- set global properties for this build -->
<property name="project" value="openpixpdq" />
@@ -11,7 +11,7 @@
<property name="openpixpdq.dir" value="OpenPIXPDQ"/>
<property name="openweb.dir" value="OpenWeb" />
<property name="adapter.dir" value="OpenEmpiAdapter" />
- <property name="resorce.dir" value="Resource" />
+ <property name="resorce.dir" value="Resources" />
<property name="build" location="build"/>
<property name="conf.dir" value="${build}/conf" />
<property name="lib.dir" value="${build}/lib" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <we...@us...> - 2009-03-19 22:27:57
|
Revision: 300
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=300&view=rev
Author: wenzhi
Date: 2009-03-19 22:27:44 +0000 (Thu, 19 Mar 2009)
Log Message:
-----------
Created a data folder and moved ConnectathonTestPatients.txt from the conf folder to it.
Modified Paths:
--------------
trunk/OpenPIXPDQ/.classpath
trunk/OpenPIXPDQ/.settings/org.eclipse.wst.common.component
trunk/OpenPIXPDQ/src/test/org/openhealthexchange/openpixpdq/integrationtests/PixLoadConnectathonPatientTest.java
Added Paths:
-----------
trunk/OpenPIXPDQ/data/
trunk/OpenPIXPDQ/data/ConnectathonTestPatients.txt
Removed Paths:
-------------
trunk/OpenPIXPDQ/conf/tests/ConnectathonTestsPatients.txt
Modified: trunk/OpenPIXPDQ/.classpath
===================================================================
--- trunk/OpenPIXPDQ/.classpath 2009-03-19 22:20:55 UTC (rev 299)
+++ trunk/OpenPIXPDQ/.classpath 2009-03-19 22:27:44 UTC (rev 300)
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src/java"/>
+ <classpathentry kind="src" path="data"/>
<classpathentry kind="src" path="conf"/>
<classpathentry kind="src" path="src/mesatests"/>
<classpathentry kind="src" path="src/test"/>
Modified: trunk/OpenPIXPDQ/.settings/org.eclipse.wst.common.component
===================================================================
--- trunk/OpenPIXPDQ/.settings/org.eclipse.wst.common.component 2009-03-19 22:20:55 UTC (rev 299)
+++ trunk/OpenPIXPDQ/.settings/org.eclipse.wst.common.component 2009-03-19 22:27:44 UTC (rev 300)
@@ -5,5 +5,6 @@
<wb-resource deploy-path="/" source-path="/conf"/>
<wb-resource deploy-path="/" source-path="/src/mesatests"/>
<wb-resource deploy-path="/" source-path="/src/test"/>
+ <wb-resource deploy-path="/" source-path="/data"/>
</wb-module>
</project-modules>
Deleted: trunk/OpenPIXPDQ/conf/tests/ConnectathonTestsPatients.txt
===================================================================
--- trunk/OpenPIXPDQ/conf/tests/ConnectathonTestsPatients.txt 2009-03-19 22:20:55 UTC (rev 299)
+++ trunk/OpenPIXPDQ/conf/tests/ConnectathonTestsPatients.txt 2009-03-19 22:27:44 UTC (rev 300)
@@ -1,90 +0,0 @@
-Patient ID (Master) Namespace ID (Master) Universal ID + Universal ID Type (Master) Patient ID (IHE Local) Namespace ID (IHE Local) Universal ID + Universal ID Type (IHE Local) Name Comment DOB Street Address City State Zip Code Participant ID Sex Race Referring
-PDQ113XX01 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LPDQ113XX01 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO MOORE^CHIP PDQ 19380224 10 PINETREE WEBSTER MO 63119 x M WH 7202^SULLIVAN^KAREN^J^^^MD
-PDQ113XX02 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LPDQ113XX02 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO MOORE^RALPH PDQ 19510707 510 S KINGSHIGHWAY ST. LOUIS MO 63110 x M WH 7202^SULLIVAN^KAREN^J^^^MD
-PDQ113XX03 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LPDQ113XX03 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO MOHR^ALICE PDQ 19580131 820 JORIE BLVD. OAK BROOK IL 60523 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-PDQ113XX04 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LPDQ113XX04 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO MOODY^WARREN PDQ 19780820 1000 CLAYTON RD CLAYTON MO 63105 x M BL 7202^SULLIVAN^KAREN^J^^^MD
-PDQ113XX05 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LPDQ113XX05 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO MOONEY^STAN PDQ 19780920 100 TAYLOR ST LOUIS MO 63110 x M BL 7202^SULLIVAN^KAREN^J^^^MD
-101 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO L101 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO FARNSWORTH^STEVE PIX 19781208 820 JORIE BLVD CHICAGO IL 60523 x M WH 7202^SULLIVAN^KAREN^J^^^MD
-202 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO L202 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO WALTERS^WILLIAM PIXv3 19550505 3900 FLORA PL ST. LOUIS MO 63110 x M BL 7202^SULLIVAN^KAREN^J^^^MD
-110 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO L110 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO QED^ZERO QED 19551201 1742 Lincoln CLAYTON MO 63105 x M WH 7202^SULLIVAN^KAREN^J^^^MD
-120 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO L120 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO QED^ONE QED 19260423 100 N Michigan Chicago IL 60501 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-130 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO L130 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO QED^TWO QED 19910701 100 W Main ST LOUIS MO 63101 x M WH 7202^SULLIVAN^KAREN^J^^^MD
-140 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO L140 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO QED^FOUR QED 19601217 1 Snoway ST LOUIS MO 63130 x M OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5000 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5000 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO XUA^Xavier XUA 19290622 4040 Key Harbour Dr St. Joseph MO 63230 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5007 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5007 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO XCA^Alexander XCA 19290712 5950 Ponderosa Court St. Louis MO 63268 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5008 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5008 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO XCA^Amy XCA 19291005 1730 Pennsylvania Clayton MO 63105 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5009 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5009 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO XCA^Andrew XCA 19291207 1838 William Tell Richmond Heights MO 63117 x M BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5010 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5010 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NormalConsent^Ehrallscriptsconnect BPPC 19291126 685 St. Marie Belleville IL 62976 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5012 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5012 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO RestrictedConsent^Ehrallscriptsconnect BPPC 19291014 11152 Clarissa Eureka MO 63223 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5014 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5014 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NormalConsent^Ehrallscriptsenterprise BPPC 19291229 6825 Natural Bridge Earth City MO 63248 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5016 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5016 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO RestrictedConsent^Ehrallscriptsenterprise BPPC 19290626 10055 Sheldon Clayton MO 63252 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5018 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5018 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NormalConsent^Ehrallscriptspro BPPC 19290725 1301 Hollins Richmond Heights MO 63236 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5020 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5020 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO RestrictedConsent^Ehrallscriptspro BPPC 19290824 2019 Switzer Road Arnold MO 63264 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5022 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5022 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NormalConsent^Ehrgreenway BPPC 19290923 620 Brown Street Fallon IL 62978 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5024 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5024 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO RestrictedConsent^Ehrgreenway BPPC 19291022 8425 Latty Avenue Fenton MO 63263 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5026 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5026 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCNormal^Ehrithicoserve BPPC 19291121 157 Perthshire Avenue St. Elmo IL 62989 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5028 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5028 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCRestricted^Ehrithicoserve BPPC 19291220 8206 South Fay Trenton IL 62972 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5030 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5030 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCNormal^Ehrsage BPPC 19300110 301 North Central Jefferson City MO 63110 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5032 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5032 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCRestricted^Ehrsage BPPC 19290309 131 Holloway Road Crystal City MO 63118 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5034 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5034 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCNormal^Gatewayswpartners BPPC 19290308 9821 Wild Deer Road University City MO 63259 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5036 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5036 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCRestricted^Gatewayswpartners BPPC 19290407 522 Spring Glen Drive High Ridge MO 63228 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5038 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5038 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCNormal^Msgrouterhealthvision BPPC 19290506 14 Stacy Drive Kankakee IL 62968 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5040 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5040 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCRestricted^Msgrouterhealthvision BPPC 19290605 3517 Magnolia Avenue Sullivan MO 63240 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5042 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5042 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCNormal^Phrcapmed BPPC 19290704 1330 Cabrillo Tuscola IL 62995 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5044 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5044 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCRestricted^Phrcapmed BPPC 19290803 9441 Harvest Court Kirksville IL 62986 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5046 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5046 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCNormal^Phrcapmed^PMC BPPC 19290902 734 Woodstream Court Cape Girardeau MO 63120 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5048 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5048 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCRestricted^Phrcapmed^PMC BPPC 19291001 969 Chula Balwin MO 63256 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5050 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5050 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NormalConsent^Ehrallscriptsenterprise^PMC BPPC 19291217 145 Hanley Richmond Heights MO 63117 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5052 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5052 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO RestrictedConsent^Ehrallscriptsenterprise^PMC BPPC 19291218 14 Main Rock Ridge MO 63101 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5054 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5054 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NormalConsent^Ehrallscriptspro^PMC BPPC 19291219 15 Ridgetop Richmond Heights MO 63117 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5056 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5056 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO RestrictedConsent^Ehrallscriptspro^PMC BPPC 19291220 22 Kingston St. Louis MO 63110 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5058 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5058 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NormalConsent^Ehrgreenway^PMC BPPC 19291221 45 Kingsbury Clayton MO 63105 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5060 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5060 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO RestrictedConsent^Ehrgreenway^PMC BPPC 19291222 22 Thrush Brentwood MO 63144 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5062 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5062 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NormalConsent^Ehrgreenway^PMC BPPC 19291223 18 Arundel Clayton MO 63105 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5064 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5064 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO RestrictedConsent^Ehrgreenway^PMC BPPC 19291224 11293 Olive Creve Coeur MO 63141 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5066 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5066 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NAV^Greenway NAV 19291225 14 Flood Plain Creve Coeur MO 63146 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5068 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5068 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NAV^Ithicoserve NAV 19291226 19 Abernathy St Louis MO 63101 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5070 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5070 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NAV^Regenstrief NAV 19291227 100 Bristol Creve Coeur MO 63141 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5072 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5072 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NAV^Saic NAV 19291228 200 Ballas Creve Coeur MO 63141 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5084 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5084 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Adtgecentricitybusiness^Carolyn XDS/PIX/PDQ 19291015 314 Trailview Avenue Earth City MO 63248 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5086 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5086 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Adtgecpn^Catherine XDS/PIX/PDQ 19291130 4217 Red Bud Ave Clayton MO 63252 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5088 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5088 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Adtsms^Christine XDS/PIX/PDQ 19291128 5533 Anna Lee Drive Richmond MO 63236 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5090 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5090 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ciscpsi^Claire XDS/PIX/PDQ 19291105 89 Corisande Hill Road Arnold MO 63264 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5092 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5092 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Cisgecentricityenterprise^Claudia XDS/PIX/PDQ 19300104 2700 Henrietta Street Fallon IL 62978 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5094 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5094 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Contentcreatoremds^Deborah XDS/PIX/PDQ 19300130 840 Garland Place Fenton MO 63263 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5096 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5096 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Contentcreatorintel^Dee XDS/PIX/PDQ 19300110 432 Julian Place Elmo IL 62989 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5098 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5098 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrallscriptsconnect^Denise XDS/PIX/PDQ 19290814 1238 Woodgate Trenton IL 62972 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5100 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5100 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrallscriptsenterprise^Donna XDS/PIX/PDQ 19290710 5909 Page Avenue Jefferson City MO 63110 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5102 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5102 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrallscriptsprofessional^Dora XDS/PIX/PDQ 19290530 7926 Glenside Place Crystal City MO 63118 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5104 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5104 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrblueware^Eliza XDS/PIX/PDQ 19300102 1777 Barbara Ave University City MO 63259 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5106 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5106 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrgecentricityemr^Elizabeth XDS/PIX/PDQ 19290711 4310 St. Ferdinand High Ridge MO 63228 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5108 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5108 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrmckesson^Ellen XDS/PIX/PDQ 19290630 9191 W. Florrisant Kankakee IL 62968 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5110 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5110 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrsage^Emily XDS/PIX/PDQ 19290615 4613 Rosalie Ave Sullivan MO 63240 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5112 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5112 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrspirit^Gina XDS/PIX/PDQ 19290501 5981 Lotus Cape Girardeau MO 63120 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5114 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5114 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Gatewayswpartners^Grace XDS/PIX/PDQ 19290802 419 Cambridge Place Balwin MO 63256 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5116 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5116 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Msgrouterhealthvision^Hazel XDS/PIX/PDQ 19291112 12929 Portulaca Drive Pearl IL 62992 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5118 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5118 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ofgeris^Heather XDS/PIX/PDQ 19300120 504 Eastbrook Lane Springfield MO 63114 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5120 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5120 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Othergehieservices^Jane XDS/PIX/PDQ 19300110 433 Clara Ave Alton IL 62964 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5122 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5122 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Otheribmbridge^Janice XDS/PIX/PDQ 19290831 4301 N. Market Columbia MO 63243 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5124 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5124 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Pacsagfa^Jenny XDS/PIX/PDQ 19291130 4381 Delmar Avenue St. Ann MO 63251 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5126 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5126 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Pacscsh^JoAnn XDS/PIX/PDQ 19290910 11154 Wiskow Road Grey Summit MO 63226 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5128 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5128 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Pacsfujifilmtwo^Juliet XDS/PIX/PDQ 19290710 6016 Maple Avenue Grafton IL 62987 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5130 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5130 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Pacsgecentricitypacs^Kaitlyn XDS/PIX/PDQ 19290630 744 Main Street Potosi MO 63231 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5132 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5132 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Wsxip^Katie XDS/PIX/PDQ 19290420 9008 Niles Carbondale IL 62984 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5134 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5134 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Xdsaebmtech^Linda XDS/PIX/PDQ 19300102 1417 Yount Drive St. Peters MO 63112 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5136 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5136 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Othersaic^Lori XDS/PIX/PDQ 19300115 4271 Shenandoah Washington MO 63122 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5138 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5138 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Adtphreesia^Marcy XDS/PIX/PDQ 19291012 9771 E. Vista Drive St. James MO 63242 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5140 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5140 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehremergisoft^Margaret XDS/PIX/PDQ 19291128 11942 Loxley Lane Branson MO 63232 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5142 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5142 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrepic^Marilyn XDS/PIX/PDQ 19291012 421 Chelsea Way Kirkwood MO 63262 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5144 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5144 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrgreenway^Mary XDS/PIX/PDQ 19290613 5901 S. Kingshighway Columbia IL 62960 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5146 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5146 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrmie^Paige XDS/PIX/PDQ 19290418 1085 Penny Royal Way Hannibal MO 63234 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5148 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5148 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrnextgen^Pamela XDS/PIX/PDQ 19290419 3032 Sims Avenue Nashville IL 62982 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5150 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5150 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Cisemergisoft^Peggy XDS/PIX/PDQ 19290523 1077 Dawn Valley Drive Rolla MO 63244 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5152 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5152 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Xdsabrephds^Sandy XDS/PIX/PDQ 19290628 120 Echo Hill Circle Chicago IL 62975 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5154 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5154 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Xdsbreperc^Sarah XDS/PIX/PDQ 19300119 504 Trudy Lane Affton MO 63254 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5156 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5156 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Xdsrephsi^Sherry XDS/PIX/PDQ 19290529 3310 Texas Kansas City MO 63111 x F BL 7202^SULLIVAN^KAREN^J^^^MD
-NA5158 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5158 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Phrcapmed^Sonya XDS/PIX/PDQ 19290529 22 Alfresco Drive Lebanon IL 62998 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5160 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5160 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Phrepic^Sue XDS/PIX/PDQ 19300105 103 Big Valley Circle Hardin IL 62990 x F WH 7202^SULLIVAN^KAREN^J^^^MD
-NA5162 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5162 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Cislumedx^Thelma XDS/PIX/PDQ 19290426 881 Prigge Nebo IL 62962 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA5164 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5164 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Gemuse^Tina XDS/PIX/PDQ 19290512 932 Du Pre Street Urbana IL 62994 x F OT 7202^SULLIVAN^KAREN^J^^^MD
-NA6166 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5166 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Phrnmc^Tracy XDS/PIX/PDQ 19290513 885 W Prigge Nebo IL 62962 x F OT 7202^SULLIVAN^KAREN^J^^^MD
Added: trunk/OpenPIXPDQ/data/ConnectathonTestPatients.txt
===================================================================
--- trunk/OpenPIXPDQ/data/ConnectathonTestPatients.txt (rev 0)
+++ trunk/OpenPIXPDQ/data/ConnectathonTestPatients.txt 2009-03-19 22:27:44 UTC (rev 300)
@@ -0,0 +1,90 @@
+Patient ID (Master) Namespace ID (Master) Universal ID + Universal ID Type (Master) Patient ID (IHE Local) Namespace ID (IHE Local) Universal ID + Universal ID Type (IHE Local) Name Comment DOB Street Address City State Zip Code Participant ID Sex Race Referring
+PDQ113XX01 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LPDQ113XX01 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO MOORE^CHIP PDQ 19380224 10 PINETREE WEBSTER MO 63119 x M WH 7202^SULLIVAN^KAREN^J^^^MD
+PDQ113XX02 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LPDQ113XX02 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO MOORE^RALPH PDQ 19510707 510 S KINGSHIGHWAY ST. LOUIS MO 63110 x M WH 7202^SULLIVAN^KAREN^J^^^MD
+PDQ113XX03 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LPDQ113XX03 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO MOHR^ALICE PDQ 19580131 820 JORIE BLVD. OAK BROOK IL 60523 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+PDQ113XX04 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LPDQ113XX04 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO MOODY^WARREN PDQ 19780820 1000 CLAYTON RD CLAYTON MO 63105 x M BL 7202^SULLIVAN^KAREN^J^^^MD
+PDQ113XX05 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LPDQ113XX05 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO MOONEY^STAN PDQ 19780920 100 TAYLOR ST LOUIS MO 63110 x M BL 7202^SULLIVAN^KAREN^J^^^MD
+101 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO L101 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO FARNSWORTH^STEVE PIX 19781208 820 JORIE BLVD CHICAGO IL 60523 x M WH 7202^SULLIVAN^KAREN^J^^^MD
+202 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO L202 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO WALTERS^WILLIAM PIXv3 19550505 3900 FLORA PL ST. LOUIS MO 63110 x M BL 7202^SULLIVAN^KAREN^J^^^MD
+110 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO L110 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO QED^ZERO QED 19551201 1742 Lincoln CLAYTON MO 63105 x M WH 7202^SULLIVAN^KAREN^J^^^MD
+120 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO L120 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO QED^ONE QED 19260423 100 N Michigan Chicago IL 60501 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+130 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO L130 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO QED^TWO QED 19910701 100 W Main ST LOUIS MO 63101 x M WH 7202^SULLIVAN^KAREN^J^^^MD
+140 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO L140 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO QED^FOUR QED 19601217 1 Snoway ST LOUIS MO 63130 x M OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5000 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5000 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO XUA^Xavier XUA 19290622 4040 Key Harbour Dr St. Joseph MO 63230 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5007 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5007 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO XCA^Alexander XCA 19290712 5950 Ponderosa Court St. Louis MO 63268 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5008 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5008 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO XCA^Amy XCA 19291005 1730 Pennsylvania Clayton MO 63105 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5009 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5009 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO XCA^Andrew XCA 19291207 1838 William Tell Richmond Heights MO 63117 x M BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5010 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5010 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NormalConsent^Ehrallscriptsconnect BPPC 19291126 685 St. Marie Belleville IL 62976 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5012 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5012 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO RestrictedConsent^Ehrallscriptsconnect BPPC 19291014 11152 Clarissa Eureka MO 63223 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5014 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5014 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NormalConsent^Ehrallscriptsenterprise BPPC 19291229 6825 Natural Bridge Earth City MO 63248 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5016 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5016 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO RestrictedConsent^Ehrallscriptsenterprise BPPC 19290626 10055 Sheldon Clayton MO 63252 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5018 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5018 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NormalConsent^Ehrallscriptspro BPPC 19290725 1301 Hollins Richmond Heights MO 63236 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5020 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5020 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO RestrictedConsent^Ehrallscriptspro BPPC 19290824 2019 Switzer Road Arnold MO 63264 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5022 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5022 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NormalConsent^Ehrgreenway BPPC 19290923 620 Brown Street Fallon IL 62978 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5024 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5024 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO RestrictedConsent^Ehrgreenway BPPC 19291022 8425 Latty Avenue Fenton MO 63263 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5026 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5026 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCNormal^Ehrithicoserve BPPC 19291121 157 Perthshire Avenue St. Elmo IL 62989 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5028 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5028 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCRestricted^Ehrithicoserve BPPC 19291220 8206 South Fay Trenton IL 62972 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5030 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5030 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCNormal^Ehrsage BPPC 19300110 301 North Central Jefferson City MO 63110 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5032 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5032 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCRestricted^Ehrsage BPPC 19290309 131 Holloway Road Crystal City MO 63118 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5034 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5034 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCNormal^Gatewayswpartners BPPC 19290308 9821 Wild Deer Road University City MO 63259 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5036 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5036 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCRestricted^Gatewayswpartners BPPC 19290407 522 Spring Glen Drive High Ridge MO 63228 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5038 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5038 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCNormal^Msgrouterhealthvision BPPC 19290506 14 Stacy Drive Kankakee IL 62968 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5040 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5040 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCRestricted^Msgrouterhealthvision BPPC 19290605 3517 Magnolia Avenue Sullivan MO 63240 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5042 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5042 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCNormal^Phrcapmed BPPC 19290704 1330 Cabrillo Tuscola IL 62995 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5044 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5044 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCRestricted^Phrcapmed BPPC 19290803 9441 Harvest Court Kirksville IL 62986 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5046 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5046 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCNormal^Phrcapmed^PMC BPPC 19290902 734 Woodstream Court Cape Girardeau MO 63120 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5048 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5048 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO BPPCRestricted^Phrcapmed^PMC BPPC 19291001 969 Chula Balwin MO 63256 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5050 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5050 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NormalConsent^Ehrallscriptsenterprise^PMC BPPC 19291217 145 Hanley Richmond Heights MO 63117 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5052 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5052 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO RestrictedConsent^Ehrallscriptsenterprise^PMC BPPC 19291218 14 Main Rock Ridge MO 63101 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5054 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5054 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NormalConsent^Ehrallscriptspro^PMC BPPC 19291219 15 Ridgetop Richmond Heights MO 63117 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5056 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5056 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO RestrictedConsent^Ehrallscriptspro^PMC BPPC 19291220 22 Kingston St. Louis MO 63110 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5058 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5058 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NormalConsent^Ehrgreenway^PMC BPPC 19291221 45 Kingsbury Clayton MO 63105 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5060 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5060 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO RestrictedConsent^Ehrgreenway^PMC BPPC 19291222 22 Thrush Brentwood MO 63144 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5062 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5062 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NormalConsent^Ehrgreenway^PMC BPPC 19291223 18 Arundel Clayton MO 63105 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5064 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5064 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO RestrictedConsent^Ehrgreenway^PMC BPPC 19291224 11293 Olive Creve Coeur MO 63141 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5066 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5066 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NAV^Greenway NAV 19291225 14 Flood Plain Creve Coeur MO 63146 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5068 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5068 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NAV^Ithicoserve NAV 19291226 19 Abernathy St Louis MO 63101 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5070 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5070 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NAV^Regenstrief NAV 19291227 100 Bristol Creve Coeur MO 63141 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5072 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5072 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO NAV^Saic NAV 19291228 200 Ballas Creve Coeur MO 63141 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5084 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5084 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Adtgecentricitybusiness^Carolyn XDS/PIX/PDQ 19291015 314 Trailview Avenue Earth City MO 63248 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5086 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5086 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Adtgecpn^Catherine XDS/PIX/PDQ 19291130 4217 Red Bud Ave Clayton MO 63252 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5088 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5088 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Adtsms^Christine XDS/PIX/PDQ 19291128 5533 Anna Lee Drive Richmond MO 63236 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5090 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5090 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ciscpsi^Claire XDS/PIX/PDQ 19291105 89 Corisande Hill Road Arnold MO 63264 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5092 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5092 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Cisgecentricityenterprise^Claudia XDS/PIX/PDQ 19300104 2700 Henrietta Street Fallon IL 62978 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5094 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5094 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Contentcreatoremds^Deborah XDS/PIX/PDQ 19300130 840 Garland Place Fenton MO 63263 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5096 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5096 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Contentcreatorintel^Dee XDS/PIX/PDQ 19300110 432 Julian Place Elmo IL 62989 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5098 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5098 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrallscriptsconnect^Denise XDS/PIX/PDQ 19290814 1238 Woodgate Trenton IL 62972 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5100 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5100 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrallscriptsenterprise^Donna XDS/PIX/PDQ 19290710 5909 Page Avenue Jefferson City MO 63110 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5102 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5102 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrallscriptsprofessional^Dora XDS/PIX/PDQ 19290530 7926 Glenside Place Crystal City MO 63118 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5104 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5104 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrblueware^Eliza XDS/PIX/PDQ 19300102 1777 Barbara Ave University City MO 63259 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5106 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5106 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrgecentricityemr^Elizabeth XDS/PIX/PDQ 19290711 4310 St. Ferdinand High Ridge MO 63228 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5108 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5108 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrmckesson^Ellen XDS/PIX/PDQ 19290630 9191 W. Florrisant Kankakee IL 62968 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5110 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5110 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrsage^Emily XDS/PIX/PDQ 19290615 4613 Rosalie Ave Sullivan MO 63240 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5112 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5112 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrspirit^Gina XDS/PIX/PDQ 19290501 5981 Lotus Cape Girardeau MO 63120 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5114 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5114 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Gatewayswpartners^Grace XDS/PIX/PDQ 19290802 419 Cambridge Place Balwin MO 63256 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5116 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5116 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Msgrouterhealthvision^Hazel XDS/PIX/PDQ 19291112 12929 Portulaca Drive Pearl IL 62992 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5118 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5118 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ofgeris^Heather XDS/PIX/PDQ 19300120 504 Eastbrook Lane Springfield MO 63114 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5120 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5120 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Othergehieservices^Jane XDS/PIX/PDQ 19300110 433 Clara Ave Alton IL 62964 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5122 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5122 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Otheribmbridge^Janice XDS/PIX/PDQ 19290831 4301 N. Market Columbia MO 63243 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5124 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5124 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Pacsagfa^Jenny XDS/PIX/PDQ 19291130 4381 Delmar Avenue St. Ann MO 63251 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5126 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5126 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Pacscsh^JoAnn XDS/PIX/PDQ 19290910 11154 Wiskow Road Grey Summit MO 63226 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5128 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5128 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Pacsfujifilmtwo^Juliet XDS/PIX/PDQ 19290710 6016 Maple Avenue Grafton IL 62987 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5130 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5130 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Pacsgecentricitypacs^Kaitlyn XDS/PIX/PDQ 19290630 744 Main Street Potosi MO 63231 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5132 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5132 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Wsxip^Katie XDS/PIX/PDQ 19290420 9008 Niles Carbondale IL 62984 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5134 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5134 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Xdsaebmtech^Linda XDS/PIX/PDQ 19300102 1417 Yount Drive St. Peters MO 63112 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5136 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5136 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Othersaic^Lori XDS/PIX/PDQ 19300115 4271 Shenandoah Washington MO 63122 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5138 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5138 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Adtphreesia^Marcy XDS/PIX/PDQ 19291012 9771 E. Vista Drive St. James MO 63242 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5140 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5140 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehremergisoft^Margaret XDS/PIX/PDQ 19291128 11942 Loxley Lane Branson MO 63232 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5142 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5142 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrepic^Marilyn XDS/PIX/PDQ 19291012 421 Chelsea Way Kirkwood MO 63262 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5144 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5144 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrgreenway^Mary XDS/PIX/PDQ 19290613 5901 S. Kingshighway Columbia IL 62960 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5146 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5146 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrmie^Paige XDS/PIX/PDQ 19290418 1085 Penny Royal Way Hannibal MO 63234 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5148 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5148 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Ehrnextgen^Pamela XDS/PIX/PDQ 19290419 3032 Sims Avenue Nashville IL 62982 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5150 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5150 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Cisemergisoft^Peggy XDS/PIX/PDQ 19290523 1077 Dawn Valley Drive Rolla MO 63244 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5152 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5152 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Xdsabrephds^Sandy XDS/PIX/PDQ 19290628 120 Echo Hill Circle Chicago IL 62975 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5154 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5154 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Xdsbreperc^Sarah XDS/PIX/PDQ 19300119 504 Trudy Lane Affton MO 63254 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5156 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5156 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Xdsrephsi^Sherry XDS/PIX/PDQ 19290529 3310 Texas Kansas City MO 63111 x F BL 7202^SULLIVAN^KAREN^J^^^MD
+NA5158 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5158 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Phrcapmed^Sonya XDS/PIX/PDQ 19290529 22 Alfresco Drive Lebanon IL 62998 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5160 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5160 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Phrepic^Sue XDS/PIX/PDQ 19300105 103 Big Valley Circle Hardin IL 62990 x F WH 7202^SULLIVAN^KAREN^J^^^MD
+NA5162 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5162 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Cislumedx^Thelma XDS/PIX/PDQ 19290426 881 Prigge Nebo IL 62962 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA5164 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5164 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Gemuse^Tina XDS/PIX/PDQ 19290512 932 Du Pre Street Urbana IL 62994 x F OT 7202^SULLIVAN^KAREN^J^^^MD
+NA6166 IHENA &1.3.6.1.4.1.21367.2009.1.2.300&ISO LNA5166 IHELOCAL &1.3.6.1.4.1.21367.2009.1.2.310&ISO Phrnmc^Tracy XDS/PIX/PDQ 19290513 885 W Prigge Nebo IL 62962 x F OT 7202^SULLIVAN^KAREN^J^^^MD
Modified: trunk/OpenPIXPDQ/src/test/org/openhealthexchange/openpixpdq/integrationtests/PixLoadConnectathonPatientTest.java
===================================================================
--- trunk/OpenPIXPDQ/src/test/org/openhealthexchange/openpixpdq/integrationtests/PixLoadConnectathonPatientTest.java 2009-03-19 22:20:55 UTC (rev 299)
+++ trunk/OpenPIXPDQ/src/test/org/openhealthexchange/openpixpdq/integrationtests/PixLoadConnectathonPatientTest.java 2009-03-19 22:27:44 UTC (rev 300)
@@ -54,7 +54,7 @@
*/
public void testLoadPatients() {
try {
- InputStream is = PixLoadConnectathonPatientTest.class.getResourceAsStream("/tests/ConnectathonTestsPatients.txt");
+ InputStream is = PixLoadConnectathonPatientTest.class.getResourceAsStream("/ConnectathonTestPatients.txt");
BufferedReader br = new BufferedReader(new InputStreamReader(is));
//skip the first header line
String line = br.readLine();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <we...@us...> - 2009-03-19 22:21:00
|
Revision: 299
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=299&view=rev
Author: wenzhi
Date: 2009-03-19 22:20:55 +0000 (Thu, 19 Mar 2009)
Log Message:
-----------
Changed log level for HiberUtil.
Modified Paths:
--------------
trunk/OpenWeb/src/org/openhealthexchange/messagestore/service/HiberUtil.java
Modified: trunk/OpenWeb/src/org/openhealthexchange/messagestore/service/HiberUtil.java
===================================================================
--- trunk/OpenWeb/src/org/openhealthexchange/messagestore/service/HiberUtil.java 2009-03-19 21:58:45 UTC (rev 298)
+++ trunk/OpenWeb/src/org/openhealthexchange/messagestore/service/HiberUtil.java 2009-03-19 22:20:55 UTC (rev 299)
@@ -28,7 +28,7 @@
sessionFactory = config.buildSessionFactory();
} catch (Throwable ex) {
// Make sure you log the exception, as it might be swallowed
- System.err.println("Initial SessionFactory creation failed." + ex);
+ logger.fatal("Initial SessionFactory creation failed." + ex);
throw new ExceptionInInitializerError(ex);
}
}
@@ -43,13 +43,13 @@
session = sessionFactory.openSession();
session.connection().setTransactionIsolation(Connection.TRANSACTION_READ_COMMITTED);
- logger.info("Opened session for thread :" + Thread.currentThread().getId());
+ logger.debug("Opened session for thread :" + Thread.currentThread().getId());
threadSession.set(session);
}
} catch(HibernateException e) {
- logger.debug("Can not open session"+e);
+ logger.error("Can not open session"+e);
} catch(SQLException e) {
- logger.debug("Can not open session"+e);
+ logger.error("Can not open session"+e);
}
return threadSession.get();
}
@@ -60,9 +60,9 @@
threadSession.set(null);
if(session != null && session.isOpen())
session.close();
- logger.info("Closed session for thread :" + Thread.currentThread().getId());
+ logger.debug("Closed session for thread :" + Thread.currentThread().getId());
} catch(HibernateException e) {
- logger.debug("Can not close session"+e);
+ logger.error("Can not close session"+e);
}
}
@@ -70,13 +70,13 @@
Transaction tx = threadTransaction.get();
try {
if(tx == null) {
- logger.info("Starting transaction for Thread : " + Thread.currentThread().getId());
+ logger.debug("Starting transaction for Thread : " + Thread.currentThread().getId());
tx = getSession().beginTransaction();
threadTransaction.set(tx);
}
} catch(HibernateException e) {
- logger.debug("Can not start transaction"+e);
+ logger.error("Can not start transaction"+e);
}
}
@@ -84,12 +84,12 @@
Transaction tx = threadTransaction.get();
try {
if(tx != null && !tx.wasCommitted() && !tx.wasRolledBack()) {
- logger.info("Commiting transaction for Thread : " + Thread.currentThread().getId());
+ logger.debug("Commiting transaction for Thread : " + Thread.currentThread().getId());
tx.commit();
}
threadTransaction.set(null);
} catch(HibernateException e) {
- logger.debug("Can not commit transaction"+e);
+ logger.error("Can not commit transaction"+e);
}
}
@@ -98,11 +98,11 @@
try {
threadTransaction.set(null);
if(tx != null && !tx.wasCommitted() && !tx.wasRolledBack()) {
- logger.info("Trying to rollback transaction for Thread : " + Thread.currentThread().getId());
+ logger.debug("Trying to rollback transaction for Thread : " + Thread.currentThread().getId());
tx.rollback();
}
} catch(HibernateException e) {
- logger.debug("Can not rollback transaction"+e);
+ logger.error("Can not rollback transaction"+e);
} finally {
closeSession();
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <we...@us...> - 2009-03-19 21:58:51
|
Revision: 298
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=298&view=rev
Author: wenzhi
Date: 2009-03-19 21:58:45 +0000 (Thu, 19 Mar 2009)
Log Message:
-----------
Disable PIX Update Notification configuration by default.
Modified Paths:
--------------
trunk/OpenPIXPDQ/conf/mesatests/actors/IheActors.xml
Modified: trunk/OpenPIXPDQ/conf/mesatests/actors/IheActors.xml
===================================================================
--- trunk/OpenPIXPDQ/conf/mesatests/actors/IheActors.xml 2009-03-19 21:24:33 UTC (rev 297)
+++ trunk/OpenPIXPDQ/conf/mesatests/actors/IheActors.xml 2009-03-19 21:58:45 UTC (rev 298)
@@ -19,15 +19,15 @@
<Description>Misys PIX Manager</Description>
<Connection source="misys-pix-manager" />
<!--Define 0 or more PIX Consumers that subscribe to PIX Update Notification -->
- <PixConsumer connection="swpartners" />
+ <!-- PixConsumer connection="swpartners" /-->
<!-- PixConsumer connection="tiani-spirit" /-->
</Actor>
<Actor name="pixman_secure" type="PixManager">
<Description>Misys Secure PIX Manager</Description>
<Connection source="misys-secure-pix-manager" />
<!--Define 0 or more PIX Consumers that subscribe to PIX Update Notification -->
- <PixConsumer connection="swpartners" />
- <PixConsumer connection="tiani-spirit" />
+ <!-- PixConsumer connection="swpartners" /-->
+ <!-- PixConsumer connection="tiani-spirit" /-->
</Actor>
<!--The PD Supplier actor configuration-->
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <we...@us...> - 2009-03-19 21:43:59
|
Revision: 296
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=296&view=rev
Author: wenzhi
Date: 2009-03-19 21:18:13 +0000 (Thu, 19 Mar 2009)
Log Message:
-----------
1. Modified XML configuration file elements to be consistent across the board.
2. Changed the name of property PaginationByOpenPIXPDQ to ContinuationQueryByOpenPIXPDQ for PDQ server.
3. Disabled database Message log by default
4. Disabled Audit log by default
Modified Paths:
--------------
trunk/OpenPIXPDQ/conf/mesatests/actors/AuditRepositoryConnections.xml
trunk/OpenPIXPDQ/conf/mesatests/actors/IheActors.xml
trunk/OpenPIXPDQ/conf/mesatests/actors/PdSupplierConnections.xml
trunk/OpenPIXPDQ/conf/mesatests/actors/PixConsumerConnections.xml
trunk/OpenPIXPDQ/conf/mesatests/actors/PixManagerConnections.xml
trunk/OpenPIXPDQ/conf/tests/actors/AuditRepositoryConnections.xml
trunk/OpenPIXPDQ/conf/tests/actors/IheActors.xml
trunk/OpenPIXPDQ/conf/tests/actors/PdSupplierConnections.xml
trunk/OpenPIXPDQ/conf/tests/actors/PixConsumerConnections.xml
trunk/OpenPIXPDQ/conf/tests/actors/PixManagerConnections.xml
trunk/OpenPIXPDQ/src/java/org/openhealthexchange/openpixpdq/ihe/impl_v2/PdQueryHandler.java
Modified: trunk/OpenPIXPDQ/conf/mesatests/actors/AuditRepositoryConnections.xml
===================================================================
--- trunk/OpenPIXPDQ/conf/mesatests/actors/AuditRepositoryConnections.xml 2009-03-19 21:11:02 UTC (rev 295)
+++ trunk/OpenPIXPDQ/conf/mesatests/actors/AuditRepositoryConnections.xml 2009-03-19 21:18:13 UTC (rev 296)
@@ -4,107 +4,107 @@
<!-- For IHE Actor Test -->
<Configuration>
- <standardconnection name="nist-arr-bsd">
- <hostname>nist1.ihe.net</hostname>
- <port>8087</port>
+ <StandardConnection name="nist-arr-bsd">
+ <HostName>nist1.ihe.net</HostName>
+ <Port>8087</Port>
<Property name="TYPE" value="BSD SYSLOG" />
<PropertySet name="localhost">
- <entry name="MACHINENAME" value="allscripts4" />
- <entry name="HOSTNAME" value="allscripts4" />
- <entry name="IP" value="10.242.0.51" />
- <entry name="SITE" value="ALLSCRIPTS" />
- <entry name="SOURCE" value="ALLSCRIPTS" />
- <entry name="APPNAME" value="PAT_IDENTITY_X_REF_MGR_MISYS" />
- <entry name="FACILITY" value="ALLSCRIPTS" />
- <!--entry value="AENAME=ER_MISYS" name="AENAME"/-->
+ <Entry name="MACHINENAME" value="allscripts4" />
+ <Entry name="HOSTNAME" value="allscripts4" />
+ <Entry name="IP" value="10.242.0.51" />
+ <Entry name="SITE" value="ALLSCRIPTS" />
+ <Entry name="SOURCE" value="ALLSCRIPTS" />
+ <Entry name="APPNAME" value="PAT_IDENTITY_X_REF_MGR_MISYS" />
+ <Entry name="FACILITY" value="ALLSCRIPTS" />
+ <!--Entry value="AENAME=ER_MISYS" name="AENAME"/-->
</PropertySet>
- <propertyset name="ParticipantObject">
- <entry name="PatientNameEncoding" value="HL7" />
- <entry name="PatientIdEncoding" value="HL7" />
- </propertyset>
- </standardconnection>
+ <PropertySet name="ParticipantObject">
+ <Entry name="PatientNameEncoding" value="HL7" />
+ <Entry name="PatientIdEncoding" value="HL7" />
+ </PropertySet>
+ </StandardConnection>
- <standardconnection name="ibm-arr-bsd">
- <hostname>nist1.ihe.net</hostname>
- <port>15500</port>
+ <StandardConnection name="ibm-arr-bsd">
+ <HostName>nist1.ihe.net</HostName>
+ <Port>15500</Port>
<Property name="TYPE" value="BSD SYSLOG" />
<PropertySet name="localhost">
- <entry name="MACHINENAME" value="allscripts4" />
- <entry name="HOSTNAME" value="allscripts4" />
- <entry name="IP" value="10.242.0.51" />
- <entry name="SITE" value="ALLSCRIPTS" />
- <entry name="SOURCE" value="ALLSCRIPTS" />
- <entry name="APPNAME" value="PAT_IDENTITY_X_REF_MGR_MISYS" />
- <entry name="FACILITY" value="ALLSCRIPTS" />
- <!--entry value="AENAME=ER_MISYS" name="AENAME"/-->
+ <Entry name="MACHINENAME" value="allscripts4" />
+ <Entry name="HOSTNAME" value="allscripts4" />
+ <Entry name="IP" value="10.242.0.51" />
+ <Entry name="SITE" value="ALLSCRIPTS" />
+ <Entry name="SOURCE" value="ALLSCRIPTS" />
+ <Entry name="APPNAME" value="PAT_IDENTITY_X_REF_MGR_MISYS" />
+ <Entry name="FACILITY" value="ALLSCRIPTS" />
+ <!--Entry value="AENAME=ER_MISYS" name="AENAME"/-->
</PropertySet>
- <propertyset name="ParticipantObject">
- <entry name="PatientNameEncoding" value="HL7" />
- <entry name="PatientIdEncoding" value="HL7" />
- </propertyset>
- </standardconnection>
+ <PropertySet name="ParticipantObject">
+ <Entry name="PatientNameEncoding" value="HL7" />
+ <Entry name="PatientIdEncoding" value="HL7" />
+ </PropertySet>
+ </StandardConnection>
- <standardconnection name="log4j_audittrail">
+ <StandardConnection name="log4j_audittrail">
<Property name="TYPE" value="LOG4J LOGGER" />
<PropertySet name="localhost">
- <entry name="MACHINENAME" value="allscripts4" />
- <entry name="HOSTNAME" value="allscripts4" />
- <entry name="IP" value="10.242.0.51" />
- <entry name="SITE" value="ALLSCRIPTS" />
- <entry name="SOURCE" value="ALLSCRIPTS" />
- <entry name="APPNAME" value="PAT_IDENTITY_X_REF_MGR_MISYS" />
- <entry name="FACILITY" value="ALLSCRIPTS" />
+ <Entry name="MACHINENAME" value="allscripts4" />
+ <Entry name="HOSTNAME" value="allscripts4" />
+ <Entry name="IP" value="10.242.0.51" />
+ <Entry name="SITE" value="ALLSCRIPTS" />
+ <Entry name="SOURCE" value="ALLSCRIPTS" />
+ <Entry name="APPNAME" value="PAT_IDENTITY_X_REF_MGR_MISYS" />
+ <Entry name="FACILITY" value="ALLSCRIPTS" />
</PropertySet>
- <propertyset name="ParticipantObject">
- <entry name="PatientNameEncoding" value="HL7" />
- <entry name="PatientIdEncoding" value="HL7" />
- </propertyset>
- </standardconnection>
+ <PropertySet name="ParticipantObject">
+ <Entry name="PatientNameEncoding" value="HL7" />
+ <Entry name="PatientIdEncoding" value="HL7" />
+ </PropertySet>
+ </StandardConnection>
- <standardconnection name="mesa_arr_bsd">
- <hostname>localhost</hostname>
- <port>4000</port>
+ <StandardConnection name="mesa_arr_bsd">
+ <HostName>localhost</HostName>
+ <Port>4000</Port>
<Property name="TYPE" value="BSD SYSLOG" />
<PropertySet name="localhost">
- <entry name="MACHINENAME" value="allscripts4" />
- <entry name="HOSTNAME" value="allscripts4" />
- <entry name="IP" value="10.242.0.51" />
- <entry name="SITE" value="ALLSCRIPTS" />
- <entry name="SOURCE" value="ALLSCRIPTS" />
- <entry name="APPNAME" value="PAT_IDENTITY_X_REF_MGR_MISYS" />
- <entry name="FACILITY" value="ALLSCRIPTS" />
- <!--entry value="AENAME=ER_MISYS" name="AENAME"/-->
+ <Entry name="MACHINENAME" value="allscripts4" />
+ <Entry name="HOSTNAME" value="allscripts4" />
+ <Entry name="IP" value="10.242.0.51" />
+ <Entry name="SITE" value="ALLSCRIPTS" />
+ <Entry name="SOURCE" value="ALLSCRIPTS" />
+ <Entry name="APPNAME" value="PAT_IDENTITY_X_REF_MGR_MISYS" />
+ <Entry name="FACILITY" value="ALLSCRIPTS" />
+ <!--Entry value="AENAME=ER_MISYS" name="AENAME"/-->
</PropertySet>
- <propertyset name="ParticipantObject">
- <entry name="PatientNameEncoding" value="HL7" />
- <entry name="PatientIdEncoding" value="HL7" />
- </propertyset>
- </standardconnection>
+ <PropertySet name="ParticipantObject">
+ <Entry name="PatientNameEncoding" value="HL7" />
+ <Entry name="PatientIdEncoding" value="HL7" />
+ </PropertySet>
+ </StandardConnection>
- <secureconnection name="ALLSCRIPTS-SECURE">
- <hostname>localhost</hostname>
- <port>4300</port>
+ <SecureConnection name="ALLSCRIPTS-SECURE">
+ <HostName>localhost</HostName>
+ <Port>4300</Port>
<Property name="NAME" value="mesa-test" />
<Property name="URLPATH" value="./index" />
<PropertySet name="localhost">
- <entry name="MACHINENAME" value="allscripts4" />
- <entry name="HOSTNAME" value="allscripts4" />
- <entry name="IP" value="10.242.0.51" />
- <entry name="SITE" value="ALLSCRIPTS" />
- <entry name="SOURCE" value="ALLSCRIPTS" />
- <entry name="APPNAME" value="PAT_IDENTITY_X_REF_MGR_MISYS" />
- <entry name="FACILITY" value="ALLSCRIPTS" />
+ <Entry name="MACHINENAME" value="allscripts4" />
+ <Entry name="HOSTNAME" value="allscripts4" />
+ <Entry name="IP" value="10.242.0.51" />
+ <Entry name="SITE" value="ALLSCRIPTS" />
+ <Entry name="SOURCE" value="ALLSCRIPTS" />
+ <Entry name="APPNAME" value="PAT_IDENTITY_X_REF_MGR_MISYS" />
+ <Entry name="FACILITY" value="ALLSCRIPTS" />
</PropertySet>
- <propertyset name="ParticipantObject">
- <entry name="PatientNameEncoding" value="HL7" />
- <entry name="PatientIdEncoding" value="HL7" />
- </propertyset>
+ <PropertySet name="ParticipantObject">
+ <Entry name="PatientNameEncoding" value="HL7" />
+ <Entry name="PatientIdEncoding" value="HL7" />
+ </PropertySet>
<!-- Trust and Keystore -->
- <KEYSTORE>certs/mesa_keystore1_2009.p12</KEYSTORE>
- <KEYPASS>password</KEYPASS>
- <TRUSTSTORE>certs/mesa_truststore_2009.jks</TRUSTSTORE>
- <TRUSTPASS>password</TRUSTPASS>
- </secureconnection>
+ <KeyStore>certs/mesa_keystore1_2009.p12</KeyStore>
+ <KeyPass>password</KeyPass>
+ <TrustStore>certs/mesa_truststore_2009.jks</TrustStore>
+ <TrustPass>password</TrustPass>
+ </SecureConnection>
</Configuration>
\ No newline at end of file
Modified: trunk/OpenPIXPDQ/conf/mesatests/actors/IheActors.xml
===================================================================
--- trunk/OpenPIXPDQ/conf/mesatests/actors/IheActors.xml 2009-03-19 21:11:02 UTC (rev 295)
+++ trunk/OpenPIXPDQ/conf/mesatests/actors/IheActors.xml 2009-03-19 21:18:13 UTC (rev 296)
@@ -6,57 +6,59 @@
<Configuration>
<!--Defines the configuration of Audit Repository Server for Audit Client-->
- <connectionfile file="AuditRepositoryConnections.xml" />
+ <ConnectionFile file="AuditRepositoryConnections.xml" />
<!--Defines the configuration of local system as PD Supplier-->
- <connectionfile file="PdSupplierConnections.xml" />
+ <ConnectionFile file="PdSupplierConnections.xml" />
<!--Defines the configuration of local system as PIX Manager-->
- <connectionfile file="PixManagerConnections.xml" />
+ <ConnectionFile file="PixManagerConnections.xml" />
<!--Defines the configuration of PIX Consumers-->
- <connectionfile file="PixConsumerConnections.xml" />
+ <ConnectionFile file="PixConsumerConnections.xml" />
<!--The PIX Manager actor configuration-->
- <actor name="pixman" type="PixManager">
- <description>Misys PIX Manager</description>
- <connection source="misys-pix-manager" />
+ <Actor name="pixman" type="PixManager">
+ <Description>Misys PIX Manager</Description>
+ <Connection source="misys-pix-manager" />
<!--Define 0 or more PIX Consumers that subscribe to PIX Update Notification -->
- <pixconsumer connection="swpartners" />
- <!-- pixconsumer connection="tiani-spirit" /-->
- </actor>
- <actor name="pixman_secure" type="PixManager">
- <description>Misys Secure PIX Manager</description>
- <connection source="misys-secure-pix-manager" />
+ <PixConsumer connection="swpartners" />
+ <!-- PixConsumer connection="tiani-spirit" /-->
+ </Actor>
+ <Actor name="pixman_secure" type="PixManager">
+ <Description>Misys Secure PIX Manager</Description>
+ <Connection source="misys-secure-pix-manager" />
<!--Define 0 or more PIX Consumers that subscribe to PIX Update Notification -->
- <pixconsumer connection="swpartners" />
- <pixconsumer connection="tiani-spirit" />
- </actor>
+ <PixConsumer connection="swpartners" />
+ <PixConsumer connection="tiani-spirit" />
+ </Actor>
<!--The PD Supplier actor configuration-->
- <actor name="pdsup" type="PdSupplier">
- <description>Misys PD Supplier</description>
- <connection source="misys-pd-supplier" />
- </actor>
- <actor name="pdsup_secure" type="PdSupplier">
- <description>Misys Secure PD Supplier</description>
- <connection source="misys-secure-pd-supplier" />
- </actor>
+ <Actor name="pdsup" type="PdSupplier">
+ <Description>Misys PD Supplier</Description>
+ <Connection source="misys-pd-supplier" />
+ </Actor>
+ <Actor name="pdsup_secure" type="PdSupplier">
+ <Description>Misys Secure PD Supplier</Description>
+ <Connection source="misys-secure-pd-supplier" />
+ </Actor>
<!-- Audit Repository Actor -->
- <actor name="auditmesa" type="SecureNode">
- <description>MESA AUDIT TRAILS</description>
- <audittrail consumer="mesa_arr_bsd" />
- <audittrail consumer="log4j_audittrail" />
- </actor>
- <actor name="auditnist" type="SecureNode">
- <description>NIST AUDIT TRAILS</description>
- <audittrail consumer="nist-arr-bsd" />
- </actor>
- <actor name="auditibm" type="SecureNode">
- <description>IBM AUDIT TRAILS</description>
- <audittrail consumer="ibm-arr-bsd" />
- </actor>
- <actor name="localaudit" type="SecureNode">
- <description>LOCAL AUDIT</description>
- <audittrail consumer="log4j_audittrail" />
- </actor>
-
+ <!--
+ <Actor name="auditmesa" type="SecureNode">
+ <Description>MESA AUDIT TRAILS</Description>
+ <AuditTrail consumer="mesa_arr_bsd" />
+ <AuditTrail consumer="log4j_audittrail" />
+ </Actor>
+ <Actor name="auditnist" type="SecureNode">
+ <Description>NIST AUDIT TRAILS</Description>
+ <AuditTrail consumer="nist-arr-bsd" />
+ </Actor>
+ <Actor name="auditibm" type="SecureNode">
+ <Description>IBM AUDIT TRAILS</Description>
+ <AuditTrail consumer="ibm-arr-bsd" />
+ </Actor>
+ <Actor name="localaudit" type="SecureNode">
+ <Description>LOCAL AUDIT</Description>
+ <AuditTrail consumer="log4j_audittrail" />
+ </Actor>
+ -->
+
</Configuration>
\ No newline at end of file
Modified: trunk/OpenPIXPDQ/conf/mesatests/actors/PdSupplierConnections.xml
===================================================================
--- trunk/OpenPIXPDQ/conf/mesatests/actors/PdSupplierConnections.xml 2009-03-19 21:11:02 UTC (rev 295)
+++ trunk/OpenPIXPDQ/conf/mesatests/actors/PdSupplierConnections.xml 2009-03-19 21:18:13 UTC (rev 296)
@@ -2,11 +2,11 @@
<!-- The PDQ Server Actor Connections -->
<Configuration>
- <standardconnection name="misys-pd-supplier">
+ <StandardConnection name="misys-pd-supplier">
<!--The host name of the PDQ Server-->
- <hostname>localhost</hostname>
+ <HostName>localhost</HostName>
<!--The port for PDQ Query transaction-->
- <port>3601</port>
+ <Port>3601</Port>
<Identifier name="ReceivingApplication">
<NamespaceId>PAT_IDENTITY_X_REF_MGR_MISYS</NamespaceId>
<!-- NamespaceId>MESA_PD_SUPPLIER</NamespaceId-->
@@ -28,10 +28,10 @@
<!-- storeLogger - optional :
The java adapter class that persists messages of this Pix Manager (optional).
This class must implement org.openhealthexchange.openpixpdq.ihe.log.IMessageStoreLogger -->
- <Property name="storeLogger" value="org.openhealthexchange.messagestore.service.MessageStoreService" />
+ <!-- Property name="storeLogger" value="org.openhealthexchange.messagestore.service.MessageStoreService" /-->
<!-- Configuration file for each client domains -->
- <includefile name="PixPdqClientDomains.xml" />
+ <IncludeFile name="PixPdqClientDomains.xml" />
<!--QueryProperties - (PropertySet) optional:
This set of properties specifies global characteristics of the PDQ
@@ -40,17 +40,17 @@
expects at the end of a value. If this value is not supplied, it defaults to *.
WildcardBefore - (String) optional: Specifies the wildcard value this connection
expects at the end of a value. If this value is not supplied, it defaults to *.
- PaginationByOpenPIXPDQ (boolean) optional: If value=true, pagination is handled in
- by OpenPIXPDQ, otherwise by pluggable EMPI. If this value is not supplier, it defaults
- to true.
+ ContinuationQueryByOpenPIXPDQ - (boolean) optional: If value=true, the continuation
+ query is handled by OpenPIXPDQ, otherwise by pluggable EMPI. If this value is not
+ supplier, it defaults to true.
ContinuationPointerTimeout - (Long) optional: Specifies the timeout in milliseconds
of a continuation pointer. Defaults to 600000 milliseconds(10 minutes). This property
- is used only when PaginationByOpenPIXPDQ is set to true.
+ is used only when ContinuationQueryByOpenPIXPDQ is set to true.
-->
<PropertySet name="QueryProperties">
<Entry name="WildcardBefore" value="*"/>
<Entry name="WildcardAfter" value="*"/>
- <Entry name="PaginationByOpenPIXPDQ" value="true"/>
+ <Entry name="ContinuationQueryByOpenPIXPDQ" value="true"/>
<Entry name="ContinuationPointerTimeout" value="600000"/>
</PropertySet>
@@ -62,13 +62,13 @@
<Entry name="Birthdate" value="yyyyMMdd"/>
</PropertySet>
- </standardconnection>
+ </StandardConnection>
- <secureconnection name="misys-secure-pd-supplier">
+ <SecureConnection name="misys-secure-pd-supplier">
<!--The host name of the PDQ Server-->
- <hostname>localhost</hostname>
+ <HostName>localhost</HostName>
<!--The port for PDQ Query transaction-->
- <port>3710</port>
+ <Port>3710</Port>
<Identifier name="ReceivingApplication">
<NamespaceId>PAT_IDENTITY_X_REF_MGR_MISYS_TLS</NamespaceId>
</Identifier>
@@ -88,10 +88,10 @@
<!-- storeLogger - optional :
The java adapter class that persists messages of this Pix Manager (optional).
This class must implement org.openhealthexchange.openpixpdq.ihe.log.IMessageStoreLogger -->
- <Property name="storeLogger" value="org.openhealthexchange.messagestore.service.MessageStoreService" />
+ <!-- Property name="storeLogger" value="org.openhealthexchange.messagestore.service.MessageStoreService" /-->
<!-- Configuration file for each client domains -->
- <includefile name="PixPdqClientDomains.xml" />
+ <IncludeFile name="PixPdqClientDomains.xml" />
<!--QueryProperties - (PropertySet) optional:
This set of properties specifies global characteristics of the PDQ
@@ -100,17 +100,17 @@
expects at the end of a value. If this value is not supplied, it defaults to *.
WildcardBefore - (String) optional: Specifies the wildcard value this connection
expects at the end of a value. If this value is not supplied, it defaults to *.
- PaginationByOpenPIXPDQ (boolean) optional: If value=true, pagination is handled in
- by OpenPIXPDQ, otherwise by pluggable EMPI. If this value is not supplier, it defaults
- to true.
+ ContinuationQueryByOpenPIXPDQ - (boolean) optional: If value=true, the continuation
+ query is handled by OpenPIXPDQ, otherwise by pluggable EMPI. If this value is not
+ supplier, it defaults to true.
ContinuationPointerTimeout - (Long) optional: Specifies the timeout in milliseconds
of a continuation pointer. Defaults to 600000 milliseconds(10 minutes). This property
- is used only when PaginationByOpenPIXPDQ is set to true.
+ is used only when ContinuationQueryByOpenPIXPDQ is set to true.
-->
<PropertySet name="QueryProperties">
<Entry name="WildcardBefore" value="*"/>
<Entry name="WildcardAfter" value="*"/>
- <Entry name="PaginationByOpenPIXPDQ" value="true"/>
+ <Entry name="ContinuationQueryByOpenPIXPDQ" value="true"/>
<Entry name="ContinuationPointerTimeout" value="600000"/>
</PropertySet>
@@ -123,11 +123,11 @@
</PropertySet>
<!-- Trust and Keystore -->
- <KEYSTORE>certs/OpenPIXPDQ_2009_KEY.p12</KEYSTORE>
- <KEYPASS>password</KEYPASS>
- <TRUSTSTORE>certs/OpenPIXPDQ_2009_STORE.jks</TRUSTSTORE>
- <TRUSTPASS>password</TRUSTPASS>
+ <KeyStore>certs/OpenPIXPDQ_2009_KEY.p12</KeyStore>
+ <KeyPass>password</KeyPass>
+ <TrustStore>certs/OpenPIXPDQ_2009_STORE.jks</TrustStore>
+ <TrustPass>password</TrustPass>
- </secureconnection>
+ </SecureConnection>
</Configuration>
\ No newline at end of file
Modified: trunk/OpenPIXPDQ/conf/mesatests/actors/PixConsumerConnections.xml
===================================================================
--- trunk/OpenPIXPDQ/conf/mesatests/actors/PixConsumerConnections.xml 2009-03-19 21:11:02 UTC (rev 295)
+++ trunk/OpenPIXPDQ/conf/mesatests/actors/PixConsumerConnections.xml 2009-03-19 21:18:13 UTC (rev 296)
@@ -3,11 +3,11 @@
<!-- The PIX Consumer Connections for PIX Update Notification Transaction -->
<Configuration>
- <standardconnection name="swpartners">
+ <StandardConnection name="swpartners">
<!--The host name of the PIX Consumer-->
- <hostname>10.243.0.83</hostname>
+ <HostName>10.243.0.83</HostName>
<!--The port for PIX Update Notification-->
- <port>2200</port>
+ <Port>2200</Port>
<Identifier name="SendingApplication">
<NamespaceId>PAT_IDENTITY_X_REF_MGR_MISYS</NamespaceId>
</Identifier>
@@ -37,14 +37,13 @@
<UniversalId>1.3.6.1.4.1.21367.2009.1.2.310</UniversalId>
<UniversalIdType>ISO</UniversalIdType>
</Identifier>
-
- </standardconnection>
+ </StandardConnection>
- <standardconnection name="tiani-spirit">
+ <StandardConnection name="tiani-spirit">
<!--The host name of the PIX Consumer-->
- <hostname>10.242.0.82</hostname>
+ <HostName>10.242.0.82</HostName>
<!--The port for PIX Update Notification-->
- <port>2380</port>
+ <Port>2380</Port>
<Identifier name="SendingApplication">
<NamespaceId>PAT_IDENTITY_X_REF_MGR_MISYS</NamespaceId>
</Identifier>
@@ -74,31 +73,6 @@
<UniversalId>1.3.6.1.4.1.21367.2009.1.2.310</UniversalId>
<UniversalIdType>ISO</UniversalIdType>
</Identifier>
-
- </standardconnection>
+ </StandardConnection>
- <standardconnection name="emds">
- <hostname>24.153.226.221</hostname>
- <port>5950</port>
- <Identifier name="SendingApplication">
- <NamespaceId>PAT_IDENTITY_X_REF_MGR_MISYS</NamespaceId>
- </Identifier>
- <Identifier name="SendingFacility">
- <NamespaceId>ALLSCRIPTS</NamespaceId>
- </Identifier>
- <Identifier name="ReceivingApplication">
- <NamespaceId>CONTENT_CREATOR_EMDS</NamespaceId>
- </Identifier>
- <Identifier name="ReceivingFacility">
- <NamespaceId>EMDS</NamespaceId>
- </Identifier>
-
- <!-- This property is for test purpose, which would not actually
- submit PIX Update Notification. It defaults to false. -->
- <Property name="DoNotNotify" value="true" />
-
- <includefile name="PixPdqClientDomains.xml" />
-
- </standardconnection>
-
</Configuration>
\ No newline at end of file
Modified: trunk/OpenPIXPDQ/conf/mesatests/actors/PixManagerConnections.xml
===================================================================
--- trunk/OpenPIXPDQ/conf/mesatests/actors/PixManagerConnections.xml 2009-03-19 21:11:02 UTC (rev 295)
+++ trunk/OpenPIXPDQ/conf/mesatests/actors/PixManagerConnections.xml 2009-03-19 21:18:13 UTC (rev 296)
@@ -3,11 +3,11 @@
<!-- The PIX Manager Actor Connections -->
<Configuration>
- <standardconnection name="misys-pix-manager">
+ <StandardConnection name="misys-pix-manager">
<!--The host name of the PIX Manager Server-->
- <hostname>localhost</hostname>
- <!--The port for PIX Query transaction-->
- <port>3600</port>
+ <HostName>localhost</HostName>
+ <!--The port for PIX transaction-->
+ <Port>3600</Port>
<Identifier name="ReceivingApplication">
<NamespaceId>PAT_IDENTITY_X_REF_MGR_MISYS</NamespaceId>
<!-- NamespaceId>MESA_XREF</NamespaceId-->
@@ -29,17 +29,17 @@
<!-- storeLogger - optional :
The java adapter class that persists messages of this Pix Manager (optional).
This class must implement org.openhealthexchange.openpixpdq.ihe.log.IMessageStoreLogger -->
- <Property name="storeLogger" value="org.openhealthexchange.messagestore.service.MessageStoreService" />
+ <!-- Property name="storeLogger" value="org.openhealthexchange.messagestore.service.MessageStoreService" /-->
<!-- Configuration file for each client domains -->
- <includefile name="PixPdqClientDomains.xml" />
- </standardconnection>
+ <IncludeFile name="PixPdqClientDomains.xml" />
+ </StandardConnection>
- <secureconnection name="misys-secure-pix-manager">
+ <SecureConnection name="misys-secure-pix-manager">
<!--The host name of the PIX Manager Server-->
- <hostname>localhost</hostname>
- <!--The port for PIX Query transaction-->
- <port>3610</port>
+ <HostName>localhost</HostName>
+ <!--The port for PIX TLS transaction-->
+ <Port>3610</Port>
<Identifier name="ReceivingApplication">
<NamespaceId>PAT_IDENTITY_X_REF_MGR_MISYS_TLS</NamespaceId>
</Identifier>
@@ -55,22 +55,27 @@
The java adapter class that provides the patient data source for this Pix Manager (required) -->
<Property name="pixManagerAdapter" value="org.openhealthexchange.pixpdqadapter.openempi.PixManagerAdapter" />
+ <!-- storeLogger - optional :
+ The java adapter class that persists messages of this Pix Manager (optional).
+ This class must implement org.openhealthexchange.openpixpdq.ihe.log.IMessageStoreLogger -->
+ <!-- Property name="storeLogger" value="org.openhealthexchange.messagestore.service.MessageStoreService" /-->
+
<!-- Configuration file for each client domains -->
- <includefile name="PixPdqClientDomains.xml" />
+ <IncludeFile name="PixPdqClientDomains.xml" />
<!-- Trust and Keystore -->
<!-- Used by Connectathon 2009 -->
- <KEYSTORE>certs/OpenPIXPDQ_2009_KEY.p12</KEYSTORE>
- <KEYPASS>password</KEYPASS>
- <TRUSTSTORE>certs/OpenPIXPDQ_2009_STORE.jks</TRUSTSTORE>
- <TRUSTPASS>password</TRUSTPASS>
+ <KeyStore>certs/OpenPIXPDQ_2009_KEY.p12</KeyStore>
+ <KeyPass>password</KeyPass>
+ <TrustStore>certs/OpenPIXPDQ_2009_STORE.jks</TrustStore>
+ <TrustPass>password</TrustPass>
<!-- Used by Mesa Tests
- <KEYSTORE>certs/mesa_keystore1_2009.p12</KEYSTORE>
- <KEYPASS>password</KEYPASS>
- <TRUSTSTORE>certs/mesa_truststore_2009.jks</TRUSTSTORE>
- <TRUSTPASS>password</TRUSTPASS>
+ <KeyStore>certs/mesa_keystore1_2009.p12</KeyStore>
+ <KeyPass>password</KeyPass>
+ <TrustStore>certs/mesa_truststore_2009.jks</TrustStore>
+ <TrustPass>password</TrustPass>
-->
- </secureconnection>
+ </SecureConnection>
</Configuration>
\ No newline at end of file
Modified: trunk/OpenPIXPDQ/conf/tests/actors/AuditRepositoryConnections.xml
===================================================================
--- trunk/OpenPIXPDQ/conf/tests/actors/AuditRepositoryConnections.xml 2009-03-19 21:11:02 UTC (rev 295)
+++ trunk/OpenPIXPDQ/conf/tests/actors/AuditRepositoryConnections.xml 2009-03-19 21:18:13 UTC (rev 296)
@@ -5,11 +5,11 @@
<Configuration>
- <standardconnection name="ibm-arr-bsd">
+ <StandardConnection name="ibm-arr-bsd">
<!--The hostname for the audit repository sever -->
- <hostname>lswin10.dfw.ibm.com</hostname>
+ <HostName>lswin10.dfw.ibm.com</HostName>
<!--The port for BSD log-->
- <port>515</port>
+ <Port>515</Port>
<!--Specifies the type of the log. Three types are possible:
1. BSD SYSLOG - Send Audit Trail using RFC 3164;
2. RELIABLE SYSLOG - Send Audit Trail using RFC 3195;
@@ -18,44 +18,44 @@
<!--Specifies the properties of the local host.-->
<PropertySet name="localhost">
<!--The machine name-->
- <entry name="HOSTNAME" value="allscripts4" />
+ <Entry name="HOSTNAME" value="allscripts4" />
<!--The host name-->
- <entry name="HOSTNAME" value="allscripts4" />
+ <Entry name="HOSTNAME" value="allscripts4" />
<!--The ip address of the local machine -->
- <entry name="IP" value="10.242.0.51" />
+ <Entry name="IP" value="10.242.0.51" />
<!--The web site of the application-->
- <entry name="SITE" value="ALLSCRIPTS" />
+ <Entry name="SITE" value="ALLSCRIPTS" />
<!--The source of the application-->
- <entry name="SOURCE" value="ALLSCRIPTS" />
+ <Entry name="SOURCE" value="ALLSCRIPTS" />
<!--The sending application name-->
- <entry name="APPNAME" value="PAT_IDENTITY_X_REF_MGR_MISYS" />
+ <Entry name="APPNAME" value="PAT_IDENTITY_X_REF_MGR_MISYS" />
<!--The sending facility name-->
- <entry name="FACILITY" value="ALLSCRIPTS" />
+ <Entry name="FACILITY" value="ALLSCRIPTS" />
</PropertySet>
<!--Specifies the properties of ParticipantObject used in the log message.-->
- <propertyset name="ParticipantObject">
+ <PropertySet name="ParticipantObject">
<!--Optional: Defines the format patient name. Default is standard, HL7 is a good option.-->
- <entry name="PatientNameEncoding" value="HL7" />
+ <Entry name="PatientNameEncoding" value="HL7" />
<!--Optional: Defines the format patient id. Default is standard, HL7 is a good option.-->
- <entry name="PatientIdEncoding" value="HL7" />
- </propertyset>
- </standardconnection>
+ <Entry name="PatientIdEncoding" value="HL7" />
+ </PropertySet>
+ </StandardConnection>
- <standardconnection name="log4j_audittrail">
+ <StandardConnection name="log4j_audittrail">
<Property name="TYPE" value="LOG4J LOGGER" />
<PropertySet name="localhost">
- <entry name="MACHINENAME" value="allscripts4" />
- <entry name="HOSTNAME" value="allscripts4" />
- <entry name="IP" value="10.242.0.51" />
- <entry name="SITE" value="ALLSCRIPTS" />
- <entry name="SOURCE" value="ALLSCRIPTS" />
- <entry name="APPNAME" value="PAT_IDENTITY_X_REF_MGR_MISYS" />
- <entry name="FACILITY" value="ALLSCRIPTS" />
+ <Entry name="MACHINENAME" value="allscripts4" />
+ <Entry name="HOSTNAME" value="allscripts4" />
+ <Entry name="IP" value="10.242.0.51" />
+ <Entry name="SITE" value="ALLSCRIPTS" />
+ <Entry name="SOURCE" value="ALLSCRIPTS" />
+ <Entry name="APPNAME" value="PAT_IDENTITY_X_REF_MGR_MISYS" />
+ <Entry name="FACILITY" value="ALLSCRIPTS" />
</PropertySet>
- <propertyset name="ParticipantObject">
- <entry name="PatientNameEncoding" value="HL7" />
- <entry name="PatientIdEncoding" value="HL7" />
- </propertyset>
- </standardconnection>
+ <PropertySet name="ParticipantObject">
+ <Entry name="PatientNameEncoding" value="HL7" />
+ <Entry name="PatientIdEncoding" value="HL7" />
+ </PropertySet>
+ </StandardConnection>
</Configuration>
\ No newline at end of file
Modified: trunk/OpenPIXPDQ/conf/tests/actors/IheActors.xml
===================================================================
--- trunk/OpenPIXPDQ/conf/tests/actors/IheActors.xml 2009-03-19 21:11:02 UTC (rev 295)
+++ trunk/OpenPIXPDQ/conf/tests/actors/IheActors.xml 2009-03-19 21:18:13 UTC (rev 296)
@@ -6,38 +6,38 @@
<Configuration>
<!--Defines the configuration of Audit Repository Server for Audit Client-->
- <connectionfile file="AuditRepositoryConnections.xml" />
+ <ConnectionFile file="AuditRepositoryConnections.xml" />
<!--Defines the configuration of local system as PD Supplier-->
- <connectionfile file="PdSupplierConnections.xml" />
+ <ConnectionFile file="PdSupplierConnections.xml" />
<!--Defines the configuration of local system as PIX Manager-->
- <connectionfile file="PixManagerConnections.xml" />
+ <ConnectionFile file="PixManagerConnections.xml" />
<!--Defines the configuration of PIX Consumers-->
- <connectionfile file="PixConsumerConnections.xml" />
-
+ <ConnectionFile file="PixConsumerConnections.xml" />
+
<!--The PIX Manager actor configuration-->
- <actor name="pixman" type="PixManager">
- <description>Misys PIX Manager</description>
- <connection source="misys-pix-manager" />
+ <Actor name="pixman" type="PixManager">
+ <Description>Misys PIX Manager</Description>
+ <Connection source="misys-pix-manager" />
<!--Define 0 or more PIX Consumers that subscribe to PIX Update Notification -->
- <pixconsumer connection="test1" />
- </actor>
+ <Pixconsumer connection="test1" />
+ </Actor>
<!--The PD Supplier actor configuration-->
- <actor name="pdsup" type="PdSupplier">
- <description>Misys PD Supplier</description>
- <connection source="misys-pd-supplier" />
- </actor>
+ <Actor name="pdsup" type="PdSupplier">
+ <Description>Misys PD Supplier</Description>
+ <Connection source="misys-pd-supplier" />
+ </Actor>
<!-- Audit Repository Actor -->
- <actor name="auditibm" type="SecureNode">
- <description>IBM AUDIT TRAILS</description>
- <audittrail consumer="ibm-arr-bsd" />
- <audittrail consumer="log4j_audittrail" />
- </actor>
+ <Actor name="auditibm" type="SecureNode">
+ <Description>IBM AUDIT TRAILS</Description>
+ <AuditTrail consumer="ibm-arr-bsd" />
+ <AuditTrail consumer="log4j_audittrail" />
+ </Actor>
- <actor name="localaudit" type="SecureNode">
- <description>LOCAL AUDIT</description>
- <audittrail consumer="log4j_audittrail" />
- </actor>
+ <Actor name="localaudit" type="SecureNode">
+ <Description>LOCAL AUDIT</Description>
+ <AuditTrail consumer="log4j_audittrail" />
+ </Actor>
</Configuration>
\ No newline at end of file
Modified: trunk/OpenPIXPDQ/conf/tests/actors/PdSupplierConnections.xml
===================================================================
--- trunk/OpenPIXPDQ/conf/tests/actors/PdSupplierConnections.xml 2009-03-19 21:11:02 UTC (rev 295)
+++ trunk/OpenPIXPDQ/conf/tests/actors/PdSupplierConnections.xml 2009-03-19 21:18:13 UTC (rev 296)
@@ -2,11 +2,11 @@
<!-- The PDQ Server Actor Connections -->
<Configuration>
- <standardconnection name="misys-pd-supplier">
+ <StandardConnection name="misys-pd-supplier">
<!--The host name of the PDQ Server-->
- <hostname>localhost</hostname>
+ <HostName>localhost</HostName>
<!--The port for PDQ Query transaction-->
- <port>3700</port>
+ <Port>3700</Port>
<Identifier name="ReceivingApplication">
<NamespaceId>EHR_MISYS</NamespaceId>
</Identifier>
@@ -15,8 +15,9 @@
</Identifier>
<!-- PdSupplierAdapter - required:
- The java adapter class that provides the patient data source for this Patient Demographics Supplier -->
- <Property name="PdSupplierAdapter" value="com.misyshealthcare.connect.hiber.mpi.ConnectPVRegistry" />
+ The java adapter class that provides the patient data source for this Patient Demographics Supplier
+ This class must implement org.openhealthexchange.openpixpdq.ihe.IPdSupplierAdapter -->
+ <Property name="PdSupplierAdapter" value="org.openhealthexchange.pixpdqadapter.openempi.PdSupplierAdapter" />
<!--To configure each PDQ client, always use type="domain" -->
<Identifier type="domain" name="CPR">
@@ -44,20 +45,21 @@
expects at the end of a value. If this value is not supplied, it defaults to *.
WildcardBefore - (String) optional: Specifies the wildcard value this connection
expects at the end of a value. If this value is not supplied, it defaults to *.
- PaginationByOpenPIXPDQ (boolean) optional: If value=true, pagination is handled in
- by OpenPIXPDQ, otherwise by pluggable EMPI. If this value is not supplier, it defaults
- to true.
+ ContinuationQueryByOpenPIXPDQ - (boolean) optional: If value=true, the continuation
+ query is handled by OpenPIXPDQ, otherwise by pluggable EMPI. If this value is not
+ supplier, it defaults to true.
ContinuationPointerTimeout - (Long) optional: Specifies the timeout in milliseconds
of a continuation pointer. Defaults to 600000 milliseconds(10 minutes). This property
- is used only when PaginationByOpenPIXPDQ is set to true.
+ is used only when ContinuationQueryByOpenPIXPDQ is set to true.
-->
<PropertySet name="QueryProperties">
<Entry name="WildcardBefore" value="*"/>
<Entry name="WildcardAfter" value="*"/>
- <Entry name="PaginationByOpenPIXPDQ" value="true"/>
+ <Entry name="ContinuationQueryByOpenPIXPDQ" value="true"/>
<Entry name="ContinuationPointerTimeout" value="6"/>
</PropertySet>
+
<!--DateTimeFormat -(PropertySet) optional:
BirthdateFormat - (String) optional: Specifies the format of birthdate this connection
expects for a birthdate field. If this value is not supplied, it defaults to "yyyyMMdd".
@@ -65,8 +67,7 @@
<PropertySet name="DateTimeFormat">
<Entry name="Birthdate" value="yyyyMMdd"/>
</PropertySet>
+ </StandardConnection>
- </standardconnection>
-
</Configuration>
\ No newline at end of file
Modified: trunk/OpenPIXPDQ/conf/tests/actors/PixConsumerConnections.xml
===================================================================
--- trunk/OpenPIXPDQ/conf/tests/actors/PixConsumerConnections.xml 2009-03-19 21:11:02 UTC (rev 295)
+++ trunk/OpenPIXPDQ/conf/tests/actors/PixConsumerConnections.xml 2009-03-19 21:18:13 UTC (rev 296)
@@ -3,11 +3,11 @@
<!-- The PIX Consumer Connections for PIX Update Notification Transaction -->
<Configuration>
- <standardconnection name="test1">
+ <StandardConnection name="test1">
<!--The host name of the PIX Consumer-->
- <hostname>localhost</hostname>
+ <HostName>localhost</HostName>
<!--The port for PIX Update Notification-->
- <port>3600</port>
+ <Port>3600</Port>
<Identifier name="SendingApplication">
<NamespaceId>PAT_IDENTITY_X_REF_MGR_MISYS</NamespaceId>
</Identifier>
@@ -23,11 +23,11 @@
<!-- This property is for test purpose, which would not actually
submit PIX Update Notification. It defaults to false. -->
- <Property name="DoNotNotify" value="true" />
+ <Property name="DoNotNotify" value="false" />
- <includefile name="PixPdqClientDomains.xml" />
+ <IncludeFile name="PixPdqClientDomains.xml" />
- </standardconnection>
+ </StandardConnection>
</Configuration>
\ No newline at end of file
Modified: trunk/OpenPIXPDQ/conf/tests/actors/PixManagerConnections.xml
===================================================================
--- trunk/OpenPIXPDQ/conf/tests/actors/PixManagerConnections.xml 2009-03-19 21:11:02 UTC (rev 295)
+++ trunk/OpenPIXPDQ/conf/tests/actors/PixManagerConnections.xml 2009-03-19 21:18:13 UTC (rev 296)
@@ -3,11 +3,11 @@
<!-- The PIX Manager Actor Connections -->
<Configuration>
- <standardconnection name="misys-pix-manager">
+ <StandardConnection name="misys-pix-manager">
<!--The host name of the PIX Manager Server-->
- <hostname>localhost</hostname>
- <!--The port for PIX Query transaction-->
- <port>3600</port>
+ <HostName>localhost</HostName>
+ <!--The port for PIX transaction-->
+ <Port>3600</Port>
<Identifier name="ReceivingApplication">
<NamespaceId>EHR_MISYS</NamespaceId>
</Identifier>
@@ -16,13 +16,13 @@
</Identifier>
<!-- pixManagerAdapter - required :
- The java adapter class that provides the patient data source for this Pix Manager (required) -->
- <Property name="pixManagerAdapter" value="org.openhealthexchange.openpixpdq.mesatests.MockupPixManagerAdapter" />
-
+ The java adapter class that provides the patient data source for this Pix Manager (required).
+ This class must implement org.openhealthexchange.openpixpdq.ihe.IPixManagerAdapter -->
+ <Property name="pixManagerAdapter" value="org.openhealthexchange.pixpdqadapter.openempi.PixManagerAdapter" />
+
<!-- Configuration file for each client domains -->
- <includefile name="PixPdqClientDomains.xml" />
+ <IncludeFile name="PixPdqClientDomains.xml" />
+ </StandardConnection>
- </standardconnection>
-
</Configuration>
\ No newline at end of file
Modified: trunk/OpenPIXPDQ/src/java/org/openhealthexchange/openpixpdq/ihe/impl_v2/PdQueryHandler.java
===================================================================
--- trunk/OpenPIXPDQ/src/java/org/openhealthexchange/openpixpdq/ihe/impl_v2/PdQueryHandler.java 2009-03-19 21:11:02 UTC (rev 295)
+++ trunk/OpenPIXPDQ/src/java/org/openhealthexchange/openpixpdq/ihe/impl_v2/PdQueryHandler.java 2009-03-19 21:18:13 UTC (rev 296)
@@ -234,7 +234,7 @@
PdqResult pdqResult;
int totalNumber = -1;
int remainingNumber = -1;
- if(isPaginationByOpenPixPdq()){
+ if(isContinuationQueryByOpenPixPdq()){
if (StringUtil.goodString(pointer)) {
//Get the patients from Cache Pointer
if ( !dscMap.containsKey(pointer) ) {
@@ -299,7 +299,7 @@
}
}
}else{
- //Otherwise Handle Pagination by EMPI
+ //Otherwise Handle Continuation Query by EMPI
pdqResult = getPdqResult(qpd, reply, hl7Header, outTerser, inTerser, pointer,recordRequestNumber,true);
if (pdqResult == null) return reply;
finalPatients = getPatientList(pdqResult, returnDomains);
@@ -356,7 +356,7 @@
String queryTag = qid.getQueryTag().getValue();
String messageQueryName= qid.getMessageQueryName().getIdentifier().getValue();
- if(isPaginationByOpenPixPdq()){
+ if(isContinuationQueryByOpenPixPdq()){
long timeout = 600000; //defaults to 600000 millieseconds (10 minutes)
try {
timeout = Long.parseLong( Configuration.getPropertySetValue(connection, "QueryProperties", "ContinuationPointerTimeout", false) );
@@ -695,8 +695,8 @@
* @param inTerser the in request message terser
* @param pointer continuation pointer of the matching patient
* @param requestNo the number of patient record to be returned for each request
- * @param isContinatuation <code>true</code> - pagination is handled by OpenPIXPDQ;
- * <code>false</code> -pagination is handled by EMPI.
+ * @param isContinatuation <code>true</code> - if continuation query is handled by OpenPIXPDQ;
+ * <code>false</code> - if continuation query is handled by EMPI.
* @return return a {@link PdqResult} object that contains a list of patients
* if not error. Otherwise, return null if the request syntax cannot be recognized.
* @throws HL7Exception
@@ -1333,14 +1333,14 @@
/*
* Whether to handle Pagination (or Continuation Query) by OpenPIXPDQ or EMPI.
*
- * @return <code>true</code> if pagination is processed by OpenPIXPDQ;
+ * @return <code>true</code> if continuation query is processed by OpenPIXPDQ;
* otherwise <code>false</code>. Defaults to true (namely, by OpenPIXPDQ).
* @throw IheConfigureException if anything wrong with configuration
*/
- private boolean isPaginationByOpenPixPdq(){
+ private boolean isContinuationQueryByOpenPixPdq(){
boolean pagingByOpenPixPdq = true; //defaults to true(by OpenPIXPDQ).
try {
- String pagination = Configuration.getPropertySetValue(connection, "QueryProperties","PaginationByOpenPIXPDQ" , false);
+ String pagination = Configuration.getPropertySetValue(connection, "QueryProperties","ContinuationQueryByOpenPIXPDQ" , false);
pagingByOpenPixPdq = Boolean.parseBoolean(pagination);
} catch (IheConfigurationException e) {
System.out.println(e);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <we...@us...> - 2009-03-19 21:24:41
|
Revision: 297
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=297&view=rev
Author: wenzhi
Date: 2009-03-19 21:24:33 +0000 (Thu, 19 Mar 2009)
Log Message:
-----------
Added PixPdqServer.java to handle a stand alone PIX/PDQ server startup and shutdown.
Added Paths:
-----------
trunk/OpenPIXPDQ/src/java/org/openhealthexchange/openpixpdq/ihe/PixPdqServer.java
Added: trunk/OpenPIXPDQ/src/java/org/openhealthexchange/openpixpdq/ihe/PixPdqServer.java
===================================================================
--- trunk/OpenPIXPDQ/src/java/org/openhealthexchange/openpixpdq/ihe/PixPdqServer.java (rev 0)
+++ trunk/OpenPIXPDQ/src/java/org/openhealthexchange/openpixpdq/ihe/PixPdqServer.java 2009-03-19 21:24:33 UTC (rev 297)
@@ -0,0 +1,74 @@
+/* Copyright 2009 Misys PLC
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ * implied. See the License for the specific language governing
+ * permissions and limitations under the License.
+ */
+package org.openhealthexchange.openpixpdq.ihe;
+
+import org.openhealthexchange.openpixpdq.ihe.configuration.ConfigurationLoader;
+import org.openhealthexchange.openpixpdq.ihe.configuration.IheConfigurationException;
+
+/**
+ * This class manages the stand alone PIXPDQ server startup and shutdown.
+ *
+ * @author Wenzhi Li
+ * @version 1.0, Mar 15, 2009
+ */
+public class PixPdqServer {
+
+ /**
+ * The main method to start up or shut down PIX and PDQ servers.
+ *
+ * @param args For server startup, it is expected to have 2 arguments.
+ * The first is "startup"; the second one is the full file
+ * path to IheActors.xml.
+ * <p>
+ * For server shutdown, provide just one argument "shutdown".
+ */
+ public static void main(String[] args) {
+ if (args.length < 1 || args.length > 2 ||
+ (args.length == 1 && !args[0].equalsIgnoreCase("shutdown")) ||
+ (args.length == 2 && !args[0].equalsIgnoreCase("startup")) ) {
+ printUsage();
+ return ;
+ }
+
+ if (args.length == 2 && args[0].equalsIgnoreCase("startup") ) {
+ //Start up the servers
+ ConfigurationLoader loader = ConfigurationLoader.getInstance();
+ String actorFile = args[1];
+ try {
+ loader.loadConfiguration(actorFile, true);
+ } catch (IheConfigurationException e) {
+ e.printStackTrace();
+ }
+ }
+ else if (args.length == 1 && args[0].equalsIgnoreCase("shutdown")) {
+ //Shut down all the active servers
+ ConfigurationLoader.getInstance().resetAllBrokers();
+ }
+
+ }
+
+ /**
+ * Prints the usage of how to start up or shutdown this PIX/PDQ server.
+ */
+ private static void printUsage() {
+ System.out.println("*********************************************************");
+ System.out.println("WRONG USAGE: PIXPDQ server expects 2 arguments.");
+ System.out.println("To start up the server: ");
+ System.out.println(" java PixPdqServer startup <full path of IheActors.xml>");
+ System.out.println("To shut down the server: ");
+ System.out.println(" java PixPdqServer shutdown");
+ System.out.println("*********************************************************");
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <we...@us...> - 2009-03-19 21:11:20
|
Revision: 295
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=295&view=rev
Author: wenzhi
Date: 2009-03-19 21:11:02 +0000 (Thu, 19 Mar 2009)
Log Message:
-----------
Fixed TestPIXQuery
Modified Paths:
--------------
trunk/OpenPIXPDQ/src/test/org/openhealthexchange/openpixpdq/ihe/impl_v2/TestPixQuery.java
Modified: trunk/OpenPIXPDQ/src/test/org/openhealthexchange/openpixpdq/ihe/impl_v2/TestPixQuery.java
===================================================================
--- trunk/OpenPIXPDQ/src/test/org/openhealthexchange/openpixpdq/ihe/impl_v2/TestPixQuery.java 2009-03-19 18:16:32 UTC (rev 294)
+++ trunk/OpenPIXPDQ/src/test/org/openhealthexchange/openpixpdq/ihe/impl_v2/TestPixQuery.java 2009-03-19 21:11:02 UTC (rev 295)
@@ -275,10 +275,10 @@
assertEquals("OK",rMessage.getQAK().getQueryResponseStatus().getValue());
String returnValues=processPixQueryResponse(rMessage);
String[] errorLog=returnValues.split(",");
- assertEquals("112234", errorLog[0]);
- assertEquals("CPR", errorLog[1]);
- assertEquals("1", errorLog[2]);
- assertEquals("2", errorLog[3]);
+ assertEquals("12345678", errorLog[0]);
+ assertEquals("WESTCLINIC", errorLog[1]);
+ assertEquals("1.2234.634325.5734", errorLog[2]);
+ assertEquals("ISO", errorLog[3]);
assertEquals("PI", errorLog[4]);
assertEquals("", errorLog[5]);
} catch (Exception e) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <an...@us...> - 2009-03-19 18:16:35
|
Revision: 294
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=294&view=rev
Author: anil114
Date: 2009-03-19 18:16:32 +0000 (Thu, 19 Mar 2009)
Log Message:
-----------
Added build.xml and LICENSE file
Added Paths:
-----------
trunk/LICENSE
trunk/build.xml
Added: trunk/LICENSE
===================================================================
--- trunk/LICENSE (rev 0)
+++ trunk/LICENSE 2009-03-19 18:16:32 UTC (rev 294)
@@ -0,0 +1,202 @@
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
Added: trunk/build.xml
===================================================================
--- trunk/build.xml (rev 0)
+++ trunk/build.xml 2009-03-19 18:16:32 UTC (rev 294)
@@ -0,0 +1,126 @@
+<project name="braid" default="openpixpdq-zip-tar" basedir=".">
+
+ <!-- set global properties for this build -->
+ <property name="project" value="openpixpdq" />
+ <property name="version" value="1.0" />
+ <property name="final.name" value="${project}-${version}" />
+ <property name="zipfilename" value="${final.name}.zip"/>
+ <property name="tarfilename" value="${final.name}.tar.gz"/>
+ <property name="jarname" value="openpixpdq.jar"/>
+ <property name="earname" value="openempi.ear"/>
+ <property name="openpixpdq.dir" value="OpenPIXPDQ"/>
+ <property name="openweb.dir" value="OpenWeb" />
+ <property name="adapter.dir" value="OpenEmpiAdapter" />
+ <property name="resorce.dir" value="Resource" />
+ <property name="build" location="build"/>
+ <property name="conf.dir" value="${build}/conf" />
+ <property name="lib.dir" value="${build}/lib" />
+ <property name="licenses.dir" value="${build}/licenses" />
+
+ <target name="build" description="build the software">
+ <!-- make directories -->
+ <mkdir dir="${build}"/>
+ <mkdir dir="${lib.dir}"/>
+ <mkdir dir="${conf.dir}"/>
+ <mkdir dir="${licenses.dir}"/>
+
+ <!-- call OpenWeb build.xml to build openpixpdq.war -->
+ <ant antfile="${openweb.dir}/build.xml" target="install" inheritall="false"/>
+
+ <!-- copy openpixpdq.war, openpixpdq.jar to the build directory -->
+ <copy todir="build">
+ <fileset dir="${openweb.dir}/dist">
+ <include name="**/*.war"/>
+ </fileset>
+ <fileset dir="${openpixpdq.dir}/dist">
+ <include name="**/*.jar"/>
+ </fileset>
+ </copy>
+
+ <!-- copy openempi.ear to build directory-->
+ <copy todir="build">
+ <fileset dir="${resorce.dir}/OpenEMPI">
+ <include name="**/*.ear" />
+ </fileset>
+ </copy>
+
+ <!-- copy openpixpdq library to build lib directory-->
+ <copy todir="${lib.dir}">
+ <fileset dir="${openpixpdq.dir}/lib">
+ <include name="**/*.jar"/>
+ </fileset>
+ <fileset dir="${openweb.dir}/Web/WEB-INF/lib">
+ <include name="**/*.jar" />
+ </fileset>
+ <fileset dir="${adapter.dir}/lib">
+ <include name="**/*.jar" />
+ <exclude name="openpixpdq.jar"/>
+ </fileset>
+ </copy>
+
+ <!-- copy openpixpdq configuration files to build conf directory-->
+ <copy todir="${conf.dir}">
+ <fileset dir="${openpixpdq.dir}/conf">
+ <include name="**/*"/>
+ </fileset>
+ </copy>
+
+ <!-- copy openpixpdq licences to build licences directory-->
+ <copy todir="${licenses.dir}">
+ <fileset dir="${openpixpdq.dir}/licenses">
+ <include name="**/*"/>
+ </fileset>
+ <fileset dir="${openweb.dir}/licenses">
+ <include name="**/*"/>
+ </fileset>
+ <fileset dir="${adapter.dir}/licenses">
+ <include name="**/*"/>
+ </fileset>
+ </copy>
+
+ </target>
+
+
+
+ <!-- Packages the openpixpdq project in zip format -->
+ <target name="package-openpixpdq-zip" depends="build">
+ <zip zipfile="${zipfilename}" >
+ <zipfileset dir="${build}">
+ <include name="lib/**"/>
+ <include name="licenses/**"/>
+ <include name="conf/**"/>
+ <include name="**/*.jar"/>
+ <include name="**/*.war"/>
+ <include name="LICENSE"/>
+ </zipfileset>
+ </zip>
+ </target>
+
+ <!-- Packages the openpixpdq project in tar format -->
+ <target name="package-openpixpdq-tgz">
+ <tar longfile="gnu" compression="gzip" tarfile="${tarfilename}">
+ <tarfileset dir="${build}">
+ <include name="lib/**"/>
+ <include name="licenses/**"/>
+ <include name="conf/**"/>
+ <include name="**/*.jar"/>
+ <include name="**/*.war"/>
+ <include name="LICENSE"/>
+ </tarfileset>
+ </tar>
+ </target>
+
+ <!-- clean up the build folder -->
+ <target name="clean" description="clean up" >
+ <delete dir="${build}"/>
+ </target>
+
+ <target name="openpixpdq-zip-tar">
+ <antcall target="package-openpixpdq-zip">
+ </antcall>
+ <antcall target="package-openpixpdq-tgz">
+ </antcall>
+ <antcall target="clean">
+ </antcall>
+ </target>
+</project>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <an...@us...> - 2009-03-19 17:26:26
|
Revision: 293
http://openpixpdq.svn.sourceforge.net/openpixpdq/?rev=293&view=rev
Author: anil114
Date: 2009-03-19 17:26:07 +0000 (Thu, 19 Mar 2009)
Log Message:
-----------
Moved related license files to OpenWeb,OpenEmpiAdapter.
Added Paths:
-----------
trunk/OpenEmpiAdapter/licenses/
trunk/OpenEmpiAdapter/licenses/jbossall-client-LICENSE.txt
trunk/OpenWeb/licenses/
trunk/OpenWeb/licenses/ant-LICENSE.txt
trunk/OpenWeb/licenses/ant-junit-LICENSE.txt
trunk/OpenWeb/licenses/ant-launcher-LICENSE.txt
trunk/OpenWeb/licenses/ant-swing-LICENSE.txt
trunk/OpenWeb/licenses/antlr-LICENSE.txt
trunk/OpenWeb/licenses/backport-util-concurrent-LICENSE.txt
trunk/OpenWeb/licenses/bsf-LICENSE.txt
trunk/OpenWeb/licenses/c3p0-LICENSE.txt
trunk/OpenWeb/licenses/cglib-full-LICENSE.txt
trunk/OpenWeb/licenses/cleanimports-LICENSE.txt
trunk/OpenWeb/licenses/commons-beanutils-LICENSE.txt
trunk/OpenWeb/licenses/commons-chain-LICENSE.txt
trunk/OpenWeb/licenses/commons-collections-LICENSE.txt
trunk/OpenWeb/licenses/commons-digester-LICENSE.txt
trunk/OpenWeb/licenses/commons-fileupload-LICENSE.txt
trunk/OpenWeb/licenses/commons-io-LICENSE.txt
trunk/OpenWeb/licenses/commons-lang-LICENSE.txt
trunk/OpenWeb/licenses/commons-logging-LICENSE.txt
trunk/OpenWeb/licenses/commons-validator-LICENSE.txt
trunk/OpenWeb/licenses/connector-LICENSE.txt
trunk/OpenWeb/licenses/dom4j-LICENSE.txt
trunk/OpenWeb/licenses/ehcache-LICENSE.txt
trunk/OpenWeb/licenses/hibernate3-LICENSE.txt
trunk/OpenWeb/licenses/jaas-LICENSE.txt
trunk/OpenWeb/licenses/jacc-1_0-fr-LICENSE.txt
trunk/OpenWeb/licenses/jmesa-LICENSE.txt
trunk/OpenWeb/licenses/jstl-LICENSE.txt
trunk/OpenWeb/licenses/jta-LICENSE.txt
trunk/OpenWeb/licenses/junit-LICENSE.txt
trunk/OpenWeb/licenses/log4j-LICENSE.txt
trunk/OpenWeb/licenses/oro-LICENSE.txt
trunk/OpenWeb/licenses/oscache-LICENSE.txt
trunk/OpenWeb/licenses/postgresql-LICENSE.txt
trunk/OpenWeb/licenses/proxool-LICENSE.txt
trunk/OpenWeb/licenses/servlet-api-LICENSE.txt
trunk/OpenWeb/licenses/slf4j-api-LICENSE.txt
trunk/OpenWeb/licenses/slf4j-log4j-LICENSE.txt
trunk/OpenWeb/licenses/standard-LICENSE.txt
trunk/OpenWeb/licenses/struts-LICENSE.txt
Removed Paths:
-------------
trunk/OpenPIXPDQ/licenses/ant-LICENSE.txt
trunk/OpenPIXPDQ/licenses/ant-junit-LICENSE.txt
trunk/OpenPIXPDQ/licenses/ant-launcher-LICENSE.txt
trunk/OpenPIXPDQ/licenses/ant-swing-LICENSE.txt
trunk/OpenPIXPDQ/licenses/antlr-LICENSE.txt
trunk/OpenPIXPDQ/licenses/backport-util-concurrent-LICENSE.txt
trunk/OpenPIXPDQ/licenses/bsf-LICENSE.txt
trunk/OpenPIXPDQ/licenses/c3p0-LICENSE.txt
trunk/OpenPIXPDQ/licenses/cglib-full-LICENSE.txt
trunk/OpenPIXPDQ/licenses/cleanimports-LICENSE.txt
trunk/OpenPIXPDQ/licenses/commons-beanutils-LICENSE.txt
trunk/OpenPIXPDQ/licenses/commons-chain-LICENSE.txt
trunk/OpenPIXPDQ/licenses/commons-collections-LICENSE.txt
trunk/OpenPIXPDQ/licenses/commons-digester-LICENSE.txt
trunk/OpenPIXPDQ/licenses/commons-fileupload-LICENSE.txt
trunk/OpenPIXPDQ/licenses/commons-io-LICENSE.txt
trunk/OpenPIXPDQ/licenses/commons-lang-LICENSE.txt
trunk/OpenPIXPDQ/licenses/commons-validator-LICENSE.txt
trunk/OpenPIXPDQ/licenses/dom4j-LICENSE.txt
trunk/OpenPIXPDQ/licenses/ehcache-LICENSE.txt
trunk/OpenPIXPDQ/licenses/hibernate3-LICENSE.txt
trunk/OpenPIXPDQ/licenses/jaas-LICENSE.txt
trunk/OpenPIXPDQ/licenses/jacc-1_0-fr-LICENSE.txt
trunk/OpenPIXPDQ/licenses/jbossall-client-LICENSE.txt
trunk/OpenPIXPDQ/licenses/jmesa-LICENSE.txt
trunk/OpenPIXPDQ/licenses/jstl-LICENSE.txt
trunk/OpenPIXPDQ/licenses/jta-LICENSE.txt
trunk/OpenPIXPDQ/licenses/oro-LICENSE.txt
trunk/OpenPIXPDQ/licenses/oscache-LICENSE.txt
trunk/OpenPIXPDQ/licenses/postgresql-LICENSE.txt
trunk/OpenPIXPDQ/licenses/proxool-LICENSE.txt
trunk/OpenPIXPDQ/licenses/servlet-api-LICENSE.txt
trunk/OpenPIXPDQ/licenses/slf4j-api-LICENSE.txt
trunk/OpenPIXPDQ/licenses/slf4j-log4j-LICENSE.txt
trunk/OpenPIXPDQ/licenses/standard-LICENSE.txt
trunk/OpenPIXPDQ/licenses/struts-LICENSE.txt
Added: trunk/OpenEmpiAdapter/licenses/jbossall-client-LICENSE.txt
===================================================================
--- trunk/OpenEmpiAdapter/licenses/jbossall-client-LICENSE.txt (rev 0)
+++ trunk/OpenEmpiAdapter/licenses/jbossall-client-LICENSE.txt 2009-03-19 17:26:07 UTC (rev 293)
@@ -0,0 +1,504 @@
+ GNU LESSER GENERAL PUBLIC LICENSE
+ Version 2.1, February 1999
+
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+ 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+[This is the first released version of the Lesser GPL. It also counts
+ as the successor of the GNU Library Public License, version 2, hence
+ the version number 2.1.]
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+Licenses are intended to guarantee your freedom to share and change
+free software--to make sure the software is free for all its users.
+
+ This license, the Lesser General Public License, applies to some
+specially designated software packages--typically libraries--of the
+Free Software Foundation and other authors who decide to use it. You
+can use it too, but we suggest you first think carefully about whether
+this license or the ordinary General Public License is the better
+strategy to use in any particular case, based on the explanations below.
+
+ When we speak of free software, we are referring to freedom of use,
+not price. Our General Public Licenses are designed to make sure that
+you have the freedom to distribute copies of free software (and charge
+for this service if you wish); that you receive source code or can get
+it if you want it; that you can change the software and use pieces of
+it in new free programs; and that you are informed that you can do
+these things.
+
+ To protect your rights, we need to make restrictions that forbid
+distributors to deny you these rights or to ask you to surrender these
+rights. These restrictions translate to certain responsibilities for
+you if you distribute copies of the library or if you modify it.
+
+ For example, if you distribute copies of the library, whether gratis
+or for a fee, you must give the recipients all the rights that we gave
+you. You must make sure that they, too, receive or can get the source
+code. If you link other code with the library, you must provide
+complete object files to the recipients, so that they can relink them
+with the library after making changes to the library and recompiling
+it. And you must show them these terms so they know their rights.
+
+ We protect your rights with a two-step method: (1) we copyright the
+library, and (2) we offer you this license, which gives you legal
+permission to copy, distribute and/or modify the library.
+
+ To protect each distributor, we want to make it very clear that
+there is no warranty for the free library. Also, if the library is
+modified by someone else and passed on, the recipients should know
+that what they have is not the original version, so that the original
+author's reputation will not be affected by problems that might be
+introduced by others.
+
+ Finally, software patents pose a constant threat to the existence of
+any free program. We wish to make sure that a company cannot
+effectively restrict the users of a free program by obtaining a
+restrictive license from a patent holder. Therefore, we insist that
+any patent license obtained for a version of the library must be
+consistent with the full freedom of use specified in this license.
+
+ Most GNU software, including some libraries, is covered by the
+ordinary GNU General Public License. This license, the GNU Lesser
+General Public License, applies to certain designated libraries, and
+is quite different from the ordinary General Public License. We use
+this license for certain libraries in order to permit linking those
+libraries into non-free programs.
+
+ When a program is linked with a library, whether statically or using
+a shared library, the combination of the two is legally speaking a
+combined work, a derivative of the original library. The ordinary
+General Public License therefore permits such linking only if the
+entire combination fits its criteria of freedom. The Lesser General
+Public License permits more lax criteria for linking other code with
+the library.
+
+ We call this license the "Lesser" General Public License because it
+does Less to protect the user's freedom than the ordinary General
+Public License. It also provides other free software developers Less
+of an advantage over competing non-free programs. These disadvantages
+are the reason we use the ordinary General Public License for many
+libraries. However, the Lesser license provides advantages in certain
+special circumstances.
+
+ For example, on rare occasions, there may be a special need to
+encourage the widest possible use of a certain library, so that it becomes
+a de-facto standard. To achieve this, non-free programs must be
+allowed to use the library. A more frequent case is that a free
+library does the same job as widely used non-free libraries. In this
+case, there is little to gain by limiting the free library to free
+software only, so we use the Lesser General Public License.
+
+ In other cases, permission to use a particular library in non-free
+programs enables a greater number of people to use a large body of
+free software. For example, permission to use the GNU C Library in
+non-free programs enables many more people to use the whole GNU
+operating system, as well as its variant, the GNU/Linux operating
+system.
+
+ Although the Lesser General Public License is Less protective of the
+users' freedom, it does ensure that the user of a program that is
+linked with the Library has the freedom and the wherewithal to run
+that program using a modified version of the Library.
+
+ The precise terms and conditions for copying, distribution and
+modification follow. Pay close attention to the difference between a
+"work based on the library" and a "work that uses the library". The
+former contains code derived from the library, whereas the latter must
+be combined with the library in order to run.
+
+ GNU LESSER GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License Agreement applies to any software library or other
+program which contains a notice placed by the copyright holder or
+other authorized party saying it may be distributed under the terms of
+this Lesser General Public License (also called "this License").
+Each licensee is addressed as "you".
+
+ A "library" means a collection of software functions and/or data
+prepared so as to be conveniently linked with application programs
+(which use some of those functions and data) to form executables.
+
+ The "Library", below, refers to any such software library or work
+which has been distributed under these terms. A "work based on the
+Library" means either the Library or any derivative work under
+copyright law: that is to say, a work containing the Library or a
+portion of it, either verbatim or with modifications and/or translated
+straightforwardly into another language. (Hereinafter, translation is
+included without limitation in the term "modification".)
+
+ "Source code" for a work means the preferred form of the work for
+making modifications to it. For a library, complete source code means
+all the source code for all modules it contains, plus any associated
+interface definition files, plus the scripts used to control compilation
+and installation of the library.
+
+ Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running a program using the Library is not restricted, and output from
+such a program is covered only if its contents constitute a work based
+on the Library (independent of the use of the Library in a tool for
+writing it). Whether that is true depends on what the Library does
+and what the program that uses the Library does.
+
+ 1. You may copy and distribute verbatim copies of the Library's
+complete source code as you receive it, in any medium, provided that
+you conspicuously and appropriately publish on each copy an
+appropriate copyright notice and disclaimer of warranty; keep intact
+all the notices that refer to this License and to the absence of any
+warranty; and distribute a copy of this License along with the
+Library.
+
+ You may charge a fee for the physical act of transferring a copy,
+and you may at your option offer warranty protection in exchange for a
+fee.
+
+ 2. You may modify your copy or copies of the Library or any portion
+of it, thus forming a work based on the Library, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) The modified work must itself be a software library.
+
+ b) You must cause the files modified to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ c) You must cause the whole of the work to be licensed at no
+ charge to all third parties under the terms of this License.
+
+ d) If a facility in the modified Library refers to a function or a
+ table of data to be supplied by an application program that uses
+ the facility, other than as an argument passed when the facility
+ is invoked, then you must make a good faith effort to ensure that,
+ in the event an application does not supply such function or
+ table, the facility still operates, and performs whatever part of
+ its purpose remains meaningful.
+
+ (For example, a function in a library to compute square roots has
+ a purpose that is entirely well-defined independent of the
+ application. Therefore, Subsection 2d requires that any
+ application-supplied function or table used by this function must
+ be optional: if the application does not supply it, the square
+ root function must still compute square roots.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Library,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Library, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote
+it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Library.
+
+In addition, mere aggregation of another work not based on the Library
+with the Library (or with a work based on the Library) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may opt to apply the terms of the ordinary GNU General Public
+License instead of this License to a given copy of the Library. To do
+this, you must alter all the notices that refer to this License, so
+that they refer to the ordinary GNU General Public License, version 2,
+instead of to this License. (If a newer version than version 2 of the
+ordinary GNU General Public License has appeared, then you can specify
+that version instead if you wish.) Do not make any other change in
+these notices.
+
+ Once this change is made in a given copy, it is irreversible for
+that copy, so the ordinary GNU General Public License applies to all
+subsequent copies and derivative works made from that copy.
+
+ This option is useful when you wish to copy part of the code of
+the Library into a program that is not a library.
+
+ 4. You may copy and distribute the Library (or a portion or
+derivative of it, under Section 2) in object code or executable form
+under the terms of Sections 1 and 2 above provided that you accompany
+it with the complete corresponding machine-readable source code, which
+must be distributed under the terms of Sections 1 and 2 above on a
+medium customarily used for software interchange.
+
+ If distribution of object code is made by offering access to copy
+from a designated place, then offering equivalent access to copy the
+source code from the same place satisfies the requirement to
+distribute the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 5. A program that contains no derivative of any portion of the
+Library, but is designed to work with the Library by being compiled or
+linked with it, is called a "work that uses the Library". Such a
+work, in isolation, is not a derivative work of the Library, and
+therefore falls outside the scope of this License.
+
+ However, linking a "work that uses the Library" with the Library
+creates an executable that is a derivative of the Library (because it
+contains portions of the Library), rather than a "work that uses the
+library". The executable is therefore covered by this License.
+Section 6 states terms for distribution of such executables.
+
+ When a "work that uses the Library" uses material from a header file
+that is part of the Library, the object code for the work may be a
+derivative work of the Library even though the source code is not.
+Whether this is true is especially significant if the work can be
+linked without the Library, or if the work is itself a library. The
+threshold for this to be true is not precisely defined by law.
+
+ If such an object file uses only numerical parameters, data
+structure layouts and accessors, and small macros and small inline
+functions (ten lines or less in length), then the use of the object
+file is unrestricted, regardless of whether it is legally a derivative
+work. (Executables containing this object code plus portions of the
+Library will still fall under Section 6.)
+
+ Otherwise, if the work is a derivative of the Library, you may
+distribute the object code for the work under the terms of Section 6.
+Any executables containing that work also fall under Section 6,
+whether or not they are linked directly with the Library itself.
+
+ 6. As an exception to the Sections above, you may also combine or
+link a "work that uses the Library" with the Library to produce a
+work containing portions of the Library, and distribute that work
+under terms of your choice, provided that the terms permit
+modification of the work for the customer's own use and reverse
+engineering for debugging such modifications.
+
+ You must give prominent notice with each copy of the work that the
+Library is used in it and that the Library and its use are covered by
+this License. You must supply a copy of this License. If the work
+during execution displays copyright notices, you must include the
+copyright notice for the Library among them, as well as a reference
+directing the user to the copy of this License. Also, you must do one
+of these things:
+
+ a) Accompany the work with the complete corresponding
+ machine-readable source code for the Library including whatever
+ changes were used in the work (which must be distributed under
+ Sections 1 and 2 above); and, if the work is an executable linked
+ with the Library, with the complete machine-readable "work that
+ uses the Library", as object code and/or source code, so that the
+ user can modify the Library and then relink to produce a modified
+ executable containing the modified Library. (It is understood
+ that the user who changes the contents of definitions files in the
+ Library will not necessarily be able to recompile the application
+ to use the modified definitions.)
+
+ b) Use a suitable shared library mechanism for linking with the
+ Library. A suitable mechanism is one that (1) uses at run time a
+ copy of the library already present on the user's computer system,
+ rather than copying library functions into the executable, and (2)
+ will operate properly with a modified version of the library, if
+ the user installs one, as long as the modified version is
+ interface-compatible with the version that the work was made with.
+
+ c) Accompany the work with a written offer, valid for at
+ least three years, to give the same user the materials
+ specified in Subsection 6a, above, for a charge no more
+ than the cost of performing this distribution.
+
+ d) If distribution of the work is made by offering access to copy
+ from a designated place, offer equivalent access to copy the above
+ specified materials from the same place.
+
+ e) Verify that the user has already received a copy of these
+ materials or that you have already sent this user a copy.
+
+ For an executable, the required form of the "work that uses the
+Library" must include any data and utility programs needed for
+reproducing the executable from it. However, as a special exception,
+the materials to be distributed need not include anything that is
+normally distributed (in either source or binary form) with the major
+components (compiler, kernel, and so on) of the operating system on
+which the executable runs, unless that component itself accompanies
+the executable.
+
+ It may happen that this requirement contradicts the license
+restrictions of other proprietary libraries that do not normally
+accompany the operating system. Such a contradiction means you cannot
+use both them and the Library together in an executable that you
+distribute.
+
+ 7. You may place library facilities that are a work based on the
+Library side-by-side in a single library together with other library
+facilities not covered by this License, and distribute such a combined
+library, provided that the separate distribution of the work based on
+the Library and of the other library facilities is otherwise
+permitted, and provided that you do these two things:
+
+ a) Accompany the combined library with a copy of the same work
+ based on the Library, uncombined with any other library
+ facilities. This must be distributed under the terms of the
+ Sections above.
+
+ b) Give prominent notice with the combined library of the fact
+ that part of it is a work based on the Library, and explaining
+ where to find the accompanying uncombined form of the same work.
+
+ 8. You may not copy, modify, sublicense, link with, or distribute
+the Library except as expressly provided under this License. Any
+attempt otherwise to copy, modify, sublicense, link with, or
+distribute the Library is void, and will automatically terminate your
+rights under this License. However, parties who have received copies,
+or rights, from you under this License will not have their licenses
+terminated so long as such parties remain in full compliance.
+
+ 9. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Library or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Library (or any work based on the
+Library), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Library or works based on it.
+
+ 10. Each time you redistribute the Library (or any work based on the
+Library), the recipient automatically receives a license from the
+original licensor to copy, distribute, link with or modify the Library
+subject to these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties with
+this License.
+
+ 11. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Library at all. For example, if a patent
+license would not permit royalty-free redistribution of the Library by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Library.
+
+If any portion of this section is held invalid or unenforceable under any
+particular circumstance, the balance of the section is intended to apply,
+and the section as a whole is intended to apply in other circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 12. If the distribution and/or use of the Library is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Library under this License may add
+an explicit geographical distribution limitation excluding those countries,
+so that distribution is permitted only in or among countries not thus
+excluded. In such case, this License incorporates the limitation as if
+written in the body of this License.
+
+ 13. The Free Software Foundation may publish revised and/or new
+versions of the Lesser General Public License from time to time.
+Such new versions will be similar in spirit to the present version,
+but may differ in detail to address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Library
+specifies a version number of this License which applies to it and
+"any later version", you have the option of following the terms and
+conditions either of that version or of any later version published by
+the Free Software Foundation. If the Library does not specify a
+license version number, you may choose any version ever published by
+the Free Software Foundation.
+
+ 14. If you wish to incorporate parts of the Library into other free
+programs whose distribution conditions are incompatible with these,
+write to the author to ask for permission. For software which is
+copyrighted by the Free Software Foundation, write to the Free
+Software Foundation; we sometimes make exceptions for this. Our
+decision will be guided by the two goals of preserving the free status
+of all derivatives of our free software and of promoting the sharing
+and reuse of software generally.
+
+ NO WARRANTY
+
+ 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
+WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
+EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
+OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
+KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
+LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
+THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
+WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
+AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
+FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
+CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
+LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
+RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
+FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
+SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Libraries
+
+ If you develop a new library, and you want it to be of the greatest
+possible use to the public, we recommend making it free software that
+everyone can redistribute and change. You can do so by permitting
+redistribution under these terms (or, alternatively, under the terms of the
+ordinary General Public License).
+
+ To apply these terms, attach the following notices to the library. It is
+safest to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least the
+"copyright" line and a pointer to where the full notice is found.
+
+ <one line to give the library's name and a brief idea of what it does.>
+ Copyright (C) <year> <name of author>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+Also add information on how to contact you by electronic and paper mail.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the library, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the
+ library `Frob' (a library for tweaking knobs) written by James Random Hacker.
+
+ <signature of Ty Coon>, 1 April 1990
+ Ty Coon, President of Vice
+
+That's all there is to it!
+
+
Deleted: trunk/OpenPIXPDQ/licenses/ant-LICENSE.txt
===================================================================
--- trunk/OpenPIXPDQ/licenses/ant-LICENSE.txt 2009-03-19 17:20:05 UTC (rev 292)
+++ trunk/OpenPIXPDQ/licenses/ant-LICENSE.txt 2009-03-19 17:26:07 UTC (rev 293)
@@ -1,202 +0,0 @@
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright [yyyy] [name of copyright owner]
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-
Deleted: trunk/OpenPIXPDQ/licenses/ant-junit-LICENSE.txt
===================================================================
--- trunk/OpenPIXPDQ/licenses/ant-junit-LICENSE.txt 2009-03-19 17:20:05 UTC (rev 292)
+++ trunk/OpenPIXPDQ/licenses/ant-junit-LICENSE.txt 2009-03-19 17:26:07 UTC (rev 293)
@@ -1,202 +0,0 @@
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright [yyyy] [name of copyright owner]
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-
Deleted: trunk/OpenPIXPDQ/licenses/ant-launcher-LICENSE.txt
===================================================================
--- trunk/OpenPIXPDQ/licenses/ant-launcher-LICENSE.txt 2009-03-19 17:20:05 UTC (rev 292)
+++ trunk/OpenPIXPDQ/licenses/ant-launcher-LICENSE.txt 2009-03-19 17:26:07 UTC (rev 293)
@@ -1,202 +0,0 @@
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or D...
[truncated message content] |