]> cat aescling's git repositories - mastodon.git/commit
Made some progress
authorEugen Rochko <eugen@zeonfederated.com>
Mon, 22 Feb 2016 15:00:20 +0000 (16:00 +0100)
committerEugen Rochko <eugen@zeonfederated.com>
Mon, 22 Feb 2016 15:00:20 +0000 (16:00 +0100)
commit709c6685a90bb819696566cc9e42e587546d72dc
tree272783009e0a0c8b13b8003dc4bc4e58f3b0b84b
parent9c4856bdb11fc9311ab30a97224cee3dfaec492f
Made some progress
61 files changed:
Gemfile
Gemfile.lock
app/api/mastodon/entities.rb
app/api/mastodon/ostatus.rb
app/api/mastodon/rest.rb
app/assets/javascripts/application.js
app/assets/javascripts/atom.coffee [new file with mode: 0644]
app/assets/javascripts/home.coffee [new file with mode: 0644]
app/assets/javascripts/profile.coffee [new file with mode: 0644]
app/assets/javascripts/xrd.coffee [new file with mode: 0644]
app/assets/stylesheets/atom.scss [new file with mode: 0644]
app/assets/stylesheets/home.scss [new file with mode: 0644]
app/assets/stylesheets/profile.scss [new file with mode: 0644]
app/assets/stylesheets/xrd.scss [new file with mode: 0644]
app/controllers/atom_controller.rb [new file with mode: 0644]
app/controllers/home_controller.rb [new file with mode: 0644]
app/controllers/profile_controller.rb [new file with mode: 0644]
app/controllers/xrd_controller.rb [new file with mode: 0644]
app/helpers/application_helper.rb
app/helpers/atom_helper.rb [new file with mode: 0644]
app/helpers/home_helper.rb [new file with mode: 0644]
app/helpers/profile_helper.rb [new file with mode: 0644]
app/helpers/xrd_helper.rb [new file with mode: 0644]
app/models/account.rb
app/models/follow.rb [new file with mode: 0644]
app/models/status.rb
app/models/stream_entry.rb [new file with mode: 0644]
app/models/user.rb [new file with mode: 0644]
app/services/fetch_feed_service.rb
app/services/follow_remote_account_service.rb [moved from app/services/follow_remote_user_service.rb with 81% similarity]
app/services/follow_service.rb [new file with mode: 0644]
app/services/process_feed_service.rb [moved from app/services/process_feed_update_service.rb with 94% similarity]
app/services/process_interaction_service.rb [new file with mode: 0644]
app/services/setup_local_account_service.rb [new file with mode: 0644]
app/views/atom/user_stream.xml.ruby [new file with mode: 0644]
app/views/home/index.html.haml [new file with mode: 0644]
app/views/layouts/application.html.erb [deleted file]
app/views/layouts/application.html.haml [new file with mode: 0644]
app/views/profile/show.html.haml [new file with mode: 0644]
app/views/xrd/host_meta.xml.ruby [new file with mode: 0644]
app/views/xrd/webfinger.xml.ruby [new file with mode: 0644]
config/environments/development.rb
config/initializers/ostatus.rb [new file with mode: 0644]
config/routes.rb
db/migrate/20160221003140_create_users.rb [new file with mode: 0644]
db/migrate/20160221003621_create_follows.rb [new file with mode: 0644]
db/migrate/20160222122600_create_stream_entries.rb [new file with mode: 0644]
db/migrate/20160222143943_add_profile_fields_to_accounts.rb [new file with mode: 0644]
db/schema.rb
spec/controllers/atom_controller_spec.rb [new file with mode: 0644]
spec/controllers/home_controller_spec.rb [new file with mode: 0644]
spec/controllers/profile_controller_spec.rb [new file with mode: 0644]
spec/controllers/xrd_controller_spec.rb [new file with mode: 0644]
spec/helpers/atom_helper_spec.rb [new file with mode: 0644]
spec/helpers/home_helper_spec.rb [new file with mode: 0644]
spec/helpers/profile_helper_spec.rb [new file with mode: 0644]
spec/helpers/xrd_helper_spec.rb [new file with mode: 0644]
spec/models/follow_spec.rb [new file with mode: 0644]
spec/models/stream_spec.rb [new file with mode: 0644]
spec/models/user_spec.rb [new file with mode: 0644]
spec/views/profile/show.html.haml_spec.rb [new file with mode: 0644]