aboutsummaryrefslogtreecommitdiffstats
path: root/README.rdoc
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-06-18 16:02:50 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-06-18 16:02:50 +0530
commit2fbb7504e2c2b0a95398d1ef0c97ea4a403d831d (patch)
treec1012729de497f3ec31d44d8295b713ccb278b8d /README.rdoc
parentc8f046bd45718a741ead574182f3468cddc05c1c (diff)
downloadrails-2fbb7504e2c2b0a95398d1ef0c97ea4a403d831d.tar.gz
rails-2fbb7504e2c2b0a95398d1ef0c97ea4a403d831d.tar.bz2
rails-2fbb7504e2c2b0a95398d1ef0c97ea4a403d831d.zip
Revert changes done in c56618ec, 51cb7459 and 030950a. The links are
pointing to files/*/*.html for usage in api.rubyonrails.org and as a result are broken in GitHub blobs. This is unavoidable (at least for now).
Diffstat (limited to 'README.rdoc')
-rw-r--r--README.rdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.rdoc b/README.rdoc
index 344a29073f..7e2d7850c8 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -18,7 +18,7 @@ you to present the data from database rows as objects and embellish these data o
with business logic methods. Although most Rails models are backed by a database, models
can also be ordinary Ruby classes, or Ruby classes that implement a set of interfaces as
provided by the ActiveModel module. You can read more about Active Record in its
-{README}[link:master/activerecord/README.rdoc].
+{README}[link:files/activerecord/README_rdoc.html].
The Controller layer is responsible for handling incoming HTTP requests and providing a
suitable response. Usually this means returning HTML, but Rails controllers can also
@@ -29,7 +29,7 @@ In Rails, the Controller and View layers are handled together by Action Pack.
These two layers are bundled in a single package due to their heavy interdependence.
This is unlike the relationship between the Active Record and Action Pack which are
independent. Each of these packages can be used independently outside of Rails. You
-can read more about Action Pack in its {README}[link:master/actionpack/README.rdoc].
+can read more about Action Pack in its {README}[link:files/actionpack/README_rdoc.html].
== Getting Started