X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=webcit%2Fsysmsgs.c;h=7db7f4f7f7da7106b75fd3966a26ce05bb655770;hp=d626fbc6b11e2eb370257c3c731b5144edff3d8a;hb=e068f34784f285909c0c93d123a604d76bb244a9;hpb=721edf034f12e679cb5b7720fd2797bd208c2500 diff --git a/webcit/sysmsgs.c b/webcit/sysmsgs.c index d626fbc6b..7db7f4f7f 100644 --- a/webcit/sysmsgs.c +++ b/webcit/sysmsgs.c @@ -1,21 +1,16 @@ /* * $Id$ */ -/** - * \defgroup ShowSysMsgs Editing of various text files on the Citadel server. - * \ingroup WebcitDisplayItems - */ -/*@{*/ #include "webcit.h" /** - * \brief display the form for editing something (room info, bio, etc) - * \param description the descriptive text for the box - * \param check_cmd command to check???? - * \param read_cmd read answer from citadel server??? - * \param save_cmd save comand to the citadel server?? - * \param with_room_banner should we bisplay a room banner? + * display the form for editing something (room info, bio, etc) + * description the descriptive text for the box + * check_cmd command to check???? + * read_cmd read answer from citadel server??? + * save_cmd save comand to the citadel server?? + * with_room_banner should we bisplay a room banner? */ void display_edit(char *description, char *check_cmd, char *read_cmd, char *save_cmd, int with_room_banner) @@ -63,10 +58,10 @@ void display_edit(char *description, char *check_cmd, /** - * \brief save a screen which was displayed with display_edit() - * \param description the window title??? - * \param enter_cmd which command to enter at the citadel server??? - * \param regoto should we go to that room again after executing that command? + * save a screen which was displayed with display_edit() + * description the window title??? + * enter_cmd which command to enter at the citadel server??? + * regoto should we go to that room again after executing that command? */ void save_edit(char *description, char *enter_cmd, int regoto) { @@ -120,4 +115,3 @@ InitModule_SYSMSG WebcitAddUrlHandler(HKEY("display_editbio"), display_editbio, 0); WebcitAddUrlHandler(HKEY("editbio"), editbio, 0); } -/*@}*/