From: Art Cancro Date: Mon, 4 Jun 2007 20:54:16 +0000 (+0000) Subject: Generating text/x-vcard X-Git-Tag: v7.86~3335 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=c104cd047dddf53dd83ecbc96a27acc1091f444e;p=citadel.git Generating text/x-vcard --- diff --git a/webcit/messages.c b/webcit/messages.c index 8ac9f8cd6..7b67e2335 100644 --- a/webcit/messages.c +++ b/webcit/messages.c @@ -417,7 +417,8 @@ void display_parsed_vcard(struct vCard *v, int full) { return; } - wprintf("
"); + wprintf("
" + "
"); for (pass=1; pass<=2; ++pass) { if (v->numprops) for (i=0; i<(v->numprops); ++i) { diff --git a/webcit/static/webcit.css b/webcit/static/webcit.css index 9b57c1f4a..7ef19518b 100644 --- a/webcit/static/webcit.css +++ b/webcit/static/webcit.css @@ -997,12 +997,12 @@ div.auto_complete ul strong.highlight { position: relative; width: 100%; height: 100%; - background-color: #ffd; + background-color: #fbf4ca; } #address_book_popup_middle_div { position: relative; - background-color: #ffd; + background-color: #fbf4ca; } #address_book_inner_div { @@ -1011,12 +1011,12 @@ div.auto_complete ul strong.highlight { #address_book_inner_div select { width: 100%; - background-color: #ffd; + background-color: #fbf4ca; } .address_book_popup_title { font-size: 12pt; - background-color: #ffd; + background-color: #fbf4ca; color: #000; } diff --git a/webcit/vcard.c b/webcit/vcard.c index 1f8662501..431d57dfc 100644 --- a/webcit/vcard.c +++ b/webcit/vcard.c @@ -260,7 +260,7 @@ void vcard_set_prop(struct vCard *v, char *name, char *value, int append) { /** - * \brief Serialize a struct vcard into a standard text/x-vcard MIME type. + * \brief Serialize a struct vcard into its standard format. * \param v vCard to serialize * \return the serialized vCard */