| 1 |
15th May 2007
|
| 2 |
----------------------------------------------------------------
|
| 3 |
* Added a longtext option when storing to database, and fixed validation when
|
| 4 |
data type is text or longtext as per http://drupal.org/node/141340
|
| 5 |
* Added callbacks to hook_field_settings as per http://drupal.org/node/87619
|
| 6 |
|
| 7 |
28th November 2006
|
| 8 |
----------------------------------------------------------------
|
| 9 |
* Deleted license in favour of LICENSE.txt
|
| 10 |
|
| 11 |
27th November 2006
|
| 12 |
----------------------------------------------------------------
|
| 13 |
* Updated to work with 5.0 cvs. Thanks bdragon.
|
| 14 |
|
| 15 |
29th September 2006
|
| 16 |
----------------------------------------------------------------
|
| 17 |
* Fixed validation of data length
|
| 18 |
* Made non-stored computed fields compute on load, rather than view.
|
| 19 |
|
| 20 |
15th September 2006
|
| 21 |
----------------------------------------------------------------
|
| 22 |
* Made default output the raw text, rather than running check_markup over it
|
| 23 |
|
| 24 |
12th September 2006
|
| 25 |
----------------------------------------------------------------
|
| 26 |
* Moved code, display, and display format from widget to field
|
| 27 |
* Added hook_field_formatter_info and hook_field_formatter, and filters op in
|
| 28 |
hook_field to work properly with new views
|
| 29 |
|
| 30 |
17th August 2006
|
| 31 |
----------------------------------------------------------------
|
| 32 |
* Changed computed_field_field_view_item to computed_field_view_item so that
|
| 33 |
it works with views
|
| 34 |
|
| 35 |
11th August 2006
|
| 36 |
----------------------------------------------------------------
|
| 37 |
* Changed display format so that you can enter arbitrary code to display the
|
| 38 |
field
|
| 39 |
* Made display format code run even when there isn't any computed code
|
| 40 |
* Stored fields are now computed at insert time, rather than submit time. This
|
| 41 |
means that other fields will have more useful values, since they have
|
| 42 |
already been processed by their widgets.
|
| 43 |
|
| 44 |
7th August 2006
|
| 45 |
----------------------------------------------------------------
|
| 46 |
* Made $node editable by computed code
|
| 47 |
|
| 48 |
3rd August 2006
|
| 49 |
----------------------------------------------------------------
|
| 50 |
* Removed a call to check_plain which was more annoying than useful.
|
| 51 |
* Changed the field to be computed on submit so that the value can be stored
|
| 52 |
in the database. A consequence of this is that it won't work on preview, but
|
| 53 |
at least now it is only computed once (per submit).
|
| 54 |
* Made computed fields visible in views
|
| 55 |
* Changed the value you need to set in your code from $node_field['value'] to
|
| 56 |
$node_field[0]['value] so that multiple values can be used.
|
| 57 |
|
| 58 |
21st July 2006
|
| 59 |
----------------------------------------------------------------
|
| 60 |
* Initial Release
|