Teine-meeskond: Difference between revisions
Created page with 'Võrgurakendused II: hajussüsteemide ehitamine Kodutöö leht =Rühma liikmed:= * Nikolai Skorohodov * Ragnar Rattas * Rynga Bogdanov =XML= ==Faili kirjeldus== == XML f…' |
|||
Line 11: | Line 11: | ||
=XML= | =XML= | ||
==Faili kirjeldus== | ==Faili kirjeldus== | ||
== XML fail== | == XML fail== | ||
<?xml version="1.0" encoding="utf-8" ?> | |||
<!-- Simple XML datafile for holding patients data --> | |||
<HealthMonitoring> | |||
<Patient id="1" hasInsurance="yes"> | |||
<FirstName>Mari-Liis</FirstName> | |||
<LastName>Männik</LastName> | |||
<PersonalCode>47101010033</PersonalCode> | |||
<MedicalHistory> | |||
<Complaint id="1" isPrivate="no"> | |||
<Symptom>Fever</Symprom> | |||
<BeginDateTime>2013-05-28T09:00:00</BeginDateTime> | |||
<EndDateTime/> | |||
<Descripton>I'm feeling sick and I have 38 degrees fever!</Description> | |||
<Treatment> | |||
<Medicine id='1' isPrescriptionDrug="no"> | |||
<Name>Aspirin</Name> | |||
<BeginDate>2013-05-28</BeginDate> | |||
<EndDate>2013-05-30</EndDate> | |||
<Notes>Take one tablet three times a day.</Notes> | |||
</Medicine> | |||
</Treatment> | |||
</Complaint> | |||
<Complaint id="2" isPrivate="yes"> | |||
<Symptom>Headache</Symprom> | |||
<BeginDateTime>2013-05-28T09:00:00</BeginDateTime> | |||
<EndDateTime>2013-05-30T09:00:00<<EndDateTime> | |||
<Descripton>I'm having random headaches</Description> | |||
<Treatment> | |||
<Medicine id='2' isPrescriptionDrug="yes"> | |||
<Name>Xanax</Name> | |||
<BeginDate>2013-05-28</BeginDate> | |||
<EndDate>2013-05-30</EndDate> | |||
<Notes>Take one pill per day and enjoy!</Notes> | |||
</Medicine> | |||
</Treatment> | |||
</Complaint> | |||
</MedicalHistory> | |||
</Patient> | |||
<Patient id="2" hasInsurance="no"> | |||
<FirstName>Igor</FirstName> | |||
<LastName>Žaikovski</LastName> | |||
<PersonalCode>37101010021</PersonalCode> | |||
<MedicalHistory> | |||
<Complaint id="1" isPrivate="no"> | |||
<Symptom>Fever</Symprom> | |||
<BeginDateTime>2013-05-28T09:00:00</BeginDateTime> | |||
<EndDateTime/> | |||
<Descripton>I can't sleep.</Description> | |||
<Treatment> | |||
<Medicine id='3' isPrescriptionDrug="no"> | |||
<Name>Sleeping pills</Name> | |||
<BeginDate>2013-05-28</BeginDate> | |||
<EndDate>2013-06-30</EndDate> | |||
<Notes>Take one pill before going to sleep.</Notes> | |||
</Medicine> | |||
</Treatment> | |||
</Complaint> | |||
</MedicalHistory> | |||
</Patient> | |||
</HealthMonitoring> | |||
==XML schema (XSD)== | ==XML schema (XSD)== | ||
Line 22: | Line 82: | ||
==Style Sheet 2== | ==Style Sheet 2== | ||
==Style Sheet 3== |
Revision as of 22:40, 5 May 2013
Võrgurakendused II: hajussüsteemide ehitamine
Kodutöö leht
Rühma liikmed:
- Nikolai Skorohodov
- Ragnar Rattas
- Rynga Bogdanov
XML
Faili kirjeldus
XML fail
<?xml version="1.0" encoding="utf-8" ?> <HealthMonitoring> <Patient id="1" hasInsurance="yes"> <FirstName>Mari-Liis</FirstName> <LastName>Männik</LastName> <PersonalCode>47101010033</PersonalCode> <MedicalHistory> <Complaint id="1" isPrivate="no"> <Symptom>Fever</Symprom> <BeginDateTime>2013-05-28T09:00:00</BeginDateTime> <EndDateTime/> <Descripton>I'm feeling sick and I have 38 degrees fever!</Description> <Treatment>
<Medicine id='1' isPrescriptionDrug="no"> <Name>Aspirin</Name> <BeginDate>2013-05-28</BeginDate> <EndDate>2013-05-30</EndDate> <Notes>Take one tablet three times a day.</Notes> </Medicine>
</Treatment> </Complaint> <Complaint id="2" isPrivate="yes"> <Symptom>Headache</Symprom> <BeginDateTime>2013-05-28T09:00:00</BeginDateTime> <EndDateTime>2013-05-30T09:00:00<<EndDateTime> <Descripton>I'm having random headaches</Description> <Treatment>
<Medicine id='2' isPrescriptionDrug="yes"> <Name>Xanax</Name> <BeginDate>2013-05-28</BeginDate> <EndDate>2013-05-30</EndDate> <Notes>Take one pill per day and enjoy!</Notes> </Medicine>
</Treatment> </Complaint> </MedicalHistory> </Patient> <Patient id="2" hasInsurance="no"> <FirstName>Igor</FirstName> <LastName>Žaikovski</LastName> <PersonalCode>37101010021</PersonalCode> <MedicalHistory> <Complaint id="1" isPrivate="no"> <Symptom>Fever</Symprom> <BeginDateTime>2013-05-28T09:00:00</BeginDateTime> <EndDateTime/> <Descripton>I can't sleep.</Description> <Treatment>
<Medicine id='3' isPrescriptionDrug="no"> <Name>Sleeping pills</Name> <BeginDate>2013-05-28</BeginDate> <EndDate>2013-06-30</EndDate> <Notes>Take one pill before going to sleep.</Notes> </Medicine>
</Treatment> </Complaint> </MedicalHistory> </Patient> </HealthMonitoring>