search for: install_url

Displaying 8 results from an estimated 8 matches for "install_url".

Did you mean: __install_url
2008 Jul 28
2
Profile updates using profile_main
...x to appear (either on the main profile page or the boxes tab). I''m currently using the Facebooker Publisher to send our updates. What I had been using prior to updating to the newest Facebooker and works fine with the old FB site is this: def profile_update(facebook_user, user, install_url) send_as :profile from facebook_user recipients facebook_user fbml = render(:partial=>"/facebook/profile_fbml",:locals => { :user => user, :fb_user => facebook_user, :install_url => install_url }) profile(fbml) end My understanding is the ne...
2008 Aug 19
6
redirect with application add
There are groups within our app that people can be invited too. If a user recieves an invite to a group and hasn''t yet added the application the filter chain ends up redirecting them to the main canvas page instead of the the group page directly. Is there a way to handle this if the user hasn''t installed the app, I tried redirect_back_or_default in one of my controllers but it
2008 Jun 12
0
Double Frame Problem
...= session[:facebook_session].login_url -%>" </script>} end def application_is_not_installed_by_facebook_user render :layout => false, :inline => %Q{<script type="text/javascript"> top.location.href = "<%= session[:facebook_session].install_url -%>" </script>} end Has anyone got a more elegant solution? (I think) This approach is messing up my Selenium tests (as Selenium uses frames and so redirecting "top" has unwanted effects). In hopeful expectation ...
2012 Mar 02
0
devtools 0.6
...ly during package loading. INSTALLATION * remote installation will ensure the configure file is executable. * all external package installation functions are vectorised so you can install multiple packages at time * new `install_gitorious` function install packages in gitorious repos. * new `install_url` function for installing package from an arbitrary url * include `install_version` function from Jeremy Stephens for installing a specific version of a CRAN package from the archive. BETTER WINDOWS BEHAVIOUR * better check for OS type (thanks to Brian Ripley) * better default paths for 64-bit...
2012 Mar 02
0
devtools 0.6
...ly during package loading. INSTALLATION * remote installation will ensure the configure file is executable. * all external package installation functions are vectorised so you can install multiple packages at time * new `install_gitorious` function install packages in gitorious repos. * new `install_url` function for installing package from an arbitrary url * include `install_version` function from Jeremy Stephens for installing a specific version of a CRAN package from the archive. BETTER WINDOWS BEHAVIOUR * better check for OS type (thanks to Brian Ripley) * better default paths for 64-bit...
2012 Jun 20
0
Devtools 0.7
...ce` to make debugging a little easier. * All remote install functions give better error messages in the case of http errors (Fixes #82). * `install` has new quick option to make package installation faster, by sacrificing documentation, demos and multi-architecture binaries. (Fixes #77) * `install_url`, `install_github` and `install_gitorious` gain a subdir argument which makes it possible to install packages that are contained within a sub-directory of a repository or compressed file. (Fixes #64) CHECKING * `with_debug` function temporarily sets env vars so that compilation is performed...
2012 Jun 20
0
Devtools 0.7
...ce` to make debugging a little easier. * All remote install functions give better error messages in the case of http errors (Fixes #82). * `install` has new quick option to make package installation faster, by sacrificing documentation, demos and multi-architecture binaries. (Fixes #77) * `install_url`, `install_github` and `install_gitorious` gain a subdir argument which makes it possible to install packages that are contained within a sub-directory of a repository or compressed file. (Fixes #64) CHECKING * `with_debug` function temporarily sets env vars so that compilation is performed...
2008 Jan 29
3
Facebook Redirects to Callback Path after log in
Hey, I am wondering if anyone has run into this issue before. I can''t seem to figure out what Facebook is doing. I have an application that only requires Facebook Authentication, the user doesn''t need to "add" the app. So at the top of my main controller I have class GettingStartedController < ApplicationController ensure_authenticated_to_facebook ......