From: Brion Vibber Date: Thu, 23 Sep 2004 08:23:04 +0000 (+0000) Subject: Use '--parseprivate on' option on phpdoc to include the private members/ X-Git-Tag: 1.5.0alpha1~1844 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=018c3595603ad3238e14a4778f52bcbf2043df3a;p=lhc%2Fweb%2Fwiklou.git 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. --- 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/';