mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-12-22 08:21:52 +00:00
Minor documentation updates; we're going to bite the bullet and tell PEAR users to change their installs.
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1670 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
parent
e1876c18ad
commit
d3710518ce
7
INSTALL
7
INSTALL
@ -81,6 +81,13 @@ when you use them.
|
|||||||
Only the contents in the library/ folder are necessary, so you can remove
|
Only the contents in the library/ folder are necessary, so you can remove
|
||||||
everything else when using HTML Purifier in a production environment.
|
everything else when using HTML Purifier in a production environment.
|
||||||
|
|
||||||
|
If you installed HTML Purifier via PEAR, all you need to do is:
|
||||||
|
|
||||||
|
require_once 'HTMLPurifier.auto.php';
|
||||||
|
|
||||||
|
Please note that the usual PEAR practice of including just the classes you
|
||||||
|
want will not work with HTML Purifier's autoloading scheme.
|
||||||
|
|
||||||
Advanced users, read on; other users can skip to section 4.
|
Advanced users, read on; other users can skip to section 4.
|
||||||
|
|
||||||
Autoload compatibility
|
Autoload compatibility
|
||||||
|
2
TODO
2
TODO
@ -23,7 +23,6 @@ DOCUMENTATION
|
|||||||
|
|
||||||
IMPORTANT FEATURES
|
IMPORTANT FEATURES
|
||||||
- Factor out command line parser into its own class, and unit test it
|
- Factor out command line parser into its own class, and unit test it
|
||||||
- Figure out autoload and PEAR
|
|
||||||
|
|
||||||
NICE FEATURES
|
NICE FEATURES
|
||||||
- Factor demo.php into a set of Printer classes, and then create a stub
|
- Factor demo.php into a set of Printer classes, and then create a stub
|
||||||
@ -37,7 +36,6 @@ BUGS
|
|||||||
- Investigate iconv error emitting
|
- Investigate iconv error emitting
|
||||||
- Investigate UTF-8 optimization <http://htmlpurifier.org/phorum/read.php?3,1496>
|
- Investigate UTF-8 optimization <http://htmlpurifier.org/phorum/read.php?3,1496>
|
||||||
- Figure out what to do about target="" and name="", since they show up so often
|
- Figure out what to do about target="" and name="", since they show up so often
|
||||||
- Update htmLawed comparison
|
|
||||||
|
|
||||||
FUTURE VERSIONS
|
FUTURE VERSIONS
|
||||||
---------------
|
---------------
|
||||||
|
@ -14,7 +14,11 @@ $pkg->setOptions(
|
|||||||
'filelistgenerator' => 'file',
|
'filelistgenerator' => 'file',
|
||||||
'include' => array('*'),
|
'include' => array('*'),
|
||||||
'dir_roles' => array('/' => 'php'), // hack to put *.ser files in the right place
|
'dir_roles' => array('/' => 'php'), // hack to put *.ser files in the right place
|
||||||
'ignore' => array('HTMLPurifier.auto.php', 'HTMLPurifier.standalone.php', 'HTMLPurifier.path.php', 'standalone/'),
|
'ignore' => array(
|
||||||
|
'HTMLPurifier.standalone.php',
|
||||||
|
'HTMLPurifier.path.php',
|
||||||
|
'standalone/'
|
||||||
|
),
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user