diff options
author | Mario <mario@mariovavti.com> | 2020-11-05 08:46:42 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-11-05 08:46:42 +0000 |
commit | bafbf0416462c6f18c3fb6c8c06a063c8d6fdae6 (patch) | |
tree | 8929845be585b09d0f420621281c5531e1efad3e /vendor/ezyang/htmlpurifier/test-settings.sample.php | |
parent | 6f93d9848c43019d43ea76c27d42d657ba031cd7 (diff) | |
parent | fdefa101d84dc2a9424eaedbdb003a4c30ec5d01 (diff) | |
download | volse-hubzilla-bafbf0416462c6f18c3fb6c8c06a063c8d6fdae6.tar.gz volse-hubzilla-bafbf0416462c6f18c3fb6c8c06a063c8d6fdae6.tar.bz2 volse-hubzilla-bafbf0416462c6f18c3fb6c8c06a063c8d6fdae6.zip |
Merge branch '5.0RC'5.0
Diffstat (limited to 'vendor/ezyang/htmlpurifier/test-settings.sample.php')
-rw-r--r-- | vendor/ezyang/htmlpurifier/test-settings.sample.php | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/vendor/ezyang/htmlpurifier/test-settings.sample.php b/vendor/ezyang/htmlpurifier/test-settings.sample.php deleted file mode 100644 index 480b66279..000000000 --- a/vendor/ezyang/htmlpurifier/test-settings.sample.php +++ /dev/null @@ -1,74 +0,0 @@ -<?php - -// ATTENTION! DO NOT EDIT THIS FILE! -// This file is necessary to run the unit tests and profiling scripts. -// Please copy it to 'test-settings.php' and make the necessary edits. - -// Note: The only external library you *need* is SimpleTest; everything else -// is optional. - -// We've got a lot of tests, so we recommend turning the limit off. -set_time_limit(0); - -// Turning off output buffering will prevent mysterious errors from core dumps. -$data = @ob_get_clean(); -if ($data !== false && $data !== '') { - echo "Output buffer contains data [".urlencode($data)."]\n"; - exit; -} - -// ----------------------------------------------------------------------------- -// REQUIRED SETTINGS - -// Note on running SimpleTest: -// You want the Git copy of SimpleTest, found here: -// https://github.com/simpletest/simpletest/ -// -// If SimpleTest is borked with HTML Purifier, please contact me or -// the SimpleTest devs; I am a developer for SimpleTest so I should be -// able to quickly assess a fix. SimpleTest's problem is my problem! - -// Where is SimpleTest located? Remember to include a trailing slash! -$simpletest_location = '/path/to/simpletest/'; - -// ----------------------------------------------------------------------------- -// OPTIONAL SETTINGS - -// Note on running PHPT: -// Vanilla PHPT from https://github.com/tswicegood/PHPT_Core should -// work fine on Linux w/o multitest. -// -// To do multitest or Windows testing, you'll need some more -// patches at https://github.com/ezyang/PHPT_Core -// -// I haven't tested the Windows setup in a while so I don't know if -// it still works. - -// Should PHPT tests be enabled? -$GLOBALS['HTMLPurifierTest']['PHPT'] = false; - -// If PHPT isn't in your Path via PEAR, set that here: -// set_include_path('/path/to/phpt/Core/src' . PATH_SEPARATOR . get_include_path()); - -// Where is CSSTidy located? (Include trailing slash. Leave false to disable.) -$csstidy_location = false; - -// For tests/multitest.php, which versions to test? -$versions_to_test = array(); - -// Stable PHP binary to use when invoking maintenance scripts. -$php = 'php'; - -// For tests/multitest.php, what is the multi-version executable? It must -// accept an extra parameter (version number) before all other arguments -$phpv = false; - -// Should PEAR tests be run? If you've got a valid PEAR installation, set this -// to true (or, if it's not in the include path, to its install directory). -$GLOBALS['HTMLPurifierTest']['PEAR'] = false; - -// If PEAR is enabled, what PEAR tests should be run? (Note: you will -// need to ensure these libraries are installed) -$GLOBALS['HTMLPurifierTest']['Net_IDNA2'] = true; - -// vim: et sw=4 sts=4 |