From 7118c07de657a766bb5fe506dbf6a7312f1ee81f Mon Sep 17 00:00:00 2001 From: Joost Baaij Date: Tue, 24 Aug 2010 12:22:54 +0200 Subject: [PATCH] fix broken relative links --- README.rdoc | 10 +++++----- activerecord/lib/active_record/base.rb | 2 +- activeresource/lib/active_resource/base.rb | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.rdoc b/README.rdoc index b1a9e96..ea98d78 100644 --- a/README.rdoc +++ b/README.rdoc @@ -14,16 +14,16 @@ and directing data to the view. In \Rails, the model is handled by what's called an object-relational mapping layer entitled Active Record. This layer allows you to present the data from database rows as objects and embellish these data objects with business logic -methods. You can read more about Active Record in -link:files/vendor/rails/activerecord/README.html. +methods. You can read more about Active Record in its +{README}[link:files/activerecord/README_rdoc.html]. The controller and view are handled by the Action Pack, which handles both layers by its two parts: Action View and Action Controller. 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 that is much more separate. Each of these packages can be used independently outside of -\Rails. You can read more about Action Pack in -link:files/vendor/rails/actionpack/README.html. +\Rails. You can read more about Action Pack in its +{README}[link:files/actionpack/README_rdoc.html]. == Getting Started @@ -58,7 +58,7 @@ the following resources handy: == Contributing -We encourage you to contribute to Ruby on \Rails! Please check out the {Contributing to \Rails +We encourage you to contribute to Ruby on \Rails! Please check out the {Contributing to Rails guide}[http://edgeguides.rubyonrails.org/contributing_to_rails.html] for guidelines about how to proceed. {Join us}[http://contributors.rubyonrails.org]! diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb index 3be302a..d53a0c2 100644 --- a/activerecord/lib/active_record/base.rb +++ b/activerecord/lib/active_record/base.rb @@ -32,7 +32,7 @@ module ActiveRecord #:nodoc: # Active Record objects. The mapping that binds a given Active Record class to a certain # database table will happen automatically in most common cases, but can be overwritten for the uncommon ones. # - # See the mapping rules in table_name and the full example in link:files/README.html for more insight. + # See the mapping rules in table_name and the full example in link:files/activerecord/README_rdoc.html for more insight. # # == Creation # diff --git a/activeresource/lib/active_resource/base.rb b/activeresource/lib/active_resource/base.rb index 6242072..a462f70 100644 --- a/activeresource/lib/active_resource/base.rb +++ b/activeresource/lib/active_resource/base.rb @@ -21,7 +21,7 @@ require 'active_resource/log_subscriber' module ActiveResource # ActiveResource::Base is the main class for mapping RESTful resources as models in a Rails application. # - # For an outline of what Active Resource is capable of, see link:files/vendor/rails/activeresource/README.html. + # For an outline of what Active Resource is capable of, see its {README}[link:files/activeresource/README_rdoc.html]. # # == Automated mapping # -- 1.7.0.3