* make readloop long-controlled
[citadel.git] / webcit / notes.c
index 47249b5b69c6c93bb34326e3ef13490f5e4d4308..48582a9fb2b9f79c939fd990d7f107cf504a7df4 100644 (file)
@@ -26,9 +26,8 @@ int pastel_palette[9][3] = {
 void display_vnote_div(struct vnote *v) {
        int i;
 
-       /* begin outer div */
 
-       wprintf("<div id=\"note-%s\" ", v->uid);
+       wprintf("<div id=\"note-%s\" ", v->uid);        // begin outer div
        wprintf("class=\"stickynote_outer\" ");
        wprintf("style=\"");
        wprintf("left: %dpx; ", v->pos_left);
@@ -38,9 +37,11 @@ void display_vnote_div(struct vnote *v) {
        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("<div id=\"titlebar-%s\" ", v->uid);    // begin title bar div
        wprintf("class=\"stickynote_titlebar\" ");
        wprintf("onMouseDown=\"NotesDragMouseDown(event,'%s')\" ", v->uid);
        wprintf("style=\"");
@@ -53,35 +54,6 @@ void display_vnote_div(struct vnote *v) {
        wprintf("<img onclick=\"NotesClickPalette(event,'%s')\" ", v->uid);
        wprintf("src=\"static/8paint16.gif\">");
 
-       /* embed color selector */
-       wprintf("<div id=\"palette-%s\" ", v->uid);
-       wprintf("class=\"stickynote_palette\" ");
-       wprintf("<table border=0 cellpadding=0 cellspacing=0>");
-       for (i=0; i<9; ++i) {
-               if ((i%3)==0) wprintf("<tr>");
-               wprintf("<td ");
-               wprintf("onClick=\"NotesClickColor(event,'%s',%d,%d,%d,'#%02x%02x%02x','#%02x%02x%02x')\" ",
-                       v->uid,
-                       pastel_palette[i][0],           // color values to pass to ajax call
-                       pastel_palette[i][1],
-                       pastel_palette[i][2],
-                       pastel_palette[i][0],           // new color of note
-                       pastel_palette[i][1],
-                       pastel_palette[i][2],
-                       pastel_palette[i][0] / 2,       // new color of title bar
-                       pastel_palette[i][1] / 2,
-                       pastel_palette[i][2] / 2
-               );
-               wprintf("bgcolor=\"#%02x%02x%02x\"> </td>",
-                       pastel_palette[i][0],
-                       pastel_palette[i][1],
-                       pastel_palette[i][2]
-               );
-               if (((i+1)%3)==0) wprintf("</tr>");
-       }
-       wprintf("</table>");
-       wprintf("</div>");
-
        wprintf("</td>");
 
        wprintf("<td></td>");   // nothing in the title bar, it's just for dragging
@@ -91,18 +63,20 @@ void display_vnote_div(struct vnote *v) {
        wprintf("src=\"static/closewindow.gif\">");
        wprintf("</td></tr></table>");
 
-       wprintf("</div>\n");
+       wprintf("</div>\n");                            // end title bar div
+
 
-       /* begin note body */
 
-       wprintf("<div id=\"notebody-%s\" ", v->uid);
+
+
+       wprintf("<div id=\"notebody-%s\" ", v->uid);    // begin body div
        wprintf("class=\"stickynote_body\"");
        wprintf(">");
        escputs(v->body);
-       wprintf("</div>\n");
+       wprintf("</div>\n");                            // end body div
 
-       wprintf("<script type=\"text/javascript\">");
-       wprintf(" new Ajax.InPlaceEditor('notebody-%s', 'ajax_update_note?note_uid=%s', "
+        StrBufAppendPrintf(WC->trailing_javascript,
+               " new Ajax.InPlaceEditor('notebody-%s', 'ajax_update_note?note_uid=%s', "
                "{rows:%d,cols:%d,onEnterHover:false,onLeaveHover:false,"
                "okText:'%s',cancelText:'%s',clickToEditText:'%s'});",
                v->uid,
@@ -113,18 +87,53 @@ void display_vnote_div(struct vnote *v) {
                _("Cancel"),
                _("Click on any note to edit it.")
        );
-       wprintf("</script>\n");
-
-       /* begin resize handle */
 
-       wprintf("<div id=\"resize-%s\" ", v->uid);
+       wprintf("<div id=\"resize-%s\" ", v->uid);      // begin resize handle div
        wprintf("class=\"stickynote_resize\" ");
        wprintf("onMouseDown=\"NotesResizeMouseDown(event,'%s')\"", v->uid);
-       wprintf("> </div>");
+       wprintf("> </div>");                            // end resize handle div
+
+
+
+
+       /* embed color selector - it doesn't have to be inside the title bar html because
+        * it's a separate div placed by css
+        */
+       wprintf("<div id=\"palette-%s\" ", v->uid);     // begin stickynote_palette div
+       wprintf("class=\"stickynote_palette\">");
+
+       wprintf("<table border=0 cellpadding=0 cellspacing=0>");
+       for (i=0; i<9; ++i) {
+               if ((i%3)==0) wprintf("<tr>");
+               wprintf("<td ");
+               wprintf("onClick=\"NotesClickColor(event,'%s',%d,%d,%d,'#%02x%02x%02x','#%02x%02x%02x')\" ",
+                       v->uid,
+                       pastel_palette[i][0],           // color values to pass to ajax call
+                       pastel_palette[i][1],
+                       pastel_palette[i][2],
+                       pastel_palette[i][0],           // new color of note
+                       pastel_palette[i][1],
+                       pastel_palette[i][2],
+                       pastel_palette[i][0] / 2,       // new color of title bar
+                       pastel_palette[i][1] / 2,
+                       pastel_palette[i][2] / 2
+               );
+               wprintf("bgcolor=\"#%02x%02x%02x\"> </td>",
+                       pastel_palette[i][0],
+                       pastel_palette[i][1],
+                       pastel_palette[i][2]
+               );
+               if (((i+1)%3)==0) wprintf("</tr>");
+       }
+       wprintf("</table>");
+
+       wprintf("</div>");                              // end stickynote_palette div
+
 
-       /* end of note */
 
-       wprintf("</div>\n");
+
+
+       wprintf("</div>\n");                            // end outer div
 }
 
 
@@ -215,13 +224,16 @@ struct vnote *vnote_new_from_msg(long msgnum) {
 void write_vnote_to_server(struct vnote *v) 
 {
        char buf[1024];
+       char *pch;
 
        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));
+               pch = vnote_serialize(v);
+               serv_puts(pch);
+               free(pch);
                serv_puts("000");
        }
 }
@@ -245,7 +257,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') {
@@ -255,12 +267,12 @@ void ajax_update_note(void) {
                return;
        }
        msgnum = atol(&buf[4]);
-       lprintf(9, "Note msg = %ld\n", 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 %ld", msgnum);
+                       serv_printf("DELE %d", msgnum);
                        serv_getln(buf, sizeof buf);
                        begin_ajax_response();
                        wprintf("%s", buf);
@@ -273,7 +285,7 @@ void ajax_update_note(void) {
        v = vnote_new_from_msg(msgnum);
        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;
        }
@@ -325,20 +337,25 @@ void ajax_update_note(void) {
  *
  * 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;
 
-       v = vnote_new_from_msg(msgnum);
+       v = vnote_new_from_msg(Msg->msgnum);
        if (v) {
-               display_vnote_div(v);
+//             display_vnote_div(v);
+               DoTemplate(HKEY("vnoteitem"),
+                          WC->WBuf, v, CTX_VNOTE);
+                       
 
                /* 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);
@@ -365,5 +382,85 @@ void add_new_note(void) {
                vnote_free(v);
        }
        
-       readloop("readfwd");
+       readloop(readfwd);
+}
+
+
+void tmpl_vcard_put_posleft(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
+{
+       struct vnote *v = (struct vnote *) Context;
+       StrBufAppendPrintf(Target, "%d", v->pos_left);
+}
+
+void tmpl_vcard_put_postop(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
+{
+       struct vnote *v = (struct vnote *) Context;
+       StrBufAppendPrintf(Target, "%d", v->pos_top);
+}
+
+void tmpl_vcard_put_poswidth(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
+{
+       struct vnote *v = (struct vnote *) Context;
+       StrBufAppendPrintf(Target, "%d", v->pos_width);
+}
+
+void tmpl_vcard_put_posheight(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
+{
+       struct vnote *v = (struct vnote *) Context;
+       StrBufAppendPrintf(Target, "%d", v->pos_height);
+}
+
+void tmpl_vcard_put_posheight2(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
+{
+       struct vnote *v = (struct vnote *) Context;
+       StrBufAppendPrintf(Target, "%d", (v->pos_height / 16) - 5);
+}
+
+void tmpl_vcard_put_width2(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
+{
+       struct vnote *v = (struct vnote *) Context;
+       StrBufAppendPrintf(Target, "%d", (v->pos_width / 9) - 1);
+}
+
+void tmpl_vcard_put_color(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
+{
+       struct vnote *v = (struct vnote *) Context;
+       StrBufAppendPrintf(Target, "%02X%02X%02X", v->color_red, v->color_green, v->color_blue);
+}
+
+void tmpl_vcard_put_bgcolor(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
+{
+       struct vnote *v = (struct vnote *) Context;
+       StrBufAppendPrintf(Target, "%02X%02X%02X", v->color_red/2, v->color_green/2, v->color_blue/2);
+}
+
+void tmpl_vcard_put_message(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
+{
+       struct vnote *v = (struct vnote *) Context;
+       StrEscAppend(Target, NULL, v->body, 0, 0); ///TODO?
+}
+
+void tmpl_vcard_put_uid(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
+{
+       struct vnote *v = (struct vnote *) Context;
+       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);
 }