Temporarily disable OpenID functionality for release
authorArt Cancro <ajc@citadel.org>
Fri, 30 May 2008 03:12:38 +0000 (03:12 +0000)
committerArt Cancro <ajc@citadel.org>
Fri, 30 May 2008 03:12:38 +0000 (03:12 +0000)
citadel/modules/openid/serv_openid_rp.c
webcit/auth.c
webcit/mainmenu.c
webcit/openid.c

index 1c98d5372770f6ef8f12669d2305cf5ec1ad8b8a..54294747767b9107d386882dff997cc9ddbb9838 100644 (file)
@@ -41,7 +41,9 @@ struct ctdl_openid {
 };
 
 
+/* This is all disabled temporarily */
 
+#if 0
 
 
 /**************************************************************************/
@@ -622,3 +624,10 @@ CTDL_MODULE_INIT(openid_rp)
 
 
 /* FIXME ... we have to add the new openid database to serv_vandelay.c */
+
+
+#endif
+CTDL_MODULE_INIT(openid_rp)
+{
+       return "$Id$";
+}
index b923dd9dbdbcd77f172b7e91ebcd325e1339fc1e..2af65ac1e5267a202906a56215c3da82db2e9576 100644 (file)
@@ -78,7 +78,7 @@ void display_login(char *mesg)
                svput("NEWUSER_BUTTON_POST", WCS_STRING, "");
        }
 
-#ifdef TECH_PREVIEW
+#if 0
                svprintf(HKEY("OFFER_OPENID_LOGIN"), WCS_STRING,
                        "<div align=center>"
                        "<a href=\"display_openid_login\">"
@@ -99,7 +99,6 @@ void display_login(char *mesg)
 
 
 
-
 /* 
  * Display the openid-enabled login screen
  * mesg = the error message if last attempt failed.
index cf1ea9bf2abeef28daec83b776945690826833ca..1a3f76fa37fadb34f183c5aa60d6b303bdfb9960 100644 (file)
@@ -118,15 +118,15 @@ void display_main_menu(void)
        wprintf("</td></tr>"
                "<tr valign=top><td width=50%%>");
 
-       print_menu_box(_("Your info"), "adminitems", 8,
+       print_menu_box(_("Your info"), "adminitems", /* 8 */ 7,
                       "display_preferences", _("Change your preferences and settings"),
                       "display_reg", _("Update your contact information"),
                       "display_changepw", _("Change your password"),
                       "display_editbio", _("Enter your 'bio'"),
                       "display_editpic", _("Edit your online photo"), 
                       "display_sieve", _("View/edit server-side mail filters"),
-                      "display_pushemail", _("Edit your push email settings"),
-                      "display_openids", _("Manage your OpenIDs")
+                      "display_pushemail", _("Edit your push email settings") /* ,
+                      "display_openids", _("Manage your OpenIDs") */
        );
 
        wprintf("</td><td width=50%%>");
index 519100d921eed41a4cf397c43f1e6efdd28eee70..728beb7a0d9fc15b1bc54a7f80ff9ad06d6d8046 100644 (file)
@@ -74,5 +74,3 @@ void openid_attach(void) {
        /* If we get to this point then something failed. */
        display_openids();
 }
-
-