1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-07-30 19:00:10 +02:00

Implement List module.

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@709 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang
2007-02-04 01:52:13 +00:00
parent 43b157cf4d
commit 80243f377c
6 changed files with 56 additions and 5 deletions

View File

@@ -357,6 +357,11 @@ class HTMLPurifier_HTMLDefinition
//////////////////////////////////////////////////////////////////////
// info[]->type : defines the type of the element (block or inline)
// unknown until proven inline/block
foreach ($this->info as $i => $x) {
$this->info[$i]->type = 'unknown';
}
// reuses $e_Inline and $e_Block
foreach ($e_Inline->elements as $name => $bool) {
if ($name == '#PCDATA') continue;
@@ -642,13 +647,13 @@ class HTMLPurifier_ElementDef
var $child;
var $content_model;
var $content_model_type = 'optional';
var $content_model_type;
/**
* Type of the tag: inline or block or unknown?
* @public
*/
var $type = 'unknown';
var $type;
/**
* Lookup table of tags excluded from all descendants of this tag.
@@ -658,4 +663,4 @@ class HTMLPurifier_ElementDef
}
?>
?>