diff --git a/NEWS b/NEWS index 61f366ea..9f3aca4a 100644 --- a/NEWS +++ b/NEWS @@ -1,7 +1,7 @@ NEWS ( CHANGELOG and HISTORY ) HTMLPurifier ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -1.0.0rc1, released 2006-08-31 +1.0.0, released 2006-08-31 - Fixed broken numeric entity conversion - Malformed UTF-8 and non-SGML character detection and cleaning implemented - API documentation completed diff --git a/library/HTMLPurifier.php b/library/HTMLPurifier.php index 266a8e7a..e656d79f 100644 --- a/library/HTMLPurifier.php +++ b/library/HTMLPurifier.php @@ -21,6 +21,25 @@ * HTMLPurifier_ConfigDef and HTMLPurifier_Config. */ +/* + HTMLPurifier - Standards Compliant HTML Filtering + Copyright (C) 2006 Edward Z. Yang + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + require_once 'HTMLPurifier/ConfigDef.php'; require_once 'HTMLPurifier/Config.php'; require_once 'HTMLPurifier/Lexer.php';