search for: wolfman

Displaying 20 results from an estimated 26 matches for "wolfman".

2006 Mar 24
6
login forms , redirect_to and ajax-scaffold problems
Hi, I have a standard type authentication technique direct from AWDWR, so there is a before_filter :authorize_employee, :except => :login in my employees_controller.rb the authorize_employee is in application.rb def authorize_employee unless session[:employee_id] flash[:notice] = "Please log in" # save the URL the user requested so we can hop
2006 Jul 09
5
where do uncaught exceptions printouts go?
...ack in the do_work method, however I saw no dump or indication of any error in any of the logs. This makes it very hard to debug, where does stdout and or stderr go? How canb I know if it gets some kind of error? (in this case not being able to find a class). Thanks -- Jim Morris, http://blog.wolfman.com
2006 Jun 22
6
Capistrano with Local (not file:///) repository
I''m developing an rails app. The SVN repository resides on a (Win 2k) server on my company''s local intranet. The repository is accessed via http (Apache + mod_dav_svn). From this machine, it is not a problem to get out onto the Internet. However, coming in from the Internet is not possible (at least, not without a VPN connection). Given this, is it possible to use
2006 Mar 27
13
Is this a bug in Ajax handling?
When a controller responds to a link_to_remote with a redirect_to, the link_to_remote gets a success callback, this would seem like a bug to me, at a minimum it should return a failure? This is driving me crazy because all the login engines/generators respond to an authentication error with a redirect_to. The work around is to change them to all do a render :layout => false, :status => 500
2006 May 29
8
Rails and user authentification
I am a the point now where I have to add user authentification to my application. Anyone can point me toward an easy to use / secure library? I know about ActiveRBAC and was wondering if there is anything else that I should consider. Thanks! -- Posted via http://www.ruby-forum.com/.
2006 Oct 23
10
text_field_with_auto_complete
Hi,all I''ve used text_field_with_auto_complete for a while but still haven''t figured out how to store the value that I selected from the suggested options. any hints? Thanks! -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2008 Jul 03
0
Testing HAML in helper rspec
...is in application_helpers.rb def display_flash for name in [:notice, :warning, :error] if flash[name] haml_tag :div, flash[name], {:class => name.to_s} end end nil end I also updated my blog post on this topic to cover the new syntax... http://blog.wolfman.com/articles/2007/07/14/using-rspec-to-test-haml-helpers -- Jim Morris, http://blog.wolfman.com
2006 Jul 14
2
multiple options & checkboxes
Hello, I''m trying to implement a checkbox option function, but I''m having a problem in visualizing how it needs to be implemented. Let me explain. I have a model (User) and another model (Category). I want the user to be able to select multiple categories in the form of checkboxes and have this information stored in the db. User habtm Category and Category habtm User But
2006 Jul 08
1
access to lib?
...re File.dirname(__FILE__) + ''../my_lib.rb'' or does it do that automatically like a controller does? Also if I write a unit test for a worker that is accessing AR, is there anything special needed to be done to access fixtures etc to test it? Thanks -- Jim Morris, http://blog.wolfman.com
2006 Aug 06
1
Deploying from local machine to remote host using capistrano?
Hi, I would like to deploy a RoR application from my local machine to a remote host. Looks like the capistrano assumes that you are using an internet accessible host for the SVN repository and doesn''t checkout files using file:///! Did I miss some configuration? How do other people handle their application deployment from your local machine? Thanks for your feedback. Regards, Hari
2007 May 20
1
SVN & Capistrano
I have my svn repository set up locally and working properly. I followed the instructions for local SVN deployment w/ capistrano (http://blog.wolfman.com/articles/2006/12/06/a-capistrano-scm-module- for-local-svn-access). I am able to connect to my server, however, it doesn''t put anything in the releases folder. Why is this? Also, in deploy.rb I set the repository to: file:///User/myusername/svn/myapp/trunk - but what I don''...
2007 Jul 11
10
autocomplete in array
Experts, have you figure it out with autocomplete to pass as array objects? still i''m finding out the way to figure. :( regards, Bala --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to
2006 Apr 10
1
LoginEngine 1.0.1
...rgotten_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 in Ticket #114 (morris@wolfman.com) * Ticket #118 (augustz@augustz.com) SVN source for login_engine not found * Ticket #119 (Goynang) Unit tests for engines fail after default install * Ticket #126 (lazyatom@gmail.com) Add install.rb to login engine Regards, Jon -- http://www.snowblink.co.uk/
2005 Dec 30
4
soap4r 1.5.5 seems to break actionWebService tests
Hi, I just upgraded to soap4r 1.5.5, and now all my Rails Functional tests for the action_web_services fail as follows, any ideas what I did wrong? Thanks TypeError: can''t modify frozen object /usr/local/lib/ruby/1.8/xsd/qname.rb:78:in `name='' /usr/local/lib/ruby/1.8/soap/rpc/element.rb:118:in `set_param''
2006 Oct 30
7
belongs_to nonintuitive results with assignment?
class Page < ActiveRecord::Base has_many :lists end class List < ActiveRecord::Base belongs_to :page end ######### controller code, inside action: list = List.find(params[:id]) old_page = list.page list.page = new_page # what is the value of old_page now? old_page now is the same as new_page! what the heck?!? The only thing i can think of is that old_page is
2006 Aug 06
10
editor recommendation
Hello lsit, I''am new to rails (about 2 hours) and after the first lines of code I must say: Great! I love it! Can someone recommend me a editor? I run Ubuntu Dapper. Th?ngs -- Jochen Kaechelin, fvgi242ss, wlanhacking.de http://mail.wlanhacking.de/cgi-bin/mailman/listinfo http://www.gissmoh.de - Mein sonstiges Leben!!
2006 Apr 26
2
HABTM with ajax_scaffold
has anyone managed to do this? It works great for has_one, belongs_to type stuff, but i cant seem to get a HABTM setup going. Any demo code or advice greatly appreciated. Excellent work on this tool by the way its really great work. adam -------------- next part -------------- An HTML attachment was scrubbed... URL:
2007 Sep 16
2
stalled loop
Hi, The loop I wrote executes correctly but is stalled seriously. Is there a way to hasten execution without coming up with a brand new algorithm ? please help. Thanks. -- View this message in context: http://www.nabble.com/stalled-loop-tf4451301.html#a12699524 Sent from the R help mailing list archive at Nabble.com.
2007 Jul 05
0
universally
...? They both abused our Bill of Rights. You can sample the tracks there at Amazon. Mysterian many hours of pleasure. You know I had forgotten this song. If you had not heard of it, that line was a reference to a New Orleans haunted housae run by Pantera. Hope everything is ok. You referred to the Wolfman as Lyle Talbot He was Larry Talbot. Bill makes a rumpus, With no moral compass. Shop lights must twinkle "Merry Christmas. However, one Fukasaku film remains notable unavailable on DVD. It also included a cackling laugh and a notably goofy sensibility. Chaney cackles wildly over the music...
2007 Jul 05
0
universally
...? They both abused our Bill of Rights. You can sample the tracks there at Amazon. Mysterian many hours of pleasure. You know I had forgotten this song. If you had not heard of it, that line was a reference to a New Orleans haunted housae run by Pantera. Hope everything is ok. You referred to the Wolfman as Lyle Talbot He was Larry Talbot. Bill makes a rumpus, With no moral compass. Shop lights must twinkle "Merry Christmas. However, one Fukasaku film remains notable unavailable on DVD. It also included a cackling laugh and a notably goofy sensibility. Chaney cackles wildly over the music...