]> code.citadel.org Git - citadel.git/blobdiff - webcit/webcit.h
More work on the wiki view. Don't try to use it yet.
[citadel.git] / webcit / webcit.h
index 331ffb37e87b46035f147526c348e96e548786cd..dba84007391eabd4a36fdc8a1ccd45ce3feee0b5 100644 (file)
 #define SLEEPING               180             /* TCP connection timeout */
 #define WEBCIT_TIMEOUT         900             /* WebCit session timeout */
 #define PORT_NUM               2000            /* port number to listen on */
-#define SERVER                 "WebCit v6.70"  /* who's in da house */
+#define SERVER                 "WebCit v6.71"  /* who's in da house */
 #define DEVELOPER_ID           0
 #define CLIENT_ID              4
-#define CLIENT_VERSION         670             /* This version of WebCit */
-#define MINIMUM_CIT_VERSION    670             /* min required Citadel ver. */
+#define CLIENT_VERSION         671             /* This version of WebCit */
+#define MINIMUM_CIT_VERSION    671             /* min required Citadel ver. */
 #define DEFAULT_HOST           "localhost"     /* Default Citadel server */
 #define DEFAULT_PORT           "504"
 #define LB                     (1)             /* Internal escape chars */
@@ -308,6 +308,7 @@ struct wcsession {
        struct wcsession *next;         /* Linked list */
        int wc_session;                 /* WebCit session ID */
        char wc_username[128];
+       char wc_fullname[128];
        char wc_password[128];
        char wc_roomname[256];
        int connected;
@@ -657,6 +658,7 @@ void httplang_to_locale(char *LocaleString);
 void tabbed_dialog(int num_tabs, char *tabnames[]);
 void begin_tab(int tabnum, int num_tabs);
 void end_tab(int tabnum, int num_tabs);
+void display_wiki_page(void);
 
 void embed_room_banner(char *, int);
 
@@ -701,6 +703,7 @@ void http_datestring(char *buf, size_t n, time_t xtime);
 #define VIEW_CALENDAR          3       /* Calendar view */
 #define VIEW_TASKS             4       /* Tasks view */
 #define VIEW_NOTES             5       /* Notes view */
+#define VIEW_WIKI              6       /* Wiki view */
 
 
 /* These should be empty, but we have them for testing */