Displaying 20 results from an estimated 20000 matches similar to: "How to do a find with conditions that contain an OR"
2006 Jan 27
4
testing for nil numeric value in find
In the agile/rails tutorial book the following construct is added
to products.rb.
def self.salable_items
find( :all,
:conditions => "date_available <= now()",
:order => "date_available desc")
end
Now, I wish to extend :conditions => to exclude products that have
a nil value for the price. I have tried different syntax
2006 Feb 23
11
Need help for simple RoR code.
I try a ''hello world'' demo here,It only show a ''hello word'' on web page
you can see all my codes and structure here
http://www.smtservers.com/demo/
I want to access the ruby app like this
http://www.smtservers.com/demo/say/hello
but I get a 404 error.
Please let me know what problem the code have
I am new for RoR. I am not sure the site structure is ok or
2006 May 12
4
POST vs GET
I read in the Agile Rails book that I should avoid GETs for
destructive actions. I notice that on 37signals'' Backpack web site,
deleting an item in a list is accomplished with a simple click on a
picture of a trash can. Is this a violation of the POST/GET rule
noted above, or is there some way to make a clickable link send a
POST?
Ben
2006 Feb 03
6
Saving a User Object while in the Address Controller
Hi,
My saves are failing me and I can''t figure out why.
I am trying to save an address id to a user object just after I create
the address.
This isn''t the exact code, but it shows what I am trying to do.
class AddressesController < ApplicationController
def create
@address = Address.new(params[:address])
saved_address = @address.save
@user =
2006 Feb 13
11
ROR code syntax highlighting on blog?
I am interested in putting the cool syntax highlighting for ROR code. What''s the best way to do that? Is it using textilize or another formatting language? Or do I need special stylesheets?
Any assistance is appreciated.
Thanks
Frank
---------------------------------
Yahoo! Mail
Use Photomail to share photos without annoying attachments.
-------------- next part
2006 Feb 28
5
Getting number of days in a month
In PHP, there was an argument you could pass to the Date function to
get the number of days in the current month:
echo date("t"); // Outputs "28" for February
I don''t see anything like this in Ruby/Rails. Right now, I''m using a
very ugly line to pull the last day of the month:
@number_of_days = (Date.strptime(Date.today.strftime("%Y-%m-01"))
2006 Feb 03
2
Calling a javascript function after loading a partial with rjs
Hi,
Is is possible to call a javascript function once a partial is loaded.
Here''s what I am doing.
I have a partial that gets updated via. an ajax call. When the partial
is updated I want to call a javascript function ( enableTooltips ) which
will then add tooltips to my links in the newly updated partial.
Any help would be greatly appreciated.
Thanks,
Eric
--
Eric Goodwin
2006 May 11
6
Dynamic data passing thru Rails to Flash
Hi,
I am using Flash Dashboard and 3 sets of listbox.
When i change my first list box say name i need to dynamically change
the second list box and from the second list box when i choose an name i
need to change the content according to this in the third list box.
How can i pass this datas from database in rails.
thanx
g.balaji
--
Posted via http://www.ruby-forum.com/.
2006 Jan 27
5
Multiple Apps running under Lighttpd with scgi on a Windows Box ... possible?
I''ve run into a problem on one of my development machines. I''m trying to
run multiple rails apps on one dev machine that runs Windows. Problem is
that is seems that I can only run one scgi_service at a time, meaning
that only one of my apps will function at a time. Anyone know how I can
get around this, other than getting a *nix box (which I should have
soon, hopefully) ?
2006 Mar 30
5
Has_many :through problems -- please help
I''m having a lot of trouble with has_many, :through and could really
use some assistance.
I''ve got a User and Group class. Users can subscribe to groups, and
groups should know who''s subscribed.
I''ve got a join table (group_subscriptions) with group_id, user_id,
and it''s own id element.
Users has "has_many :groups, :through =>
2006 Mar 01
1
Net/Https & active_rbac & Debian Sarge
Hi,
I''m attempting an install of active_rbac but am having some troubles.
I''m running Debian 3.1 sarge and I am getting an error saying that I
need to have net/https installed.
I checked out my ruby lib and net/https.rb is nowhere to be found.
I''m running the default ruby for Sarge which is 1.8.2. Was https.rb not
included in this build?
How can I get around this? I
2006 Mar 25
11
Firefox ''Rails Mailing List'' search engine plugin
Hi all,
If you''re like me you probably spend a lot of time search the Rails
mailing list. To make life a little bit easier I''ve created a nice
little plugin for firefox ( A whopping 15 lines of markup ). The plugin
uses nabble.com to search the mailing list.
Anyways, I thought I''d share.
If you want to install it the manual way, here''s the code.
<search
2006 Feb 12
3
AJAX to a table row
Hello-
I''d like to throw a little AJAX into a table to allow the user to edit a
single row of data inline rather than moving to another page.
The row (which has N columns) would be swapped out for a row which has a
single column (colspan="N") and the form inputs would be in that row.
My question is, is this legal HTML? I can''t find anything that says
either way.
2006 May 11
2
Rendering
I want to do something like this:
<%= link_to "Attack!", :action => "attack", :id => session[:user].id,
:op_id => users.id, :update => "attk-div",:postion => "top" %>
But, What should I user link_to will redirect on click so what action do
I do?
--
Posted via http://www.ruby-forum.com/.
2006 May 11
1
Doctype -- utf-8 -- html vs xhtml
I was simply trying to write the DOCTYPE line at the top for UTF-8 and got confused.
What doctype do I use with rails for utf-8 files?
If I put in all the damn closing tags on paragraphs and hr and br and all that will the
stuff pass xhml inspection, or will rails insert something I haven'' yet noticed.
Warren
-------------- next part --------------
An HTML attachment was
2006 Feb 12
3
Timestamp -> Date
I have a timestamp in a row in my MySQL DB, and I can output the
timestamp, but what method could I use to turn the timestamp into the
date, like the PHP function date()?
Also, can I have the link to any place that lists all RoR
Methods/Classes that is not the official one? If no other ones exist, no
problem :)
--
Posted via http://www.ruby-forum.com/.
2006 Feb 09
17
complicated finds are eating my sole
I abandoned ruby way for find_by_sql and still can''t get this...
@myplacement = Placement.find_by_sql(
"select * from placement where
:intake_date >= beg_intake_date
and
:intake_date <= end_intake_date")
just a simple date range...it''s killing me - If I knew how to load
placement controller into irb, I could probably try out finds
interactive mode...
Thanks
2006 Jan 27
3
Formatting Data in rhtml
Is there a simple way to format your data in the .rhtml file?
I come from a PHP/Smarty background, and in the templates, I''ve used
what is called "modifiers" to format data.
{$price|currency_format} # displays in currency format
{$description|truncate:"100"} # Truncates the description after 100
characters
It seems like the template (rhtml) would be the ideal
2006 Feb 28
6
scgi+lighttpd+windows - why wont it work?
two problems, pls help...I''m under big pressure at work to fix this!
I''m having trouble getting scgi and lighttpd running on windows - here''s
what I did:
On Win XP, I installed ruby, rubygems, and setup my rails app. All works
fine with webrick.
I then did: gem install cmdparse and gem install highline (as required
for the scgi_rails gem according to
2006 Apr 07
2
WHAT IS THE BEST URL TO SEARCH THE RAILS NEWSGROUP?
I need to search the rail list for answers. Where is good URL to do
that?
Nick