Displaying 8 results from an estimated 8 matches for "sbwoodsid".
Did you mean:
sbwoodside
2008 Mar 12
3
a way to restrict who can install your app, for private testing
This is something I just cooked up to allow me to restrict
temporarily who can access my app, based on an array of UIDs. It''s
messy but works. Put at the top of your controller, at the end of
your filters.
# This filter is only until we open everything up
before_filter do |c|
acceptable_uids = [''594180515'', ''122612996'']
unless
2008 Mar 06
2
patches on the rubyforge tracker
Hi I just made some changes / additions for myself in facebooker and
posted the patches on rubyforge, e.g.:
https://rubyforge.org/tracker/index.php?
func=detail&aid=18639&group_id=4187&atid=16130
(adds support for fb:dialog FBML tag)
Is this the right way to do it?
--simon
--
http://simonwoodside.com
2007 Jul 11
3
Problem with scheduled task mysteriously stopping
Hi there,
I have a scheduled task which I started from Rails, set to run every
5 minutes, it takes probably about 20-30 seconds to execute (it''s
aggregating some feeds). It ran for about 5 hours and then
mysteriously stopped -- the logs show no errors.
This kind of sucks because it''s like a silent failure, has anyone
else had this problem?
--simon
--
2008 Mar 20
1
can someone write tests for my patch?
Sorry ... I''m really lazy (and insanely busy more to the point) ..
but you''ll get support for fb:dialog...
http://rubyforge.org/tracker/?
func=detail&atid=16132&aid=18772&group_id=4187
--simon
--
http://simonwoodside.com
2008 Apr 04
0
something wrong with event_members
I''ve got this code in one of my views:
<% for event in @facebook_session.events( :uid =>
@facebook_user.uid ) %>
<p><%= @facebook_session.event_members(event.eid).length %></p>
<% end %>
It should print the # of people coming to each of this user''s events.
Let''s say that would be "5 12 8". Instead
2008 Mar 27
0
handling post-remove URL / uninstall of application
Hi there,
I''ve configured my post-remove URL (which has to be directly to my
site, not an apps.facebook.com URL) and now I''m trying to figure out
how to handle this. It''s poorly documented here:
http://wiki.developers.facebook.com/index.php/Post-Remove_URL
It seems as though support for this is currently not yet in
Facebooker. In order to get it to work, it
2004 Dec 29
2
Cluster size not supported
Hi,
I'm having a similar problem, I get "The cluster size in this system is
not supported."
I get this when running wine InstMsiA.exe (using the version from
microsoft.com). It comes up in a windows message box. I'm running wine
from yesterday's cvs.
I tried running Rein's test program from this old email and I get the
following output:
% wine fds 'c:\'
2008 Apr 07
7
Testing and Mocking
Can I second this question? Could someone provide a simple example of
how they set up a functional test for a controller that uses
facebooker?? Do you have to copy a lot of stuff from
rails_integration_test.rb ?
I guess that since we don''t have a test facebook to test against, we
have to stub out a lot of stuff right?
--simon
> Hi, I''m wondering if folks would care