search for: saltedlogingenerator

Displaying 6 results from an estimated 6 matches for "saltedlogingenerator".

Did you mean: salted_login_generator
2006 May 30
0
2 quick question about SaltedLoginGenerator
Hi all, I''m using the Salted Login Generator. It''s fantastic. And I have tow quick questions, wish you could give me a hint. 1. I have a few controllers, which all got "index" action. And how can I make login system pass Controller1::index, but restrict access to Controller2::index 2. When the user click the link to verify himself, I want to fill some my customised
2007 Jun 25
2
Problem
This is the source code generated by SaltedLoginGenerator @params[''user''].delete(''form'') Can anybody explain what the delete message do? -- http://sourceforge.net/projects/mycodeline/ http://rubyforge.org/projects/ropenwiki/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you...
2006 Feb 04
1
Issues with sending HTML email
Hello, I am using the SaltedLoginGenerator. Everything is working fine except the e-mail is being sent out as text instead of text/html. I have tried changing the Content-Type to text/html but to no avail. I even tried changing the Content-Type in tmail/facade.rb but it didn''t help. What am I missing? How can I get ROR...
2005 Oct 27
2
Fixtures are not loading into instance variables. Why not?
Hi, I have a fixture in a unit test and I see that the fixture is loaded correctly into the database table, but no instance variables are created. So now I''m stuck. More background: this is my first RoR project and I have just installed the SaltedLoginGenerator and generated its output. Running the unit tests gives an error, so I cut it down to just 1 test: ------------------------------ require File.dirname(__FILE__) + ''/../test_helper'' class UserTest < Test::Unit::TestCase fixtures :users def test_auth p @bob p @users...
2007 Jan 03
2
Rails and bb forum integration
...ails. Have read the Agile book. Working on new app, its going well. Now, I am at a crossroads. I need to choose a bbs for my site The significance for rails development is that I want to have single sign on between both my Rails app and my forum. I was just about to work on integrating the Rails SaltedLoginGenerator into my rails app when I read this post http://wiki.rubyonrails.org/rails/pages/PhpBB+Integration which basically suggested that the Rails app should delegate the user managment to the forum. I have no argument against this. The only "feature" of the SaltedLoginGenerator which I will mis...
2005 Dec 19
1
Is there a guide for using ERBSQL?
...s you to write sql that''s easier to deploy via the create_db script and also more portable to postgres, myslq, or whatever. But what I can''t find is a resource that explains the preset constants or how to configure them if need be. For example the ERB that comes with the saltedlogingenerator for rails looks like this: CREATE TABLE users ( id <%= @pk %>, login VARCHAR(80) NOT NULL, salted_password VARCHAR(40) NOT NULL, email VARCHAR(60) NOT NULL, firstname VARCHAR(40) default NULL, lastname VARCHAR(40) default NULL, salt CHAR(40) NOT NULL, verified INT def...