* serv_getln now is a wrapper around existing functionality. a new temporary var...
[citadel.git] / webcit / notes.c
index 93dba977dcd67808d7e0e34fa850b9a40997ceac..4870ea0b2b26e46a4d5118f8d218f2ab4186befe 100644 (file)
 #include "groupdav.h"
 #include "webserver.h"
 
+int pastel_palette[9][3] = {
+       { 0x80, 0x80, 0x80 },
+       { 0xff, 0x80, 0x80 },
+       { 0x80, 0x80, 0xff },
+       { 0xff, 0xff, 0x80 },
+       { 0x80, 0xff, 0x80 },
+       { 0xff, 0x80, 0xff },
+       { 0x80, 0xff, 0xff },
+       { 0xff, 0x80, 0x80 },
+       { 0x80, 0x80, 0x80 }
+};
 
-/*
- * Uncomment this #define in order to get the new vNote-based sticky notes view.
- * We're keeping both versions here so that I can work on the new view without breaking
- * the existing implementation prior to completion.
- */
-
-/* #define NEW_NOTES_VIEW */
 
-
-#ifndef NEW_NOTES_VIEW
 /*
- * display sticky notes
- *
- * msgnum = Message number on the local server of the note to be displayed
+ * Fetch a message from the server and extract a vNote from it
  */
-void display_note(long msgnum, int unread)
+struct vnote *vnote_new_from_msg(long msgnum,int unread) 
 {
-       char buf[SIZ];
-       char notetext[SIZ];
-       char display_notetext[SIZ];
-       char eid[128];
-       int in_text = 0;
-       int i, len;
-
-       serv_printf("MSG0 %ld", msgnum);
-       serv_getln(buf, sizeof buf);
-       if (buf[0] != '1') {
-               wprintf("%s<br />\n", &buf[4]);
-               return;
-       }
-
-       strcpy(notetext, "");
-       strcpy(eid, "");
-       while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
-
-               /* Fill the buffer */
-               if ( (in_text) && (strlen(notetext) < SIZ-256) ) {
-                       strcat(notetext, buf);
-               }
-
-               if ( (!in_text) && (!strncasecmp(buf, "exti=", 5)) ) {
-                       safestrncpy(eid, &buf[5], sizeof eid);
-               }
-
-               if ( (!in_text) && (!strcasecmp(buf, "text")) ) {
-                       in_text = 1;
-               }
-       }
-
-       /* Now sanitize the buffer */
-       len = strlen(notetext);
-       for (i=0; i<len; ++i) {
-               if (isspace(notetext[i])) notetext[i] = ' ';
-       }
-
-       /* Make it HTML-happy and print it. */
-       stresc(display_notetext, SIZ, notetext, 0, 0);
-
-       /* Lets try it as a draggable */
-       if (!IsEmptyStr(eid)) {
-               wprintf ("<IMG ALIGN=MIDDLE src=\"static/storenotes_48x.gif\" id=\"note_%s\" alt=\"Note\" ", eid); 
-               wprintf ("class=\"notes\">\n");
-               wprintf ("<script type=\"text/javascript\">\n");
-               wprintf ("new Draggable (\"note_%s\", {revert:true})\n", eid);
-               wprintf ("</script>\n");
-       }
-       else {
-               wprintf ("<IMG ALIGN=MIDDLE src=\"static/storenotes_48x.gif\" id=\"note_%ld\" ", msgnum); 
-               wprintf ("class=\"notes\">\n");
-               wprintf ("<script type=\"text/javascript\">\n");
-               wprintf ("new Draggable (\"note_%ld\", {revert:true})\n", msgnum);
-               wprintf ("</script>\n");
-       }
-       
-       if (!IsEmptyStr(eid)) {
-               wprintf("<span id=\"note%s\">%s</span><br />\n", eid, display_notetext);
-       }
-       else {
-               wprintf("<span id=\"note%ld\">%s</span><br />\n", msgnum, display_notetext);
-       }
-
-       /* Offer in-place editing. */
-       if (!IsEmptyStr(eid)) {
-               wprintf("<script type=\"text/javascript\">"
-                       "new Ajax.InPlaceEditor('note%s', 'updatenote?nonce=%ld?eid=%s', {rows:5,cols:72});"
-                       "</script>\n",
-                       eid,
-                       WC->nonce,
-                       eid
-               );
-       }
-}
-#endif
-
+       StrBuf *Buf;
+       StrBuf *Data;
+       const char *bptr;
+       int Done = 0;
+       char from[128] = "";
+       char uid_from_headers[256];
+       char mime_partnum[256];
+       char mime_filename[256];
+       char mime_content_type[256];
+       char mime_disposition[256];
+       int mime_length;
+       char relevant_partnum[256];
+       int phase = 0;                          /* 0 = citadel headers, 1 = mime headers, 2 = body */
+       char msg4_content_type[256] = "";
+       char msg4_content_encoding[256] = "";
+       int msg4_content_length = 0;
+       struct vnote *vnote_from_body = NULL;
 
