Displaying 7 results from an estimated 7 matches for "07vhxhapisistnjn9".
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
4
Newbie questions about Rails on Windows
My background is Windows development using Visual Studio and I''m trying
to get up to speed with Ruby on Rails, so please excuse these basic
questions.
I''ve downloaded InstantRails and can run the sample application - so
Apache, MySQL, Ruby etc. are working.
Where''s the "development environment"? Where do I go to edit files,
create models and controllers
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 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?