pdimport
pdimport is a Pocket PC 2002 application which imports contacts and
calendar information into your Pocket PC from xml files.
download
You can download a Binary for ARM/XScale or the
source code for Embedded Visual Studio 3.0.
This release is from 2003-12-16.
Sample XML files
Your xml files for import should look as follows. Expect a DTD
sometime in the future, so you can validate your xml
files. Description of the xml tags will be added to this website
later.
Contacts
<?xml version="1.0" encoding="ISO-8859-1" ?>
<AddressBook>
<Entry>
<Name>Bastian Zühlke</Name>
<Subentry>
<Key>Email</Key>
<Value>dev@null.com</Value>
</Subentry>
</Entry>
<Entry>
<Name>Daniel</Name>
<Subentry>
<Key>Handle</Key>
<Value>Dante</Value>
</Subentry>
<Subentry>
<Key>Email</Key>
<Value>dev@zero.net</Value>
</Subentry>
</Entry>
</AddressBook>
Calendar
<?xml version="1.0" encoding="ISO-8859-1" ?>
<dates>
<event>
<start>2003-12-31 11:00:00+01</start>
<end>2003-12-31 14:00:00+01</end>
<name>Musikhalle</name>
<description></description>
<account></account>
</event>
<weekly>
<von>17:00:00</von>
<bis>18:00:00</bis>
<dow>5</dow>
<name>Gitarre</name>
<description>bei Rainer Baumann</description>
</weekly>
<yearly>
<day>4</day>
<month>12</month>
<name>doj</name>
<description></description>
</yearly>
</dates>
|