From c68a0266583d1f650a131de29635680be1fb239c Mon Sep 17 00:00:00 2001 From: maxwell Date: Wed, 6 Oct 2010 18:19:58 -0700 Subject: [PATCH 1/3] MS changed the profile edit field to be private --- app/views/users/_profile.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/users/_profile.haml b/app/views/users/_profile.haml index 8cffa53cb..cef161127 100644 --- a/app/views/users/_profile.haml +++ b/app/views/users/_profile.haml @@ -49,10 +49,10 @@ = p.text_field :last_name, :value => @profile.last_name %p = f.label :password - = f.text_field :password + = f.password_field :password %p = f.label :password_confirmation - = f.text_field :password_confirmation + = f.password_field :password_confirmation #submit_block From ee4c197b897b9fbcce28b8d1b055c12a8cf8853b Mon Sep 17 00:00:00 2001 From: danielvincent Date: Wed, 6 Oct 2010 18:32:56 -0700 Subject: [PATCH 2/3] fixed hcard finder on image --- lib/hcard.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hcard.rb b/lib/hcard.rb index d43326b56..041f4d384 100644 --- a/lib/hcard.rb +++ b/lib/hcard.rb @@ -8,6 +8,6 @@ module HCard {:given_name => doc.css(".given_name").text, :family_name => doc.css(".family_name").text, :url => doc.css("#pod_location").text, - :photo => doc.css(".photo").src} + :photo => doc.css(".photo[src]").text} end end From 0fb091ebbc14c6232ccaef8df4597f574c69f599 Mon Sep 17 00:00:00 2001 From: maxwell Date: Wed, 6 Oct 2010 18:38:37 -0700 Subject: [PATCH 3/3] MS pretty sure we dont need to get the oauth path every time we load the public aspect... --- app/controllers/aspects_controller.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/aspects_controller.rb b/app/controllers/aspects_controller.rb index 3b9180be8..3d750d41f 100644 --- a/app/controllers/aspects_controller.rb +++ b/app/controllers/aspects_controller.rb @@ -49,8 +49,8 @@ class AspectsController < ApplicationController end def public - @fb_access_url = MiniFB.oauth_url(FB_APP_ID, APP_CONFIG[:pod_url] + "services/create", - :scope=>MiniFB.scopes.join(",")) + # @fb_access_url = MiniFB.oauth_url(FB_APP_ID, APP_CONFIG[:pod_url] + "services/create", + # :scope=>MiniFB.scopes.join(",")) @posts = current_user.visible_posts(:person_id => current_user.person.id, :public => true).paginate :page => params[:page], :per_page => 15, :order => 'created_at DESC'