2008-01-27 01:54:41 +00:00
|
|
|
#!/usr/bin/php
|
|
|
|
<?php
|
|
|
|
|
|
|
|
chdir(dirname(__FILE__));
|
|
|
|
require_once 'common.php';
|
|
|
|
assertCli();
|
|
|
|
|
2008-02-24 05:06:39 +00:00
|
|
|
echo "Please do not run this script. It is here for historical purposes only.";
|
|
|
|
exit;
|
2008-01-27 01:54:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Removes leading includes from files.
|
|
|
|
*
|
|
|
|
* @note
|
|
|
|
* This does not remove inline includes; those must be handled manually.
|
|
|
|
*/
|
|
|
|
|
2008-02-18 04:41:42 +00:00
|
|
|
chdir(dirname(__FILE__) . '/../tests/HTMLPurifier');
|
2008-01-27 01:54:41 +00:00
|
|
|
$FS = new FSTools();
|
|
|
|
|
|
|
|
$files = $FS->globr('.', '*.php');
|
|
|
|
foreach ($files as $file) {
|
|
|
|
if (substr_count(basename($file), '.') > 1) continue;
|
|
|
|
$old_code = file_get_contents($file);
|
|
|
|
$new_code = preg_replace("#^require_once .+[\n\r]*#m", '', $old_code);
|
|
|
|
if ($old_code !== $new_code) {
|
2008-02-10 20:34:39 +00:00
|
|
|
file_put_contents($file, $new_code);
|
2008-01-27 01:54:41 +00:00
|
|
|
}
|
|
|
|
}
|