X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fsetup_wizard.c;h=bbac2183c53eee8f0dde127ef9a972bcc2e70586;hb=HEAD;hp=bc2b2277a722261bdff60371e6dd13eb7fbfd921;hpb=26a4a07bdacdaa7013bf45cc235df207708acfde;p=citadel.git diff --git a/webcit/setup_wizard.c b/webcit/setup_wizard.c deleted file mode 100644 index bc2b2277a..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); -} - -