Diff
Not logged in

Differences From:

File src/my_page.c part of check-in [908009fdc4] - Fix a couple of C++-isms in my_page.c and tagview.c. Remove the return value from autosync(). by drh on 2008-05-07 17:38:57. [view]

To:

File src/my_page.c part of check-in [1f1d96529c] - Users unconditionally inherit capabilities of "anonymous". New capability "v" means to inherit capabilities of user "developer". Login is prohibited if the password is empty. by drh on 2008-08-03 16:47:43. Also file src/my_page.c part of check-in [5fb14b9a0f] - Include non-sym- tags in tagview web page. Also merge mainline into tagview branch. by eric on 2008-08-21 20:59:01. [view]

@@ -28,10 +28,10 @@
 #include <assert.h>
 #include "config.h"
 #include "my_page.h"
 
-/**
-Renders a logout button.
+/*
+** Renders a logout button.
 */
 static void mypage_logout_button()
 {
   if( g.zLogin ){
@@ -44,10 +44,10 @@
     @ </form>
   }
 }
 
-/**
-Renders a password changer.
+/*
+** Renders a password changer.
 */
 static void mypage_password_changer()
 {
   if( g.okPassword ){
@@ -72,10 +72,10 @@
   }
 
 }
 
-/**
-Default page rendered for /my.
+/*
+** Default page rendered for /my.
 */
 static void mypage_page_default()
 {
   int uid = g.userUid;