mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-01-06 22:41:54 +00:00
bc5871f389
- Various documentation updates - Fixed fatal error in benchmark scripts, slightly augmented - As far as possible, whitespace is preserved in-between table children - Configuration option to optionally Tidy up output for indentation to make up for dropped whitespace by DOMLex (pretty-printing for the entire application should be done by a page-wide Tidy) - Sample test-settings.php file included Unrelated unmerged edit: removed irrelevant 1.2.0 release notes, those only exist in the trunk. git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/branches/1.1@458 48356398-32a2-884e-a903-53898d9a118a
17 lines
526 B
PHP
17 lines
526 B
PHP
<?php
|
|
|
|
// This file is necessary to run the unit tests and profiling
|
|
// scripts.
|
|
|
|
// Is PEAR available on your system? If it isn't, set to false. If PEAR
|
|
// is not part of the default include_path, add it.
|
|
$GLOBALS['HTMLPurifierTest']['PEAR'] = true;
|
|
|
|
// How many times should profiling scripts iterate over the function? More runs
|
|
// means more accurate results, but they'll take longer to perform.
|
|
$GLOBALS['HTMLPurifierTest']['Runs'] = 2;
|
|
|
|
// Where is SimpleTest located?
|
|
$simpletest_location = '/path/to/simpletest/';
|
|
|
|
?>
|