From: Art Cancro Date: Mon, 14 Feb 2011 17:03:16 +0000 (-0500) Subject: Begin working on OpenID manual screen name selection mode X-Git-Tag: v8.11~856 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=cdd403667f4b484f98a9e028b0b61fcefd5fd483 Begin working on OpenID manual screen name selection mode --- diff --git a/webcit/auth.c b/webcit/auth.c index 5e01bb5fe..6c7c7bf6c 100644 --- a/webcit/auth.c +++ b/webcit/auth.c @@ -358,10 +358,6 @@ void finalize_openid_login(void) /* The specified OpenID was verified but the desired user name was either not specified via SRE * or conflicts with an existing user. Either way the user will need to specify a new name. */ - -/* - * FIXME make this work again!!!! - * else if (!strcasecmp(ChrPtr(result), "verify_only")) { putbstr("__claimed_id", claimed_id); claimed_id = NULL; @@ -370,12 +366,13 @@ void finalize_openid_login(void) username = NULL; } begin_burst(); - do_template("openid_manual_create", NULL); + output_headers(1, 0, 0, 0, 1, 0); + wc_printf(""); + wc_printf("FIXME -- manual create goes here -- FIXME"); + /* do_template("openid_manual_create", NULL); */ + wc_printf(""); end_burst(); } -*/ - - /* Did we manage to log in? If so, continue with the normal flow... */ if (WC->logged_in) {