Made some progress
This commit is contained in:
parent
9c4856bdb1
commit
709c6685a9
61 changed files with 570 additions and 37 deletions
35
app/views/atom/user_stream.xml.ruby
Normal file
35
app/views/atom/user_stream.xml.ruby
Normal file
|
@ -0,0 +1,35 @@
|
|||
Nokogiri::XML::Builder.new do |xml|
|
||||
xml.feed(xmlns: 'http://www.w3.org/2005/Atom', 'xmlns:thr': 'http://purl.org/syndication/thread/1.0', 'xmlns:activity': 'http://activitystrea.ms/spec/1.0/') do
|
||||
xml.id_ atom_user_stream_url(id: @account.id)
|
||||
xml.title @account.display_name
|
||||
xml.subtitle @account.note
|
||||
xml.updated stream_updated_at
|
||||
|
||||
xml.author do
|
||||
xml['activity'].send('object-type', 'http://activitystrea.ms/schema/1.0/person')
|
||||
xml.uri profile_url(name: @account.username)
|
||||
xml.name @account.username
|
||||
xml.summary @account.note
|
||||
|
||||
xml.link(rel: 'alternate', type: 'text/html', href: profile_url(name: @account.username))
|
||||
end
|
||||
|
||||
xml.link(rel: 'alternate', type: 'text/html', href: profile_url(name: @account.username))
|
||||
xml.link(rel: 'hub', href: '')
|
||||
xml.link(rel: 'salmon', href: salmon_url(@account))
|
||||
xml.link(rel: 'self', type: 'application/atom+xml', href: atom_user_stream_url(id: @account.id))
|
||||
|
||||
@account.stream_entries.each do |stream_entry|
|
||||
xml.entry do
|
||||
xml.id_ unique_tag(stream_entry.created_at, stream_entry.activity_id, stream_entry.activity_type)
|
||||
xml.published stream_entry.activity.created_at.iso8601
|
||||
xml.updated stream_entry.activity.updated_at.iso8601
|
||||
xml.content({ type: 'html' }, stream_entry.content)
|
||||
xml.title
|
||||
|
||||
xml['activity'].send('verb', "http://activitystrea.ms/schema/1.0/#{stream_entry.verb}")
|
||||
xml['activity'].send('object-type', "http://activitystrea.ms/schema/1.0/#{stream_entry.object_type}")
|
||||
end
|
||||
end
|
||||
end
|
||||
end.to_xml
|
1
app/views/home/index.html.haml
Normal file
1
app/views/home/index.html.haml
Normal file
|
@ -0,0 +1 @@
|
|||
Mastodon
|
|
@ -1,14 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Mastodon</title>
|
||||
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
||||
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
||||
<%= csrf_meta_tags %>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<%= yield %>
|
||||
|
||||
</body>
|
||||
</html>
|
10
app/views/layouts/application.html.haml
Normal file
10
app/views/layouts/application.html.haml
Normal file
|
@ -0,0 +1,10 @@
|
|||
!!!
|
||||
%html
|
||||
%head
|
||||
%meta{:content => "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/
|
||||
%title Mastodon
|
||||
= stylesheet_link_tag 'application', media: 'all'
|
||||
= javascript_include_tag 'application'
|
||||
= csrf_meta_tags
|
||||
%body
|
||||
= yield
|
2
app/views/profile/show.html.haml
Normal file
2
app/views/profile/show.html.haml
Normal file
|
@ -0,0 +1,2 @@
|
|||
%h1 Profile#show
|
||||
%p Find me in app/views/profile/show.html.haml
|
5
app/views/xrd/host_meta.xml.ruby
Normal file
5
app/views/xrd/host_meta.xml.ruby
Normal file
|
@ -0,0 +1,5 @@
|
|||
Nokogiri::XML::Builder.new do |xml|
|
||||
xml.XRD(xmlns: 'http://docs.oasis-open.org/ns/xri/xrd-1.0') do
|
||||
xml.Link(rel: 'lrdd', type: 'application/xrd+xml', template: @webfinger_template)
|
||||
end
|
||||
end.to_xml
|
8
app/views/xrd/webfinger.xml.ruby
Normal file
8
app/views/xrd/webfinger.xml.ruby
Normal file
|
@ -0,0 +1,8 @@
|
|||
Nokogiri::XML::Builder.new do |xml|
|
||||
xml.XRD(xmlns: 'http://docs.oasis-open.org/ns/xri/xrd-1.0') do
|
||||
xml.Subject @canonical_account_uri
|
||||
xml.Link(rel: 'http://schemas.google.com/g/2010#updates-from', type: 'application/atom+xml', href: atom_user_stream_url(id: @account.id))
|
||||
xml.Link(rel: 'salmon', href: salmon_url(@account))
|
||||
xml.Link(rel: 'magic-public-key', href: @magic_key)
|
||||
end
|
||||
end.to_xml
|
Loading…
Add table
Add a link
Reference in a new issue