Manual:$wgTidyInternal

This page is a translated version of the page Manual:$wgTidyInternal and the translation is 75% complete.
Tidy: $wgTidyInternal
Controls the use of the tidy extension to use an in-process tidy library instead of spawning a separate program.
導入されたバージョン:1.4.2
廃止予定になったバージョン:1.26.0 (Gerrit change 235401; git #2c6c954e)
除去されたバージョン:1.33.0 (Gerrit change 467972; git #6db35b3c)
許容される値:(真偽値)
既定値:extension_loaded( 'tidy' )

詳細

通常、デバッグ以外ではこの設定を変更する必要はありません。

Tidy 2.0 is bundled with PHP5 by default (MediaWiki requires PHP5), but is not included in the ubuntu build of PHP5. Ubuntu 10.04 / PHP 5.2.x にインストールするには以下を実行します:

sudo apt-get install -y php5-dev libtidy-dev
svn co http://svn.php.net/repository/php/php- src/branches/PHP_5_2/ext/tidy/
cd tidy/
phpize
./configure
make
sudo make install
cd ../
rm -rf tidy/

extension=tidy.sophp.ini に追加して、$wgUseTidy = true;LocalSettings.php に追加して、最後に Apache を再起動してください。