Begin working on OpenID manual screen name selection mode
authorArt Cancro <ajc@citadel.org>
Mon, 14 Feb 2011 17:03:16 +0000 (12:03 -0500)
committerWilfried Goesgens <dothebart@citadel.org>
Sun, 4 Sep 2011 14:13:47 +0000 (14:13 +0000)
webcit/auth.c

index 5e01bb5fe53f86ce3a0d827f6e56e25279bd2fc5..6c7c7bf6cb51b94d2b163169653c7ceb87b73eec 100644 (file)
@@ -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("<html><body>");
+               wc_printf("FIXME -- manual create goes here -- FIXME");
+               /* do_template("openid_manual_create", NULL); */
+               wc_printf("</body></html>");
                end_burst();
        }
-*/
-
-
 
        /* Did we manage to log in?  If so, continue with the normal flow... */
        if (WC->logged_in) {