]> code.citadel.org Git - citadel.git/blobdiff - webcit/calendar_tools.c
* calendar_tools.c: i18n
[citadel.git] / webcit / calendar_tools.c
index 713a7feb046990b3ee705faeccca300c977cef83..fa8bd902039931aeda48553b51effacdec6324ee 100644 (file)
@@ -1,39 +1,36 @@
 /*
  * $Id$
  *
- *
+ * Miscellaneous functions which handle calendar components.
  */
 
-#include <ctype.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <stdio.h>
-#include <fcntl.h>
-#include <signal.h>
-#include <sys/types.h>
-#include <sys/wait.h>
-#include <sys/socket.h>
-#include <limits.h>
-#include <netinet/in.h>
-#include <netdb.h>
-#include <string.h>
-#include <pwd.h>
-#include <errno.h>
-#include <stdarg.h>
-#include <pthread.h>
-#include <signal.h>
-#include <time.h>
 #include "webcit.h"
 #include "webserver.h"
 
+/* FIXME ... this needs to be internationalized */
 char *months[] = {
-       "January", "February", "March", "April", "May", "June", "July",
-       "August", "September", "October", "November", "December"
+       "January",
+       "February",
+       "March",
+       "April",
+       "May",
+       "June",
+       "July",
+       "August",
+       "September",
+       "October",
+       "November",
+       "December"
 };
 
 char *days[] = {
-       "Sunday", "Monday", "Tuesday", "Wednesday",
-       "Thursday", "Friday", "Saturday"
+       "Sunday",
+       "Monday",
+       "Tuesday",
+       "Wednesday",
+       "Thursday",
+       "Friday",
+       "Saturday"
 };
 
 char *hourname[] = {
@@ -72,6 +69,9 @@ void display_icaltimetype_as_webform(struct icaltimetype *t, char *prefix) {
        struct tm tm;
        const int span = 10;
        int all_day_event = 0;
+       char calhourformat[16];
+
+       get_preference("calhourformat", calhourformat, sizeof calhourformat);
 
        now = time(NULL);
        localtime_r(&now, &tm_now);
@@ -87,7 +87,7 @@ void display_icaltimetype_as_webform(struct icaltimetype *t, char *prefix) {
                localtime_r(&tt, &tm);
        }
 
-       wprintf("Month: ");
+       wprintf(_("Month: "));
        wprintf("<SELECT NAME=\"%s_month\" SIZE=\"1\">\n", prefix);
        for (i=0; i<=11; ++i) {
                wprintf("<OPTION %s VALUE=\"%d\">%s</OPTION>\n",
@@ -98,7 +98,7 @@ void display_icaltimetype_as_webform(struct icaltimetype *t, char *prefix) {
        }
        wprintf("</SELECT>\n");
 
-       wprintf("Day: ");
+       wprintf(_("Day: "));
        wprintf("<SELECT NAME=\"%s_day\" SIZE=\"1\">\n", prefix);
        for (i=1; i<=31; ++i) {
                wprintf("<OPTION %s VALUE=\"%d\">%d</OPTION>\n",
@@ -108,7 +108,7 @@ void display_icaltimetype_as_webform(struct icaltimetype *t, char *prefix) {
        }
        wprintf("</SELECT>\n");
 
-       wprintf("Year: ");
+       wprintf(_("Year: "));
        wprintf("<SELECT NAME=\"%s_year\" SIZE=\"1\">\n", prefix);
        if ((this_year - t->year) > span) {
                wprintf("<OPTION SELECTED VALUE=\"%d\">%d</OPTION>\n",
@@ -126,17 +126,27 @@ void display_icaltimetype_as_webform(struct icaltimetype *t, char *prefix) {
        }
        wprintf("</SELECT>\n");
 
-       wprintf("Hour: ");
+       wprintf(_("Hour: "));
        wprintf("<SELECT NAME=\"%s_hour\" SIZE=\"1\">\n", prefix);
        for (i=0; i<=23; ++i) {
-               wprintf("<OPTION %s VALUE=\"%d\">%s</OPTION>\n",
-                       ((tm.tm_hour == i) ? "SELECTED" : ""),
-                       i, hourname[i]
-               );
+
+               if (!strcasecmp(calhourformat, "24")) {
+                       wprintf("<OPTION %s VALUE=\"%d\">%d</OPTION>\n",
+                               ((tm.tm_hour == i) ? "SELECTED" : ""),
+                               i, i
+                       );
+               }
+               else {
+                       wprintf("<OPTION %s VALUE=\"%d\">%s</OPTION>\n",
+                               ((tm.tm_hour == i) ? "SELECTED" : ""),
+                               i, hourname[i]
+                       );
+               }
+
        }
        wprintf("</SELECT>\n");
 
-       wprintf("Minute: ");
+       wprintf(_("Minute: "));
        wprintf("<SELECT NAME=\"%s_minute\" SIZE=\"1\">\n", prefix);
        for (i=0; i<=59; ++i) {
                if ( (i % 5 == 0) || (tm.tm_min == i) ) {
@@ -150,25 +160,37 @@ void display_icaltimetype_as_webform(struct icaltimetype *t, char *prefix) {
 }
 
 
-struct icaltimetype icaltime_from_webform(char *prefix) {
-       struct icaltimetype t;
-       time_t tt;
-       struct tm tm;
-       char vname[SIZ];
+void icaltime_from_webform(struct icaltimetype *t, char *prefix) {
+       char vname[32];
+        time_t tt;
+        struct tm tm;
+       struct icaltimetype t2;
+
+        tt = time(NULL);
+        localtime_r(&tt, &tm);
+
+        sprintf(vname, "%s_month", prefix);     tm.tm_mon = atoi(bstr(vname)) - 1;
+        sprintf(vname, "%s_day", prefix);       tm.tm_mday = atoi(bstr(vname));
+        sprintf(vname, "%s_year", prefix);      tm.tm_year = atoi(bstr(vname)) - 1900;
+        sprintf(vname, "%s_hour", prefix);      tm.tm_hour = atoi(bstr(vname));
+        sprintf(vname, "%s_minute", prefix);    tm.tm_min = atoi(bstr(vname));
+
+        tt = mktime(&tm);
+        t2 = icaltime_from_timet(tt, 0);
+       memcpy(t, &t2, sizeof(struct icaltimetype));
+}
+
 
-       tt = time(NULL);
-       localtime_r(&tt, &tm);
+void icaltime_from_webform_dateonly(struct icaltimetype *t, char *prefix) {
+       char vname[32];
 
-       sprintf(vname, "%s_month", prefix);     tm.tm_mon = atoi(bstr(vname)) - 1;
-       sprintf(vname, "%s_day", prefix);       tm.tm_mday = atoi(bstr(vname));
-       sprintf(vname, "%s_year", prefix);      tm.tm_year = atoi(bstr(vname)) - 1900;
-       sprintf(vname, "%s_hour", prefix);      tm.tm_hour = atoi(bstr(vname));
-       sprintf(vname, "%s_minute", prefix);    tm.tm_min = atoi(bstr(vname));
+       memset(t, 0, sizeof(struct icaltimetype));
 
-       tt = mktime(&tm);
-       t = icaltime_from_timet(tt, 0);
-       t = icaltime_normalize(t);
-       return(t);
+        sprintf(vname, "%s_month", prefix);     t->month = atoi(bstr(vname));
+        sprintf(vname, "%s_day", prefix);       t->day = atoi(bstr(vname));
+        sprintf(vname, "%s_year", prefix);      t->year = atoi(bstr(vname));
+       t->is_utc = 1;
+       t->is_date = 1;
 }
 
 
@@ -179,7 +201,7 @@ void partstat_as_string(char *buf, icalproperty *attendee) {
        icalparameter *partstat_param;
        icalparameter_partstat partstat;
 
-       strcpy(buf, "(status unknown)");
+       strcpy(buf, _("(status unknown)"));
 
        partstat_param = icalproperty_get_first_parameter(
                                attendee,
@@ -195,28 +217,28 @@ void partstat_as_string(char *buf, icalproperty *attendee) {
                        strcpy(buf, "(x)");
                        break;
                case ICAL_PARTSTAT_NEEDSACTION:
-                       strcpy(buf, "(needs action)");
+                       strcpy(buf, _("(needs action)"));
                        break;
                case ICAL_PARTSTAT_ACCEPTED:
-                       strcpy(buf, "(accepted)");
+                       strcpy(buf, _("(accepted)"));
                        break;
                case ICAL_PARTSTAT_DECLINED:
-                       strcpy(buf, "(declined)");
+                       strcpy(buf, _("(declined)"));
                        break;
                case ICAL_PARTSTAT_TENTATIVE:
-                       strcpy(buf, "(tenative)");
+                       strcpy(buf, _("(tenative)"));
                        break;
                case ICAL_PARTSTAT_DELEGATED:
-                       strcpy(buf, "(delegated)");
+                       strcpy(buf, _("(delegated)"));
                        break;
                case ICAL_PARTSTAT_COMPLETED:
-                       strcpy(buf, "(completed)");
+                       strcpy(buf, _("(completed)"));
                        break;
                case ICAL_PARTSTAT_INPROCESS:
-                       strcpy(buf, "(in process)");
+                       strcpy(buf, _("(in process)"));
                        break;
                case ICAL_PARTSTAT_NONE:
-                       strcpy(buf, "(none)");
+                       strcpy(buf, _("(none)"));
                        break;
        }
 }