diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2015-02-05 09:47:10 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2015-02-05 09:47:10 +0100 |
commit | c912d0844a01f67ae1c95c8725526ca8b6751a89 (patch) | |
tree | 6d4b60260bde837a1bcff6f2ff4347a1c5e83248 /vcard.example | |
parent | 295b95085f3d7cf7d405771e81bb33902838286e (diff) | |
download | jacc-master.tar.gz |
Diffstat (limited to 'vcard.example')
-rw-r--r-- | vcard.example | 143 |
1 files changed, 143 insertions, 0 deletions
diff --git a/vcard.example b/vcard.example new file mode 100644 index 0000000..4e98499 --- /dev/null +++ b/vcard.example @@ -0,0 +1,143 @@ +<!-- <vCard> - done by jacc --> + <FN></FN> + <N> + <FAMILY></FAMILY> + <GIVEN></GIVEN> + <MIDDLE></MIDDLE> + <PREFIX></PREFIX> + <SUFFIX></SUFFIX> + </N> + <NICKNAME></NICKNAME> + <PHOTO> + <!-- BINVAL or EXTVAL --> + <TYPE>BEXTVAL</TYPE> + <!-- Base64 data of the photo --> + <!-- <BINVAL></BINVAL> --> + <!-- URI of the photo --> + <BEXTVAL>http://www.somewhere.com/photo.png</BEXTVAL> + </PHOTO> + <BDAY></BDAY> +<!-- One or more of these complexes are allowed. --> + <ADR> + <!-- one of these elements for which address you mean + <HOME/> + <WORK/> + <POSTAL/> --> + <PARCEL/> + <!-- int'l or domestic + <DOM/> --> + <INTL/> + <!-- preferred address? --> + <PREF/> + <POBOX></POBOX> + <EXTADR></EXTADR> + <STREET></STREET> + <LOCALITY></LOCALITY> + <REGION></REGION> + <PCODE></PCODE> + <CTRY></CTRY> + </ADR> +<!-- One or more of these complexes are allowed. --> + <LABEL> + <!-- one of these elements for which address you mean + <HOME/> + <WORK/> + <POSTAL/> --> + <PARCEL/> + <!-- int'l or domestic + <DOM/> --> + <INTL/> + <!-- preferred address? --> + <PREF/> + <LINE></LINE> + </LABEL> +<!-- One or more of these complexes are allowed. --> + <TEL> + <!-- one of these elements for which telephone number you mean + <HOME/> + <WORK/> + <VOICE/> + <FAX/> + <PAGER/> + <MSG/> + <CELL/> + <VIDEO/> + <BBS/> + <MODEM/> + <ISDN/> --> + <PCS/> + <!-- preferred number? --> + <PREF/> + <NUMBER></NUMBER> + </TEL> +<!-- One or more of these complexes are allowed. --> + <EMAIL> + <!-- one of these elements for which telephone number you mean + <HOME/> + <WORK/> + <INTERNET/> --> + <X400/> + <!-- preferred E-Mail? --> + <PREF/> + <USERID></USERID> + </EMAIL> + <JABBERID></JABBERID> + <MAILER></MAILER> +<!-- Value must be an ISO 8601 formatted UTC offset. --> + <TZ></TZ> +<!-- Values are the decimal degrees and should havce six decimal + places --> + <GEO> + <LAT></LAT> + <LON></LON> + </GEO> + <TITLE></TITLE> + <ROLE></ROLE> + <LOGO> + <!-- BINVAL or EXTVAL --> + <TYPE>BEXTVAL</TYPE> + <!-- Base64 data of the logo --> + <!-- <BINVAL></BINVAL> --> + <!-- URI of the photo --> + <BEXTVAL>http://www.somewhere.com/logo.png</BEXTVAL> + </LOGO> + <AGENT> + <!-- Either a whole vCard or an external value + <vCard></vCard> --> + <EXTVAL>http://microsoft.com/bil.gates.vcard</EXTVAL> + </AGENT> + <ORG> + <ORGNAME></ORGNAME> + <ORGUNIT></ORGUNIT> + </ORG> + <CATEGORIES> + <KEYWORD></KEYWORD> + <KEYWORD></KEYWORD> + <!-- ... --> + </CATEGORIES> + <NOTE></NOTE> + <PRODID>acme</PRODID> +<!-- ISO 8601 formatted UTC date/time - fill something inside --> + <REV></REV> + <SORT-STRING></SORT-STRING> + <SOUND> + <!-- again many options noone needs. + <PHONETIC></PHOENTIC> + <BINVAL></BINVAL> --> + <EXTVAL>http://www.sun.com/fresh_coffee.fl</EXTVAL> + </SOUND> + <UID></UID> + <URL></URL> + <DESC></DESC> + <CLASS> + <!-- No, not school. + <PUBLIC/> + <PRIVATE/> --> + <CONFIDENTIAL/> + </CLASS> + <KEY> + <TYPE>CRED</TYPE> + <!-- Either envryption or credential. --> + <CRED></CRED> + </KEY> +<!-- </vCard> --> |