-/*
- * This gets called by the Ajax.InPlaceEditor when we save a note.
- */
-void updatenote(void)
-{
-       char buf[SIZ];
-       char notetext[SIZ];
-       char display_notetext[SIZ];
-       long msgnum;
-       int in_text = 0;
-       int i, len;
-
-       serv_printf("ENT0 1||0|0||||||%s", bstr("eid"));
-       serv_getln(buf, sizeof buf);
-       if (buf[0] == '4') {
-               text_to_server(bstr("value"));
-               serv_puts("000");
+       relevant_partnum[0] = '\0';
+       serv_printf("MSG4 %ld", msgnum);        /* we need the mime headers */
+       Buf = NewStrBuf();
+       StrBuf_ServGetln(Buf);
+       if (GetServerStatus(Buf, NULL) != 1) {
+               FreeStrBuf (&Buf);
+               return NULL;
        }
-
-       begin_ajax_response();
-       msgnum = locate_message_by_uid(bstr("eid"));
-       if (msgnum >= 0L) {
-               serv_printf("MSG0 %ld", msgnum);
-               serv_getln(buf, sizeof buf);
-               if (buf[0] == '1') {
-                       strcpy(notetext, "");
-                       while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
-               
-                               /* Fill the buffer */
-                               if ( (in_text) && (strlen(notetext) < SIZ-256) ) {
-                                       strcat(notetext, buf);
+       while ((StrBuf_ServGetln(Buf)>=0) && !Done) {
+               if ( (StrLength(Buf)==3) && 
+                    !strcmp(ChrPtr(Buf), "000")) {
+                       Done = 1;
+                       break;
+               }
+               bptr = ChrPtr(Buf);
+               switch (phase) {
+               case 0:
+                       if (!strncasecmp(bptr, "exti=", 5)) {
+                               safestrncpy(uid_from_headers, &(ChrPtr(Buf)[5]), sizeof uid_from_headers);
+                       }
+                       else if (!strncasecmp(bptr, "part=", 5)) {
+                               extract_token(mime_filename, &bptr[5], 1, '|', sizeof mime_filename);
+                               extract_token(mime_partnum, &bptr[5], 2, '|', sizeof mime_partnum);
+                               extract_token(mime_disposition, &bptr[5], 3, '|', sizeof mime_disposition);
+                               extract_token(mime_content_type, &bptr[5], 4, '|', sizeof mime_content_type);
+                               mime_length = extract_int(&bptr[5], 5);
+
+                               if (  (!strcasecmp(mime_content_type, "text/calendar"))
+                                     || (!strcasecmp(mime_content_type, "application/ics"))
+                                     || (!strcasecmp(mime_content_type, "text/vtodo"))
+                                       ) {
+                                       strcpy(relevant_partnum, mime_partnum);
                                }
-               
-                               if ( (!in_text) && (!strcasecmp(buf, "text")) ) {
-                                       in_text = 1;
+                       }
+                       else if (!strncasecmp(bptr, "from=", 4)) {
+                               extract_token(from, bptr, 1, '=', sizeof(from));
+                       }
+                       else if ((phase == 0) && (!strncasecmp(bptr, "text", 4))) {
+                               phase = 1;
+                       }
+               break;
+               case 1:
+                       if (!IsEmptyStr(bptr)) {
+                               if (!strncasecmp(bptr, "Content-type: ", 14)) {
+                                       safestrncpy(msg4_content_type, &bptr[14], sizeof msg4_content_type);
+                                       striplt(msg4_content_type);
+                               }
+                               else if (!strncasecmp(bptr, "Content-transfer-encoding: ", 27)) {
+                                       safestrncpy(msg4_content_encoding, &bptr[27], sizeof msg4_content_encoding);
+                                       striplt(msg4_content_type);
+                               }
+                               else if ((!strncasecmp(bptr, "Content-length: ", 16))) {
+                                       msg4_content_length = atoi(&bptr[16]);
                                }
+                               break;
                        }
-                       /* Now sanitize the buffer */
-                       len = strlen(notetext);
-                       for (i=0; i<len; ++i) {
-                               if (isspace(notetext[i])) notetext[i] = ' ';
+                       else {
+                               phase++;
+                               
+                               if ((msg4_content_length > 0)
+                                   && ( !strcasecmp(msg4_content_encoding, "7bit"))
+                                   && ((!strcasecmp(mime_content_type, "text/calendar"))
+                                       || (!strcasecmp(mime_content_type, "application/ics"))
+                                       || (!strcasecmp(mime_content_type, "text/vtodo"))
+                                           )
+                                       ) 
+                               {
+                               }
+                       }
+               case 2:
+                       Data = NewStrBufPlain(NULL, msg4_content_length * 2);
+                       if (msg4_content_length > 0) {
+                               StrBuf_ServGetBLOBBuffered(Data, msg4_content_length);
+                               phase ++;
                        }
-               
-                       /* Make it HTML-happy and print it. */
-                       stresc(display_notetext, SIZ, notetext, 0, 0);
-                       wprintf("%s\n", display_notetext);
+                       else {
+                               StrBufAppendBuf(Data, Buf, 0);
+                               StrBufAppendBufPlain(Data, "\r\n", 1, 0);
+                       }
+               case 3:
+                       StrBufAppendBuf(Data, Buf, 0);
                }
        }
-       else {
-               wprintf("%s", _("An error has occurred."));
-       }
-
-       end_ajax_response();
-}
-
-
+       FreeStrBuf(&Buf);
 
+       /* If MSG4 didn't give us the part we wanted, but we know that we can find it
+        * as one of the other MIME parts, attempt to load it now.
+        */
+       if ((Data == NULL) && (!IsEmptyStr(relevant_partnum))) {
+               Data = load_mimepart(msgnum, relevant_partnum);
+       }
 
 
-/*
- * Display a <div> containing a rendered sticky note.
- */
-void display_vnote_div(struct vnote *v) {
-
-       /* begin outer div */
-
-       wprintf("<div id=\"note-%s\" ", v->uid);
-       wprintf("class=\"stickynote_outer\" ");
-       wprintf("style=\"");
-       wprintf("left: %dpx; ", v->pos_left);
-       wprintf("top: %dpx; ", v->pos_top);
-       wprintf("width: %dpx; ", v->pos_width);
-       wprintf("height: %dpx; ", v->pos_height);
-       wprintf("background-color: #%02X%02X%02X ", v->color_red, v->color_green, v->color_blue);
-       wprintf("\">");
-
-       /* begin title bar */
-
-       wprintf("<div id=\"titlebar-%s\" ", v->uid);
-       wprintf("class=\"stickynote_titlebar\" ");
-       wprintf("onMouseDown=\"NotesDragMouseDown(event,'%s')\" ", v->uid);
-       wprintf("style=\"");
-       wprintf("background-color: #%02X%02X%02X ", v->color_red/2, v->color_green/2, v->color_blue/2);
-       wprintf("\">");
-
-       wprintf("<table border=0 cellpadding=0 cellspacing=0 valign=middle width=100%%><tr>");
-       wprintf("<td></td>");   // nothing in the title bar, it's just for dragging
-
-       wprintf("<td align=right valign=middle "
-               // "onclick=\"javascript:$('address_book_popup').style.display='none';\" "
-               "><img src=\"static/closewindow.gif\">");
-       wprintf("</td></tr></table>");
-
-       wprintf("</div>\n");
-
-       /* begin note body */
-
-       wprintf("<div id=\"notebody-%s\" ", v->uid);
-       wprintf("class=\"stickynote_body\"");
-       wprintf(">");
-       escputs(v->body);
-       wprintf("</div>\n");
-
-       wprintf("<script type=\"text/javascript\">");
-       wprintf(" new Ajax.InPlaceEditor('notebody-%s', 'ajax_update_note?note_uid=%s', "
-               "{rows:%d,cols:%d,highlightcolor:'#%02X%02X%02X',highlightendcolor:'#%02X%02X%02X',"
-               "okText:'%s',cancelText:'%s',clickToEditText:'%s'});",
-               v->uid,
-               v->uid,
-               (v->pos_height / 16) - 5,
-               (v->pos_width / 9) - 1,
-               v->color_red, v->color_green, v->color_blue,
-               v->color_red, v->color_green, v->color_blue,
-               _("Save"),
-               _("Cancel"),
-               _("Click on any note to edit it.")
-       );
-       wprintf("</script>\n");
-
-       /* begin resize handle */
-
-       wprintf("<div id=\"resize-%s\" ", v->uid);
-       wprintf("class=\"stickynote_resize\" ");
-       wprintf("onMouseDown=\"NotesResizeMouseDown(event,'%s')\"", v->uid);
-       wprintf(">");
-
-       wprintf("<img src=\"static/resizecorner.png\">");
-
-       wprintf("</div>\n");
-
-       /* end of note */
-
-       wprintf("</div>\n");
+       if ((IsEmptyStr(relevant_partnum)) && (StrLength(Data) > 0 )) {
+               if (!IsEmptyStr(uid_from_headers)) {
+                       // Convert an old-style note to a vNote
+                       vnote_from_body = vnote_new();
+                       vnote_from_body->uid = strdup(uid_from_headers);
+                       vnote_from_body->color_red = pastel_palette[3][0];
+                       vnote_from_body->color_green = pastel_palette[3][1];
+                       vnote_from_body->color_blue = pastel_palette[3][2];
+                       vnote_from_body->body = malloc(StrLength(Data) + 1);
+                       vnote_from_body->body[0] = 0;
+                       memcpy(vnote_from_body->body, ChrPtr(Data), StrLength(Data) + 1);
+                       return vnote_from_body;
+               }
+               else {
+                       struct vnote *v = vnote_new_from_str(ChrPtr(Data));
+                       return(v);
+               }
+       }
+       return NULL;
 }
 
 
 
 /*
- * Fetch a message from the server and extract a vNote from it
+ * Serialize a vnote and write it to the server
  */
-struct vnote *vnote_new_from_msg(long msgnum) {
+void write_vnote_to_server(struct vnote *v) 
+{
        char buf[1024];
-       char mime_partnum[256];
-       char mime_filename[256];
-       char mime_content_type[256];
-       char mime_disposition[256];
-       int mime_length;
-       char relevant_partnum[256];
-       char *relevant_source = NULL;
+       char *pch;
 
-       relevant_partnum[0] = '\0';
-       sprintf(buf, "MSG4 %ld", msgnum);       /* we need the mime headers */
-       serv_puts(buf);
+       serv_puts("ENT0 1|||4");
        serv_getln(buf, sizeof buf);
-       if (buf[0] != '1') return NULL;
-
-       while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
-               if (!strncasecmp(buf, "part=", 5)) {
-                       extract_token(mime_filename, &buf[5], 1, '|', sizeof mime_filename);
-                       extract_token(mime_partnum, &buf[5], 2, '|', sizeof mime_partnum);
-                       extract_token(mime_disposition, &buf[5], 3, '|', sizeof mime_disposition);
-                       extract_token(mime_content_type, &buf[5], 4, '|', sizeof mime_content_type);
-                       mime_length = extract_int(&buf[5], 5);
-
-                       if (!strcasecmp(mime_content_type, "text/vnote")) {
-                               strcpy(relevant_partnum, mime_partnum);
-                       }
-               }
+       if (buf[0] == '4') {
+               serv_puts("Content-type: text/vnote");
+               serv_puts("");
+               pch = vnote_serialize(v);
+               serv_puts(pch);
+               free(pch);
+               serv_puts("000");
        }
+}
 
-       if (!IsEmptyStr(relevant_partnum)) {
-               relevant_source = load_mimepart(msgnum, relevant_partnum);
-               if (relevant_source != NULL) {
-                       struct vnote *v = vnote_new_from_str(relevant_source);
-                       free(relevant_source);
-                       return(v);
-               }
-       }
 
-       return NULL;
-}
 
 
 /*
@@ -302,7 +198,7 @@ void ajax_update_note(void) {
                return;
        }
 
-       lprintf(9, "Note UID = %s\n", bstr("note_uid"));
+       // lprintf(9, "Note UID = %s\n", bstr("note_uid"));
        serv_printf("EUID %s", bstr("note_uid"));
        serv_getln(buf, sizeof buf);
        if (buf[0] != '2') {
@@ -312,10 +208,25 @@ void ajax_update_note(void) {
                return;
        }
        msgnum = atol(&buf[4]);
-       v = vnote_new_from_msg(msgnum);
+       // lprintf(9, "Note msg = %ld\n", msgnum);
+
+       // Was this request a delete operation?  If so, nuke it...
+       if (havebstr("deletenote")) {
+               if (!strcasecmp(bstr("deletenote"), "yes")) {
+                       serv_printf("DELE %d", msgnum);
+                       serv_getln(buf, sizeof buf);
+                       begin_ajax_response();
+                       wprintf("%s", buf);
+                       end_ajax_response();
+                       return;
+               }
+       }
+
+       // If we get to this point it's an update, not a delete
+       v = vnote_new_from_msg(msgnum, 0);
        if (!v) {
                begin_ajax_response();
-               wprintf("Cannot locate a vNote within message %ld\n", msgnum);
+               wprintf("Cannot locate a vNote within message %d\n", msgnum);
                end_ajax_response();
                return;
        }
@@ -333,20 +244,22 @@ void ajax_update_note(void) {
         if (havebstr("width")) {
                v->pos_width = atoi(bstr("width"));
        }
+        if (havebstr("red")) {
+               v->color_red = atoi(bstr("red"));
+       }
+        if (havebstr("green")) {
+               v->color_green = atoi(bstr("green"));
+       }
+        if (havebstr("blue")) {
+               v->color_blue = atoi(bstr("blue"));
+       }
         if (havebstr("value")) {       // I would have preferred 'body' but InPlaceEditor hardcodes 'value'
                if (v->body) free(v->body);
                v->body = strdup(bstr("value"));
        }
 
        /* Serialize it and save it to the message base.  Server will delete the old one. */
-       serv_puts("ENT0 1|||4");
-       serv_getln(buf, sizeof buf);
-       if (buf[0] == '4') {
-               serv_puts("Content-type: text/vnote");
-               serv_puts("");
-               serv_puts(vnote_serialize(v));
-               serv_puts("000");
-       }
+       write_vnote_to_server(v);
 
        begin_ajax_response();
        if (v->body) {
@@ -360,33 +273,138 @@ void ajax_update_note(void) {
 
 
 
-
-
-#ifdef NEW_NOTES_VIEW
-
 /*
  * display sticky notes
  *
  * msgnum = Message number on the local server of the note to be displayed
  */
-void display_note(long msgnum, int unread) {
+void display_note(message_summary *Msg, int unread) {
        struct vnote *v;
+       WCTemplputParams TP;
 
-       v = vnote_new_from_msg(msgnum);
+       memset(&TP, 0, sizeof(WCTemplputParams));
+       TP.Filter.ContextType = CTX_VNOTE;
+       v = vnote_new_from_msg(Msg->msgnum, unread);
        if (v) {
-               display_vnote_div(v);
+               TP.Context = v;
+               DoTemplate(HKEY("vnoteitem"),
+                          WC->WBuf, &TP);
+                       
 
                /* uncomment these lines to see ugly debugging info 
-               wprintf("<script type=\"text/javascript\">");
-               wprintf("document.write('L: ' + $('note-%s').style.left + '; ');", v->uid);
-               wprintf("document.write('T: ' + $('note-%s').style.top + '; ');", v->uid);
-               wprintf("document.write('W: ' + $('note-%s').style.width + '; ');", v->uid);
-               wprintf("document.write('H: ' + $('note-%s').style.height + '<br>');", v->uid);
-               wprintf("</script>");
+               StrBufAppendPrintf(WC->trailing_javascript,
+                       "document.write('L: ' + $('note-%s').style.left + '; ');", v->uid);
+               StrBufAppendPrintf(WC->trailing_javascript,
+                       "document.write('T: ' + $('note-%s').style.top + '; ');", v->uid);
+               StrBufAppendPrintf(WC->trailing_javascript,
+                       "document.write('W: ' + $('note-%s').style.width + '; ');", v->uid);
+               StrBufAppendPrintf(WC->trailing_javascript,
+                       "document.write('H: ' + $('note-%s').style.height + '<br>');", v->uid);
                */
 
                vnote_free(v);
        }
 }
 
-#endif
+
+
+/*
+ * Create a new note
+ */
+void add_new_note(void) {
+       struct vnote *v;
+
+       v = vnote_new();
+       if (v) {
+               v->uid = malloc(128);
+               generate_uuid(v->uid);
+               v->color_red = pastel_palette[3][0];
+               v->color_green = pastel_palette[3][1];
+               v->color_blue = pastel_palette[3][2];
+               v->body = strdup(_("Click on any note to edit it."));
+               write_vnote_to_server(v);
+               vnote_free(v);
+       }
+       
+       readloop(readfwd);
+}
+
+
+void tmpl_vcard_put_posleft(StrBuf *Target, WCTemplputParams *TP)
+{
+       struct vnote *v = (struct vnote *) CTX;
+       StrBufAppendPrintf(Target, "%d", v->pos_left);
+}
+
+void tmpl_vcard_put_postop(StrBuf *Target, WCTemplputParams *TP)
+{
+       struct vnote *v = (struct vnote *) CTX;
+       StrBufAppendPrintf(Target, "%d", v->pos_top);
+}
+
+void tmpl_vcard_put_poswidth(StrBuf *Target, WCTemplputParams *TP)
+{
+       struct vnote *v = (struct vnote *) CTX;
+       StrBufAppendPrintf(Target, "%d", v->pos_width);
+}
+
+void tmpl_vcard_put_posheight(StrBuf *Target, WCTemplputParams *TP)
+{
+       struct vnote *v = (struct vnote *) CTX;
+       StrBufAppendPrintf(Target, "%d", v->pos_height);
+}
+
+void tmpl_vcard_put_posheight2(StrBuf *Target, WCTemplputParams *TP)
+{
+       struct vnote *v = (struct vnote *) CTX;
+       StrBufAppendPrintf(Target, "%d", (v->pos_height / 16) - 5);
+}
+
+void tmpl_vcard_put_width2(StrBuf *Target, WCTemplputParams *TP)
+{
+       struct vnote *v = (struct vnote *) CTX;
+       StrBufAppendPrintf(Target, "%d", (v->pos_width / 9) - 1);
+}
+
+void tmpl_vcard_put_color(StrBuf *Target, WCTemplputParams *TP)
+{
+       struct vnote *v = (struct vnote *) CTX;
+       StrBufAppendPrintf(Target, "%02X%02X%02X", v->color_red, v->color_green, v->color_blue);
+}
+
+void tmpl_vcard_put_bgcolor(StrBuf *Target, WCTemplputParams *TP)
+{
+       struct vnote *v = (struct vnote *) CTX;
+       StrBufAppendPrintf(Target, "%02X%02X%02X", v->color_red/2, v->color_green/2, v->color_blue/2);
+}
+
+void tmpl_vcard_put_message(StrBuf *Target, WCTemplputParams *TP)
+{
+       struct vnote *v = (struct vnote *) CTX;
+       StrEscAppend(Target, NULL, v->body, 0, 0); ///TODO?
+}
+
+void tmpl_vcard_put_uid(StrBuf *Target, WCTemplputParams *TP)
+{
+       struct vnote *v = (struct vnote *) CTX;
+       StrBufAppendBufPlain(Target, v->uid, -1, 0);
+}
+
+void 
+InitModule_NOTES
+(void)
+{
+       WebcitAddUrlHandler(HKEY("add_new_note"), add_new_note, 0);
+       WebcitAddUrlHandler(HKEY("ajax_update_note"), ajax_update_note, 0);
+
+       RegisterNamespace("VNOTE:POS:LEFT", 0, 0, tmpl_vcard_put_posleft, CTX_VNOTE);
+       RegisterNamespace("VNOTE:POS:TOP", 0, 0, tmpl_vcard_put_postop, CTX_VNOTE);
+       RegisterNamespace("VNOTE:POS:WIDTH", 0, 0, tmpl_vcard_put_poswidth, CTX_VNOTE);
+       RegisterNamespace("VNOTE:POS:HEIGHT", 0, 0, tmpl_vcard_put_posheight, CTX_VNOTE);
+       RegisterNamespace("VNOTE:POS:HEIGHT2", 0, 0, tmpl_vcard_put_posheight2, CTX_VNOTE);
+       RegisterNamespace("VNOTE:POS:WIDTH2", 0, 0, tmpl_vcard_put_width2, CTX_VNOTE);
+       RegisterNamespace("VNOTE:COLOR", 0, 0, tmpl_vcard_put_color, CTX_VNOTE);
+       RegisterNamespace("VNOTE:BGCOLOR", 0, 0,tmpl_vcard_put_bgcolor, CTX_VNOTE);
+       RegisterNamespace("VNOTE:MSG", 0, 1, tmpl_vcard_put_message, CTX_VNOTE);
+       RegisterNamespace("VNOTE:UID", 0, 0, tmpl_vcard_put_uid, CTX_VNOTE);
+}