diff options
author | Alexandre Emsenhuber <ialex@users.mediawiki.org> | 2008-05-20 17:13:28 +0000 |
---|---|---|
committer | Alexandre Emsenhuber <ialex@users.mediawiki.org> | 2008-05-20 17:13:28 +0000 |
commit | 087a9f70c5c152b72dc6c539cf64e334a0f2d029 (patch) | |
tree | d809443c623d2a5f5eca6a5a91aa1c1b2872b35d /includes/DatabasePostgres.php | |
parent | 0204ede45d4f6addab0982cf028cb823ece023d9 (diff) | |
download | mediawikicore-087a9f70c5c152b72dc6c539cf64e334a0f2d029.tar.gz mediawikicore-087a9f70c5c152b72dc6c539cf64e334a0f2d029.zip |
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.
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/35098
Diffstat (limited to 'includes/DatabasePostgres.php')
-rw-r--r-- | includes/DatabasePostgres.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/includes/DatabasePostgres.php b/includes/DatabasePostgres.php index 125ad75101bf..8f8488b9ae17 100644 --- a/includes/DatabasePostgres.php +++ b/includes/DatabasePostgres.php @@ -1,4 +1,8 @@ <?php +/** + * @ingroup Database + * @file + */ /** * This is the Postgres database abstraction layer. @@ -7,7 +11,7 @@ * than MySQL ones, some of them should be moved to parent * Database class. * - * @addtogroup Database + * @ingroup Database */ class PostgresField { private $name, $tablename, $type, $nullable, $max_length; @@ -70,7 +74,7 @@ END; } /** - * @addtogroup Database + * @ingroup Database */ class DatabasePostgres extends Database { var $mInsertId = NULL; |