mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-09 23:28:42 +00:00
9676e8580e
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1644 48356398-32a2-884e-a903-53898d9a118a
41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
#!/usr/bin/php
|
|
<?php
|
|
|
|
chdir(dirname(__FILE__));
|
|
require_once 'common.php';
|
|
require_once '../library/HTMLPurifier.auto.php';
|
|
assertCli();
|
|
|
|
/**
|
|
* @file
|
|
* Generates a schema cache file from the contents of
|
|
* library/HTMLPurifier/ConfigSchema/schema.ser.
|
|
*
|
|
* This should be run when new configuration options are added to
|
|
* HTML Purifier. A cached version is available via SVN so this does not
|
|
* normally have to be regenerated.
|
|
*/
|
|
|
|
$target = '../library/HTMLPurifier/ConfigSchema/schema.ser';
|
|
$FS = new FSTools();
|
|
|
|
$files = $FS->globr('../library/HTMLPurifier/ConfigSchema/schema', '*.txt');
|
|
if (!$files) throw new Exception('Did not find any schema files');
|
|
|
|
$parser = new HTMLPurifier_StringHashParser();
|
|
$builder = new HTMLPurifier_ConfigSchema_InterchangeBuilder();
|
|
$interchange = new HTMLPurifier_ConfigSchema_Interchange();
|
|
foreach ($files as $file) {
|
|
$builder->build($interchange, new HTMLPurifier_StringHash($parser->parseFile($file)));
|
|
}
|
|
|
|
$validator = new HTMLPurifier_ConfigSchema_Validator();
|
|
$validator->validate($interchange);
|
|
|
|
$schema_builder = new HTMLPurifier_ConfigSchema_Builder_ConfigSchema();
|
|
$schema = $schema_builder->build($interchange);
|
|
|
|
echo "Saving schema... ";
|
|
file_put_contents($target, serialize($schema));
|
|
echo "done!\n";
|