0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-09-18 18:25:18 +00:00
htmlpurifier/extras
2008-04-03 20:52:08 +00:00
..
ConfigDoc Reorganize configdoc, but it's still broken. 2008-02-25 21:21:12 +00:00
FSTools Add complete handle support. 2008-01-27 05:53:13 +00:00
ConfigDoc.php Reorganize configdoc, but it's still broken. 2008-02-25 21:21:12 +00:00
FSTools.php [3.1.0] Maintenance scripts emit and honor proper exit codes 2008-04-03 20:52:08 +00:00
HTMLPurifierExtras.auto.php Initial commit for extra class hierarchies FSTools and ConfigSchema. 2008-01-27 05:31:06 +00:00
HTMLPurifierExtras.autoload.php Reorganize configdoc, but it's still broken. 2008-02-25 21:21:12 +00:00
HTMLPurifierExtras.php Reorganize configdoc, but it's still broken. 2008-02-25 21:21:12 +00:00
README [3.1.0] Move ConfigSchema to HTMLPurifier core 2008-02-24 06:19:28 +00:00

HTML Purifier Extras
    The Method Behind The Madness!

The extras/ folder in HTML Purifier contains--you guessed it--extra things
for HTML Purifier.  Specifically, these are two extra libraries called
FSTools and ConfigSchema.  They're extra for a reason: you don't need them
if you're using HTML Purifier for normal usage: filtering HTML.  However,
if you're a developer, and would like to test HTML Purifier, or need to
use one of HTML Purifier's maintenance scripts, chances are they'll need
these libraries. Who knows: maybe you'll find them useful too!

Here are the libraries:


FSTools
-------

Short for File System Tools, this is a poor-man's object-oriented wrapper for
the filesystem. It currently consists of two classes:

- FSTools: This is a singleton that contains a manner of useful functions
  such as recursive glob, directory removal, etc, as well as the ability
  to call arbitrary native PHP functions through it like $FS->fopen(...).
  This makes it a lot simpler to mock these filesystem calls for unit testing.

- FSTools_File: This object represents a single file, and has almost any 
  method imaginable one would need.

Check the files themselves for more information.