From 2d492996215e8ccb927f721fe0e098e24080a9e8 Mon Sep 17 00:00:00 2001 From: "Edward Z. Yang" Date: Sun, 21 Jan 2007 17:24:18 +0000 Subject: [PATCH] Release 1.4.0. git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@680 48356398-32a2-884e-a903-53898d9a118a --- Doxyfile | 2 +- NEWS | 6 ++---- library/HTMLPurifier.php | 4 ++-- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/Doxyfile b/Doxyfile index 3fed194f..6d86e5c6 100644 --- a/Doxyfile +++ b/Doxyfile @@ -4,7 +4,7 @@ # Project related configuration options #--------------------------------------------------------------------------- PROJECT_NAME = HTML Purifier -PROJECT_NUMBER = 1.3.2 +PROJECT_NUMBER = 1.4.0 OUTPUT_DIRECTORY = "C:/Documents and Settings/Edward/My Documents/My Webs/htmlpurifier/docs/doxygen" CREATE_SUBDIRS = NO OUTPUT_LANGUAGE = English diff --git a/NEWS b/NEWS index 2bd97555..1eb74717 100644 --- a/NEWS +++ b/NEWS @@ -9,7 +9,7 @@ NEWS ( CHANGELOG and HISTORY ) HTMLPurifier . Internal change ========================== -1.4.0, unknown release date +1.4.0, released 2007-01-21 ! Implemented list-style-image, URIs now allowed in list-style ! Implemented background-image, background-repeat, background-attachment and background-position CSS properties. Shorthand property background @@ -22,15 +22,13 @@ NEWS ( CHANGELOG and HISTORY ) HTMLPurifier ! YouTube preservation code added to the core, with two lines of code you can add it as a filter to your code. See smoketests/preserveYouTube.php for sample code. +! Moved SLOW to docs/enduser-slow.html and added code examples - Replaced version check with functionality check for DOM (thanks Stephen Khoo) . Added smoketest 'all.php', which loads all other smoketests via frames . Implemented AttrDef_CSSURI for url(http://google.com) style declarations . Added convenient single test selector form on test runner -1.3.3, unknown release date, likely to be dropped -! Moved SLOW to docs/enduser-slow.html and added code examples - 1.3.2, released 2006-12-25 ! HTMLPurifier object now accepts configuration arrays, no need to manually instantiate a configuration object diff --git a/library/HTMLPurifier.php b/library/HTMLPurifier.php index 0e1b54ea..2d748673 100644 --- a/library/HTMLPurifier.php +++ b/library/HTMLPurifier.php @@ -22,7 +22,7 @@ */ /* - HTML Purifier 1.3.2 - Standards Compliant HTML Filtering + HTML Purifier 1.4.0 - Standards Compliant HTML Filtering Copyright (C) 2006 Edward Z. Yang This library is free software; you can redistribute it and/or @@ -64,7 +64,7 @@ require_once 'HTMLPurifier/Encoder.php'; class HTMLPurifier { - var $version = '1.3.2'; + var $version = '1.4.0'; var $config; var $filters;