search for: dcorbin

Displaying 15 results from an estimated 15 matches for "dcorbin".

Did you mean: corbin
2006 Mar 02
3
plugin versioning
When I install a plugin, does Rails record the version installed anywhere? Maybe I''m not doing it the "right" way, but I''ve excluded vendors from my source repository. I''d like some ''record'' of what plugins are used that is under source control. David
2006 Feb 26
7
LoginEngine problems
I''m trying to get a simple authentication system going for a small rails app. After much research, it looks like LoginEngine should do exactly what I want. Now, the documentation is somewhat confusing to me when looked at in the light of reality. There are some places that say you have to install the "engines" plugin. But, I cannot find such a beast. So, I installed the
2006 Apr 10
1
LoginEngine 1.0.1
...db from Login Engine; migrations should be used instead. (snowblink@gmail.com) * Updated User Controller tests to parse the user_id and email out of the URL in the email body. (snowblink@gmail.com) * Ticket #89 (lazyatom@gmail.com) User creation halts the after_save callback chain. * Ticket #97 (dcorbin@machturtle.com) The forgotten_password view generates invalid HTML * Ticket #112 (segabor@gmail.com) Authentication system will break even on successful login * Added simple email validation to the User model. (snowblink@gmail.com) This should also take care of the unit test failures detailed...
2002 Nov 21
0
Initial Sequence Numbers (ISN) vulnerability
...P/UX 11i, and all Linux Kernels after 1996. It did say that Red Hat Linux 7.1''s mount package was vulnerable to predictable initial sequence number attacks. http://linux.oreillynet.com/pub/a/linux/2001/05/08/insecurities.html Mike -----Original Message----- From: David Corbin [mailto:dcorbin@machturtle.com] Sent: Wednesday, November 20, 2002 8:02 PM To: Shorewall Subject: [Shorewall-users] Thanks + Question I''ve recently installed shorewall, because I introduced a DMZ to my home network, and I was having trouble figuring how to get iptables to do what I want. Shorewall ma...
2006 Feb 22
2
self.use_instantiated_fixtures
Can this be controlled on a per TestCase basis, or is it only a global setting? David
2006 Feb 26
1
Layouts for static pages
Is there any "standard" way if I wish to use a layout with an otherwise static page? Do I have to create a controller "and everything" for this to work? Thanks David
2006 Feb 27
6
MySql 4.0.16 and Migrations
It appears that you cannot use migrations (out of the box) with mysql 4.0.16, because when creating a table, the statement says "ENGINE=InnoDb", instead of "TYPE=InnoDB". Looking at the source code for the adapter, this appears to be hard coded. Is there any supported way to make this work with older versions of MySQL? David
2006 Apr 03
1
Helpers for ActiveMailer templates
What helpers, if any, should be available to a view for ActionMailer? Even ApplicationHelper methods don''t seem to be available. This is on Rails 1.0. David
2006 Apr 08
0
Layout context
I''d like my layout to be able to tell which view is being rendered. If necessary, I''ll add code to my ApplicatoinController, but adding anything to specific controllers or views defeats the purpose of putting it in a layout. Any ideas? David
2006 Feb 19
1
Validation relative to other attributes
I have an object O with two ''collections''. The minimum size for B is A.length + 1. Also, B has to be a proper subset of A. What is the correct way to validate B? David
2005 Jun 02
0
Don't use an attribute/column that matches a Kernel method (including 'y')
I''ve found a problem, and it might be bug in Ruby itself, but I''m not sure. Say I''ve got a model object (Point) whose table contains column "y". Model Circle has_one Point center. When I load a Center from the database, I"m unable to get the actual value for y. Here is a summary of what I see when I debug into Circle.center.y: Stepping into y(), I
2005 Jun 11
0
require problem
I''m having a real problem that appears to be caused by something in the standard test_helper. I''ve written a script (below) that should find and load all the unit tests, and when invoked (ruby unitTestSuite), should run all the tests in the unit_test directory. This actually works well, in general. The problem I have is that if the standard "test_helper.rb" file
2005 Apr 13
3
Upgrading
I have an "old and decrepit" install of Shorewall, installed from a Debian package. I''m having a problem, so in order to get support, I''m working on upgrading to the most recent stable version. What I''d like to do, is to test the new version with my configuration files, without actually installing it -- just untarring it. Is this possible? How can I
2006 Feb 19
4
Multiple HABTM to one table
I have a class Player, and a class Game. Game has two HABTM relationships to the Player table through seperate relationship tables. class Game < ActiveRecord::Base has_and_belongs_to_many :players, :uniq => true has_and_belongs_to_many :victors, :class_name => ''Player'', :uniq => true end When I add Player A to players, and Player B to victors, and save the
2006 Feb 27
15
Webrick in production?
Would you bother to setup a fastcgi for a "intranet accessible" application that is like to get < 100 hits a day? David