diff --git a/Rakefile b/Rakefile index 13f1f9fa41b4a30788a29e12306331f7ad6c9877..3cf92aae48eaa18f35accfc5086b5053e33a02e1 100644 --- a/Rakefile +++ b/Rakefile @@ -3,5 +3,6 @@ require File.expand_path('../config/application', __FILE__) require 'rake' - +ENV['GNUPGHOME'] = File.expand_path("../../gpg/diaspora-#{Rails.env}/", __FILE__) +GPGME::check_version({}) Rails::Application.load_tasks diff --git a/app/controllers/publics_controller.rb b/app/controllers/publics_controller.rb index f4ec0d6f2843616472d6be9eb6f2b56b0a0c3220..454b614ff1d286c83b739edebf3112eef87a4889 100644 --- a/app/controllers/publics_controller.rb +++ b/app/controllers/publics_controller.rb @@ -3,6 +3,8 @@ class PublicsController < ApplicationController include PublicsHelper def hcard + @user = User.owner + render 'hcard' end def host_meta diff --git a/app/views/publics/hcard.erb b/app/views/publics/hcard.erb new file mode 100644 index 0000000000000000000000000000000000000000..e544a859265605cb5faf02d274fa2a94e0c37e5f --- /dev/null +++ b/app/views/publics/hcard.erb @@ -0,0 +1,39 @@ +<body id="hcard"> + <div id="wrap"> + <div id="core"> + <dl id="site_nav_local_views"> + <dt>Local views</dt> + <dd></dd> +</dl> + <div id="content"> + <h1><%=@user.real_name%></h1> + <div id="content_inner"> + <div id="i" class="entity_profile vcard author"> + <h2>User profile</h2> + <dl class="entity_nickname"> + <dt>Nickname</dt> + <dd> + <a href="<%=@user.url%>" rel="me" class="nickname url uid"><%= @user.real_name%></a> +</dd> +</dl> + <dl class="entity_fn"> + <dt>Full name</dt> + <dd> + <span class="fn"><%= @user.real_name %></span> +</dd> +</dl> + <dl class="entity_url"> + <dt>URL</dt> + <dd> + <a href="<%= @user.url%>" rel="me" class="url"><%= @user.url%></a> +</dd> +</dl> + <dl class="entity_note"> + <dt>Note</dt> + <dd class="note">Diaspora is awesome! vi is better than emacs!</dd> +</dl> +</div> +</div> +</div> +</div> + diff --git a/app/views/publics/webfinger.erb b/app/views/publics/webfinger.erb index 98a149c5568e34a8e4f3cfbb152bce709b133603..b2228a3f01349e0c468a4a889be6e05618f39bec 100644 --- a/app/views/publics/webfinger.erb +++ b/app/views/publics/webfinger.erb @@ -1,11 +1,14 @@ <?xml version="1.0" encoding="UTF-8"?> <XRD xmlns="http://docs.oasis-open.org/ns/xri/xrd-1.0"> <Subject>acct:<%=@user.email%></Subject> - <Alias><%=@user.url%></Alias> - <!--<Link rel="http://webfinger.net/rel/profile-page" type="text/html" href="<%=@user.url%>public/profile"/> - <Link rel="http://schemas.google.com/g/2010#updates-from" type="application/atom+xml" href="<%=@user.url%>status_messages.atom"/> + <Alias>http://www.identi.ca/user/169966</Alias> + <Link rel="http://webfinger.net/rel/profile-page" type="text/html" href="http://identi.ca/user/169966"/> + <Link rel="http://microformats.org/profile/hcard" type="text/html" href="<%@user.url%>hcard"/> + <!--<Link rel="http://schemas.google.com/g/2010#updates-from" type="application/atom+xml" href="<%=@user.url%>status_messages.atom"/> <Link rel="http://microformats.org/profile/hcard" type="text/html" href="<%@user.url%>public/hcard"/> + --!> <Link rel="http://ostatus.org/schema/1.0/subscribe" template="http://identi.ca/main/ostatussub?profile={uri}"/> - --!> + </XRD> + diff --git a/config/routes.rb b/config/routes.rb index 47f98ed934c3d678c7014d6f91019cfe6e75747f..9117e42e184ac0fa7738c1d15c4d07cdc889f36d 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -22,6 +22,7 @@ Diaspora::Application.routes.draw do |map| match 'hubbub', :to => 'publics#hubbub' match '.well-known/host-meta', :to => 'publics#host_meta' match 'webfinger', :to => 'publics#webfinger' + match 'hcard', :to => 'publics#hcard' root :to => 'dashboards#index' end diff --git a/db/seeds/backer.rb b/db/seeds/backer.rb index d063797623a72602b0d087b4008611659dc1665d..66952e09891105a6c942bb99677986e7e34fc1ba 100644 --- a/db/seeds/backer.rb +++ b/db/seeds/backer.rb @@ -7,7 +7,8 @@ # Mayor.create(:name => 'Daley', :city => citie require 'config/environment' - +ENV['GNUPGHOME'] = File.expand_path("../../../gpg/diaspora-#{Rails.env}/", __FILE__) +GPGME::check_version({}) def create(backer_number) diff --git a/db/seeds/dev.rb b/db/seeds/dev.rb index 1c285c59b3716d2441940fda3aca1e79cf0ea89f..8605f63f467ad14c238cfb3628aeb704aeaee150 100644 --- a/db/seeds/dev.rb +++ b/db/seeds/dev.rb @@ -7,9 +7,10 @@ # Mayor.create(:name => 'Daley', :city => citie require 'config/environment' - +ENV['GNUPGHOME'] = File.expand_path("../../../gpg/diaspora-#{Rails.env}/", __FILE__) +GPGME::check_version({}) # Create seed user -user = User.create( :email => "robert@joindiaspora.com", :password => "monkey", :profile => Profile.new( :first_name => "bobert", :last_name => "brin" )) +user = User.create( :email => "robert@joindiaspora.com", :password => "evankorth", :profile => Profile.new( :first_name => "bobert", :last_name => "brin" )) names = [ ["George", "Washington"], ["John", "Adams"], diff --git a/db/seeds/tom.rb b/db/seeds/tom.rb index 364580feda7df0b0e2718ef9737132997acac520..03ca0a2862b3192e97a9afe0dd972310b9d514d5 100644 --- a/db/seeds/tom.rb +++ b/db/seeds/tom.rb @@ -7,7 +7,8 @@ # Mayor.create(:name => 'Daley', :city => citie require 'config/environment' - +ENV['GNUPGHOME'] = File.expand_path("../../../gpg/diaspora-#{Rails.env}/", __FILE__) +GPGME::check_version({}) # Create seed user user = User.create( :email => "tom@tom.joindiaspora.com", :password => "evankorth", :url => "http://tom.joindiaspora.com/", :profile => Profile.new( :first_name => "Alexander", :last_name => "Hamiltom" )) diff --git a/gpg/diaspora-development/EMPTY b/gpg/diaspora-development/EMPTY new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/gpg/diaspora-production/EMPTY b/gpg/diaspora-production/EMPTY new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/gpg/diaspora-test/EMPTY b/gpg/diaspora-test/EMPTY new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391