]> code.citadel.org Git - citadel.git/blobdiff - webcit/iconbar.c
* Integrated the first batch of new icons.
[citadel.git] / webcit / iconbar.c
index 277bc75a5ff023a998125f4d59d9049ed5817b7c..73fe104cc7363898ba34ef0ab094987c55def323 100644 (file)
@@ -59,11 +59,11 @@ void do_iconbar(void) {
        /*
         */
 
-       get_preference("iconbar", iconbar);
+       get_preference("iconbar", iconbar, sizeof iconbar);
        for (i=0; i<num_tokens(iconbar, ','); ++i) {
-               extract_token(buf, iconbar, i, ',');
-               extract_token(key, buf, 0, '=');
-               extract_token(value, buf, 1, '=');
+               extract_token(buf, iconbar, i, ',', sizeof buf);
+               extract_token(key, buf, 0, '=', sizeof key);
+               extract_token(value, buf, 1, '=', sizeof value);
 
                if (!strcasecmp(key, "ib_displayas")) ib_displayas = atoi(value);
                if (!strcasecmp(key, "ib_logo")) ib_logo = atoi(value);
@@ -97,7 +97,7 @@ void do_iconbar(void) {
        if (ib_citadel) if (ib_displayas != IB_TEXTONLY) wprintf(
                "<li><div align=\"center\">"
                "<A HREF=\"http://www.citadel.org\" "
-               "title=\"Find out more about Citadel\" target=\"aboutcit\" "
+               "title=\"Find out more about Citadel\" target=\"aboutcit\">"
                "<img border=\"0\" width=\"48\" height=\"48\" "
                "SRC=\"/static/citadel-logo.gif\" ALT=\"CITADEL\">"
                "CITADEL</A>"
@@ -112,7 +112,7 @@ void do_iconbar(void) {
                );
                if (ib_displayas != IB_TEXTONLY) {
                        wprintf("<IMG BORDER=\"0\" WIDTH=\"32\" HEIGHT=\"32\" "
-                               "SRC=\"/static/summary.gif\">");
+                               "SRC=\"/static/summscreen_32x.gif\">");
                }
                if (ib_displayas != IB_PICONLY) {
                        wprintf("Summary");
@@ -128,7 +128,7 @@ void do_iconbar(void) {
                );
                if (ib_displayas != IB_TEXTONLY) {
                        wprintf("<IMG BORDER=\"0\" WIDTH=\"32\" HEIGHT=\"32\" "
-                               "SRC=\"/static/mail.gif\">");
+                               "SRC=\"/static/privatemess_32x.gif\">");
                }
                if (ib_displayas != IB_PICONLY) {
                        wprintf("Mail");
@@ -144,7 +144,7 @@ void do_iconbar(void) {
                );
                if (ib_displayas != IB_TEXTONLY) {
                        wprintf("<IMG BORDER=\"0\" WIDTH=\"32\" HEIGHT=\"32\" "
-                       "SRC=\"/static/vcalendar.gif\">");
+                       "SRC=\"/static/calarea_32x.gif\">");
                }
                if (ib_displayas != IB_PICONLY) {
                        wprintf("Calendar");
@@ -160,7 +160,7 @@ void do_iconbar(void) {
                );
                if (ib_displayas != IB_TEXTONLY) {
                        wprintf("<IMG BORDER=\"0\" WIDTH=\"32\" HEIGHT=\"32\" "
-                       "SRC=\"/static/vcard.gif\">");
+                       "SRC=\"/static/savecontact_32x.gif\">");
                }
                if (ib_displayas != IB_PICONLY) {
                        wprintf("Contacts");
@@ -176,7 +176,7 @@ void do_iconbar(void) {
                );
                if (ib_displayas != IB_TEXTONLY) {
                        wprintf("<IMG BORDER=\"0\" WIDTH=\"32\" HEIGHT=\"32\" "
-                       "SRC=\"/static/note.gif\">");
+                       "SRC=\"/static/storenotes_32x.gif\">");
                }
                if (ib_displayas != IB_PICONLY) {
                        wprintf("Notes");
@@ -192,7 +192,7 @@ void do_iconbar(void) {
                );
                if (ib_displayas != IB_TEXTONLY) {
                        wprintf("<IMG BORDER=\"0\" WIDTH=\"32\" HEIGHT=\"32\" "
-                       "SRC=\"/static/vcalendar.gif\">");
+                       "SRC=\"/static/taskmanag_32x.gif\">");
                }
                if (ib_displayas != IB_PICONLY) {
                        wprintf("Tasks");
@@ -207,7 +207,7 @@ void do_iconbar(void) {
                );
                if (ib_displayas != IB_TEXTONLY) {
                        wprintf("<IMG BORDER=\"0\" WIDTH=\"32\" HEIGHT=\"32\" "
-                       "SRC=\"/static/rooms-icon.gif\">");
+                       "SRC=\"/static/chatrooms_32x.gif\">");
                }
                if (ib_displayas != IB_PICONLY) {
                        wprintf("Rooms");
@@ -222,7 +222,7 @@ void do_iconbar(void) {
                );
                if (ib_displayas != IB_TEXTONLY) {
                        wprintf("<IMG BORDER=\"0\" WIDTH=\"32\" HEIGHT=\"32\" "
-                       "SRC=\"/static/users-icon.gif\">");
+                       "SRC=\"/static/usermanag_32x.gif\">");
                }
                if (ib_displayas != IB_PICONLY) {
                        wprintf("Who is online?");
@@ -240,7 +240,7 @@ void do_iconbar(void) {
                );
                if (ib_displayas != IB_TEXTONLY) {
                        wprintf("<IMG BORDER=\"0\" WIDTH=\"32\" HEIGHT=\"32\" "
-                       "SRC=\"/static/chat-icon.gif\">");
+                       "SRC=\"/static/citadelchat_32x.gif\">");
                }
                if (ib_displayas != IB_PICONLY) {
                        wprintf("Chat");
@@ -257,7 +257,7 @@ void do_iconbar(void) {
                );
                if (ib_displayas != IB_TEXTONLY) {
                        wprintf("<IMG BORDER=\"0\" WIDTH=\"32\" HEIGHT=\"32\" "
-                       "SRC=\"/static/advanced-icon.gif\">");
+                       "SRC=\"/static/advanpage_32x.gif\">");
                }
                if (ib_displayas != IB_PICONLY) {
                        wprintf("Advanced");
@@ -273,7 +273,7 @@ void do_iconbar(void) {
                );
                if (ib_displayas != IB_TEXTONLY) {
                        wprintf("<IMG BORDER=\"0\" WIDTH=\"32\" HEIGHT=\"32\" "
-                       "SRC=\"/static/advanced-icon.gif\">");
+                       "SRC=\"/static/advanpage_32x.gif\">");
                }
                if (ib_displayas != IB_PICONLY) {
                        wprintf("Administration");
@@ -338,11 +338,11 @@ void display_customize_iconbar(void) {
        /*
         */
 
-       get_preference("iconbar", iconbar);
+       get_preference("iconbar", iconbar, sizeof iconbar);
        for (i=0; i<num_tokens(iconbar, ','); ++i) {
-               extract_token(buf, iconbar, i, ',');
-               extract_token(key, buf, 0, '=');
-               extract_token(value, buf, 1, '=');
+               extract_token(buf, iconbar, i, ',', sizeof buf);
+               extract_token(key, buf, 0, '=', sizeof key);
+               extract_token(value, buf, 1, '=', sizeof value);
 
                if (!strcasecmp(key, "ib_displayas")) ib_displayas = atoi(value);
                if (!strcasecmp(key, "ib_logo")) ib_logo = atoi(value);
@@ -367,7 +367,8 @@ void display_customize_iconbar(void) {
                "</div>\n<div id=\"content\">\n"
        );
 
-       wprintf("<center><table border=0 width=99%% bgcolor=\"#ffffff\"><tr><td>");
+       wprintf("<div id=\"fix_scrollbar_bug\">"
+               "<table border=0 width=100%% bgcolor=\"#ffffff\"><tr><td>");
 
        wprintf("<FORM METHOD=\"POST\" ACTION=\"/commit_iconbar\">\n");
 
@@ -408,7 +409,7 @@ void display_customize_iconbar(void) {
                "<INPUT TYPE=\"checkbox\" NAME=\"ib_summary\" VALUE=\"yes\" %s>"
                "</TD><TD>"
                "<IMG BORDER=\"0\" WIDTH=\"48\" HEIGHT=\"48\" "
-               "SRC=\"/static/summary.gif\" ALT=\"&nbsp;\">"
+               "SRC=\"/static/summscreen_48x.gif\" ALT=\"&nbsp;\">"
                "</TD><TD>"
                "<B>Summary</B><br />"
                "Your summary page"
@@ -421,7 +422,7 @@ void display_customize_iconbar(void) {
                "<INPUT TYPE=\"checkbox\" NAME=\"ib_inbox\" VALUE=\"yes\" %s>"
                "</TD><TD>"
                "<IMG BORDER=\"0\" WIDTH=\"48\" HEIGHT=\"48\" "
-               "SRC=\"/static/mail.gif\" ALT=\"&nbsp;\">"
+               "SRC=\"/static/privatemess_48x.gif\" ALT=\"&nbsp;\">"
                "</TD><TD>"
                "<B>Mail (inbox)</B><br />"
                "A shortcut to your e-mail Inbox."
@@ -435,7 +436,7 @@ void display_customize_iconbar(void) {
                "VALUE=\"yes\" %s>"
                "</TD><TD>"
                "<IMG BORDER=\"0\" WIDTH=\"48\" HEIGHT=\"48\" "
-               "SRC=\"/static/vcard.gif\" ALT=\"&nbsp;\">"
+               "SRC=\"/static/savecontact_48x.gif\" ALT=\"&nbsp;\">"
                "</TD><TD>"
                "<B>Contacts</B><br />"
                "Your personal address book."
@@ -449,7 +450,7 @@ void display_customize_iconbar(void) {
                "VALUE=\"yes\" %s>"
                "</TD><TD>"
                "<IMG BORDER=\"0\" WIDTH=\"48\" HEIGHT=\"48\" "
-               "SRC=\"/static/note.gif\" ALT=\"&nbsp;\">"
+               "SRC=\"/static/storenotes_48x.gif\" ALT=\"&nbsp;\">"
                "</TD><TD>"
                "<B>Notes</B><br />"
                "Your personal notes."
@@ -464,7 +465,7 @@ void display_customize_iconbar(void) {
                "VALUE=\"yes\" %s>"
                "</TD><TD>"
                "<IMG BORDER=\"0\" WIDTH=\"48\" HEIGHT=\"48\" "
-               "SRC=\"/static/vcalendar.gif\" ALT=\"&nbsp;\">"
+               "SRC=\"/static/calarea_48x.gif\" ALT=\"&nbsp;\">"
                "</TD><TD>"
                "<B>Calendar</B><br />"
                "A shortcut to your personal calendar."
@@ -477,7 +478,7 @@ void display_customize_iconbar(void) {
                "<INPUT TYPE=\"checkbox\" NAME=\"ib_tasks\" VALUE=\"yes\" %s>"
                "</TD><TD>"
                "<IMG BORDER=\"0\" WIDTH=\"48\" HEIGHT=\"48\" "
-               "SRC=\"/static/vcalendar.gif\" ALT=\"&nbsp;\">"
+               "SRC=\"/static/taskmanag/48x.gif\" ALT=\"&nbsp;\">"
                "</TD><TD>"
                "<B>Tasks</B><br />"
                "A shortcut to your personal task list."
@@ -491,7 +492,7 @@ void display_customize_iconbar(void) {
                "<INPUT TYPE=\"checkbox\" NAME=\"ib_rooms\" VALUE=\"yes\" %s>"
                "</TD><TD>"
                "<IMG BORDER=\"0\" WIDTH=\"48\" HEIGHT=\"48\" "
-               "SRC=\"/static/rooms-icon.gif\" ALT=\"&nbsp;\">"
+               "SRC=\"/static/chatrooms_48x.gif\" ALT=\"&nbsp;\">"
                "</TD><TD>"
                "<B>Rooms</B><br />"
                "Clicking this icon displays a list of all accesible "
@@ -505,7 +506,7 @@ void display_customize_iconbar(void) {
                "<INPUT TYPE=\"checkbox\" NAME=\"ib_users\" VALUE=\"yes\" %s>"
                "</TD><TD>"
                "<IMG BORDER=\"0\" WIDTH=\"48\" HEIGHT=\"48\" "
-               "SRC=\"/static/users-icon.gif\" ALT=\"&nbsp;\">"
+               "SRC=\"/static/usermanag_48x.gif\" ALT=\"&nbsp;\">"
                "</TD><TD>"
                "<B>Who is online?</B><br />"
                "Clicking this icon displays a list of all users "
@@ -519,7 +520,7 @@ void display_customize_iconbar(void) {
                "<INPUT TYPE=\"checkbox\" NAME=\"ib_chat\" VALUE=\"yes\" %s>"
                "</TD><TD>"
                "<IMG BORDER=\"0\" WIDTH=\"48\" HEIGHT=\"48\" "
-               "SRC=\"/static/chat-icon.gif\" ALT=\"&nbsp;\">"
+               "SRC=\"/static/citadelchat_48x.gif\" ALT=\"&nbsp;\">"
                "</TD><TD>"
                "<B>Chat</B><br />"
                "Clicking this icon enters real-time chat mode "
@@ -534,7 +535,7 @@ void display_customize_iconbar(void) {
                "VALUE=\"yes\" %s>"
                "</TD><TD>"
                "<IMG BORDER=\"0\" WIDTH=\"48\" HEIGHT=\"48\" "
-               "SRC=\"/static/advanced-icon.gif\" ALT=\"&nbsp;\">"
+               "SRC=\"/static/advanpage_48x.gif\" ALT=\"&nbsp;\">"
                "</TD><TD>"
                "<B>Advanced options</B><br />"
                "Access to the complete menu of Citadel functions."
@@ -565,7 +566,7 @@ void display_customize_iconbar(void) {
                "</CENTER></FORM>\n"
        );
 
-       wprintf("</td></tr></table></center>\n");
+       wprintf("</td></tr></table></div>\n");
        wDumpContent(2);
 }
 
@@ -612,7 +613,7 @@ void commit_iconbar(void) {
        output_headers(1, 1, 0, 0, 0, 0, 0);
        wprintf(
                "<center><table border=1 bgcolor=\"#ffffff\"><tr><td>"
-               "<IMG SRC=\"/static/advanced-icon.gif\">"
+               "<IMG SRC=\"/static/advanpage_48x.gif\">"
                "&nbsp;"
                "Your icon bar has been updated.  Please select any of its "
                "choices to continue."