X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fsetup_wizard.c;h=bbac2183c53eee8f0dde127ef9a972bcc2e70586;hb=HEAD;hp=d28addbf9b7eb83b5a59cd3d66a8afcac92fa810;hpb=523c1b0f7a3002c6aaa3eb833b55eb0cf07674ff;p=citadel.git diff --git a/webcit/setup_wizard.c b/webcit/setup_wizard.c deleted file mode 100644 index d28addbf9..000000000 --- a/webcit/setup_wizard.c +++ /dev/null @@ -1,56 +0,0 @@ -/* - * $Id$ - * - * First-time setup wizard - */ - -#include "webcit.h" - - -/* - */ -void do_setup_wizard(void) -{ - char *step; - FILE *fp; - - step = bstr("step"); - - if (!strcasecmp(step, "Finish")) { - fp = fopen(wizard_filename, "w"); - if (fp != NULL) { - fprintf(fp, "%d\n", serv_info.serv_rev_level); - fclose(fp); - } - do_welcome(); - return; - } - - output_headers(1, 1, 2, 0, 0, 0); - - wprintf("
\n"); - wprintf("
"); - wprintf("\""); - wprintf(" First time setup"); - wprintf(""); - wprintf("
\n"); - wprintf("
\n" - "
\n"); - - wprintf("
" - "
\n" - ); - - wprintf("
" - "This is where the setup wizard will be placed.
\n" - "For now, just click Finish.

\n" - ); - - wprintf("\n"); - wprintf("\n"); - - wprintf("
\n"); - wDumpContent(1); -} - -