From c399e80e04e0f62766c20e39195cae9a0d48ab8f Mon Sep 17 00:00:00 2001 From: Pratik Naik Date: Wed, 22 Oct 2008 21:47:16 +0530 Subject: Fix icons --- .../guides/html/getting_started_with_rails.html | 28 +++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'railties/doc/guides/html/getting_started_with_rails.html') diff --git a/railties/doc/guides/html/getting_started_with_rails.html b/railties/doc/guides/html/getting_started_with_rails.html index 1302e4f70d..e7be98d34a 100644 --- a/railties/doc/guides/html/getting_started_with_rails.html +++ b/railties/doc/guides/html/getting_started_with_rails.html @@ -496,7 +496,7 @@ http://www.gnu.org/software/src-highlite -->
-Note +Note There are some special circumstances in which you might want to use an alternate installation strategy:
@@ -750,7 +750,7 @@ http://www.gnu.org/software/src-highlite -->
-Tip +Tip If you're on Windows, or your Ruby is set up in some non-standard fashion, you may need to explicitly pass Rails script commands to Ruby: ruby script/generate controller home index.
@@ -779,7 +779,7 @@ http://www.gnu.org/software/src-highlite -->
-Tip +Tip To stop the web server, hit Ctrl+C in the terminal window where it's running. In development mode, Rails does not generally require you to stop the server; changes you make in files will be automatically picked up by the server.
@@ -817,7 +817,7 @@ http://www.gnu.org/software/src-highlite -->
-Note +Note For more information about routing, refer to Rails Routing from the Outside In.
@@ -840,7 +840,7 @@ http://www.gnu.org/software/src-highlite -->
-Note +Note While scaffolding will get you up and running quickly, the "one size fits all" code that it generates is unlikely to be a perfect fit for your application. In most cases, you'll need to customize the generated code. Many experienced Rails developers avoid scaffolding entirely, preferring to write all or most of their source code from scratch.
@@ -1015,7 +1015,7 @@ $ rake db:migrate
-Note +Note Because you're working in the development environment by default, both of these commands will apply to the database defined in the development section of your config/database.yml file.
@@ -1041,7 +1041,7 @@ http://www.gnu.org/software/src-highlite -->
-Tip +Tip In development mode (which is what you're working in by default), Rails reloads your application with every browser request, so there's no need to stop and restart the web server.
@@ -1101,7 +1101,7 @@ title: nil,
-Tip +Tip Unlike the development web server, the console does not automatically load your code afresh for each line. If you make changes, type reload! at the console prompt to load them.
@@ -1126,7 +1126,7 @@ http://www.gnu.org/software/src-highlite -->
-Tip +Tip For more information on finding records with Active Record, see Active Record Finders.
@@ -1183,7 +1183,7 @@ http://www.gnu.org/software/src-highlite -->
-Tip +Tip For more details on the rendering process, see Layouts and Rendering in Rails.
@@ -1264,7 +1264,7 @@ http://www.gnu.org/software/src-highlite -->
-Tip +Tip If you need to create an HTML form that displays arbitrary fields, not tied to a model, you should use the form_tag method, which provides shortcuts for building forms that are not necessarily tied to a model instance.
@@ -1400,7 +1400,7 @@ http://www.gnu.org/software/src-highlite -->
-Note +Note Sharp-eyed readers will have noticed that the form_for declaration is identical for the create and edit views. Rails generates different code for the two forms because it's smart enough to notice that in the one case it's being passed a new record that has never been saved, and in the other case an existing record that has already been saved to the database. In a production Rails application, you would ordinarily eliminate this duplication by moving identical code to a partial template, which you could then include in both parent templates. But the scaffold generator tries not to make too many assumptions, and generates code that’s easy to modify if you want different forms for create and edit.
@@ -1536,7 +1536,7 @@ http://www.gnu.org/software/src-highlite -->
-Tip +Tip For more information on Active Record associations, see the Active Record Associations guide.
@@ -1556,7 +1556,7 @@ http://www.gnu.org/software/src-highlite -->
-Tip +Tip For more information on routing, see the Rails Routing from the Outside In guide.
-- cgit v1.2.3