2006-07-21 11:31:43 +00:00
|
|
|
|
2006-08-28 02:47:03 +00:00
|
|
|
TODO List
|
|
|
|
|
2006-09-23 00:43:21 +00:00
|
|
|
1.2 release
|
2006-08-12 19:22:57 +00:00
|
|
|
- Make URI validation routines tighter (especially mailto)
|
2006-11-12 19:26:49 +00:00
|
|
|
- More extensive URI filtering schemes (see URI in config-ideas.txt)
|
2006-08-28 20:10:01 +00:00
|
|
|
- Allow for background-image and list-style-image (see above)
|
2006-08-12 19:22:57 +00:00
|
|
|
- Distinguish between different types of URIs, for instance, a mailto URI
|
|
|
|
in IMG SRC is nonsensical
|
2006-09-23 00:43:21 +00:00
|
|
|
- Error logging for filtering/cleanup procedures
|
2006-08-28 02:47:03 +00:00
|
|
|
|
2006-09-23 00:43:21 +00:00
|
|
|
1.3 release
|
2006-08-28 02:47:03 +00:00
|
|
|
- Add various "levels" of cleaning
|
|
|
|
- Related: Allow strict (X)HTML
|
2006-11-04 05:05:19 +00:00
|
|
|
- More fine-grained control over escaping behavior
|
|
|
|
- Silently drop content inbetween SCRIPT tags (can be generalized to allow
|
|
|
|
specification of elements that, when detected as foreign, trigger removal
|
|
|
|
of children, although unbalanced tags could wreck havoc (or at least
|
|
|
|
delete the rest of the document)).
|
2006-08-28 02:47:03 +00:00
|
|
|
|
2006-09-23 00:43:21 +00:00
|
|
|
1.4 release
|
|
|
|
- Additional support for poorly written HTML
|
|
|
|
- Implement all non-essential attribute transforms
|
|
|
|
- Microsoft Word HTML cleaning (i.e. MsoNormal)
|
|
|
|
|
|
|
|
2.0 release
|
|
|
|
- Formatters for plaintext
|
|
|
|
- Auto-paragraphing (be sure to leverage fact that we know when things
|
|
|
|
shouldn't be paragraphed, such as lists and tables).
|
|
|
|
- Linkify URLs
|
|
|
|
- Smileys
|
2006-11-12 19:26:49 +00:00
|
|
|
- Linkification for HTML Purifier docs: notably configuration and
|
|
|
|
class names
|
2006-09-23 00:43:21 +00:00
|
|
|
|
2006-08-28 02:47:03 +00:00
|
|
|
3.0 release
|
|
|
|
- Extended HTML capabilities based on namespacing and tag transforms
|
|
|
|
- Hooks for adding custom processors to custom namespaced tags and
|
|
|
|
attributes, offer default implementation
|
|
|
|
- Lots of documentation and samples
|
|
|
|
|
2006-11-04 05:05:19 +00:00
|
|
|
Ongoing
|
|
|
|
- Lots of profiling, make it faster!
|
|
|
|
- Plugins for major CMSes (very tricky issue)
|
|
|
|
|
2006-08-28 02:47:03 +00:00
|
|
|
Unknown release (on a scratch-an-itch basis)
|
2006-08-25 03:01:16 +00:00
|
|
|
- Fixes for Firefox's inability to handle COL alignment props (Bug 915)
|
2006-08-27 01:45:23 +00:00
|
|
|
- Automatically add non-breaking spaces to empty table cells when
|
|
|
|
empty-cells:show is applied to have compatibility with Internet Explorer
|
2006-11-04 05:05:19 +00:00
|
|
|
- Convert RTL/LTR override characters to <bdo> tags, or vice versa on demand.
|
|
|
|
Also, enable disabling of directionality
|
2006-11-17 01:05:41 +00:00
|
|
|
- Append something to duplicate IDs so they're still usable (impl. note: the
|
|
|
|
dupe detector would also need to detect the suffix as well)
|
2006-11-04 05:05:19 +00:00
|
|
|
|
|
|
|
Encoding workarounds
|
2006-08-28 19:21:46 +00:00
|
|
|
- Non-lossy dumb alternate character encoding transformations, achieved by
|
|
|
|
numerically encoding all non-ASCII characters
|
2006-09-28 00:31:12 +00:00
|
|
|
- Semi-lossy dumb alternate character encoding transformations, achieved by
|
|
|
|
encoding all characters that have string entity equivalents
|
2006-10-31 02:17:52 +00:00
|
|
|
|
|
|
|
Requested
|
|
|
|
- Native content compression, whitespace stripping (don't rely on Tidy, make
|
2006-11-04 05:05:19 +00:00
|
|
|
sure we don't remove from <pre> or related tags)
|
|
|
|
- Win32 Phalanger C# binaries (?)
|
|
|
|
- Remove redundant tags, ex. <u><u>Underlined</u></u>. Implementation notes:
|
|
|
|
1. Analyzing which tags to remove duplicants
|
|
|
|
2. Ensure attributes are merged into the parent tag
|
|
|
|
3. Extend the tag exclusion system to specify whether or not the
|
|
|
|
contents should be dropped or not (currently, there's code that could do
|
|
|
|
something like this if it didn't drop the inner text too.)
|
2006-08-28 19:21:46 +00:00
|
|
|
|
|
|
|
Wontfix
|
2006-11-04 05:05:19 +00:00
|
|
|
- Non-lossy smart alternate character encoding transformations (unless
|
|
|
|
patch provided)
|
2006-09-24 21:23:54 +00:00
|
|
|
- Pretty-printing HTML, users can use Tidy on the output on entire page
|