search for: rdominguez

Displaying 20 results from an estimated 31 matches for "rdominguez".

Did you mean: dominguez
2006 Mar 09
6
rmagick and captcha
...xample: http://wiki.rubyonrails.com/rails/pages/HowtoSecureFormsWithNoisyImages but I got an error: undefined method `size'' for #<NoisyImage:0x34d8070> Thank you -------------------------------------------------- Rodrigo Dominguez ? Iplan Networks ???????????????Datos Personales rdominguez@iplan.com.ar ??????rorra@rorra.com.ar www.iplan.com.ar ?????????????www.rorra.com.ar 5031-6303 ????????????????????15-5695-6027
2006 Jun 05
4
transactions
Can you give me some links where transactions in rails are explained in depth? Thank you PS: I''ve looked in google, but I just couldn''t find good articles, I''m working with postgresql Rodrigo Dominguez Iplan Networks Datos Personales rdominguez@iplan.com.ar rorra@rorra.com.ar www.iplan.com.ar <http://www.iplan.com.ar/> www.rorra.com.ar <http://www.rorra.com.ar/> 5031-6303 15-5695-6027 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pi...
2006 Aug 14
1
various returns parameters in action web service
...{ :return_value_3 => :string} ] the question is as follows, then in the controller: def foo # How do I return the values for return_value_1, return_value_2 # and return_value_3 here? end ---------------------------- Rodrigo Dominguez ? Iplan Networks ??????????????? rdominguez@iplan.com.ar?????? www.iplan.com.ar??????????? 5031-6303 ???????????????????? Datos Personales rorra@rorra.com.ar www.rorra.com.ar 15-5695-6027
2006 Jan 29
0
how to map a relation?
...set_table_name "statussir" set_primary_key "idstatussir" #Relations # What do I put here to map that relation????? End Thank you Rodrigo Dom?nguez Iplan Networs <http://www.iplan.com.ar/> www.iplan.com.ar ? <mailto:rdominguez@iplan.com.ar> rdominguez@iplan.com.ar <http://www.rorra.com.ar/> www.rorra.com.ar ? <mailto:rorra@rorra.com.ar> rorra@rorra.com.ar -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060129/f486...
2006 Mar 07
0
RE: nuevos requisitos
...o para que lo vea daniel cuando llegue y ya de el lado bueno para mandarlo en producci?n. En caso de que los manejemos nosotros, necesito acceso al servidor para poder configurarlo y tenerlo configurado. Saludos y gracias Rodrigo Dominguez Iplan Networks Datos Personales rdominguez@iplan.com.ar rorra@rorra.com.ar www.iplan.com.ar <http://www.iplan.com.ar/> www.rorra.com.ar <http://www.rorra.com.ar/> 5031-6303 15-5695-6027 -----Mensaje original----- De: Adrian Barrios [mailto:abarrios@iplan.com.ar] Enviado el: Martes, 07 de Marzo d...
2006 May 24
2
array parameters in web services
...ring}], :returns => [CLL_Answer] end The problem is as follows, in the function GetMetadata, I need to receive an array of CLL_Metadata objects, and not a single CLL_Metadata object, how can I do it? Rodrigo Dominguez ? Iplan Networks ???????????????Datos Personales rdominguez@iplan.com.ar ??????rorra@rorra.com.ar www.iplan.com.ar ?????????????www.rorra.com.ar 5031-6303 ????????????????????15-5695-6027
2006 Jan 28
7
cool components in the form
Is there a easy way to add components like: http://www.dynarch.com/projects/calendar/ http://tinymce.moxiecode.com/example_full.php?example=true in ruby forms, by plugins or whatever? Thank you Rodrigo Dom?nguez Iplan Networs www.iplan.com.ar <http://www.iplan.com.ar/> ? rdominguez@iplan.com.ar www.rorra.com.ar <http://www.rorra.com.ar/> ? rorra@rorra.com.ar -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060128/6f4fb4c3/attachment.html
2006 Feb 27
21
what hardware shuld I but to manage 100k of connections per day?
...numbers of connections? I''m planning to use slackware + lighttpd + fastcgi, but perhaps we will have to reuse some scripts in php, in that case I would use slackware + apache + mod_php + fastcgi Thank you for your time Rodrigo Dominguez ? Iplan Networks ???????????????Datos Personales rdominguez@iplan.com.ar ??????rorra@rorra.com.ar www.iplan.com.ar ?????????????www.rorra.com.ar 5031-6303 ????????????????????15-5695-6027
2006 Jun 21
3
validation help
I would like to validate a number within a certain range. To first test that a entry is a valid number i use validates_numericality_of :my_number, :message =>''sorry, not a number'' to test if the number is within a certain range i use validates_inclusion of :my_number, :in => min..max, message => ''outside range!'' If the numericality test fails, I
2006 Jun 23
5
how can i alter the validations error messages.
hello my name is reynaldo my question is the next. i want change the text of the validations error messages generated by ruby when you don''t wrote properly the data in the form. -- Posted via http://www.ruby-forum.com/.
2006 Aug 14
0
return values in SOAP with Action Web Service
...{ :return_value_3 => :string} ] the question is as follows, then in the controller: def foo # How do I return the values for return_value_1, return_value_2 # and return_value_3 here? end ---------------------------- Rodrigo Dominguez ? Iplan Networks ??????????????? rdominguez@iplan.com.ar?????? www.iplan.com.ar??????????? 5031-6303 ???????????????????? Datos Personales rorra@rorra.com.ar www.rorra.com.ar 15-5695-6027
2006 Nov 04
0
deleting associations
...tion, in example contacts_to_delete = [1, 3] and I want to erase the relation between client 1, and contacts 1 and 3 What''s the best way to delete those relations? Thank you -------------------------------------------- Rodrigo Dominguez ? Iplan Networks ???????????????Datos Personales rdominguez@iplan.com.ar ??????rorra@rorra.com.ar www.iplan.com.ar ?????????????www.rorra.com.ar 5031-6303 ????????????????????15-5695-6027
2006 Nov 04
0
matching values in arrays
...know I can do clients = clients1.find_all {|x| clients2.find { |y| x.id == y.id} } clients = clients.find_all {|x| clients3.find { |y| x.id == y.id} } is there an easy way or a better way to get the same results? Rodrigo Dominguez Iplan Networks Datos Personales rdominguez@iplan.com.ar rorra@rorra.com.ar www.iplan.com.ar <http://www.iplan.com.ar/> www.rorra.com.ar <http://www.rorra.com.ar/> 5031-6303 15-5695-6027 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pi...
2006 Jun 05
0
question about partial page templates?
Can I call helper functions from the Partial Page Templates? Because I want to call a function from the ApplicationHelper int a partial page template, but it says that the function is not defined Rodrigo Dominguez Iplan Networks Datos Personales rdominguez@iplan.com.ar rorra@rorra.com.ar www.iplan.com.ar <http://www.iplan.com.ar/> www.rorra.com.ar <http://www.rorra.com.ar/> 5031-6303 15-5695-6027 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pi...
2006 Jun 22
0
xml rpc client
...7d265f0f7ed56558d1131090b" nro = clientXmlRpc.IPLWSNroDisponible(KEY, "TELEPHONY", "ATX", "NULL", 1720002910) rescue Exception => exc puts exc.message + "\n" end Rodrigo Dominguez Iplan Networks Datos Personales rdominguez@iplan.com.ar rorra@rorra.com.ar www.iplan.com.ar <http://www.iplan.com.ar/> www.rorra.com.ar <http://www.rorra.com.ar/> 5031-6303 15-5695-6027 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pi...
2006 May 16
0
tow rails applications in a single virtual host in apache
...and I need <http://www.iplan.com.ar/> www.iplan.com.ar (typo) blog.iplan.com.ar/demo (demo rails applications) or <http://www.iplanc.om.ar/> www.iplanc.om.ar (typo) demo.iplan.com.ar Thnak you Rodrigo Dominguez Iplan Networks Datos Personales rdominguez@iplan.com.ar rorra@rorra.com.ar www.iplan.com.ar <http://www.iplan.com.ar/> www.rorra.com.ar <http://www.rorra.com.ar/> 5031-6303 15-5695-6027 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pi...
2006 May 31
0
web services datat types
...just want to send a CLL_Metadata from php (nusoap) to ruby on rails application, but every time I call the function with a custom struct (CLL_Metadata), it just doesn''t receives he null, instead it recives null Rodrigo Dominguez Iplan Networks Datos Personales rdominguez@iplan.com.ar rorra@rorra.com.ar www.iplan.com.ar <http://www.iplan.com.ar/> www.rorra.com.ar <http://www.rorra.com.ar/> 5031-6303 15-5695-6027 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pi...
2006 May 31
0
web service parameters
...1.type = ''1'' metadata1.value = ''232'' collection = [ metadata 1] collection end end it throws me an error: Don''t know how to cast CLL_Metadatata into Array Rodrigo Dominguez Iplan Networks Datos Personales rdominguez@iplan.com.ar rorra@rorra.com.ar www.iplan.com.ar <http://www.iplan.com.ar/> www.rorra.com.ar <http://www.rorra.com.ar/> 5031-6303 15-5695-6027 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pi...
2006 Apr 04
1
ActiveRecord object
...users = User.find(:all) user = users[0] user.links.find {|x| x == "foo"} and it gives me an error because it says that user.links is null What is my mistake? I just need the attribute links to be an array Rodrigo Dominguez Iplan Networks Datos Personales rdominguez@iplan.com.ar rorra@rorra.com.ar www.iplan.com.ar <http://www.iplan.com.ar/> www.rorra.com.ar <http://www.rorra.com.ar/> 5031-6303 15-5695-6027 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pi...
2006 Mar 28
0
ajax question about refreshing divs
...arn "loggin failed, refresh MainDiv" end end #Show the page @headers["Content-Type"] = "text/html; charset=ISO8859-1" render :layout => false end end Rodrigo Dominguez Iplan Networks Datos Personales rdominguez@iplan.com.ar rorra@rorra.com.ar www.iplan.com.ar <http://www.iplan.com.ar/> www.rorra.com.ar <http://www.rorra.com.ar/> 5031-6303 15-5695-6027 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pi...