Displaying 4 results from an estimated 4 matches for "facebook_messages".
2008 Apr 10
1
error_messages_for
I''ve been all good and written some great validation in my models, but
when something doesn''t validate, I''m used to using error_messages_for
in my view to display the errors.
Is there some sort of facebook_messages_for equivalent in facebooker?
Or perhaps some parameter I can pass to facebook_messages?
Justin
2008 Jan 31
3
presenting validation errors via fbml?
Hi Facebookers,
Is there a helper or suggested approach for presenting validation
errors on an fbml form?
Something to translate rails error markup to fbml:error markup?
thanks
Joel
2008 Mar 14
14
Facebooker MQ now on RubyForge
...:
1) script/plugin install
http://facebooker-mq.rubyforge.org/svn/trunk/facebooker-mq/
2) You will need a migration to create the table that holds the messages.
You can think if this table as the queue
class CreateFacebookMessages < ActiveRecord::Migration
def self.up
create_table :facebook_messages do |t|
t.column(:session_key, :string, :null => false)
t.column(:expires, :string, :null => false, :default => "0")
t.column(:uid, :integer, :null => false)
t.column(:api_method, :string, :null => false)
t.column(:params, :text,...
2008 Jan 18
0
faceboooker_mq
...) script/plugin install
http://daveonrails.svnrepository.com/svn/projects/facebooker_mq
2) You will need a migration to create the table that holds the
messages. You can think if this table as the queue
class CreateFacebookMessages < ActiveRecord::Migration
def self.up
create_table :facebook_messages do |t|
t.column(:session_key, :string, :null => false)
t.column(:expires, :string, :null => false, :default => "0")
t.column(:uid, :integer, :null => false)
t.column(:method, :string, :null => false)
t.column(:params, :text, :nul...