mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-01-08 23:11:52 +00:00
Regenerate HTMLPurifier.includes.php, and fix parse errors.
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1545 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
parent
66229121bf
commit
de6e024464
@ -167,6 +167,12 @@ require 'HTMLPurifier/Strategy/RemoveForeignElements.php';
|
|||||||
require 'HTMLPurifier/Strategy/ValidateAttributes.php';
|
require 'HTMLPurifier/Strategy/ValidateAttributes.php';
|
||||||
require 'HTMLPurifier/TagTransform/Font.php';
|
require 'HTMLPurifier/TagTransform/Font.php';
|
||||||
require 'HTMLPurifier/TagTransform/Simple.php';
|
require 'HTMLPurifier/TagTransform/Simple.php';
|
||||||
|
require 'HTMLPurifier/Token/Comment.php';
|
||||||
|
require 'HTMLPurifier/Token/Tag.php';
|
||||||
|
require 'HTMLPurifier/Token/Empty.php';
|
||||||
|
require 'HTMLPurifier/Token/End.php';
|
||||||
|
require 'HTMLPurifier/Token/Start.php';
|
||||||
|
require 'HTMLPurifier/Token/Text.php';
|
||||||
require 'HTMLPurifier/URIFilter/DisableExternal.php';
|
require 'HTMLPurifier/URIFilter/DisableExternal.php';
|
||||||
require 'HTMLPurifier/URIFilter/DisableExternalResources.php';
|
require 'HTMLPurifier/URIFilter/DisableExternalResources.php';
|
||||||
require 'HTMLPurifier/URIFilter/HostBlacklist.php';
|
require 'HTMLPurifier/URIFilter/HostBlacklist.php';
|
||||||
|
@ -3,4 +3,7 @@
|
|||||||
/**
|
/**
|
||||||
* Concrete empty token class.
|
* Concrete empty token class.
|
||||||
*/
|
*/
|
||||||
class HTMLPurifier_Token_Empty extends HTMLPurifier_Token_Tag {}
|
class HTMLPurifier_Token_Empty extends HTMLPurifier_Token_Tag
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
@ -7,4 +7,7 @@
|
|||||||
* is for optimization reasons, as under normal circumstances, the Lexers
|
* is for optimization reasons, as under normal circumstances, the Lexers
|
||||||
* do not pass attributes.
|
* do not pass attributes.
|
||||||
*/
|
*/
|
||||||
class HTMLPurifier_Token_End extends HTMLPurifier_Token_Tag {}
|
class HTMLPurifier_Token_End extends HTMLPurifier_Token_Tag
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
@ -3,4 +3,7 @@
|
|||||||
/**
|
/**
|
||||||
* Concrete start token class.
|
* Concrete start token class.
|
||||||
*/
|
*/
|
||||||
class HTMLPurifier_Token_Start extends HTMLPurifier_Token_Tag {}
|
class HTMLPurifier_Token_Start extends HTMLPurifier_Token_Tag
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
/**
|
/**
|
||||||
* Abstract class of a tag token (start, end or empty), and its behavior.
|
* Abstract class of a tag token (start, end or empty), and its behavior.
|
||||||
*/
|
*/
|
||||||
class HTMLPurifier_Token_Tag extends HTMLPurifier_Token // abstract
|
class HTMLPurifier_Token_Tag extends HTMLPurifier_Token
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Static bool marker that indicates the class is a tag.
|
* Static bool marker that indicates the class is a tag.
|
||||||
|
@ -59,6 +59,10 @@ foreach ($raw_files as $file) {
|
|||||||
function get_dependency_lookup($file) {
|
function get_dependency_lookup($file) {
|
||||||
static $cache = array();
|
static $cache = array();
|
||||||
if (isset($cache[$file])) return $cache[$file];
|
if (isset($cache[$file])) return $cache[$file];
|
||||||
|
if (!file_exists($file)) {
|
||||||
|
echo "File doesn't exist: $file\n";
|
||||||
|
return array();
|
||||||
|
}
|
||||||
$fh = fopen($file, 'r');
|
$fh = fopen($file, 'r');
|
||||||
$deps = array();
|
$deps = array();
|
||||||
while (!feof($fh)) {
|
while (!feof($fh)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user