]> code.citadel.org Git - citadel.git/blobdiff - webcit/autocompletion.c
webcit_before_automake is now the trunk
[citadel.git] / webcit / autocompletion.c
diff --git a/webcit/autocompletion.c b/webcit/autocompletion.c
new file mode 100644 (file)
index 0000000..0b9373e
--- /dev/null
@@ -0,0 +1,49 @@
+/*
+ * $Id$
+ *//**
+ * \defgroup AjaxAutoCompletion ajax-powered autocompletion...
+ * \ingroup ClientPower
+ */
+
+/*@{*/
+#include "webcit.h"
+
+/**
+ * \brief Recipient autocompletion results
+ * \param partial the account to search for ??????
+ */
+void recp_autocomplete(char *partial) {
+       char buf[1024];
+       char name[128];
+
+       output_headers(0, 0, 0, 0, 0, 0);
+
+       wprintf("Content-type: text/html\r\n"
+               "Server: %s\r\n"
+               "Connection: close\r\n"
+               "Pragma: no-cache\r\n"
+               "Cache-Control: no-store\r\n",
+               SERVER);
+       begin_burst();
+
+       wprintf("<ul>");
+
+       serv_printf("AUTO %s", partial);
+       serv_getln(buf, sizeof buf);
+       if (buf[0] == '1') {
+               while(serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
+                       extract_token(name, buf, 0, '|', sizeof name);
+                       wprintf("<li>");
+                       escputs(name);
+                       wprintf("</li>");
+               }
+       }
+
+       wprintf("</ul>");
+
+       wprintf("\r\n\r\n");
+       wDumpContent(0);
+}
+
+
+/** @} */