- Timestamp:
- 01/20/08 11:59:52 (5 years ago)
- Location:
- websites/feedlist
- Files:
-
- 37 added
- 6 modified
- 1 moved
-
app/controllers/feeds_controller.rb (added)
-
app/controllers/lists_controller.rb (added)
-
app/helpers/feeds_helper.rb (added)
-
app/helpers/lists_helper.rb (added)
-
app/models/feed.rb (added)
-
app/models/list.rb (added)
-
app/models/user.rb (modified) (1 diff)
-
app/views/feeds (added)
-
app/views/feeds/edit.html.erb (added)
-
app/views/feeds/index.html.erb (added)
-
app/views/feeds/index.opml.builder (added)
-
app/views/feeds/new.html.erb (added)
-
app/views/feeds/show.html.erb (added)
-
app/views/layouts/application.html.erb (modified) (1 diff)
-
app/views/lists (added)
-
app/views/lists/edit.html.erb (added)
-
app/views/lists/index.atom.builder (added)
-
app/views/lists/index.html.erb (added)
-
app/views/lists/new.html.erb (added)
-
app/views/lists/show.html.erb (added)
-
app/views/users/edit.html.erb (modified) (1 diff)
-
config/initializers/mime_types.rb (modified) (1 diff)
-
config/routes.rb (modified) (1 diff)
-
db/migrate/002_create_feeds.rb (added)
-
db/migrate/003_create_lists.rb (added)
-
db/schema.rb (modified) (1 diff)
-
public/index2.html (moved) (moved from websites/feedlist/public/index.html)
-
public/stylesheets/scaffold.css (added)
-
test/fixtures/feeds.yml (added)
-
test/fixtures/lists.yml (added)
-
test/functional/feeds_controller_test.rb (added)
-
test/functional/lists_controller_test.rb (added)
-
test/unit/feed_test.rb (added)
-
test/unit/list_test.rb (added)
-
vendor/plugins/atom_feed_helper (added)
-
vendor/plugins/atom_feed_helper/CHANGELOG (added)
-
vendor/plugins/atom_feed_helper/MIT-LICENSE (added)
-
vendor/plugins/atom_feed_helper/README (added)
-
vendor/plugins/atom_feed_helper/Rakefile (added)
-
vendor/plugins/atom_feed_helper/init.rb (added)
-
vendor/plugins/atom_feed_helper/lib (added)
-
vendor/plugins/atom_feed_helper/lib/atom_feed_helper.rb (added)
-
vendor/plugins/atom_feed_helper/test (added)
-
vendor/plugins/atom_feed_helper/test/atom_feed_helper_test.rb (added)
Legend:
- Unmodified
- Added
- Removed
-
websites/feedlist/app/models/user.rb
r3997 r5027 1 1 require 'digest/sha1' 2 2 class User < ActiveRecord::Base 3 has_many :lists 4 3 5 # Virtual attribute for the unencrypted password 4 6 attr_accessor :password -
websites/feedlist/app/views/layouts/application.html.erb
r3997 r5027 4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 5 5 <title>feedlist</title> 6 <%= auto_discovery_link_tag(:atom, formatted_lists_url(:atom))%> 7 <%= stylesheet_link_tag 'scaffold' %> 6 8 </head> 7 9 -
websites/feedlist/app/views/users/edit.html.erb
r3997 r5027 19 19 </p> 20 20 <p> 21 <label for="password">Password (for API access)</label><br/> 22 <%= f.password_field :password %> 23 </p> 24 <p> 25 <label for="password_confirmation">Confirm Password</label><br/> 26 <%= f.password_field :password_confirmation %> 27 </p> 28 29 <p> 21 30 <%= submit_tag 'Update Profile', :or => link_to( "cancel", "/") %> 22 31 </p> -
websites/feedlist/config/initializers/mime_types.rb
r3618 r5027 4 4 # Mime::Type.register "text/richtext", :rtf 5 5 # Mime::Type.register_alias "text/html", :iphone 6 Mime::Type.register_alias "text/xml", :opml -
websites/feedlist/config/routes.rb
r3894 r5027 1 1 ActionController::Routing::Routes.draw do |map| 2 map.root :controller => 'lists' 3 map.resources :lists, :has_many => :feeds 4 5 map.resources :feeds 6 2 7 map.resource :session, :collection => { :begin => :post, :complete => :get } 3 8 -
websites/feedlist/db/schema.rb
r3898 r5027 10 10 # It's strongly recommended to check this file into your version control system. 11 11 12 ActiveRecord::Schema.define(:version => 1) do 12 ActiveRecord::Schema.define(:version => 3) do 13 14 create_table "feeds", :force => true do |t| 15 t.string "title" 16 t.string "uri" 17 t.integer "list_id" 18 t.datetime "created_at" 19 t.datetime "updated_at" 20 end 21 22 create_table "lists", :force => true do |t| 23 t.string "title" 24 t.text "description" 25 t.boolean "share", :default => true 26 t.boolean "public", :default => true 27 t.integer "user_id" 28 t.datetime "created_at" 29 t.datetime "updated_at" 30 end 13 31 14 32 create_table "open_id_associations", :force => true do |t|
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)