1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
<?xml version="1.0"?>
<todo project="Next year's plans">
<devs>
<person name="Paper Pusher" email="paper@example.org" id="PP"
expertise="paper">
Shuffling papers
</person>
<person name="Envelope Stuffer" email="stuffer@example.org" id="ES"
expertise="envelopes">
Stuffing envelopes, folding flaps, licking stamps
</person>
<person name="Bean Counter" email="bcount@example.org" id="BC"
expertise="counting" status="emeritus">
Scrutinizing, retirement
</person>
</devs>
<actions>
<action category="tidy up" who="PP">
Shred documents
</action>
<action category="decorative" who="ES">
Make paper-clip sculptures
</action>
<action category="planning" who="PP">
Create next year's to-do lists
</action>
</actions>
</todo>
|