Displaying 20 results from an estimated 2000 matches similar to: "How does 37signals code their "Open Bar" (Open ID) feature?"
2007 Jul 27
2
Specifying format in ActiveResource
Hi all,
I have a need for making ActiveResource have the ability to specify
the format much like you can specify the site. So, right now (unless
I am not understanding the code, which could be, since I am a Rails
and Ruby newbie), all calls end up at http://something/call.xml. I
want to be able to call http://something/call.rss or .vcf, etc.
This is stemming from the Highrise api in 37
2008 Jan 31
1
RSpec and the Basecamp API
I realise that this is kind of a basic question but I''m new to rspec and
still trying to work out how to do things. I''m working on a rails project
that requires basecamp integration via the api, which is fairly trivial to
use via the basecamp.rb wrapper:
Connection:
basecamp = Basecamp.new(APP_CONFIG[''api_host''], APP_CONFIG[''api_username''],
2006 Jan 05
3
Ruby OpenID library and OpenIDLoginGenerator
Version 0.9.2 of the Ruby OpenID library has been released. This latest
release contains a port of the rails LoginGenerator (OpenIDLoginGenerator)
that uses OpenID for authentication.
Read more and download the library:
http://www.openidenabled.com/openid/libraries/ruby/
http://raa.ruby-lang.org/project/openid/
A bit about OpenID:
OpenID is a URL based identity system. An OpenID identity is
2006 Jul 26
2
How to highlight the search term in the search result
In the ''basecamp'' product from 37signals if I search for ''ruby'' the I get a
bunch of results. In the search result page the search term (ruby in this
case) is highlighted.
I was wondering how to accomplish the same.
How to highlight the ''search term'' in the search result? Is there any
already existing utility that I could use?
Thanks.
2006 May 27
2
[Repost] OpenID and my db schema
Hi,
I posted this before, but didn''t get an answer, so I''m trying again.
I''ve recently decided to use OpenID to let users log in to my site
instead of old fashioned account creation. They''ll be able to add a
small amount of personal details (about three things) to their
account, and post messages in the site BB. I have an openid_users
table which stores the
2009 Jul 28
2
Rails on OS X problem
Hi All,
So far I have been unable to get rails working on a 10.5.6 OS X
installation. Every ''rails'' command ends with the following error:
/Library/Ruby/Site/1.8/rubygems.rb:827:in `report_activate_error'':
RubyGem version error: ruby-openid(2.1.7 not ~> 2.0.0)
(Gem::LoadError)
I tried uninstalling and then re-installing ruby-openid, but that
doesn''t help.
2006 Mar 16
5
TimeZone, TZInfo, daylight savings, and composed_of
Does anyone know the best way to track time zone information. There doesn''t
seem to be much documentation on this. So far it seems like a simple db
field like
create table accounts (
id int unsigned not null auto_increment,
name varchar(50) not null,
time_zone varchar(50) not null,
...
primary key (id)
)
and a class like
class Account < AR
...
2009 Jan 16
5
Help: OpenId and restful_acl
Hi All,
I have restful_authentication with restful_acl installed on my
app, now I want to use OpenId with restful_acl,so my question is... does
this make any problems for me or not? I haven''t explored the OpenId for ROR
yet, and I am going to do that now,but I just wan
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed
2009 Sep 24
13
Rails Authentication Tutorial
Does anyone know a good authentication tutorial they can suggest? I''ve
tried several restful authentication ones and an authlogic one on
RailsCast. But with each one I try, something seems to be missing in
the tutorial and I can''t get it to work. I''m new to Rails so it''s
possible user error on my part.
I''m on Mac OS X 10.5 and I generate all my apps in
2008 May 19
6
Sample Code, quick simple openid auth
You''ll need to install the ''openid'' gem for this, and require it in
your camping app:
class Login < R ''/login''
def get
this_url = ''http:'' + URL(''/login'').to_s
unless input.finish.to_s == ''1''
# start doing the auth here
begin
2006 May 19
9
[NEW SITE] psitsNOT
psitsNOT ("Photoshop it''s NOT") is an over-the-web image editing
application made with Rails, RMagick, and AJAX. It provides everything
you need to make a raw digital image look good on the web.
http://psitsnot.alevans.com
You''ll need an OpenID URL to log in.
Feedback is welcomed!
--Al Evans
--
Posted via http://www.ruby-forum.com/.
2008 May 27
6
case...when statement bug when using openid_authentication?
Hello people!
I''m asking for help to solve a little problem concerning the usage of
the openid_authentication plugin. I''m following the README file included
by DHH, so I wrote this method in my SessionsController:
def open_id_authentication(identity_url)
# Pass optional :required and :optional keys to specify what sreg
fields you want.
# Be sure to yield
2007 Dec 06
3
anybody use OPEN_ID to authenticate?
how did it go?
here is the link if you are interested: http://openid.net/what/
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe
2006 May 09
6
To Do list project?
I''m looking for a good web-based to do list app. Essentially, I''d like
to use Basecamp''s todo management system, but that''s not an option
since I can''t install Basecamp on a server I own. The information
being tracked in the list cannot be sent out of my intranet.
I would imagine that there are a couple of open source rails apps that
would meet my
2019 Dec 06
4
Dovecot & OAuth
I changed some of the tls options following the document, now config is
following:
tokeninfo_url =
https://keycloak.com/auth/realms/mail/protocol/openid-connect/token
introspection_url =
https://dovecot:7598e21b-ec34-481f-80d0-059bddae0923 at keycloak.com/auth/realms/demo/protocol/openid-connect/token/introspect
introspection_mode = post
debug = yes
rawlog_dir = /tmp/oauth2
#force_introspection
2010 Mar 24
3
How to include a ruby gem environment.rb file?
I''m doing a Web Service Based on a page I found
(http://blog.complitech.net/web-services-basics-ruby-on-rails/) using
the rails version 2.3.4, the web service is already working, but when
working on a version Previous:
RAILS_GEM_VERSION = ''2 .0.2 ''unless defined? RAILS_GEM_VERSION
I can not run the service.
On the previous page, there''s a part that says:
3)
2006 Apr 11
3
fun/flamebait: Java Web Devel Stacks
I''ll pose a question partly for fun, partly out of interest to see
what everyone else is doing to survive the pain of the day job. It''s
for the professional J2EE developer converts out there.
Let''s say someone hired you to write a Basecamp clone, but it has to
be done in Java, say on the Tomcat or JBoss platform. What does your
stack look like now that you''ve
2006 Mar 18
10
collection_select''s linked
I created a form with two collection_select, country and state and would
like to bring up to date the state list when to select a new country.
How I can make this in Rails?
Thanks
Eleudson
Brazil
<p><label for="person_country_id">Country</label><br/>
<%= collection_select(:person, :country_id, @countries, :id, :name)
%></p>
<p><label
2006 Jul 16
2
how does base camp manage there accounts
hi,
Cant find any information this anywhere so was wondering if anyone had
any ideas.
Basically when you go to basecamp.com it allows you to sign up for a
account and gives you a url username.projectpath.com
I was just wondering how they do this, and if each account has there own
database or if it is all stored in one.
thanks
scott
--
Posted via http://www.ruby-forum.com/.
2006 May 25
2
basecamp prefixes
basecamp prefixes each url with a client name...
client1.updatelog.com/todos
client2.updatelog.com/milestones
any ideas on how this is done?
- one app?
- one app per client?
- one app per domain?
--
Posted via http://www.ruby-forum.com/.