14-04-2008:
	* src/web/DomElement.C: do not use innerHTML in xhtml (opera
	doesn't like it with inline SVG)

	* src/wt/WPaintedWidget.C: prefer InlineSVG on Opera

	* src/wt/WPaintDevice.C, src/wt/WVmlImage.C: scale pen widths with
	transform

	* src/web/skeletons/Wt.js: import XML nodes with correct namespace
	into DOM

	* revert commit 4e7766d105888ae898ca6a8d7446d2188ae09846, since IE
	cannot handle special tokens in DOM element id's

	* release 2.1.2

13-04-2008:
	* src/wt/WPainter[.C], src/wt/WCanvasPaintDevice[.C],
	src/wt/WVmlImage[.C], src/wt/WSvgImage[.C]: add drawImage() methods

	* src/wt/WRectF.C: fix setX() and setY() incorrect width adaptation

	* src/wt/WSvgImage.C: fix regression in drawLine

	* src/wt/WTransform.C: fix double comparison in SVD decomposition

	* src/wt/WVmlImage.C: fix drawArc() wrong transformation problem

12-04-2008:
	* src/web/DomElement.C, src/web/skeleton/Wt.js: capture() mouse
	down so that all subsequent mouse events are received by the same
	element/widget

	* src/web/WebRenderer.C: use JS reload(true) to force reload, and
	disallow caching of bootstrap HTML

	* src/web/WebRenderer.C, src/wt/WVmlImage.C: use VML in standards
	compliant rendering mode

	* src/web/skeleton/Wt.js: make private functions really sit within
	"Wt" closure

	* src/wt/WJavaScriptSlot.C: fix wrong JavaScript code when JSlot
	is not owned by a WWidget, and thus not using function
	declaration, and define JavaScript functions before loading

	* src/wt/WPaintedWidget[.C]: update() on resize()

	* src/wt/WSlider[.C]: initial implementation of a slider
	control (rendered using WPaintedWidget)

	* src/Ext/TabWidget[.C]: make sure currentIndex() is updated before
	propagating the signal

	* src/wt/WVmlImage.C: correct -1 vertical offset problem

	* src/wt/WTreeTableNode.C: fix seg fault of calling virtual method
	addChildNode() from WTreeNode constructor

	* src/wt/WTree.C: fix seg fault on consecutive calls of setTreeRoot()

	* src/wt/WTreeNode[.C]: rename expanded() to isExpanded() and add
	two signals, expanded and collapsed

	* src/wt/WSignal: allow late binding of a relay signal to
	EventSignal<void>

	* src/wt/WTableTreeNode: change incorrect protected scope of
	addChildNode() to public

11-04-2008:
	* src/wt/WPainter[.C]: expand API with setViewPort() and
	setWindow() methods

	* src/wt/WTransform.C: fix reflexion bug in WTransform's SVD

	* src/wt/WPen[.C]: define 0 width as cosmetic pen of width 1
	pixel, independent of transformation matrix

	* Boost 1.35 support

	* CMakeLists.txt: The static version of Wt is now default
	built on Windows

10-04-2008:
	* src/wt/WApplication[.C]: fix regression in
	WApplication::processEvents()

	* src/wt/WPainter[.C]: add WPainter::save() and
	WPainter::restore() methods

	* src/wt/WTransform.C: handle reflexions correctly in the singular
	value decomposition

	* Released 2.1.1

09-04-2008:
	* src/wt/WLineF, WPointF, WRectF, WPaintDevice, WPainter, WPen,
	WBrush, WPainterPath, WVmlImage, WSVGImage, WCanvasPaintDevice:
	complete implementation and documentation

	* src/wt/WString: improve documentation

07-04-2008:
	* src/wt/WTreeNode[.C]: add virtual expandable() method which
	returns whether a node is expandable (even when not populated)

	* src/Ext/TabWidget.C: addTab(WWidget *, const WString&) checks if
	the widget is a Panel, and only creates a Panel if not.

	* src/wt/WJavaScriptSlot[.C], WObject[.C], add
	implementPrelearned() to directly specify the JavaScript behavior
	for a method. Add support to switch the implementation of a method
	between implementStateless() and implementJavaScript().

	* src/wt/WTreeNode[.C]: add setChildCountPolicy() to enable the
	child count next to the label, which now by default is disabled

	* src/wt/WWidget.C, src/wt/WWebWidget.C: performance optimization:
	change implementation of hide() and show() from stateless to
	prelearned

	* src/wt/WTreeTable[.C]: use offsetHeight instead of clientHeight and
	offsetTop to solve layout problem ?

	* src/wt/WObject[.C]: use a simple 64-bit encoding for a valid
	JavaScript identifier id

02-04-2008:
	* src/Ext/*.C: performance improvement: change config generation
	to use streaming instead of string concatenation

	* src/Ext/*.C: performance improvement: do not use addUpdateJS
	when not yet rendered

01-04-2008:
	* src/wt/WApplication: support dynamic loading of scripts,
	internal stylesheet changes, and external stylesheets. This fixes
	the problem with using Ext widgets only later in the application.

	* src/wt/WTableRow[.C], src/wt/WTableColumn[.C]: add support in
	public API

	* src/wt/WApplication.C: move default CSS for widgets to the
	widget constructors

	* src/wt/Ext/Widget.C, src/wt/WJavaScriptSlot.C: fix bugs when
	using setId() to override the auto-generated id's.

	* src/wt/WEnvironment[.C]: make hostName() and clientAddress()
	robust to proxies at either the client or server side, add
	urlScheme() method.

	* src/fcgi/Server.C, src/http/PosixMain.C,
	src/web/WebController.C: add support for multiple entry points

	* src/http/Configuration.C: add --servername option to override
	the DNS name as default host name

	* src/http/Configuration.C: fix -1 error when removing trailing
	'/' from directories.

	* src/web/CgiParser.C: use GNU regex when HAVE_GNU_REGEX is defined.

	* src/web/Configuration.C: add behind-reverse-proxy boolean
	configuration option, and separate general from FastCGI specific
	settings

	* src/web/DomElement.C, src/web/EscapeOStream.C,
	src/web/WebRenderer.C: more rendering performance improvements

	* src/web/WebController.C: use GNU regex when HAVE_GNU_REGEX is defined.

	* src/web/WebController.C, src/web/WebRenderer.C,
	src/web/WebSession.C: preliminary support for embedded application
	mode, cross-domain AJAX using dynamic script tags, and automatic
	conversion from relative to absolute URLs

	* src/web/skeletons/: reorganisation to have modular javascript,
	and encapsulation in JavaScript "classes" to allow multiple
	applications in a single page (in the future)

	* src/wt/WApplication.C: make "Loading" feedback work properly on
	all browsers

	* src/wt/WCssDecorationStyle.C: do not generate no-op JavaScript

	* src/wt/WCssStyleSheet[.C]: add functionality to check whether a
	particular rule has already been added

	* src/wt/WMessageResources.C: do not read the same XML file twice
	when locale is empty

	* src/wt/WPushButton.C: do not generated no-op JavaScript

	* src/wt/WResource: change suggestFilename to suggestFileName, add
	addHeader() method

	* src/wt/WSignal.C: fix double removal of a user event signal from
	the exposed signals list

18-03-2008:
	* src/wt/WStackedWidget[.C]: fix bug when trying to add a composite
	widget to a stack (cannot yet call hide()) through parent passing,
	reported by Michael Ivanov

17-03-2008:
	* src/web/DomElement.C: fix regression introduced 04-03-2008 with
	alternate hiding method interfering with setPositionScheme()

	* src/Ext/ComboBox.C: use modelColumn when indexing into model.

	* src/web/DomElement.C: various performance improvements (const
	char * for string literals)

	* src/web/EscapeOStream[.C]: performance improvements

	* src/web/FileServe.C: performance improvement: avoid char-based I/O

	* src/web/WebRenderer.C: performance improvements: do not use
	formName(), instead use pointer, do not propagateRenderOk() before
	initial render, do stateless slot learning in JavaScript update

	* src/wt/WObject.C: performance improvement: use sprintf() in formName()

	* src/wt/WSignal.C: performance improvements: use local info to
	track whether a signal was exposed instead of the expensive call
	to WApplication

	* src/wt/WWebWidget.C: performance improvements

	* src/wt/WTreeNode[.C]: virtual method displayedChildCount()

	* src/web/skeleton/Ajax.html: fix offset problem in coordinate
	calculations

	* src/wt/TableView[.C]: use SelectionBehavior instead of
	SelectionUnit, which is now deprecated

	* src/wt/WSelectionBox[.C]: add support for multiple selection

	* src/web/DomElement.C: fix button wrap when using IE6 with
	JavaScript disabled

	* all: various documentation cleanups

13-03-2008:
	* wthttpd: make build without thread support really work without
	linking to a thread library

	* src/mxml/mxml-file.c: fix unicode encoding to not encode twice,
	bug that was triggered on linux-arm platforms

	* src/mxml: merge with latest official release 2.5

	* src/wt/WDate.C, src/http/Request.C: fix non-cost string literals

	* src/web/CgiParser.C: fix a regression to detect content-type

12-03-2008:
	* src/wt/WPainterPath: complete API, largely untested

10-03-2008:
	* src/wt/WPainterPath and devices: implement painter path arcTo()

06-03-2008:
	* examples/wt-homepage/: updated to emweb design

	* src/wt/WApplication.C: disable state system for WebKit, since it
	does not work at all

	* src/wt/WMessageResources.C, src/wt/WWebWidget.C, src/web/DomElement.C:
	do not let mxml self-close non-self-closing tags (gives problems in IE)

05-03-2008:
	* src/wt/WMenu[.C]: added method setRenderAsList() which allows
	the menu to be rendered as an HTML list

	* src/wt/WContainerWidget[.C]: added methods setList(), isList(),
	isOrderedList(), isUnorderedList(), that allow the container to
	be used to render HTML <ul> and <ol> lists.

04-03-2008:
	* src/wt/WTable.C: correctly participate in slot learning when
	stubbed

	* src/wt/WWebWidget[.C]: allow alternate method for hiding, which
	propagates to parents. methods does not use display: none

	* src/Ext/ComboBox.C, src/Ext/DateField.C: use alternate method
	for hiding

03-03-2008:
	* examples/extkitchen/ExtKitchenExample.C: modify example to use
	a WTable for layout

02-03-2008:
	* src/wt/WSignal: connect new signals at_front, since it seems
	that boost signals will call slots being appended to the signal
	during slot invocation -- contrary to the documentation

	* src/wt/W[.*]Image: add support for VML rendering

	* src/wt/WVmlImage.C: make text alignment work properly

01-03-2008:
	* src/wt/WMenu[Item][.C]: make itemSelected signal normal signal,
	instead of being called from within stateless slot

	* src/web/WebRenderer.C: do not show 'ignore' for updates to widgets
	not inserted into the widget hierarchy

	* src/wt/WObject.C: do not show internal error when (no)FormData
	is called

	* src/http/WinMain.C: adapted for non-boost asio

	* src/wt/WWebWidget.C: Allow widget reparenting. setParent() for a
	widget who has already a parent used to be a no-op; now it reparents
	the widget.

	* */CMakelists.txt: added 'd' suffix to debug libraries; added
	FindWt.cmake (from Pau Garcia i Quiles)

        * Released 2.1.0

29-02-2008:
	* */CMakeList.txt: Restructured the cmake files

	* wthttp: made zlib dependency optional

	* wthttp: asio_error becomes asio_error_code and asio_system_error

 	* src/Ext/Widget.C: make setHidden() behave properly also when
	not yet rendered

25-02-2008:
	* documentation updates

23-02-2008:
	* several fixes for JavaScript handling after a reload of the same
	session

22-02-2008:
	* src/wt/WTreeTable.C: fix layout bug when using a border for the
	header

16-02-2008:
	* src/wt/WAnchor[.C]: allow referencing to dynamically generated
	documents

15-02-2008:
	* src/Ext/TableView.C: implement enableColumnHiding() methods

	* src/, src/http: move to boost-1.34.1 and (boost/non-boost) asio 0.3.9

	* src/Ext/Dialog.C: implement setSizeGripEnabled(bool) method

	* src/Ext/Panel[.C]: add collapse(), expand() methods and fix
	setCollapsed() implementation

	* src/Ext/TableView.C: fix setAutoExpandColumn min and max widths

14-02-2008:
	* src/Ext/PagingToolBar.C: render other buttons that were added,
	as suggested by Michael Ivanov, 08-01-2008

	* src/wt/WLabel[.C]: add setBuddy(Ext::FormField *) as suggested
	by Pau Garcia i Quiles, 16-01-2008

	* src/wt/WAnchor[.C]: add setTarget() method

13-02-2008:
	* src/Ext/MessageBox.[Ch]: fix delete from buttonClicked crash,
	reported by Alex, 05-01-2008

	* src/wt/WAnchor[.C]: fix anchor implementation problem reported
	by Lasse Karkkainen, 15-01-2008. Note that the API has changed,
	since we no longer use a WLabel (which caused the problem). Unless
	your code relied on the fact that it was implemented using a label
	there should be no problem in adapting to the new API.

	* src/web/WebController.C: fix IE6 history problem reported by Joe
	Croft, 28-01-2008

	* src/web/WebRender.C: fix synchronization problem of form
	objects, bug and patch by Goetz Babin-Ebell

	* src/wt/WContainerWidget.C: syntax fix, by Goetz Babin-Ebell

	* src/wt/WString and related: use UTF8 internally, as suggested by
	Goetz Babin-Ebell
	
02-01-2008:
	* src/wt/WTreeTable[.C]: scroll content while keeping headers fixed

	* src/wt/WTreeNode[.C]: add support for an invisible root node

	* src/Ext/LayoutImpl.C: trigget layout recalculation after adding a
	panel

	* src/Ext/Button.C: fix bug not showing initial enabled/disabled state

	* src/Ext/WWidgetItemImpl.C: wrap non-Container Widgets also, so that
	their style is not lost

	* src/Wt/WPainter: drawLine methods

	* src/web/skeleton/Ajax.html: fix mouse position calculations in
	presence of scrolled widgets

01-01-2008:
	* src/web/WebController.[Ch], src/http/HTTPStream.[Ch]:
	addSocketNotifier and removeSocketNotifier as virtual methods in
	WebStream instead of callbacks from wt lib to connector lib

30-12-2007:
	* src/wt/WRectF[.C], src/wt/WCanvasPaintDevice[.C], ...: further
	improvements to painting infrastructure

	* src/wt/WSignalMapper: API changes to be able to build on MSVC

	* src/wt/WEnvironment: allow reading content type, and raw CGI
	environment variables

	* src/web/Configuration.C: switch back to default to HTML mime type
	
29-12-2007:
	* src/http/PosixMain.C: use asio::thread by default

	* src/wt/WContainerWidget.C: fix bug to use delete[] instead of delete
	on overflow_ array

	* src/wt/WApplication: add notify(const WEvent& e) method to allow
	custom event exception handling.

	* src/wt/WEnvironment: add cgiValue() method to inspect any CGI
	environment variable

18-12-2007:
	* various places: pass string by reference where it makes sense

	* Ext/*: upgrade from Ext 1.x to Ext 2.x series, main addition is a
	full layout management system

12-12-2007:
	* src/web/WebRenderer.C, src/web/DomElement.C, ...: serve XHTML
	content-type if the browser accepts it, and if it is not disabled
	in the config.xml file

	* resources/orbited.js: produce valid XHTML (no document.write())

	* resources/rsh.js: produce valid XHMTL (except for IE)

	* src/wt/WApplication[.C]: split javascript in javascript that
	needs to be run before starting the DOM (which is rendered
	everytime the page is reloaded), and javascript that is run to
	manipulate the DOM (which is the default)

	* src/web/DomElement.C: fix button wrap layout that was adding
	extra padding in non-javascript support rendering

	* src/wt/WApplication.C: use lowercase CSS element selectors!
	you will need to change your style sheets accordingly!

	* src/wt/WBrush[.C], src/wt/WPaintDevice[.C],
	src/wt/WPaintedWidget[.C], src/wt/WPainter[.C], src/wt/WPen[.C],
	src/wt/WPointF[.C], src/wt/WVectorImageResource[.C]: initial
	check-in of incomplete painting infrastructure

10-12-2007:
	* src/web/WebController.C: keep the server push connection alive
	when receiving a heart-beat

	* src/web/skeleton/Ajax.html: preliminary WinCE IE support

	* src/wt/WImage[.C]: add loaded event

02-12-2007:
	* examples/simplechat: added a chat example (replaces previous
	stupid serverpush example)

	* src/web/WServerPushResource.C, resources/orbited.js: several
	improvements to make server-push work

	* src/web/WebSession.C: allow updating another session from within an
	existing session

	* src/wt/WContainerWidget: add setOverflow() method for easier
	scrollbars

	* src/wt/WString: add operator< to be able to put them in std::set<>
	
01-12-2007:
	* src/mxml: updated to mxml-2.4

	* resources/rhs.js, resources/json2005.js, src/wt/WApplication.C,
	src/web/WebController.C: upgraded to RSH 0.6 RC1 (works now in IE,
	Firefox and Opera)

	* examples/hello/hello.C: make example more interesting

	* examples/serverpush/serverpush.C: adapted to test intermixing
	event server and client events

	* src/Ext/TableView.C: disconnect connections when changing model

	* src/fcgi/FCGIStream.[Ch]: add socket notifier stubs

	* src/http/Server.[Ch], src/web/WebController.[Ch]: implement
	socket notification

	* src/http/WtReply.[Ch]: robust handling of server shutdown and
	connection closing

	* src/web/WServerPushResource.C: adapted for orbited.js for as
	server-push library

	* src/web/WebController.C: no longer add --Quited to application
	title when quiting an application


27-11-2007:
	* src/Ext/MessageBox.C: fix setting prompt value

	* src/Ext/DataStore[.C], src/Ext/ComboBox[.C],
	src/Ext/TableView[.C]: bundle model changes leading to
	significant reduction in generated JS for model changes.

	* src/Ext/DataStore[.C], src/Ext/TableView[.C]: support resetting the
	model, and process row removals in reverse order

	* src/wt/WAbstractToggleButton.C: use click signal instead of
	change to make checked/unChecked signals work in IE.

	* src/wt/WSignal.C: reorder emission of stateless and dynamic slots,
	to avoid processing on a signal that has been deleted (which should
	not happen in a stateless slot).

23-11-2007:
	* src/wt/WButtonGroup, src/Ext/RadioButton.C: add support for
	Ext::RadioButton in WButtonGroup

23-11-2007:
	* CMakeLists.txt, src/CMakeLists.txt: add build option to disable
	thread (in wthttpd) altogether

22-11-2007:
	* src/Ext/DataStore.C: fix use of DataStore when removing rows

15-11-2007:
	* src/Ext/DataStore.C: fix regression bug when inserting rows
	
	* src/Ext/ComboBox.[Ch]: add activated signal

	* src/Ext/DataStore.C: fix use of DataStore when inserting rows

12-11-2007:
	* src/Ext/ProgressDialog.C: don't show by default (unlike Qt)

26-10-2007:
	* src/Ext/TableView.C: add missing method implementations

21-10-2007:
	* src/Ext/DataStore.[Ch], src/Ext/TableView.[Ch]: support multiple row
	selection, and be robust to sorting by using ids instead of row
	indexes

	* src/Ext/TabWidget[.C]: fix bug where children were not inserted
	into the widget tree, and thus could not implement event handling

	* src/wt/WTreeTableNode.C: fix konqueror/IE6 rendering problems

18-10-2007:
	* src/Ext/TableView[.C]: add methods for modifying and inspecting
	the current selection

17-10-2007:
	* src/wt/WMessageResources.C: remove the trailing '\n' that was
	being added to every WString in a resourcefile by mxml

10-10-2007:
	* examples/extkitchen/ExtKitchenExample.[Ch]: add a password prompt
	dialog example

	* src/wt/WAbstractToggletButton.[C], src/wt/WCheckBox.[Ch],
	src/wt/WRadioButton.[C]: fix reversion caused by constructor with
	bool as first argument resulting in missing label text

	* src/wt/WFormWidget.[C]: add setFocus() method

	* src/wt/WInPlaceEdit.C: focus line edit using setFocus()
	stateless slot 

	* src/wt/WScrollArea.[C]: add vertical scrollbar stuff
	
01-10-2007:
	* src/web/skeleton/*.html: Reorder inline and external stylesheets so
	that Wt's default rules can be overridden by applications
	
	* src/wt/WAnchor: Inherit from WContainerWidget so that other stuff can
	be added to it

27-09-2007:
	* src/CMakeLists.txt: integrate mxml sources directly in libwt.so (to
	avoid the static non-PIC .a in dynamic .so problem with CMake)

24-09-2007:
	* resources/dhtml_dhtmlHistory.js, src/web/WebController.C: use
	dynamically generated blank image

	* src/wt/WApplication.C: use dhtml_dhtmlHistory.js in directory
	specified using resourcesURL property

	* src/web/skeleton/Ajax.html: fix Loading... CSS for Internet Explorer

21-09-2007:
	* src/wt/WMenuItem.C: fix segfault when container stack is deleted
	before menu.
	
	* src/mxml/*: supply a version of mxml(patched 2.3) which is used
	by default instead of a system-installed mxml.

11-09-2007:
	* src/wt/WSignal: fixed EventSignal.emit() to also emit stateless
	slots.

08-09-2007:
	* src/wt/WMenuItem, src/wt/WMenuItem.C: decouple render widget
	from activate signal, move margin for horizontal items from WMenu.C

	* src/wt/WObject, src/wt/WSignal: use WObject::Method typedef

	* src/examples/wt/RoundedWidget.C: implement missing method, add
	enabledRoundedCorners method for changing color in stateless
	slot functions.

	* src/wt/WTabWidget, src/wt/WTabWidget.C, others: implement
	WTabWidget with doxygen look, based on WMenu.C

07-09-2007:
	* src/Ext/SplitterHandle.C, src/Ext/Splitter.C: implemented full
	awareness of configured minimum and maximum sizes.

	* src/Ext/TableView.C, src/wt/WAbstractItemModel.C: added full
	support for other data types in models with respect to rendering
	and editing

04-09-2007:
	* src/CMakeLists.txt: added -DBOOST_SPIRIT_THREADSAFE, fixes
	thread safety problem (Max M)
	
	* src/http/Reply.C: implemented If-Modified-Since, Last-Modified,
	and 304 Not Modified response codes

	* *CMakeLists.txt: add soversioning

	* src/wt/WDllDefs: added WT_VERSION define (4gsystems)
	
	* src/wt/WTimer: WTimer memory leak patch (4gsystems)

03-09-2007:
	* all: Released 2.0.5.

	Didn't keep track of ChangeLog, intending to improve on
	that, using GNU Changelog guidelines.

12-05-2007:
	* Haven't kept track of things in ChangeLog.. Sorry.

18-02-2007:
	* various transient and widget memory improvements
	  sample of sizeof() before and after:
	  WObject:           48		 40
	  WResource:         84		 60
	  WWidget:           92		 68
	  WWebWidget:       592		108
	  WInteractWidget: 1356		300
	  WText:           1384		328
	  WTable:          1376		320

16-02-2007:
	* New widget: WTreeTable and example File Browser.

18-12-2006:
	* Use Boost.Signals instead of home-brew signal/slots
	* Drag&Drop seems to work with firefox/konqueror, probably needs more
	testing
	* valgrind checked, no warnings no errors !
	* adopt wide string array

05-12-2006:
	* Solaris patches by Patrick Mauritz
	* Drag&Drop, initial implementation (not yet complete)
	* Drag&Drop example

01-12-2006:
	* Happy birthday, Wt.
	* many changes not documented in the Changelog.

07-09-2006:
	* Support for cookies for session management (when available) instead
	  of URL rewriting
	* Support for reading and setting cookies (in respectively WEnvironment
	  and WApplication)

04-09-2006:
	* Starting to finalize event handling: WMouseEvent and WKeyEvent
	* working on a new example and a new widget: WVirtualImage

02-09-2006:
	* Added WTreeNode and WIconPair widgets, derived from the
	  treelist example with different loading policies, and OO
	  overloading capabilities.
	* Corrected API bug: hide() and show() are non-virtual but
	  setHidden() is the virtual one that you should reimplement
	* Remove WCssDecorationStyle from WWebWidget header, and do
	  not allocated it until needed. Saves alot on memory usage
	  when using many widgets.

01-09-2006:
	* Moved Menu from the homepage example to become WMenu. Provides now
	  different loading policies for the items, and customizable
	  WMenuItem look (through OO inheritance).
	* Fixed a nasty bug in stateless slot learning.

30-08-2006:
	* implemented WJavascriptSlot (abdiel) for pure client-side event
	  handling
	* implemented WSuggestionPopup
	* use two-phase rendering for all updates, and configuration option
	  to change the threshold
	* separated examples in their own doxygen documentation
	* added ContactSuggestions widget to the composer example
	* various documentation improvements
	* fix a bug with deleting a signal while emitting the slots (abdiel)
	* avoid (?) race condition in blur() and click() handler in WSuggestionPopup.C

24-08-2006:
	* mindfully implemented all quoting stuff
	* change behaviour at quit(): simply render the last changes, but
	  add -- Quited. to the title, and avoid receiving new events.
	* fix non-javascript look for the wrap buttons.

22-08-2006:
	* add WWidget::isVisible()
	* workaround for Firefox keeping 'Transferring data from:'
	* yet another WFileUpload implementation -- the final one ?
	* misc improvements to Composer example
	* add support for external stylesheets
	* fix stateless slots discarding changes after serving resource
	* allow caching of WWidget resources

21-08-2006:
	* Added the composer example
	* Fixed bug not quoting href attribute in DemoTreeList
	* CgiParser: revert old behaviour, parsing through big requests
	* move helper function escape and replace to DomElement
	* WFileUpload::fileTooLarge in addition to WAppliation::requestTooLarge
	* isLoaded is broken because of WCompositeWidget..., but not needed anyway
        * add WEnvironment::getArgument, by Tomek Mazurek
	* WFileUpload: looks much better (konqueror, opera & firefox).
        * WFileUpload: added alternative firefox implementation that is even better (but is not used now)
	* WFileUpload: add isUploaded to check if calling upload() will do anything
	* WLineEdit: bugfix: escape preset text
	* WText: bugfix: replace newlines with <br/> in plainFormatting
	* WTextArea: bugfix: now set preset text correctly
	* WWebWidget, WCompositeWidget: bugfix: fix destructor javascript code
	* WWebWidget: bugfix: do not propagate renderOk in stubbed widgets
	* WWebWidget: bugfix: escapeText returns the escaped text
	* WWidget: bugfix: resourceMimeType: escape " in javascript code.

18-08-2006:
	* Documentation improvements
	* Fixed WFileUpload and FileUpload example (one bug remains)
	* Add propagateRenderOk() instead of creating the complete
	  DOM structure
	* prevent XSS attacks at the heart by filtering user supplied
	  XHTML.
	* Do not parse CGI input if too big anyway -- simply discard.

17-08-2006:
	* Documentation improvements, also doxygenified some reusable
	  classes in the examples.

16-08-2006:
	* improved look on non-javascript version, konqueror renders
	  wt-homepage now ok, but Firefox keeps adding padding inside
	  the button...

14-08-2006:
	* parse locale from browser and use it as start-up locale
	  and other things in WEnvironment
	* release 1.1.5

11-08-2006:
	* performance improvement: keep track of widgets that need
	  to be repainted, and only process these when finding
	  changes in the DOM.

10-08-2006:
	* many new features, not kept track off in ChangeLog (bad habit)
	* release 1.1.4

13-07-2006:
	* adopted cmake, an autoconf/tool/make alternative.

26-04-2006:
	* new: WContainerWidget::insert(WWidget *w, WWidget *before)
	* WCssDecorationStyle background image may be positioned
	* Added a Style example

24-04-2006:
 	* Patch for gcc 4 compile errors (Alan Ezust).
	* chased any remaining memory leaks in all examples, reworked
	  WCompositeWidget implementation -- you will need to update any code
	* WFileUpload improvements: looks better, works better
          Added a changed signal which allows capturing file selection on
          some browsers
	* WApplication: limit post-size API
	* CgiParser: make buffer static

22-04-2006:
	* fix session behaviour with multiple fastcgi servers for high
	  performance settings
	* added WDoubleValidator and WRegExpValidator and example of a
	  custom validator -- DateValidator

20-04-2006:
	* kick buggy cgi_util.c in favour of C++ CgiParser
	* rewrote WFileUpload -- works well but looks ugly (most of the time)
	* fixed some memory-leaks indicated by valgrind

14-04-2006:
	* many changes in the last months that were not recorded
	  in the Changelog.

16-01-2006:
	* add new example hangman, contributed by Wim Dumon
	* add new example hello-word, contributed by Wim Dumon
	* fixed contentAlignment() on non-inline children
	* moved HorizontAlignment to WWidget (that was ugly!)
	* add support for valgrind, and fixed dito bugs
	* remove excess zeros in object ids
	* release 1.0.14

03-01-2006:
	* add WSignalMapper class, suggested by Wim Dumon
	* fix gcc 4 compile error, thanks to Costantino Giuliodori and Udo
	  Kreckel.
	* release 1.0.13
	* add WContainerWidget::clear()
	* add WLineEdit::echoMode (Normal/Password)

29-12-2005:
	* add javascript but non-ajax code. But does not work with
	  netscape 4, because of 'onclick' not working ?
	* release 1.0.12

28-12-2005:
	* make WWidget an abstract interface
	* create WWebWidget
	* create WCompositeWidget
	* fixed a bug not initializing margin and padding
	* add non-javascript support
	* add message resource bundles, and support for localization to
	  most WWebWidgets
	* add refresh() in WApplication and WWidget, and in wt-homepage
	  example.

22-12-2005:
	* fix (hack?) for browser going back to Wt page bug
	* added side specific margin and padding, moved padding to
	  WContainerWidget
	* More documented members in WWidget
	* release 1.0.11

21-12-2005:
	* added WFont, and use in the wt-homepage example (for the navigation
	  menu)
	* discovered, but not fixed, the reason why going back to the Wt page
	  does not work: when going backward, the page replays the same stuff
	  as if it was unloaded. So, we probably want our first keep-alive
	  message to be 'load', which should find out which things were
	  stubbed, and retransmit these -- are easier just trigger a reload

20-12-2005:
	* some bug fixes in WStackedWidget
	* converted homepage to Wt (as new example)
	* add support for WApplication.title()
	* release 1.0.10

19-12-2005:
	* started doing ChangeLog
	* read XHTML tutorial at w3org, now properly generate xhtml, no more
  	  problems caused by closing non-empty tags (such as <select />), and
 	  fixes some cross-browser inconsistencies such as disabled widgets
	* add security checks around web references to resource and signal
	  instances (as suggested by Graydon Hoare).
	* quit the application nicely on timeout by exiting the eventloop
	  (as suggested by Wim Dumon).
	* release 1.0.9
