search for: lujan

Displaying 20 results from an estimated 20 matches for "lujan".

2006 May 17
3
Slackware 10.2
Hi guys, I'm trying to use asterisk with my slackware 10.2 box. Kernel 2.6.13 from the testing... The udevd are not creating the /dev/zap devices. Someone already have success installing asterisk over slackware? Thanks in advance. Fernando Lujan
2006 May 05
5
Sessid.
How can I get the sessid from the current session object? For instance, I log in the system, and want to know which sessid I''m using. I''m storing the session using active_record. Later on, I want to restore a session finding it using the sessid. Thanks in advance. Fernando Lujan
2006 May 10
2
Rails, Postgres and the Date Field.
...me::Conversions::DATE_FORMATS.merge!( :default => ''%m/%d/%Y'', :date_time12 => "%m/%d/%Y %I:%M%p", :date_time24 => "%m/%d/%Y %H:%M", ) And the date are still displayed as year, month, day. How can I change this behavior? Thanks in advance. Fernando Lujan
2006 Apr 04
2
Ajax Effects Tutorial
Hi there, I am in love with rails... And now I want to rule Ajax effects with rails. Where could I find a book like: Ajax on Rails? :) Tutorials will be welcome too. Thanks in advance. Fernando Lujan
2006 May 24
2
TE406P - MFC/R2
...it to 600 seconds. May 24 15:13:43 NOTICE[5530]: app_dial.c:1029 dial_exec_full: Unable to create channel of type 'UniCall' (cause 0 - Unknown) == Everyone is busy/congested at this time (1:0/0/1) How can I solve this? Or at least debug what is the problem. Thanks in advance. Fernando Lujan
2006 May 10
3
has_many association.
...ng: <%= render(:partial => "contact", :collection => @user.contacts)%> To persist I am using the following code: @contact = Contact.new(params[:contact]) @contact.user_id = session[:user_id] @contact.save It works, but is it the best solution? Thanks in advance. Fernando Lujan
2006 May 18
1
R2/MFC Configuration.
...king with a proprietary pbx system. I'm doing it using a T1 crossover cable. The pbx system uses the R2/MFC specification. And the don't inform if it uses cas, ccs, ami or hbd3. My digium card is flashing a red light. How can I put this working with the R2/MFC system? Thanks. Fernando Lujan
2006 Mar 29
5
Asterisk Between PBX and FXS
...s... How can I figure out in asterisk which extension was dialed before the call came to asterisk? Does asterisk receive this information in some variable? ${BRIDGEPEER} ${CALLERID(dndi)} ${BLINDTRANSFER} ${BLINDTRANSFER} I tried the above variables without success. Thanks in advance. Fernando Lujan
2007 Oct 30
2
WebDav Support.
Hi guys, I read that mongrel supports the webdav protocol. I need to "create" the webdav files and allow a third party app access it just for read purposes. What do you recommend? -- Fernando Lujan -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/mongrel-users/attachments/20071030/1527bd35/attachment.html
2006 Jun 08
1
Observable notifying a controller.
...nce, class A with is a observable. I want to add a controller of my rails system to this class. So I can notify_observer, and it updates all controllers of my system. How do I pass a controller as a parameter to the add_observer() method? And where I put this code? Thanks in advance. Fernando Lujan
2006 May 09
1
Reusing a model to form and link_to.
...ject][:my_parameter] OK. In other parts I have a link_to as: <%= link_to(user.my_value, :controller => "my_controller", :action => "my_action", XXXXXXX ) %> How can I change the XXXXXX to have the same behavior as I have previously? Thanks in advance. Fernando Lujan
2006 May 04
4
What do you use RJS for?
I''ve read an intro or two for RJS, but I don''t fully get what it may be used for - AJAX? Please post what you currently use RJS for. Thanks! Joe -- Posted via http://www.ruby-forum.com/.
2006 May 03
1
Differences betwen check_box_tag and check_box form helper.
What is the difference between the check_box_tag and the check_box form helper? I can''t understand why both must exist. :( Thanks. Fernando Lujan
2006 May 26
0
Observer Subject Pattern on Rails.
...hen this user type a message update all users with the new message. I try wiki.rubyonrails.org for help, and find nothing I can use. I searched using the keywords rails observer and didn''t find anything interesting. Where can I find useful documentation? Thanks in advance. Fernando Lujan
2006 Apr 12
0
Model in two different parts of the app.
...n system to users, and the second is a administrative interface. The administrative interface I create in a directory called admin Both parts use the model User. Can I put the model user only in the model directory or I should duplicate it in the /models/admin/ too? Thanks in advance. Fernando Lujan
2006 Jun 07
0
How-To monitor a specific channel?
Gruys, How can I record a specific channel if Monitor doesn't receive it as a parameter? Can I do a combination with the ZapBarge app? I want to record calls in some channels. Thanks in advance. Fernando Lujan
2006 Jun 20
0
ChanSpy on a specific channel.
...#39;beep' (language 'en') -- Playing 'beep' (language 'en') -- Playing 'beep' (language 'en') Even when I type additional digits I just hear the beep. Not the conversation. Any idea? I try to find help in the IRC without success... :( Fernando Lujan
2007 Jul 17
0
Multiple inserts on a through association.
...l_type will have a differente price. When i choose to add a trunk. I want to list all call_types to allow the users to add/edit both: the call_type ( associate or remove ) call_types to this trunk... and to edit price for each association that exist. How can I achieve this behavior? -- Fernando Lujan --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send...
2007 Sep 03
2
Mongrel and Memory usage.
...a problem. I am running 3 instances using mongrel_cluster and nginx as a reverse proxy. When I start the cluster I have a memory usage of 20MB per instance... In the end of the day this usage is something about 230MB for each instance. It should be a memory leak? Thanks for the help. -- Fernando Lujan -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/mongrel-users/attachments/20070903/3b3d3f1a/attachment.html
2006 May 03
7
Business Logic and where to place with rails
I am having an issue of deciding where I should put the business code for example the more complex code coming off the controller. Right now, I am just thinking to put it in the ''lib'' directory and the do something along these lines: require_dependency "system_process" class SystemMessageController < ApplicationController include SystemProcess ... ... Where