Mar 04 18:37:10 2006  Julian Graham  <julian.graham@aya.yale.edu>

	* Changelog: New file.

Sep 17 18:48:55 2006  Julian Graham  <julian.graham@aya.yale.edu>

	* css.c: Allow single-level inheritance from inline elements so that
	typically non-inheritable attributes like margin width can be set on
	pure text nodes from their "span" parents, say
	* layout.c: Add support for margin-left and margin-right on inline
	elements -- they go, respectively, at the beginning and enf of text
	blocks

Oct 02 22:21:32 2006  Julian Graham  <julian.graham@aya.yale.edu>

	* layout.c, render.c: Fixed some off-by-one errors that were evident
	when wrapping text across multiple lines. Don't know how those made it
	in there. Regression and that.

Oct 02 23:16:42 2006  Julian Graham  <julian.graham@aya.yale.edu>

	* load.c, load.h, window.c, window.h: Introduced handling for SIGWINCH,
	in order to allow libRUIN to detect when an xterm has been resized. At
	the moment, all this does is trigger a re-layout and render; in the
	future there may (and probably needs to be) a cleverer way to handle
	this.

Oct 11 20:37:23 2006  Julian Graham  <julian.graham@aya.yale.edu>

	* css.c: Anonymous inline boxes should pick up explicit style from the
	nearest block-level element.

Nov 12 19:22:05 2006  Julian Graham  <julian.graham@aya.yale.edu>

	* load.c, api/api.c, api/node-fns.c, api/node-fns.h: Added preliminary
	support for pseudo-class handling.
	* api/win-fns.c: Focusing should trigger a re-render.
	* css.c: Fixed the way inherent attribute style is cons'd to the
	front of the cascade. Style cache clearing needs to be recursive down
	the tree.
	* css.c, layout.c, xhtml.c: Copy explicit style info ("style=...") 
	data from parent to child as the intermediate tree is constructed. 
	This is a temporary solution to some cascade precendence problems 
	we've been having.
	* input.c: Check to see if a re-render has been requested after an
	event cascade has completed; at the moment, the only source of events
	is the user, so it's okay to put this here.
	* layout.c, render.c: Fixes for breaking words that are longer than the
	window width.
	* load.c: Remove the default focus-toggle handlers -- they were pretty
	dumb. Don't automatically send focus to the first item in the list of
	focusable elements.
	* render.c: Preliminary	support for preformatted text.
	* load.c, scheme.c, scheme.h: Preresolution of oft-called Scheme 
	routines
	* xhtml.c: Anchor elements are focusable.