]> code.citadel.org Git - citadel.git/blobdiff - webcit/userlist.c
* Doxygen groups. Sorted the files into groups. so now we have a nice structure
[citadel.git] / webcit / userlist.c
index b073630a778c8c71ef35ce429c87291973fefc96..a5a59103daffdab6cd967746dc99a239d8ae69ee 100644 (file)
@@ -1,19 +1,24 @@
 /*
  * $Id$
- *
- * Display a list of all accounts on a Citadel system.
- *
+ */
+/**
+ * \defgroup AccDisplay Display a list of all accounts on a Citadel system.
+ * \ingroup CitadelConfig
  */
 
+/*@{*/
 #include "webcit.h"
 
+/** 
+ * \brief structure to keep namelists in
+ */
 struct namelist {
-       struct namelist *next;
-       char name[32];
+       struct namelist *next; /**< next item of the linked list */
+       char name[32];         /**< name of the userentry */
 };
 
-/*
- * display the userlist
+/**
+ * \brief display the userlist
  */
 void userlist(void)
 {
@@ -54,7 +59,7 @@ void userlist(void)
                goto DONE;
        }
 
-       wprintf("<div id=\"fix_scrollbar_bug\">"
+       wprintf("<div class=\"fix_scrollbar_bug\">"
                "<table border=0 width=100%% bgcolor=\"#ffffff\"><tr><td>\n");
        wprintf(_("<TR><TH>User Name</TH><TH>Number</TH><TH>Access Level</TH>"
                "<TH>Last Login</TH><TH>Total Logins</TH><TH>Total Posts</TH></TR>"));
@@ -99,8 +104,8 @@ DONE:        wDumpContent(1);
 }
 
 
-/*
- * Display (non confidential) information about a particular user
+/**
+ * \brief Display (non confidential) information about a particular user
  */
 void showuser(void)
 {
@@ -121,7 +126,7 @@ void showuser(void)
                "</div>\n<div id=\"content\">\n"
        );
 
-       wprintf("<div id=\"fix_scrollbar_bug\">"
+       wprintf("<div class=\"fix_scrollbar_bug\">"
                "<table border=0 width=100%% bgcolor=\"#ffffff\"><tr><td>\n");
 
        serv_printf("OIMG _userpic_|%s", who);
@@ -158,3 +163,6 @@ void showuser(void)
        wprintf("</td></tr></table></div>\n");
        wDumpContent(1);
 }
+
+
+/*@}*/