search for: nevans

Displaying 5 results from an estimated 5 matches for "nevans".

Did you mean: evans
2004 Jul 21
0
NMBLOOKUP returns double entries ???
hi, when i do nevanfs01:/ # nmblookup NEVAN#1B i get querying NEVAN on 192.168.255.255 192.168.41.3 NEVAN<1b> 192.168.41.3 NEVAN<1b> i just wonder, why there's two times the same entry? i also get error messages from nmbd like these, which i think are related to the problem i mentioned at first: 2004-07-21 13:34:21 nmbd[3150]: [2004/07/21 13:34:09, 0]
2006 Jun 23
1
''Series'' Pluralization
...do |inflect| # inflect.plural /^(ox)$/i, ''\1en'' # inflect.singular /^(ox)en/i, ''\1'' # inflect.irregular ''person'', ''people'' inflect.uncountable %w( series ) end Everything seems to work alright except for my tests. nevans@bell:/var/www2/freepets/test/unit$ ls content_series_test.rb content_test.rb user_test.rb nevans@bell:/var/www2/freepets/test/fixtures$ ls content_series.yml contents.yml users.yml nevans@bell:/var/www2/freepets$ rake test:units (in /var/www2/freepets) /usr/bin/ruby1.8 -Ilib:test "/usr/...
2004 Jun 09
0
Problem IDMAP Domain Member -> PDC
hi im using precompiled samba v. 3.0.4 packages from SuSE 9.1 DVDs all services (ldapsam, winbind, ... ) are compiled in user mapping on the PDC "SERVER" (SID-RID to UID) work fine the domain member server "FILESERV" gets the local accounts via nsswitch from the ldap backend of "SERVER" (tested with getent passwd) he also gets and checks the samba users and
2004 Sep 08
0
[WINBIND] adds "weird" attributes in LDAP
hi list, i recently recognized, that winbind on my fileserver (needed for allocating SID->UIDs when setting ACL's from windows box) adds ldap attributes although the SID already exists !!??!?! example i have a user "install" # install, users, eva.mpg.de dn: uid=install,ou=users,dc=eva,dc=mpg,dc=de objectClass: posixAccount objectClass: person objectClass: sambaSamAccount cn:
2006 Apr 09
12
Validating two models from one form
...ng is, this form needs to insert / update against two models, each with their own validation rules. Unfortunately, I''m having an incredible amount of difficulty with the error handling, specifically the fields wrapped in <div class=''fieldWithErrors''></div> nevans@bell:app/models$ ls user_preference.rb user.rb The User class has_one :user_preference, and UserPreference belongs_to :user. Both classes have a half dozen validation rules or so. In my RegisterController, I have two actions: one to display the form, and one to save the form. --- # Don'...