Displaying 10 results from an estimated 10 matches for "yngwie".
2006 Jul 11
6
@record.each do |record|
...o be able to find the chart that
has record_id = id so i can delete this chart.
>From the view side, I was able to solve a similar sitiuation with
@chart.each do |chart|
if chart.record_id = id
''delete''
end
Is there a way to do a similar for loop from the controller side?
Yngwie
--
Posted via http://www.ruby-forum.com/.
2006 Jul 10
4
find()
...ecified.
ie
chart has a field called record_id, which i know. How can i find the
record that contains chart.record_id.
something like chart = Chart.find(:conditions => "record_id = :id")
this gives me an error. I''m passing :id, to the controller. Please
help!!
Thanks,
Yngwie
--
Posted via http://www.ruby-forum.com/.
2006 Jul 12
5
validates_peresence_of
Is there an expert validater that can point me in the right direction?
I''ve looked for extended documentation on ''validates_presence_of'' but i
can''t seem to find any.
I''m trying to make sure that i don''t enter a nil object in my database,
so i''ve added validate_presence_of to my Record Model.
i.e. -->
class Record <
2006 Aug 01
3
Commenting out Code
Does any one know how to comment out code in a controller (.rb file)
Thanks,
Yng
--
Posted via http://www.ruby-forum.com/.
2014 Dec 15
6
rsync output under CentOS 6
...he folders being listed even though nothing is
transferred.
/usr/bin/rsync -av --modify-window=20 --no-whole-file --delete /music /NSA320-music/
.
.
.
music/Yes/
music/Yes/Close to the Edge/
music/Yes/Fragile/
music/Yes/Tales From Topographic Oceans/
music/Yes/Yes Album/
music/Yes/Yessongs/
music/Yngwie Malmsteen, Joe Satriani & Steve Vai/
music/Yngwie Malmsteen, Joe Satriani & Steve Vai/G3- Rockin' in the Free World/
music/ZZ Top/
music/ZZ Top/Live From Texas/
music/ZZ Top/The Best of ZZ Top/
music/ZZ Top/ZZ Top Greatest Hits/
music/lost+found/
--
Best regards,
Niamh...
2014 Dec 15
2
rsync output under CentOS 6
Hello Les,
Sunday, December 14, 2014, 7:18:09 PM, you wrote:
LM> Folders should only be listed if timestamps or permissions are different.
Further experimentation shows this to be the case IF the destination is
another local drive.
Unfortunately the required destination is a CIFS share, which might change
things.
--
Best regards,
Niamh mailto:niamh at
2014 Dec 16
0
rsync output under CentOS 6
...;
> /usr/bin/rsync -av --modify-window=20 --no-whole-file --delete /music /NSA320-music/
> .
> .
> .
>
> music/Yes/
> music/Yes/Close to the Edge/
> music/Yes/Fragile/
> music/Yes/Tales From Topographic Oceans/
> music/Yes/Yes Album/
> music/Yes/Yessongs/
> music/Yngwie Malmsteen, Joe Satriani & Steve Vai/
> music/Yngwie Malmsteen, Joe Satriani & Steve Vai/G3- Rockin' in the Free World/
> music/ZZ Top/
> music/ZZ Top/Live From Texas/
> music/ZZ Top/The Best of ZZ Top/
> music/ZZ Top/ZZ Top Greatest Hits/
> music/lost+found/
If you do...
2006 Jul 17
2
actionmailer / @recipeints
Hi all,
i''m trying to email multiple people based on certain criteria.
i do a search like
@stacks = Group.find(:all, :conditions => ["component_id = ?", 2])
this populates stack to contain multiple groups with component_id =2.
How do i populate @recipients to contain all possible @stack.email.
Let me clearify. Each stack has its own email, and i need to include
each
2006 Jul 10
3
finding particular record
Hi,
I''m looking for a particular record from a view called ''charts''. The
view ''charts'' joins data from a table ''record'' and a table ''owners''.
I''m trying to pull up data from ''charts'' that lists certain data from
''record''
ie. I know i need record.id = 5. Is there a
2006 Jul 13
1
error_messages_for
I can''t seem to figure out how to validate a few fields some1 please
help me out
model---------
class Record < ActiveRecord::Base
validates_presence_of :sw, :flex
end
controller------------
class RecordController < A;;icationController
def new
@record = Rrecord.new
@product = Product.find(params[''product_id''])
end
def create