From 478fab1ad1994d146f277ff47ca6ff16c3c75ec9 Mon Sep 17 00:00:00 2001 From: "Edward Z. Yang" Date: Fri, 1 Sep 2006 01:07:09 +0000 Subject: [PATCH] - Remove release candidate suffix - Add licensing info to main file... too lazy to add it to the rest, haha. git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@353 48356398-32a2-884e-a903-53898d9a118a --- NEWS | 2 +- library/HTMLPurifier.php | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) 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';