From 087a9f70c5c152b72dc6c539cf64e334a0f2d029 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Tue, 20 May 2008 17:13:28 +0000 Subject: WARNING: HUGE COMMIT Doxygen documentation update: * Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group. * Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file. * Removed some empty comments * Removed some ?> Added following groups: * ExternalStorage * JobQueue * MaintenanceLanguage One more thing: there are still a lot of warnings when generating the doc. --- maintenance/changePassword.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'maintenance/changePassword.php') diff --git a/maintenance/changePassword.php b/maintenance/changePassword.php index d61212803571..0e657ca00662 100644 --- a/maintenance/changePassword.php +++ b/maintenance/changePassword.php @@ -2,7 +2,8 @@ /** * Change the password of a given user * - * @addtogroup Maintenance + * @file + * @ingroup Maintenance * * @author Ævar Arnfjörð Bjarmason * @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason @@ -25,6 +26,9 @@ if( in_array( '--help', $argv ) ) $cp = new ChangePassword( @$options['user'], @$options['password'] ); $cp->main(); +/** + * @ingroup Maintenance + */ class ChangePassword { var $dbw; var $user, $password; @@ -59,5 +63,3 @@ class ChangePassword { ); } } - - -- cgit v1.2.3