0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-09-07 22:35:18 +00:00
htmlpurifier/extras
David Rans 1dd3e52365
PHP 8.1: fix various deprecations/errors in newest version of PHP (#310)
* Test on PHP 8.1

* PHP 8.1: fix deprecated NULL param to glob()

* PHP 8.1: fix PHP error when passing NULL to rawurlencode()

* PHP 8.1: calling ctype_lower with FALSE is deprecated

* PHP 8.1: passing NULL to setAttribute() is deprecated

* PHP 8.1: passing NULL to str_replace() is an error

* PHP 8.1: fix error passing NULL to str_replace()

* PHP 8.1: fix return type deprecation with backwards compatible attribute

* Revert typo
2022-04-08 13:48:12 -04:00
..
ConfigDoc PSR-2 reformatting PHPDoc corrections 2013-08-17 22:27:26 -04:00
FSTools PSR-2 reformatting PHPDoc corrections 2013-08-17 22:27:26 -04:00
FSTools.php PHP 8.1: fix various deprecations/errors in newest version of PHP (#310) 2022-04-08 13:48:12 -04:00
HTMLPurifierExtras.auto.php Add vim modelines to all files. 2008-12-06 04:24:59 -05:00
HTMLPurifierExtras.autoload-legacy.php Quarantine __autoload defs for PHP 7.2 compat 2017-12-30 00:23:05 -05:00
HTMLPurifierExtras.autoload.php Quarantine __autoload defs for PHP 7.2 compat 2017-12-30 00:23:05 -05:00
HTMLPurifierExtras.php PSR-2 reformatting PHPDoc corrections 2013-08-17 22:27:26 -04:00
README Add vim modelines to all files. 2008-12-06 04:24:59 -05: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.

    vim: et sw=4 sts=4