* remove old notes rendering code, its not used anymore.
authorWilfried Göesgens <willi@citadel.org>
Sat, 25 Apr 2009 14:09:27 +0000 (14:09 +0000)
committerWilfried Göesgens <willi@citadel.org>
Sat, 25 Apr 2009 14:09:27 +0000 (14:09 +0000)
* add mail attachment inline renderer for notes
* add first draft template stripped down from the original notes thing, needs some more love.

webcit/msg_renderers.c
webcit/notes.c
webcit/static/t/mail_vnoteitem.html [new file with mode: 0644]

index 356fdceb2454fe4d6995bc2e945ae948185be738..84d9831869d0621e04d40ee91ed8505b02334a8d 100644 (file)
@@ -502,6 +502,35 @@ void render_MIME_VCard(wc_mime_attachment *Mime, StrBuf *RawData, StrBuf *FoundC
 
 }
 
+void render_MIME_VNote(wc_mime_attachment *Mime, StrBuf *RawData, StrBuf *FoundCharset)
+{
+       MimeLoadData(Mime);
+       if (StrLength(Mime->Data) > 0) {
+               struct vnote *v;
+               StrBuf *Buf;
+
+               Buf = NewStrBuf();
+               v = vnote_new_from_str(ChrPtr(Mime->Data));
+               if (v) {
+                       WCTemplputParams TP;
+                       
+                       memset(&TP, 0, sizeof(WCTemplputParams));
+                       TP.Filter.ContextType = CTX_VNOTE;
+                       TP.Context = v;
+                       DoTemplate(HKEY("mail_vnoteitem"),
+                                  Buf, &TP);
+                       
+                       vnote_free(v);
+                       
+                       FreeStrBuf(&Mime->Data);
+                       Mime->Data = Buf;
+               }
+               else
+                       FlushStrBuf(Mime->Data);
+       }
+
+}
+
 void render_MIME_ICS(wc_mime_attachment *Mime, StrBuf *RawData, StrBuf *FoundCharset)
 {
        if (StrLength(Mime->Data) == 0) {
@@ -1179,6 +1208,7 @@ InitModule_MSGRENDERERS
 
        /* mime renderers translate an attachment into webcit viewable html text */
        RegisterMimeRenderer(HKEY("message/rfc822"), render_MAIL);
+       RegisterMimeRenderer(HKEY("text/vnote"), render_MIME_VNote);
        RegisterMimeRenderer(HKEY("text/x-vcard"), render_MIME_VCard);
        RegisterMimeRenderer(HKEY("text/vcard"), render_MIME_VCard);
        RegisterMimeRenderer(HKEY("text/calendar"), render_MIME_ICS);
index a4e570645317b8b03b816f076e8d7b9ebcaead3d..bc5d78952ebcc4282dac57654f66dffac2e61b1d 100644 (file)
@@ -20,124 +20,6 @@ int pastel_palette[9][3] = {
 };
 
 
-/*
- * Display a <div> containing a rendered sticky note.
- */
-void display_vnote_div(struct vnote *v) {
-       int i;
-
-
-       wprintf("<div id=\"note-%s\" ", v->uid);        /* begin outer div */
-       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("\">");
-
-
-
-
-
-       wprintf("<div id=\"titlebar-%s\" ", v->uid);    /* begin title bar div */
-       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 align=left valign=middle>");
-       wprintf("<img onclick=\"NotesClickPalette(event,'%s')\" ", v->uid);
-       wprintf("src=\"static/8paint16.gif\">");
-
-       wprintf("</td>");
-
-       wprintf("<td></td>");   // nothing in the title bar, it's just for dragging
-
-       wprintf("<td align=right valign=middle>");
-       wprintf("<img onclick=\"DeleteStickyNote(event,'%s','%s')\" ", v->uid, _("Delete this note?") );
-       wprintf("src=\"static/closewindow.gif\">");
-       wprintf("</td></tr></table>");
-
-       wprintf("</div>\n");                            // end title bar div
-
-
-
-
-
-       wprintf("<div id=\"notebody-%s\" ", v->uid);    // begin body div
-       wprintf("class=\"stickynote_body\"");
-       wprintf(">");
-       escputs(v->body);
-       wprintf("</div>\n");                            // end body div
-
-        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,
-               v->uid,
-               (v->pos_height / 16) - 5,
-               (v->pos_width / 9) - 1,
-               _("Save"),
-               _("Cancel"),
-               _("Click on any note to edit it.")
-       );
-
-       wprintf("<div id=\"resize-%s\" ", v->uid);      // begin resize handle div
-       wprintf("class=\"stickynote_resize\" ");
-       wprintf("onMouseDown=\"NotesResizeMouseDown(event,'%s')\"", v->uid);
-       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
-
-
-
-
-
-       wprintf("</div>\n");                            // end outer div
-}
-
-
-
 /*
  * Fetch a message from the server and extract a vNote from it
  */
@@ -404,7 +286,6 @@ void display_note(message_summary *Msg, int unread) {
        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);
diff --git a/webcit/static/t/mail_vnoteitem.html b/webcit/static/t/mail_vnoteitem.html
new file mode 100644 (file)
index 0000000..47968b9
--- /dev/null
@@ -0,0 +1,29 @@
+<!--begin title bar div-->
+<div id='titlebar-<?VNOTE:UID>'
+ class="stickynote_titlebar"
+ style=" background-color: #<?VNOTE:BGCOLOR>"
+>
+<table border=0 cellpadding=0 cellspacing=0 valign=middle width=100%><tr>
+<td align=left valign=middle>
+</td>
+<td></td><!-- nothing in the title bar, its just for dragging-->
+<td align=right valign=middle>
+</td></tr></table>
+</div>
+<!--end title bar div; begin body div-->
+<div id="notebody-<?VNOTE:UID>"        class="stickynote_body">
+  <?VNOTE:MSG("X")>
+</div>
+<!--end body div-->
+<div id="resize-<?VNOTE:UID>" 
+     class="stickynote_resize" onMouseDown="NotesResizeMouseDown(event,'<?VNOTE:UID>')"> </div>
+
+</div>
+
+<div id="resize-<?VNOTE:UID>"
+ class="stickynote_resize"
+ onMouseDown="NotesResizeMouseDown(event,'<?VNOTE:UID>')">
+</div>
+<!--end resize handle div-->
+
+