[3.0.0] Upgraded test scripts and other goodies. Also removed some PHP4 cruft.
[htmlpurifier/darkodev.git] / TODO
blob4964a9ae4b3ede8e3e8d062cf2e0eb7f13cacdf5
2 TODO List
4 = KEY ====================
5     # Flagship
6     - Regular
7     ? Maybe I'll Do It
8 ==========================
10 If no interest is expressed for a feature that may required a considerable
11 amount of effort to implement, it may get endlessly delayed. Do not be
12 afraid to cast your vote for the next feature to be implemented!
14 3.1 release [Error'ed]
15  # Error logging for filtering/cleanup procedures
16  - XSS-attempt detection
18 3.2 release [Do What I Mean, Not What I Say]
19  # Additional support for poorly written HTML
20     - Microsoft Word HTML cleaning (i.e. MsoNormal, but research essential!)
21     - Friendly strict handling of <address> (block -> <br>)
22  - Remove redundant tags, ex. <u><u>Underlined</u></u>. Implementation notes:
23     1. Analyzing which tags to remove duplicants
24     2. Ensure attributes are merged into the parent tag
25     3. Extend the tag exclusion system to specify whether or not the
26     contents should be dropped or not (currently, there's code that could do
27     something like this if it didn't drop the inner text too.)
28  - Remove <span> tags that don't do anything (no attributes)
29  - Remove empty inline tags<i></i>
30  - Append something to duplicate IDs so they're still usable (impl. note: the
31    dupe detector would also need to detect the suffix as well)
32  - Externalize inline CSS to promote clean HTML
34 3.3 release [It's All About Trust] (floating)
35  # Implement untrusted, dangerous elements/attributes
36  # Implement IDREF support (harder than it seems, since you cannot have
37    IDREFs to non-existent IDs)
38  # Frameset XHTML 1.0 and HTML 4.01 doctypes
40 4.0 release [Beyond HTML]
41  # Legit token based CSS parsing (will require revamping almost every
42    AttrDef class). Probably will use CSSTidy class
43  # More control over allowed CSS properties (maybe modularize it in the
44    same fashion!)
45  - Standardize token armor for all areas of processing
46  - Convert RTL/LTR override characters to <bdo> tags, or vice versa on demand.
47    Also, enable disabling of directionality
48  - Table of Contents generation (XHTML Compiler might be reusable)
50 5.0 release [To XML and Beyond]
51  - Extended HTML capabilities based on namespacing and tag transforms (COMPLEX)
52     - Hooks for adding custom processors to custom namespaced tags and
53       attributes, offer default implementation
54     - Lots of documentation and samples
56 Ongoing
57  - More refactoring to take advantage of PHP5's facilities 
58  - Lots of profiling, make it faster!
59  - Plugins for major CMSes (COMPLEX)
60     - phpBB
61     - more! (look for ones that use WYSIWYGs)
62  - Complete basic smoketests
64 AutoFormat
65  - Smileys
66  - Syntax highlighting with <pre> and possibly <?php
67  - Look at http://drupal.org/project/Modules/category/63 for ideas
69 Unknown release (on a scratch-an-itch basis)
70  # CHMOD install script for PEAR installs
71  ? Have 'lang' attribute be checked against official lists, achieved by
72    encoding all characters that have string entity equivalents
73  - Abstract ChildDef_BlockQuote to work with all elements that only
74    allow blocks in them, required or optional
75  - Reorganize Unit Tests
76  - Advanced URI filtering schemes (see docs/proposal-new-directives.txt)
77  - Implement lenient <ruby> child validation
78  - Explain how to use HTML Purifier in non-PHP languages / create
79    a simple command line stub (or complicated?)
80  - Fixes for Firefox's inability to handle COL alignment props (Bug 915)
81  - Automatically add non-breaking spaces to empty table cells when
82    empty-cells:show is applied to have compatibility with Internet Explorer
83  - Distinguish between default settings and explicitly set settings, so
84    configurations can be merged
85  - Nested configuration namespaces
86  - Allow scoped="scoped" attribute in <style> tags; may be troublesome
87    because regular CSS has no way of uniquely identifying nodes, so we'd
88    have to generate IDs
90 Requested
92 Wontfix
93  - Non-lossy smart alternate character encoding transformations (unless
94    patch provided)
95  - Pretty-printing HTML: users can use Tidy on the output on entire page
96  - Native content compression, whitespace stripping (don't rely on Tidy, make
97    sure we don't remove from <pre> or related tags): use gzip if this is
98    really important