tracks/tracks/db
bsag d0666038f2 Removed acts_as_taggable because it is deprecated and replaced with has_many_polymorphs:
<http://blog.evanweaver.com/articles/2006/06/02/has_many_polymorphs>

Also removed chronic because it is not currently used.

  * Tags are entered separated by commas, so tags with spaces are allowed
  * When you edit an action, whatever is submitted in the tags text field replaces existing tags: if you submit an empty field, tags are removed from the action
  * Clicking on a tag shows a page listing all the actions with that tag (/todo/tag/tag+name)

Todo:
  
  * Tests
  * RESTful routes for Tags (if it makes sense for tags - I haven't decided)
  * If you remove tags for an action, it removes the entries from the Taggings table, but it can leave an orphan Tag if there are no more Taggings for that Tag. One problem is that another user might have an identically-named Tag, so we don't want to remove their Tag, just because we have finished with it. I'm not sure how to arrange this yet.
  
Don't forget to rake db:migrate. There is also a change in config/environment.rb.tmpl, so remember to copy the changes to your copy.
 


git-svn-id: http://www.rousette.org.uk/svn/tracks-repos/trunk@425 a4c988fc-2ded-0310-b66e-134b36920a42
2007-02-04 15:33:24 +00:00
..
migrate The contexts controller gets more RESTy. It now supports XML, RSS, ATOM, HTML and plain text views of the contexts list. 2007-02-04 05:12:19 +00:00
schema.rb Removed acts_as_taggable because it is deprecated and replaced with has_many_polymorphs: 2007-02-04 15:33:24 +00:00
tracks-1041.db Changed all the created_at and updated_at fields back to a null default to fix #301. It seems that the problem with datetime fields and Postgresql was a Rails bug that was fixed in 1.1, so it should be OK now. 2006-06-10 13:57:59 +00:00
tracks_1.04_content.sql Added some new rake tasks to make it easier to update databases from the Tracks 1.03 version to that required for Tracks 1.04. 2006-02-26 16:26:38 +00:00