Mercurial > hg > soundsoftware-site
annotate .svn/pristine/03/0341468b2bb841c8c330355c1e3aa94ad3cce987.svn-base @ 1080:5bd8c86cfa6a issue_540
Makes the Publication model act as an activity; overloading the default ActivitiesController#index view in the Bibliography Plugin in order to differentiate Publications from the other event types.
* Known issues:
** route to /activities is not working (only to /activity);
** publication cache needs to be implemented in the model, not in the helper;
** when a publication is added to n projects, n events are created (all with the same content).
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Thu, 22 Nov 2012 16:51:23 +0000 |
parents | cbb26bc654de |
children |
rev | line source |
---|---|
Chris@909 | 1 *SVN* (version numbers are overrated) |
Chris@909 | 2 |
Chris@909 | 3 * (5 Oct 2006) Allow customization of #versions association options [Dan Peterson] |
Chris@909 | 4 |
Chris@909 | 5 *0.5.1* |
Chris@909 | 6 |
Chris@909 | 7 * (8 Aug 2006) Versioned models now belong to the unversioned model. @article_version.article.class => Article [Aslak Hellesoy] |
Chris@909 | 8 |
Chris@909 | 9 *0.5* # do versions even matter for plugins? |
Chris@909 | 10 |
Chris@909 | 11 * (21 Apr 2006) Added without_locking and without_revision methods. |
Chris@909 | 12 |
Chris@909 | 13 Foo.without_revision do |
Chris@909 | 14 @foo.update_attributes ... |
Chris@909 | 15 end |
Chris@909 | 16 |
Chris@909 | 17 *0.4* |
Chris@909 | 18 |
Chris@909 | 19 * (28 March 2006) Rename non_versioned_fields to non_versioned_columns (old one is kept for compatibility). |
Chris@909 | 20 * (28 March 2006) Made explicit documentation note that string column names are required for non_versioned_columns. |
Chris@909 | 21 |
Chris@909 | 22 *0.3.1* |
Chris@909 | 23 |
Chris@909 | 24 * (7 Jan 2006) explicitly set :foreign_key option for the versioned model's belongs_to assocation for STI [Caged] |
Chris@909 | 25 * (7 Jan 2006) added tests to prove has_many :through joins work |
Chris@909 | 26 |
Chris@909 | 27 *0.3* |
Chris@909 | 28 |
Chris@909 | 29 * (2 Jan 2006) added ability to share a mixin with versioned class |
Chris@909 | 30 * (2 Jan 2006) changed the dynamic version model to MyModel::Version |
Chris@909 | 31 |
Chris@909 | 32 *0.2.4* |
Chris@909 | 33 |
Chris@909 | 34 * (27 Nov 2005) added note about possible destructive behavior of if_changed? [Michael Schuerig] |
Chris@909 | 35 |
Chris@909 | 36 *0.2.3* |
Chris@909 | 37 |
Chris@909 | 38 * (12 Nov 2005) fixed bug with old behavior of #blank? [Michael Schuerig] |
Chris@909 | 39 * (12 Nov 2005) updated tests to use ActiveRecord Schema |
Chris@909 | 40 |
Chris@909 | 41 *0.2.2* |
Chris@909 | 42 |
Chris@909 | 43 * (3 Nov 2005) added documentation note to #acts_as_versioned [Martin Jul] |
Chris@909 | 44 |
Chris@909 | 45 *0.2.1* |
Chris@909 | 46 |
Chris@909 | 47 * (6 Oct 2005) renamed dirty? to changed? to keep it uniform. it was aliased to keep it backwards compatible. |
Chris@909 | 48 |
Chris@909 | 49 *0.2* |
Chris@909 | 50 |
Chris@909 | 51 * (6 Oct 2005) added find_versions and find_version class methods. |
Chris@909 | 52 |
Chris@909 | 53 * (6 Oct 2005) removed transaction from create_versioned_table(). |
Chris@909 | 54 this way you can specify your own transaction around a group of operations. |
Chris@909 | 55 |
Chris@909 | 56 * (30 Sep 2005) fixed bug where find_versions() would order by 'version' twice. (found by Joe Clark) |
Chris@909 | 57 |
Chris@909 | 58 * (26 Sep 2005) added :sequence_name option to acts_as_versioned to set the sequence name on the versioned model |
Chris@909 | 59 |
Chris@909 | 60 *0.1.3* (18 Sep 2005) |
Chris@909 | 61 |
Chris@909 | 62 * First RubyForge release |
Chris@909 | 63 |
Chris@909 | 64 *0.1.2* |
Chris@909 | 65 |
Chris@909 | 66 * check if module is already included when acts_as_versioned is called |
Chris@909 | 67 |
Chris@909 | 68 *0.1.1* |
Chris@909 | 69 |
Chris@909 | 70 * Adding tests and rdocs |
Chris@909 | 71 |
Chris@909 | 72 *0.1* |
Chris@909 | 73 |
Chris@909 | 74 * Initial transfer from Rails ticket: http://dev.rubyonrails.com/ticket/1974 |