mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-01-03 05:11:52 +00:00
Minor updates to Config and TODO items thereof.
Signed-off-by: Edward Z. Yang <edwardzyang@thewritingpot.com>
This commit is contained in:
parent
809da84ae1
commit
a025203b18
14
TODO
14
TODO
@ -11,13 +11,22 @@ If no interest is expressed for a feature that may require a considerable
|
|||||||
amount of effort to implement, it may get endlessly delayed. Do not be
|
amount of effort to implement, it may get endlessly delayed. Do not be
|
||||||
afraid to cast your vote for the next feature to be implemented!
|
afraid to cast your vote for the next feature to be implemented!
|
||||||
|
|
||||||
- Investigate how early internal structures can be accessed; this would
|
|
||||||
prevent structures from being parsed and serialized multiple times.
|
|
||||||
- Built-in support for target="_blank" on all external links
|
- Built-in support for target="_blank" on all external links
|
||||||
- Incorporate data: support as implemented here:
|
- Incorporate data: support as implemented here:
|
||||||
http://htmlpurifier.org/phorum/read.php?3,3491,3548
|
http://htmlpurifier.org/phorum/read.php?3,3491,3548
|
||||||
- Fix ImgRequired to handle data correctly
|
- Fix ImgRequired to handle data correctly
|
||||||
|
- Incorporate download and resize support as implemented here:
|
||||||
|
http://htmlpurifier.org/phorum/read.php?3,2795,3628
|
||||||
- Think about allowing explicit order of operations hooks for transforms
|
- Think about allowing explicit order of operations hooks for transforms
|
||||||
|
- Make it dead easy for other authors to maintain their own configuration
|
||||||
|
pools. Encourage them to namespace them (this flies counter to our
|
||||||
|
"hey, let's use convention idea", so that's why the "register" extra
|
||||||
|
field will end up being a good idea: because it means we can forgo
|
||||||
|
convention for external things
|
||||||
|
- Make it easy for people to cache their entire configuration (so that
|
||||||
|
they have one script they run to change configuration, and then a stub
|
||||||
|
loader to get that configuration)
|
||||||
|
- Implement <area>
|
||||||
|
|
||||||
FUTURE VERSIONS
|
FUTURE VERSIONS
|
||||||
---------------
|
---------------
|
||||||
@ -27,7 +36,6 @@ FUTURE VERSIONS
|
|||||||
# Implement IDREF support (harder than it seems, since you cannot have
|
# Implement IDREF support (harder than it seems, since you cannot have
|
||||||
IDREFs to non-existent IDs)
|
IDREFs to non-existent IDs)
|
||||||
# Frameset XHTML 1.0 and HTML 4.01 doctypes
|
# Frameset XHTML 1.0 and HTML 4.01 doctypes
|
||||||
- Implement <area>
|
|
||||||
- Figure out how to simultaneously set %CSS.Trusted and %HTML.Trusted (?)
|
- Figure out how to simultaneously set %CSS.Trusted and %HTML.Trusted (?)
|
||||||
|
|
||||||
4.2 release [Error'ed]
|
4.2 release [Error'ed]
|
||||||
|
@ -543,6 +543,7 @@ class HTMLPurifier_Config
|
|||||||
*/
|
*/
|
||||||
public function finalize() {
|
public function finalize() {
|
||||||
$this->finalized = true;
|
$this->finalized = true;
|
||||||
|
unset($this->parser);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user