Displaying 20 results from an estimated 2000 matches similar to: "Newbie questions about Rails on Windows"
2005 Dec 15
3
site home page
Hi,
I have a really dumb qustion, but I can''t find an answer in "Agile Rails" or
any other hand holder. And, it is a difficult topic to search for in
google.
What controller/view is used for the home page of a site? I get how to
create new controllers, but I don''t get at all how to change content on the
home page.
thanks,
matt
On 12/14/05, Austin Ziegler
2005 Dec 25
2
offtopic: which one is faster: file or database?
hi,
this topic is not directly about rails but I wanna hear your opinions and
experience in this matter.
you know apache''s access.log .. I am using lighttpd accesslog which is same
as apache for some of my analysis. I copy the log into my database during my
analysis for soem advanced queroies and then delete it. It''s done once a day
on a non-loaded hour (5 am) so it doesnt bring
2005 Dec 29
5
Subversion graphical client?
Hi All -
I notice that most of the Rails team are using Mac OS X and TextMate for
Ruby development. I too am working on Mac OS X and trying TextMate and
(shudder?) EMacs.
I was wondering about version control. Are folks using Subversion? If
so, are they using a graphical client? Which one do they recommend?
Yours,
Jordan
--
Posted via http://www.ruby-forum.com/.
2005 Dec 15
12
Adding multiple invoice items to an invoice on the same form
Hi Friends ,
Got a unique requirement .I am designing a invoice printing system
.So right now I have the NEW page for adding the invoice details to the
table .Now I have the requirement of adding Invoice Items In the same
form .I have added multiple text boxes to enter the values of the Items
using
<%= text_field ''invoiceitems[]'', ''item_price''
2005 Dec 16
4
Adding extra value to an object
Hello friends ,
I have a clear method here ::
def create
@invoiceitems = Invoiceitems.new(params[:invoiceitems])
@invoiceitems["invoice_id"] = params[:id]
if @invoiceitems.save
flash[:notice] = ''Invoiceitems was successfully created.''
redirect_to :action => ''new'',:id => params[:id]
else
render :action =>
2006 Apr 07
2
Installing RoR locally
hi friends,
How can i install ruby on rails locally .I mean I dont have internet
access in my system and want to install Ror .Please help me out .
Thanking you,
Naroor Rathish
--
Posted via http://www.ruby-forum.com/.
2005 Dec 16
3
Not able to put into a object variable
hello friends ,
I was trying to select all the invoice items from the table invoiceitems
with a condition.But I am getting a NULL array .Please help me in fixing
this ::
@oldinvoiceitems = Invoiceitems.find(:all, :conditions =>
[''invoice_id = :invoiceid'', { :invoiceid => ''params[:id]'' } ] )
Thanx and regards,
Naroor Rathish,
2005 Dec 28
2
disabling text_field
Hi ,
Anyone knows how we can disable <% text_field %> .
Thanx,
Rathish
--
Posted via http://www.ruby-forum.com/.
2005 Dec 22
1
Really OT: terms of service and privacy statements
Hey everyone,
Aplogies asking such an off topic question on this list, as I have no one
else to really turn to.
I plan to release a website very soon to the public. I am just one-man shop,
and do not know much outside the realm of programming. I''ve taken care of
the "business" aspect of things, but know nothing of the legal necessities
of having a web business. Specifically,
2005 Dec 24
2
Multi language pages (access @session from a model)
Hi,
I''m creating a simple Ruby on Rails based CMS. It will support multiple
languages. Therefore I''ve a table ''pages'' and a table
''page_translations''. The table ''page'' contains a title and body in the
default language, the table ''page_translations'' contain a title and body
for an other language.
Now I
2005 Dec 16
2
Is this possible?
Hello Friends,
def new
@invoiceitems = Invoiceitems.new
@oldinvoiceitems = Invoiceitems.find(:all, :conditions
=>[''invoice_id = :invoiceid'', { :invoiceid => params[:id] } ]
end
Error is being shown in the line number with ''end''.
This is for initialising a new invoiceItems object and also finding and
storing all the invoice items for a
2005 Dec 25
2
[repost] newbie questions
Hi all,
I''m following the shop example in ''Agile Web Development with Rails''.
I would like to extend the checkout screen, in such a way people can change
the number of items they have selected in there cart.
In my controller I have:
def checkout
@cart = find_cart
@items = @cart.items
if @items.empty?
2005 Dec 19
1
Disabling input Text box
Hi friends ,
I want to disable the text box we use in ruby on rails .How can I add
the disabled keyword inside <%= text_field ''invoice'', ''inv_amount''
,"size"=> 15 %> .
I tried <%= text_field ''invoice'', ''inv_amount'' ,"size"=> 15 ,"disabled"
%>
Thanx and regards,
Naroor
2005 Dec 23
1
key value pairs working
Hi,
can anyone tell me how is the following lines in ruby works on rails
.how is the key value pairs accessed by rails .
params[:invoiceitem].each do |key, val|
@invoice.invoiceitems << InvoiceItem.new(val)
end
Thanx and regards,
Naroor Rathish,
www.naroor.blogspot.com
--
Posted via http://www.ruby-forum.com/.
2006 May 17
40
IDE recommendations?
I was wondering if there are any IDEs out there that has autocomplete
features for win32.
It would be perfect if it could do something akin to what DHH is doing
on the screencast hosted on the rails website.
http://media.rubyonrails.org/video/rails_take2_with_sound.mov
Cheers
--
Posted via http://www.ruby-forum.com/.
2006 Feb 17
21
''Best'' IDE for testing and debugging
I''m trying to decide which IDE to go with for RoR development. I put a high premium on integrated test automated tools and debugging capabilities. I''d appreciate any sharing of experience.
I''m currently running Instant Rails on a Windows 2000 box (using IR due to problems I encountered trying to get all the components set up individually). Also, I''m using
2006 Mar 07
12
what is the IDE tools used in the video?
What is the IDE tools used in the video on the homepage of the
www.rubyonrails.org?I had thought it was Komodo,however after I had
installed that i found they were different.I do think the IDE used in
the video is very cool for its autocomplete abilities especially in the
Views development.Thanks!
--
Posted via http://www.ruby-forum.com/.
2005 Dec 22
3
RoR presentations
Hi,
I was wondering is there any editor that can do autocompletion as shown
in the tutorials on the RoR website in the windows or linux environment.
If not do any one has sharable macros that comes with textpad or any
other editors.
Silvy Mathews
2006 Jul 21
15
RoRED a free Ruby on Rails editor for Windows
Hi.
On http://www.plasmacode.com you can download RoRED, a free IDE for Ruby
on Rails apps, only for Windows.
It has some interesting features like tab-grouping of related MVC files,
code navigation into methods (ctrl+click), and more.
Best regards,
Marcus.
http://www.plasmacode.com
--
Posted via http://www.ruby-forum.com/.
2006 Aug 06
10
editor recommendation
Hello lsit,
I''am new to rails (about 2 hours) and after the first lines of code
I must say: Great! I love it!
Can someone recommend me a editor? I run Ubuntu Dapper.
Th?ngs
--
Jochen Kaechelin, fvgi242ss, wlanhacking.de
http://mail.wlanhacking.de/cgi-bin/mailman/listinfo
http://www.gissmoh.de - Mein sonstiges Leben!!