Generating text/x-vcard
authorArt Cancro <ajc@citadel.org>
Mon, 4 Jun 2007 20:54:16 +0000 (20:54 +0000)
committerArt Cancro <ajc@citadel.org>
Mon, 4 Jun 2007 20:54:16 +0000 (20:54 +0000)
webcit/messages.c
webcit/static/webcit.css
webcit/vcard.c

index 8ac9f8cd69ce5c40bd24ec25109b8be74ba6a7bb..7b67e23356fc27e6fd6b7a3c306513650cdf4117 100644 (file)
@@ -417,7 +417,8 @@ void display_parsed_vcard(struct vCard *v, int full) {
                return;
        }
 
-       wprintf("<div align=center><table bgcolor=#aaaaaa width=50%%>");
+       wprintf("<div align=center>"
+               "<table bgcolor=#aaaaaa width=50%%>");
        for (pass=1; pass<=2; ++pass) {
 
                if (v->numprops) for (i=0; i<(v->numprops); ++i) {
index 9b57c1f4ae951487ee347ea12ff1bcd3497ce4e7..7ef19518b642e41b66b88b73f508f3d94ff59213 100644 (file)
@@ -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;
 }
 
index 1f866250118501e22e422c70a9882011df74bb32..431d57dfceee86138fc3e3aba63db960d05271cd 100644 (file)
@@ -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
  */