Jun 28, 2006 (Jeremy Andrews) - Restore teaser functionality - Add base_path() when locating CSS file - Make html_snippet text area larger - Do not check permissions when filter content to display Jun 15, 2006 (Jeremy Andrews) - Cleanup 4.7 port fixing numerous bugs Mar 27, 2006 (Nicolas Penel, David Kent Norman) - updated to work with Drupal 4.7 Apr 16, 2005 (Jeremy Andrews) - updated to work with Drupal 4.6 - introduced 'Book review store link' block allowing dynamic link to external bookstore such as Amazon.com Feb 21, 2005 (Jeremy Andrews) - bookreview.module o updated 'bookreview' page based on a patch from Emiliano of opiniaopublica.com, thanks! - bookreview.css o updated to support new bookreview page Feb 20, 2005 (Jeremy Andrews) - bookreview.module o added support for unlimited teasers (allows displaying entire book on the front page) o added simple 'bookreview' page, based on the recipe.module's recipe page o add ability to display book cover - bookreview.mysql, bookreview.pgsql, o added 'cover' field ALTER TABLE bookreview ADD cover varchar(255) NOT NULL DEFAULT '' AFTER booktitle; Feb 16, 2005 (Jeremy Andrews) - bookreview.module o implement basic searching (only searches title and review body) Jan 28, 2005 (Jeremy andrews) - bookreview.module: o put bookreview.css into seperate configurable file (issue #15327) o filter type configurable per-node (issue #15701) o filters don't strip div and span tags (issue #15701) o added "price" (issue #15161) o convert "copyright" and "pages" from int to varchar (issue #14954) - bookreview.mysql: o added "price" column o convert "copyright" and "pages" from int to varchar - bookreview.pgsql: o add PostgreSQL support (issue #14955) ALTER TABLE bookreview ADD price varchar(255) NULL AFTER isbn; ALTER TABLE bookreview MODIFY copyright varchar(255) NULL; ALTER TABLE bookreview MODIFY pages varchar(255) NULL; ALTER TABLE bookreview MODIFY isbn varchar(255) NULL; Dec 28, 2004 (Gabor Hojtsy) - bookreview.module: o Updated to work with Drupal 4.5 Sept 6, 2004 (Gabor Hojtsy) - bookreview.module: o Fix a small typo o Make the bookreview_content() function themeable o Let admins disable synopsis and contents fields o Add rating possibility to books. - bookreview.mysql: o Run this to fix your table when you upgrade: ALTER TABLE bookreview ADD COLUMN rating int(1) NOT NULL DEFAULT 0 AFTER pages; July 26, 2004 (Jeremy Andrews) - bookreview.module: o Fix bug #9517: translate return from _node_name hook o Fix bug #8877: non-admin unable to view/create bookreviews June 10, 2004 (Jeremy Andrews) - bookreview.module: o Fix bug #8397: removed custom teaser generation logic, calling instead more robust node_teaser() May 19, 2004 (Jeremy Andrews) - bookreview.module: o cleaned up output in html page source o added validation to be sure $node->review is not blank o added configurable minimum number of words of $node->review o fixed to only display author(s) and link(s) sections if they exist May 18, 2004 (Jeremy Andrews) - bookreview.module: o fixed bug where authors and links weren't being saved o formats display of book reviews with built-in css o added taxonomy support o added minimal search support (still need to add the ability to search by title, author, publisher, isbn, etc...) o miscellaneous cleanup o allow custom title/description for links - bookreview.mysql: o added 'description' field for link titles May 17, 2004 (Jeremy Andrews) - bookreview.module: o Initial writing. Defined schema, provided interface for adding and editing book reviews. Still need to offer pretty display. - bookreview.mysql: o Defined schema. Uses three tables: 'bookreview', 'bookreview_authors' and 'bookreview_links'.