Displaying 2 results from an estimated 2 matches for "n9q".
Did you mean:
n95
2009 Jul 08
0
nmbd issue
...e other
samba servers on the network running WINS are caching this old address.
Correct me if I am on the wrong track.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org
iEYEARECAAYFAkpVA44ACgkQ5B+8XEnAvqtWBgCfSUAUcaoPgpVv+n9Q/AR6b4zy
ZjsAoIeac/UUv/+/IANMB3TVn7Hi2fcN
=yXhh
-----END PGP SIGNATURE-----
2007 Jul 01
1
ActiveRecord: why does 'self.name' and 'name' both work?
I''m trying to figure out why both ''self.name'' and ''name'' work in a
model class. For example:
class Category < ActiveRecord::Base
before_save :set_permalink
private
def set_permalink
# both work
self.permalink = name
self.permalink = self.name
# doesn''t work
permalink = name
@permalink = name
@permalink =