public
Description: HomeMarks is a web based GUI to build HTML start pages.
Homepage: http://www.homemarks.com/
Clone URL: git://github.com/metaskills/homemarks.git
Search Repo:
Click here to lend your support to: homemarks and make a donation at www.pledgie.com !
README
http://weblog.rubyonrails.com/2008/6/1/rails-2-1-time-zones-dirty-caching-gem-dependencies-caching-etc

NOTE: I AM STARTING A REWRITE FOR RAILS 2.1
-------------------------------------------

* Make cookie store remember 1 year
* config.cache_store = :memory_store
* Use Google JS calls for prototype and scriptaculous
* Make modal and flash global?
* Use sweepers instead of cache masters
* http://svn.rubyonrails.org/rails/plugins/exception_notification/README
* Create sitewide JS browser check (happy message)
* Confirm all HmConfig settings.
* New features to stuff in
  http://weblog.rubyonrails.org/2008/4/1/a-taste-of-what-s-coming-in-rails-2-1
  http://mad.ly/2008/04/09/rails-21-time-zone-support-an-overview/

* http://giantrobots.thoughtbot.com/2008/4/4/restful-contact-forms
* http://giantrobots.thoughtbot.com/2008/4/2/static-pages-for-the-enterprise

* Create a bootstrap rake task that asks for a username/pass and sets up initial data.
* Always make sure JS is latest.
* Bootstrap task
  - Update secret forgery stuff
* Add list of Rails 2.X features
  - Cookie Session Store
  - Developed to SQLite, I run mysql in production.
  - TESTS TESTS TESTS
  - Foxy Fixtures
  - Unobtrusive Javascript (death to tagsoup)
  - JavaScript Rewrite
  - Restful routes.
  - Restful authentication.


* HasManyAssociation callbacks.
  has_many :foo :before_add => do, :after_add => do, :before_remove => do, :after_remove => do, 
  callbacks = %w(before_add after_add before_remove after_remove)
  callbacks.each do |callback_name|
    full_callback_name = "#{callback_name}_for_#{association_name}"



Copyright (c) 2007 Action Moniker LLC., http://www.actionmoniker.com/

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.


Some Miscellaneous Notes:
------------------------------------------------------------------

  * Requires Rails 2.1
  * Uses JavaScript Libraries
    - Prototype 1.6.0.1
    - Scriptaculous 1.8.1
  * Plugins Installed
    - Shoulda => https://svn.thoughtbot.com/plugins/shoulda/tags/rel-4.0.1/
  
  
  * There is a configuration class in environment.rb. It is used 
    alot throughout the app. Some things may beed to be set there 
    on first install.
  
  * The app makes pretty decent (filesystem) use of fragment 
    cachine. The store can be changed to a (db) store. Please 
    take a look at the cache_masters.rb file.
  
  * The application includes a utility script in lib/utilities. 
    An example of a use in production would be to scrip this with 
    cron or launchd:
    
    env RAILS_ENV=production /pathtoyourapp/current/script/runner DemoUser.reset
    
  * Comments welcome: ken@actionmoniker.com