X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fwebcit.h;h=d3ef2977202e2c008f3d4e8f91aa21c8f2023832;hb=dc4679ebfb997ad5941b5a32b8e0f1fd0488ea68;hp=6611a927517cd3a22615c5c3af0af99297d3dce1;hpb=475c21c8532b6ba682535c2b2e19a1427040a669;p=citadel.git diff --git a/webcit/webcit.h b/webcit/webcit.h index 6611a9275..d3ef29772 100644 --- a/webcit/webcit.h +++ b/webcit/webcit.h @@ -128,9 +128,9 @@ extern char *ssl_cipher_list; #define PORT_NUM 2000 /* port number to listen on */ #define DEVELOPER_ID 0 #define CLIENT_ID 4 -#define CLIENT_VERSION 810 /* This version of WebCit */ -#define MINIMUM_CIT_VERSION 810 /* Minimum required version of Citadel server */ -#define LIBCITADEL_MIN 810 /* Minimum required version of libcitadel */ +#define CLIENT_VERSION 813 /* This version of WebCit */ +#define MINIMUM_CIT_VERSION 813 /* Minimum required version of Citadel server */ +#define LIBCITADEL_MIN 813 /* Minimum required version of libcitadel */ #define DEFAULT_HOST "localhost" /* Default Citadel server */ #define DEFAULT_PORT "504" #define TARGET "webcit01" /* Window target for inline URL's */ @@ -267,7 +267,6 @@ extern char *ssl_cipher_list; #define EXPIRE_AGE 3 /* Expire messages after n days */ typedef struct __ExpirePolicy { - int loaded; /* has this been loaded from the server? */ int expire_mode; int expire_value; } ExpirePolicy; @@ -487,7 +486,6 @@ struct wcsession { time_t lastreq; /* Timestamp of most recent HTTP */ time_t last_pager_check; /* last time we polled for instant msgs */ ServInfo *serv_info; /* Information about the citserver we're connected to */ - int is_ajax; /* are we doing an ajax request? */ StrBuf *PushedDestination; /* Where to go after login, registration, etc. */ /* Request local Members */ @@ -693,8 +691,6 @@ void CreateMimeStr(void); void pop_destination(void); -void fmout(const char *align); -void _fmout(StrBuf *Targt, const char *align); void FmOut(StrBuf *Target, const char *align, const StrBuf *Source); void wDumpContent(int); @@ -759,6 +755,8 @@ void end_tab(int tabnum, int num_tabs); int get_time_format_cached (void); void display_wiki_pagelist(void); +void str_wiki_index(char *); + HashList *GetRoomListHashLKRA(StrBuf *Target, WCTemplputParams *TP); /* actual supported locales */ @@ -820,3 +818,4 @@ struct bltr { struct bltr blogview_learn_thread_references(long msgnum); void tmplput_blog_permalink(StrBuf *Target, WCTemplputParams *TP); +void display_summary_page(void);