search for: schwyn

Displaying 9 results from an estimated 9 matches for "schwyn".

Did you mean: schwan
2011 May 22
3
dovecot-antispam dependencies
Hi There's currently a version block for the dovecot and dovecot-antispam packages in Gentoo. Dependencies indicate that dovecot-2.0.11 does not accept dovecot-antispam-1.3. Is this correct or should it work? If not: How about the current rc of version 1.4? Cheers, -sven
2012 Aug 15
1
bcrypt again
Hi I'd like Dovecot to consume a list of users exported from an external application which stores bcrypted passwords. This has been asked in the past, however, I'm not sure how to read the following reply: > If you are using Dovecot< 2.0 you can also use any of the algorithms > supported by your system's libc. But then you have to prefix the hashes > with {CRYPT} - not
2012 Aug 21
1
blf-crypt
Hi The blf-crypt password schema mentioned in the docs could be a solution to my auth problem. However, the docs state that actual support depends on the glibc. Mine apparently doesn't. Does support depend on the glibc's version (mine is 2.15-r2)? Maybe someone with access to a box with a good enough glibc could do the following and post the hash for the plain password "test"?
2012 Mar 31
2
I18n.t('countries.NO') broken?
Hi I''ve tried this on a virgin Rails 3.2.2 app. If you put the translations for country names in the locale file using the 2 letter ISO code, it looks something like this: en: countries: DE: "Germany" NO: "Norway" US: "USA" This works fine - but for Norway :-) I18n.t :''countries.DE'' # => "Germany" I18n.t
2007 Nov 26
2
ruby-debug 0.9.3 and Rails 2rc1: falls directly to irb
Hi When starting my Rails 2rc1 app with "script/server --debugger", the console falls directly into irb once a "debugger" statement is encountered. Any idea what I have to do in order to be thrown into the debugger rather than irb? Many thanks, -sven -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message
2008 Jan 15
0
HABTM acting as list on Rails 2
Hi Fellow Railworkers Now that Rails 2 is the engine, is there an easier way to have a HABTM relation act_as_list? The solution outlined in the wiki is pretty ugly: http://wiki.rubyonrails.org/rails/pages/HowToUseActsAsListWithHasAndBelongsToMany Thanks for any hints, -sven -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this
2014 Apr 11
0
Replacement for "has_many ... counter_sql" in Rails 4.1
Hi I'm looking for ways to replace "has_many ... counter_sql: '...'" in order to migrate an app from Rails 3.2 to 4.0 (done) and then up to 4.1 which has dropped support for "counter_sql". An example is on Stackoverflow: http://stackoverflow.com/questions/22988321/replacement-for-has-many-counter-sql-in-rails-4-1 I'd do it with a separate counter method,
2012 Dec 06
2
Bye Bye, Observers
Observers will be no more as of Rails 4, farewell, never been much of a fan. However, I''m using it in one of my gems which enables model attributes for use with a WYSIWYM editor. The resulting markup is persisted, but in order to use it in a view, it has to be nokogiried in a helper which fragment caches the result. This cache has to be zapped once the model instance is either
2008 May 30
4
How to deal with observe_field in partials?
Hiyas I''m having a little problem with a observe_field in a partial "bokings/room_list": <%= select_tag "room_#{room.id}_grownups", options_for_select([0, 1, 2], room.grownups.length) %> <%= observe_field "room_#{room.id}_grownups", :url => set_number_of_grownups_booking_room_url(:id => room.id), :with =>