Displaying 8 results from an estimated 8 matches for "holdren".
Did you mean:
holden
2006 Jul 07
5
link_to: link is missing id
I''m using a legacy table, where the unique id is not ''id''
I have a Model class like the following:
class Article < ActiveRecord::Base
set_primary_key "ARTICLE_ID"
end
however, using a link_to like the following (modified scaffolding),
the link has no id value:
<% for article in @articles %>
<tr>
<% for column in
2006 Jan 26
3
Calling a SOAP service from within a Rails controller
The following works fine as a standalone ruby program:
**********************************************************************************************
t = Time.now
starter = Time.local(t.year,t.mon, t.day) + (24 *3600)
ender = starter + 7 * 24 *3600
lat = 40.352039
lon = -74.191961
require ''soap/wsdlDriver''
params = {:maxt => false, :mint => false, :temp => true, :dew
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''
2008 Apr 21
1
where is activerecord-oracle-adapter ?
''gem search oracle'' turned up no activerecord-oracle-adapter, why isn''t it
available?
--~--~---------~--~----~------------~-------~--~----~
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
2008 Apr 29
1
Webistrano recipes association (was: [Capistrano] Webistrano 1.3 released)
I see at some point recipes were changed from project-associated to
stage-associated, is there some explanation or examples of that use-case?
Could I request we have both? In my current cap scripts, we don''t have any
stage-specific recipes, but maybe I''m just not understanding this
completely.
On Tue, Apr 29, 2008 at 1:04 PM, Jonathan Weiss
2006 Mar 09
22
How to scale mysql servers for a rails application?
I''m a developer working on an application that will potentially be
used by around 500,000 users on a daily basis. Plus some internal apps
communicating to it via ActionWebServices with a potentially high
demand.
Our Operations team is helping us define the necessary system
architecture, and I have one remaining question:
What is the best way to scale the database? I have no expertise in
2006 Jul 18
2
2-column select lists (Available/Selected)
I''m trying to get one of those 2-column select lists (where there''s an
"Add>>" and a "<<Remove" button between them) working for a Rails
application. First of all, what the heck is this thing called?
You''d list all of the available items in one select list, and the
selected ones in the other.
Items move from one list to the other, but
2005 Nov 02
0
relative links with link_to?
I''d really like to get rails to generate relative links using link_to.
Is this possible? I searched the documentation for link_to and
couldn''t figure out how to get this to work, the links are always
absolute (begin with a "/").