similar to: Partial-Form validation from multiple pages (f.e. login-partial)

Displaying 20 results from an estimated 10000 matches similar to: "Partial-Form validation from multiple pages (f.e. login-partial)"

2007 Dec 30
1
restful_authentication plugin + session timeout + single login session?
Hi, I am using restful authentication plugin 1) I was wondering if there is a way to do a session timeout using the restful_authentication. How do I hack it to get the behaviour I need? 2) On top of that, I may need to ensure that a particular user can only login from a single PC. If the user is already logged in at a PC and attempts to login from another PC, the session in which he signs in
2011 Jun 24
1
Samba and Ldap
Hi, all the users here are stored in a LDAP-Server, means authentication on a workstation (linux) is over LDAP. Yesterday I configured a Samba-Server, it also uses the LDAP-Server as its backend. I found out, that with a call "smbpasswd -a user" an existing user gets all the attributes from the sambaSamAccount automaticly. But here is my first question - for this call I need to know the
2007 Dec 27
0
Silent Validation Failures
Hello, I''m having trouble with after_validation_on_create causing my validations to fail silently. I''ve got a restful_authentication based user model that requires a number of things from the user: email, dob, gender, etc. When a user is created, all of these are validated in various ways (presence, inclusion_of, etc.). Afterwards, I call three protected methods using
2008 Jan 17
0
It seems to be a restful_authentication bug (was Re: Re: named route new_session not working)
On 1/16/08, Jimmy Palmer <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote: > > sorry for the ambiguity. I will work on being more descriptive. :) > > In the method access_denied in the file authenticated_system.rb from > restful athentication, it generates this: > > def access_denied > respond_to do |format| > format.html do >
2008 Dec 11
2
restful_authentication errors
When I run [code] script/generate authenticated user --include-activation [/ code] it seems to work at first, but then it reports: " The name ''SessionsHelper'' is either already used in your application or reserved by Ruby on Rails. Please choose an alternative and run this generator again " I''ve heard that having both acts_as_authenticated and
2003 Sep 03
1
Printing!
HEEELP! I have been running Samba ro nearly eighteen months now with out any hitches. Recently the IP address of the Samba server was changed and now windows machines can no longer print the the Linux printer. Does any body know what has happened and where I can look. I have looked everywhere for settings but cannot find reference to printer values. Any help would be gratefully received.
2008 Mar 14
1
how do I get a older version of restful_authentication
I''m currently running rails 1.2.6 and I''ve got the new restful_authentication running, unfortunately, the new version of the plugin does not support the older rails very well. how can I get an older version of restful_authentication (pre rails 2.0.2)? I''m getting this error: undefined method `authenticate_with_http_basic'' when I put "include
2008 Sep 08
2
Restful Authentication and State Machine state transfer question
I''m adding some code to a project using restful_authentication and acts_as_statemachine In the create method for a user there is the following code generated by the restful_authentication template @user.regster! if user.valid? And this will save and the user record if it is valid. I understand that the statemachine will then change the state from passive to pending. It will guard
2007 May 23
6
RESTful RESOURCE PARTIAL UPDATE
I have modified scaffolding code slightly to get three edit actions and three update actions. The requirement: to allow users to edit attributes for the same model from seperate forms instead of one form, while using the given scaffolding code and performing model validations. I am using restful_authentication with the login email password validations defined. class users_controller
2007 Aug 04
2
Modifying the restful_authentication plugin / Classes creating instances of themselves.
Hi, I''m trying to modify the restful_authentication plugin so that it first authenticates against LDAP (Active Directory), if successful, it tries to find a matching user with the same username in the database, through a model ''user''. If it finds a user, it updates a last_login attribute; if it doesn''t find one, it creates one. The "remember me"
2008 Oct 17
1
Re: Group Authentication Plugin
You may want to look at restful_authentication plugin. Before that, I would highly recommend that you go through learningrails.com podcasts and screencasts here: http://www.buildingwebapps.com/podcasts Screecast 11 explains in detail how to use the restful_authentication plugin. Bharat --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed
2007 Dec 12
3
merbful_authentication
Since there are so many efforts at the moment to port restful_authentication I figured I''d put a repo up so that it can be a collaborative effort. You can pick up a copy of the repo at git clone http://snatcht.com/git/merbful_authentication.git at the moment the app is in a branch. Not in the master. get the branch by git checkout -b remote/initial origin/inital_repo At the moment
2003 Sep 04
0
Re-2: Printing!
Don't bother sending me word documents. I couldn't even open your attachment with StarOffice. How about nice plain text? It will save a LOT of bandwidth. If you insist on using a highly formated document, try PDF or postscript. Joel martin@digconn.co.uk wrote: >printer installed via ADD Prrinters > >We can see and interact with the Samba server. > >It is ok only printing
2009 Aug 14
0
Chat application
Hi All, I''m building an app using restful_authentication which I am familiar with. I would like to try a simple chat application so that logged in users can IM on the site. I have read little about using the Juggernaut plugin and it seems promising. before I get going, does anyone know of another plugin or tutorial that covers IM specifically with restful_authentication? Thanks, Dan
2007 Nov 12
1
help debugging ActionMailer with restful_authentication?
In a nutshell, I''m using restful_authentication that emails the user when they sign up for an account The development.log file shows the body of the e-mail message being prepped to send out, but doesn''t show confirmation that it made it. When I use gmail''s SMTP server, a Rails exception is thrown because gmail expects an encrypted connection. A different type of Rails
2012 Feb 21
0
Scoped_views in rails2.3.5 with restful_authentication
I am using rails 2.3.5 and restful_authentication plugin. User model is inherited by visitor, spotter and subscriber. How to implement scoped_views for different user(visitor, spotter and subscriber) registration. -- 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
2006 Aug 30
0
Anyone using "restful_authentication"
I had installed acts_as_authenticated and once that was working good and felt I understood it I went ahead and tried restful_authentication. Page says it''s based on AAA. I see some of the functionality is not included though such as the activation code. Can I just write it in myself ? TIA Stuart --~--~---------~--~----~------------~-------~--~----~ You received this message because
2007 Oct 24
0
Inheritance and forms
Hi, I have two user models - PrivateUser and CorporateUser - in my Rails 1.2 application. Both are subclasses of User, created by restful_authentication, which defines a user which can log in to my application. Now, I want to let both types of users register. They will need different forms to fill out, but the logic is similar. So the use case is - User clicks Register link - User chooses
2006 Aug 11
0
Resotolog-1.2 - RESTful blog example (was Community request - can someone show me REST? )
On 8/2/06, Alisdair McDiarmid <alisdair@...> wrote: > Here you go: > http://randomoracle.com/stuff/RestBlog.tar.gz Hi guys, i modified a little the original Alisdair McDiarmid''s sources and created very simple blog system. So the announce follows: Restolog - RESTful blog example ========================= Very simple blog system based on REST/CRUD ideas. Sources (all
2008 Jul 12
1
Re: Re stful_authentication, Internet Explorer, and unwanted http basic dialog
I''m glad I found your post Joshua - it saved me quite a bit of time! To get this to work for me however (IE6), I had to ditch the ||= and do straight assignment: request.format = :html if request.env[''HTTP_USER_AGENT''] =~ /msie/i Joshua Doss wrote: > > > Alter access_denied to add this line (right below "def access_denied"): > >