From 018c3595603ad3238e14a4778f52bcbf2043df3a Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 23 Sep 2004 08:23:04 +0000 Subject: [PATCH] Use '--parseprivate on' option on phpdoc to include the private members/ methods in the docs. They are marked with a distinct icon, but unfortunately are sorted in among the public items which is not ideal of legible docs. --- maintenance/mwdocgen.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/mwdocgen.php b/maintenance/mwdocgen.php index ec267eaf59..3702cd8a92 100755 --- a/maintenance/mwdocgen.php +++ b/maintenance/mwdocgen.php @@ -41,7 +41,7 @@ $pdOutput = "{$here}{$sep}docs{$sep}html"; /** Some more Phpdoc settings */ $pdOthers = ''; //$pdOthers = ' -dn \'MediaWiki\' '; -$pdOthers .= ' --title \'MediaWiki generated documentation\' -o \'HTML:frames:DOM/earthli\' --ignore AdminSettings.php,LocalSettings.php'; +$pdOthers .= ' --title \'MediaWiki generated documentation\' -o \'HTML:frames:DOM/earthli\' --ignore AdminSettings.php,LocalSettings.php --parseprivate on '; /** MediaWiki location */ #$mwPath = '/var/www/mediawiki/'; -- 2.20.1