| 1 |
Jun 28, 2006 (Jeremy Andrews)
|
| 2 |
- Restore teaser functionality
|
| 3 |
- Add base_path() when locating CSS file
|
| 4 |
- Make html_snippet text area larger
|
| 5 |
- Do not check permissions when filter content to display
|
| 6 |
|
| 7 |
Jun 15, 2006 (Jeremy Andrews)
|
| 8 |
- Cleanup 4.7 port fixing numerous bugs
|
| 9 |
|
| 10 |
Mar 27, 2006 (Nicolas Penel, David Kent Norman)
|
| 11 |
- updated to work with Drupal 4.7
|
| 12 |
|
| 13 |
Apr 16, 2005 (Jeremy Andrews)
|
| 14 |
- updated to work with Drupal 4.6
|
| 15 |
- introduced 'Book review store link' block allowing dynamic link to external
|
| 16 |
bookstore such as Amazon.com
|
| 17 |
|
| 18 |
Feb 21, 2005 (Jeremy Andrews)
|
| 19 |
- bookreview.module
|
| 20 |
o updated 'bookreview' page based on a patch from Emiliano of
|
| 21 |
opiniaopublica.com, thanks!
|
| 22 |
- bookreview.css
|
| 23 |
o updated to support new bookreview page
|
| 24 |
|
| 25 |
Feb 20, 2005 (Jeremy Andrews)
|
| 26 |
- bookreview.module
|
| 27 |
o added support for unlimited teasers (allows displaying entire book on
|
| 28 |
the front page)
|
| 29 |
o added simple 'bookreview' page, based on the recipe.module's recipe page
|
| 30 |
o add ability to display book cover
|
| 31 |
- bookreview.mysql, bookreview.pgsql,
|
| 32 |
o added 'cover' field
|
| 33 |
|
| 34 |
ALTER TABLE bookreview ADD cover varchar(255) NOT NULL DEFAULT '' AFTER booktitle;
|
| 35 |
|
| 36 |
Feb 16, 2005 (Jeremy Andrews)
|
| 37 |
- bookreview.module
|
| 38 |
o implement basic searching (only searches title and review body)
|
| 39 |
|
| 40 |
Jan 28, 2005 (Jeremy andrews)
|
| 41 |
- bookreview.module:
|
| 42 |
o put bookreview.css into seperate configurable file (issue #15327)
|
| 43 |
o filter type configurable per-node (issue #15701)
|
| 44 |
o filters don't strip div and span tags (issue #15701)
|
| 45 |
o added "price" (issue #15161)
|
| 46 |
o convert "copyright" and "pages" from int to varchar (issue #14954)
|
| 47 |
- bookreview.mysql:
|
| 48 |
o added "price" column
|
| 49 |
o convert "copyright" and "pages" from int to varchar
|
| 50 |
- bookreview.pgsql:
|
| 51 |
o add PostgreSQL support (issue #14955)
|
| 52 |
|
| 53 |
ALTER TABLE bookreview ADD price varchar(255) NULL AFTER isbn;
|
| 54 |
ALTER TABLE bookreview MODIFY copyright varchar(255) NULL;
|
| 55 |
ALTER TABLE bookreview MODIFY pages varchar(255) NULL;
|
| 56 |
ALTER TABLE bookreview MODIFY isbn varchar(255) NULL;
|
| 57 |
|
| 58 |
Dec 28, 2004 (Gabor Hojtsy)
|
| 59 |
- bookreview.module:
|
| 60 |
o Updated to work with Drupal 4.5
|
| 61 |
|
| 62 |
Sept 6, 2004 (Gabor Hojtsy)
|
| 63 |
- bookreview.module:
|
| 64 |
o Fix a small typo
|
| 65 |
o Make the bookreview_content() function themeable
|
| 66 |
o Let admins disable synopsis and contents fields
|
| 67 |
o Add rating possibility to books.
|
| 68 |
- bookreview.mysql:
|
| 69 |
o Run this to fix your table when you upgrade:
|
| 70 |
|
| 71 |
ALTER TABLE bookreview ADD COLUMN rating int(1) NOT NULL DEFAULT 0 AFTER pages;
|
| 72 |
|
| 73 |
July 26, 2004 (Jeremy Andrews)
|
| 74 |
- bookreview.module:
|
| 75 |
o Fix bug #9517: translate return from _node_name hook
|
| 76 |
o Fix bug #8877: non-admin unable to view/create bookreviews
|
| 77 |
|
| 78 |
June 10, 2004 (Jeremy Andrews)
|
| 79 |
- bookreview.module:
|
| 80 |
o Fix bug #8397: removed custom teaser generation logic, calling instead
|
| 81 |
more robust node_teaser()
|
| 82 |
|
| 83 |
May 19, 2004 (Jeremy Andrews)
|
| 84 |
- bookreview.module:
|
| 85 |
o cleaned up <css> output in html page source
|
| 86 |
o added validation to be sure $node->review is not blank
|
| 87 |
o added configurable minimum number of words of $node->review
|
| 88 |
o fixed to only display author(s) and link(s) sections if they exist
|
| 89 |
|
| 90 |
May 18, 2004 (Jeremy Andrews)
|
| 91 |
- bookreview.module:
|
| 92 |
o fixed bug where authors and links weren't being saved
|
| 93 |
o formats display of book reviews with built-in css
|
| 94 |
o added taxonomy support
|
| 95 |
o added minimal search support (still need to add the ability to search by
|
| 96 |
title, author, publisher, isbn, etc...)
|
| 97 |
o miscellaneous cleanup
|
| 98 |
o allow custom title/description for links
|
| 99 |
- bookreview.mysql:
|
| 100 |
o added 'description' field for link titles
|
| 101 |
|
| 102 |
May 17, 2004 (Jeremy Andrews)
|
| 103 |
- bookreview.module:
|
| 104 |
o Initial writing. Defined schema, provided interface for adding
|
| 105 |
and editing book reviews. Still need to offer pretty display.
|
| 106 |
- bookreview.mysql:
|
| 107 |
o Defined schema. Uses three tables: 'bookreview', 'bookreview_authors'
|
| 108 |
and 'bookreview_links'.
|