Creating links-to-items branch
authorNeil Smith <neil.git@njae.me.uk>
Mon, 27 Jul 2009 12:01:18 +0000 (12:01 +0000)
committerNeil Smith <neil.git@njae.me.uk>
Mon, 27 Jul 2009 12:01:18 +0000 (12:01 +0000)
commitac04f519221a2a02334b8d7c5ff55bfa5f2591e3
treea2fb1fcdb51d6a038fa439edb5ba3126d1e5777d
parentc210b7c26ce8bbde894733dc04d215d423b6418c
Creating links-to-items branch
61 files changed:
links-to-items/Capfile [new file with mode: 0644]
links-to-items/README [new file with mode: 0644]
links-to-items/Rakefile [new file with mode: 0644]
links-to-items/app/controllers/application_controller.rb [new file with mode: 0644]
links-to-items/app/controllers/feed_controller.rb [new file with mode: 0644]
links-to-items/app/helpers/application_helper.rb [new file with mode: 0644]
links-to-items/app/helpers/feed_helper.rb [new file with mode: 0644]
links-to-items/app/models/feed_item.rb [new file with mode: 0644]
links-to-items/app/views/feed/index.html.erb [new file with mode: 0644]
links-to-items/app/views/feed/index.rss.builder [new file with mode: 0644]
links-to-items/app/views/feed/show.html.erb [new file with mode: 0644]
links-to-items/app/views/feed/show.rss.builder [new file with mode: 0644]
links-to-items/app/views/layouts/application.html.erb [new file with mode: 0644]
links-to-items/config/boot.rb [new file with mode: 0644]
links-to-items/config/database.sample.yml [new file with mode: 0644]
links-to-items/config/deploy.rb [new file with mode: 0644]
links-to-items/config/environment.rb [new file with mode: 0644]
links-to-items/config/environments/development.rb [new file with mode: 0644]
links-to-items/config/environments/production.rb [new file with mode: 0644]
links-to-items/config/environments/test.rb [new file with mode: 0644]
links-to-items/config/initializers/backtrace_silencers.rb [new file with mode: 0644]
links-to-items/config/initializers/inflections.rb [new file with mode: 0644]
links-to-items/config/initializers/mime_types.rb [new file with mode: 0644]
links-to-items/config/initializers/new_rails_defaults.rb [new file with mode: 0644]
links-to-items/config/initializers/session_store.rb [new file with mode: 0644]
links-to-items/config/locales/en.yml [new file with mode: 0644]
links-to-items/config/routes.rb [new file with mode: 0644]
links-to-items/db/migrate/20090717095501_create_feed_items.rb [new file with mode: 0644]
links-to-items/db/migrate/20090717095948_add_test_data.rb [new file with mode: 0644]
links-to-items/db/schema.rb [new file with mode: 0644]
links-to-items/doc/README_FOR_APP [new file with mode: 0644]
links-to-items/nbproject/project.properties [new file with mode: 0644]
links-to-items/nbproject/project.xml [new file with mode: 0644]
links-to-items/public/404.html [new file with mode: 0644]
links-to-items/public/422.html [new file with mode: 0644]
links-to-items/public/500.html [new file with mode: 0644]
links-to-items/public/favicon.ico [new file with mode: 0644]
links-to-items/public/images/rails.png [new file with mode: 0644]
links-to-items/public/javascripts/application.js [new file with mode: 0644]
links-to-items/public/javascripts/controls.js [new file with mode: 0644]
links-to-items/public/javascripts/dragdrop.js [new file with mode: 0644]
links-to-items/public/javascripts/effects.js [new file with mode: 0644]
links-to-items/public/javascripts/prototype.js [new file with mode: 0644]
links-to-items/public/robots.txt [new file with mode: 0644]
links-to-items/public/stylesheets/feedcatcher.css [new file with mode: 0644]
links-to-items/script/about [new file with mode: 0755]
links-to-items/script/console [new file with mode: 0755]
links-to-items/script/dbconsole [new file with mode: 0755]
links-to-items/script/destroy [new file with mode: 0755]
links-to-items/script/generate [new file with mode: 0755]
links-to-items/script/performance/benchmarker [new file with mode: 0755]
links-to-items/script/performance/profiler [new file with mode: 0755]
links-to-items/script/plugin [new file with mode: 0755]
links-to-items/script/runner [new file with mode: 0755]
links-to-items/script/server [new file with mode: 0755]
links-to-items/test/fixtures/feed_items.yml [new file with mode: 0644]
links-to-items/test/functional/feed_controller_test.rb [new file with mode: 0644]
links-to-items/test/performance/browsing_test.rb [new file with mode: 0644]
links-to-items/test/test_helper.rb [new file with mode: 0644]
links-to-items/test/unit/feed_item_test.rb [new file with mode: 0644]
links-to-items/test/unit/helpers/feed_helper_test.rb [new file with mode: 0644]