Added sieve.c - sieve config screen will go here.
[citadel.git] / webcit / sieve.c
1 /* 
2  * $Id: $
3  */
4 /**
5  * \defgroup Sieve view/edit sieve config
6  * \ingroup WebcitDisplayItems
7  */
8 /*@{*/
9 #include "webcit.h"
10
11
12 /**
13  * \brief view/edit sieve config
14  */
15 void display_sieve(void)
16 {
17         output_headers(1, 1, 2, 0, 0, 0);
18
19         wprintf("<div id=\"banner\">\n");
20         wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=\"#444455\"><TR><TD>");
21         wprintf("<SPAN CLASS=\"titlebar\">");
22         wprintf(_("View/edit server-side mail filters"));
23         wprintf("</SPAN>\n");
24         wprintf("</TD></TR></TABLE>\n");
25         wprintf("</div>\n<div id=\"content\">\n");
26
27         wprintf("<div class=\"fix_scrollbar_bug\">"
28                 "<table border=0 width=100%% bgcolor=\"#FFFFFF\">"
29                 "<tr><td valign=top>\n");
30
31         wprintf("FIXME there is nothing here yet.");
32
33         wprintf("</td></tr></table></div>\n");
34         wDumpContent(1);
35
36 }
37
38
39
40
41 /*@}*/