friendica/vendor/ezyang/htmlpurifier/extras
Hypolite Petovan 799e60aa62 Replace existing autoloader with Composer-supplied
- Move Friendica namespace to `src`
- Move required `ezyang/htmlpurifier` to vendor
- Remove existing static autoloader
- Change boot.php reference to the autoloader
2017-03-31 23:02:38 -04:00
..
ConfigDoc Replace existing autoloader with Composer-supplied 2017-03-31 23:02:38 -04:00
FSTools Replace existing autoloader with Composer-supplied 2017-03-31 23:02:38 -04:00
FSTools.php Replace existing autoloader with Composer-supplied 2017-03-31 23:02:38 -04:00
HTMLPurifierExtras.auto.php Replace existing autoloader with Composer-supplied 2017-03-31 23:02:38 -04:00
HTMLPurifierExtras.autoload.php Replace existing autoloader with Composer-supplied 2017-03-31 23:02:38 -04:00
HTMLPurifierExtras.php Replace existing autoloader with Composer-supplied 2017-03-31 23:02:38 -04:00
README Replace existing autoloader with Composer-supplied 2017-03-31 23:02:38 -04:00

README

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.

    vim: et sw=4 sts=4