Implement %Attr.AllowedClasses and %Attr.ForbiddenClasses.
[htmlpurifier/rdancer.git] / TODO
blob03a70ebf9d519c52335b13d3f33064600bbdaf29
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 require 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 - Investigate how early internal structures can be accessed; this would
15   prevent structures from being parsed and serialized multiple times.
16 - Built-in support for target="_blank" on all external links
17 - Incorporate data: support as implemented here:
18   http://htmlpurifier.org/phorum/read.php?3,3491,3548
19 - Fix ImgRequired to handle data correctly
20 - Think about allowing explicit order of operations hooks for transforms
21 - Allow more relaxed "class" definition than NMTOKENS for appropriate
22   doctypes
23 - Lock when configuring Definition objects so we CAN'T access configuration
24   directives outside of what dependency has been registered.
26 FUTURE VERSIONS
27 ---------------
29 4.1 release [It's All About Trust] (floating)
30  # Implement untrusted, dangerous elements/attributes
31  # Implement IDREF support (harder than it seems, since you cannot have
32    IDREFs to non-existent IDs)
33  # Frameset XHTML 1.0 and HTML 4.01 doctypes
34  - Implement <area>
35  - Figure out how to simultaneously set %CSS.Trusted and %HTML.Trusted (?)
37 4.2 release [Error'ed]
38  # Error logging for filtering/cleanup procedures
39  - XSS-attempt detection--certain errors are flagged XSS-like
41 4.3 release [Do What I Mean, Not What I Say]
42  # Additional support for poorly written HTML
43     - Microsoft Word HTML cleaning (i.e. MsoNormal, but research essential!)
44     - Friendly strict handling of <address> (block -> <br>)
45  ? Remove redundant tags, ex. <u><u>Underlined</u></u>. Implementation notes:
46     1. Analyzing which tags to remove duplicants
47     2. Ensure attributes are merged into the parent tag
48     3. Extend the tag exclusion system to specify whether or not the
49     contents should be dropped or not (currently, there's code that could do
50     something like this if it didn't drop the inner text too.)
51  - Remove <span> tags that don't do anything (no attributes)
52  - Append something to duplicate IDs so they're still usable (impl. note: the
53    dupe detector would also need to detect the suffix as well)
54  - Externalize inline CSS to promote clean HTML, proposed by Sander Tekelenburg
56 5.0 release [Beyond HTML]
57  # Legit token based CSS parsing (will require revamping almost every
58    AttrDef class). Probably will use CSSTidy class?
59  # More control over allowed CSS properties using a modularization
60  # HTML 5 support
61  # IRI support (this includes IDN)
62  - Standardize token armor for all areas of processing
63  - Convert RTL/LTR override characters to <bdo> tags, or vice versa on demand.
64    Also, enable disabling of directionality
66 6.0 release [To XML and Beyond]
67  - Extended HTML capabilities based on namespacing and tag transforms (COMPLEX)
68     - Hooks for adding custom processors to custom namespaced tags and
69       attributes, offer default implementation
70     - Lots of documentation and samples
72 Ongoing
73  - More refactoring to take advantage of PHP5's facilities
74  - Refactor unit tests into lots of test methods
75  - Plugins for major CMSes (COMPLEX)
76     - phpBB
77     - Drupal needs loving!
78     - Phorum need loving!
79     - more! (look for ones that use WYSIWYGs)
80     - Also, maybe a FAQ for extension writers with HTML Purifier
82 AutoFormat
83  - Smileys
84  - Syntax highlighting (with GeSHi) with <pre> and possibly <?php
85  - Look at http://drupal.org/project/Modules/category/63 for ideas
87 Optimizations
88  - Reduce size of internal data-structures (esp. HTMLDefinition)
89  - Research memory usage of objects versus arrays
90  - Combine multiple strategies into a single, single-pass strategy
91  - Get PH5P working with the latest versions of DOM, which have much more
92    stringent error checking procedures. Maybe convert straight to tokens.
93  - Get rid of set_include_path(). Save this for another major release.
95 Neat feature related
96  ! Factor demo.php into a set of Printer classes, and then create a stub
97    file for users here (inside the actual HTML Purifier library)
98  ! Support exporting configuration, so users can easily tweak settings
99    in the demo, and then copy-paste into their own setup
100  - Advanced URI filtering schemes (see docs/proposal-new-directives.txt)
101  - Allow scoped="scoped" attribute in <style> tags; may be troublesome
102    because regular CSS has no way of uniquely identifying nodes, so we'd
103    have to generate IDs
104  - Explain how to use HTML Purifier in non-PHP languages / create
105    a simple command line stub (or complicated?)
106  - Fixes for Firefox's inability to handle COL alignment props (Bug 915)
107  - Automatically add non-breaking spaces to empty table cells when
108    empty-cells:show is applied to have compatibility with Internet Explorer
109  - Table of Contents generation (XHTML Compiler might be reusable). May also
110    be out-of-band information.
111  - Full set of color keywords. Also, a way to add onto them without
112    finalizing the configuration object.
113  - Write a var_export and memcached DefinitionCache - Denis
114  - Allow restriction of allowed class values
116 Maintenance related (slightly boring)
117  # CHMOD install script for PEAR installs
118  ! Factor out command line parser into its own class, and unit test it
119  ! Nested configuration namespaces
120  - Distinguish between default settings and explicitly set settings, so
121    configurations can be merged
122  - Time PHPT tests
124 ChildDef related (very boring)
125  - Abstract ChildDef_BlockQuote to work with all elements that only
126    allow blocks in them, required or optional
127  - Implement lenient <ruby> child validation
129 Wontfix
130  - Non-lossy smart alternate character encoding transformations (unless
131    patch provided)
132  - Pretty-printing HTML: users can use Tidy on the output on entire page
133  - Native content compression, whitespace stripping: use gzip if this is
134    really important
136     vim: et sw=4 sts=4