]> code.citadel.org Git - citadel.git/blobdiff - webcit/webcit.h
* Removed the "convert_to_html" option from text_to_server() because we no
[citadel.git] / webcit / webcit.h
index 22ec3a3cfe626f2604d0a8ddc09ddec96f949312..953b798fbca373e98e6782e9e403c8f983141f5a 100644 (file)
@@ -481,7 +481,7 @@ void read_message(long msgnum, int printable_view, char *section);
 void embed_message(char *msgnum_as_string);
 void print_message(char *msgnum_as_string);
 void display_headers(char *msgnum_as_string);
-void text_to_server(char *ptr, int convert_to_html);
+void text_to_server(char *ptr);
 void display_enter(void);
 void post_message(void);
 void confirm_delete_msg(void);
@@ -601,6 +601,7 @@ void cal_process_attachment(char *part_source, long msgnum, char *cal_partnum);
 void display_calendar(long msgnum);
 void display_task(long msgnum);
 void display_note(long msgnum);
+void updatenote(void);
 void do_calendar_view(void);
 void do_tasks_view(void);
 void free_calendar_buffer(void);
@@ -708,10 +709,15 @@ void utf8ify_rfc822_string(char *buf);
 void begin_burst(void);
 void end_burst(void);
 
-extern char *ascmonths[];
-extern char *hourname[];
+extern char *ascmonths[];      /**< Short (three letter) month names */
+extern char *months[];         /**< Long (full) month names */
+extern char *hourname[];       /**< Names of hours (12am, 1am, etc.) */
+extern char *wdays[];          /**< Days of the week */
+
+void initialize_months_and_days(void);
 void http_datestring(char *buf, size_t n, time_t xtime);
 
+
 /* Views (from citadel.h) */
 #define        VIEW_BBS                0       /* Traditional Citadel BBS view */
 #define VIEW_MAILBOX           1       /* Mailbox summary */