]> code.citadel.org Git - citadel.git/blobdiff - webcit/autocompletion.c
Version number to 7.35 in preparation for an upcoming release.
[citadel.git] / webcit / autocompletion.c
index 0b9373ea2a8a5fea8b940fd831c9a7fb8285cf32..327b98c6d3cec92a8895e4eb370a787c8e12e890 100644 (file)
@@ -1,16 +1,13 @@
 /*
  * $Id$
- *//**
- * \defgroup AjaxAutoCompletion ajax-powered autocompletion...
- * \ingroup ClientPower
+ *
+ * ajax-powered autocompletion...
  */
 
-/*@{*/
 #include "webcit.h"
 
-/**
- * \brief Recipient autocompletion results
- * \param partial the account to search for ??????
+/*
+ * Recipient autocompletion results
  */
 void recp_autocomplete(char *partial) {
        char buf[1024];
@@ -22,8 +19,10 @@ void recp_autocomplete(char *partial) {
                "Server: %s\r\n"
                "Connection: close\r\n"
                "Pragma: no-cache\r\n"
-               "Cache-Control: no-store\r\n",
-               SERVER);
+               "Cache-Control: no-store\r\n"
+               "Expires: -1\r\n"
+               ,
+               PACKAGE_STRING);
        begin_burst();
 
        wprintf("<ul>");
@@ -44,6 +43,3 @@ void recp_autocomplete(char *partial) {
        wprintf("\r\n\r\n");
        wDumpContent(0);
 }
-
-
-/** @} */