From c02288e6fda824a77f6097f4c03b026b8d6e4f49 Mon Sep 17 00:00:00 2001 From: Ben Marini Date: Sun, 24 Jul 2011 12:13:23 -0700 Subject: [PATCH 01/24] Fix example code for #validates_with instance method --- activemodel/lib/active_model/validations/with.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/activemodel/lib/active_model/validations/with.rb b/activemodel/lib/active_model/validations/with.rb index 65ae18a769..a87b213fe4 100644 --- a/activemodel/lib/active_model/validations/with.rb +++ b/activemodel/lib/active_model/validations/with.rb @@ -101,7 +101,7 @@ module ActiveModel # class Person # include ActiveModel::Validations # - # validates :instance_validations + # validate :instance_validations # # def instance_validations # validates_with MyValidator @@ -116,7 +116,7 @@ module ActiveModel # class Person # include ActiveModel::Validations # - # validates :instance_validations, :on => :create + # validate :instance_validations, :on => :create # # def instance_validations # validates_with MyValidator, MyOtherValidator From 941fae2cbb070caf0abe902dd7b2ae091b240e72 Mon Sep 17 00:00:00 2001 From: Michael Lavrisha Date: Sun, 24 Jul 2011 13:59:52 -0600 Subject: [PATCH 02/24] Provide consistant indentation for the example code --- .../source/api_documentation_guidelines.textile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/railties/guides/source/api_documentation_guidelines.textile b/railties/guides/source/api_documentation_guidelines.textile index bab2be9188..9c4df2d6b8 100644 --- a/railties/guides/source/api_documentation_guidelines.textile +++ b/railties/guides/source/api_documentation_guidelines.textile @@ -78,14 +78,14 @@ The result of expressions follow them and are introduced by "# => ", vertically If a line is too long, the comment may be placed on the next line: - # label(:post, :title) - # # => - # - # label(:post, :title, "A short title") - # # => - # - # label(:post, :title, "A short title", :class => "title_label") - # # => +# label(:post, :title) +# # => +# +# label(:post, :title, "A short title") +# # => +# +# label(:post, :title, "A short title", :class => "title_label") +# # => Avoid using any printing methods like +puts+ or +p+ for that purpose. From 3ba30e66503cd078c58501c7d35eb9a9b54c03da Mon Sep 17 00:00:00 2001 From: Jason Noble & Ralph Shnelvar Date: Sun, 24 Jul 2011 14:04:43 -0600 Subject: [PATCH 03/24] Wrapped text content to 120 chars --- .../guides/source/getting_started.textile | 109 +++++++++++++----- 1 file changed, 79 insertions(+), 30 deletions(-) diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 1bdfd79476..0912355e83 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -13,17 +13,23 @@ WARNING. This Guide is based on Rails 3.1. Some of the code shown here will not h3. Guide Assumptions -This guide is designed for beginners who want to get started with a Rails application from scratch. It does not assume that you have any prior experience with Rails. However, to get the most out of it, you need to have some prerequisites installed: +This guide is designed for beginners who want to get started with a Rails application from scratch. It does not assume +that you have any prior experience with Rails. However, to get the most out of it, you need to have some prerequisites +installed: * The "Ruby":http://www.ruby-lang.org/en/downloads language version 1.8.7 or higher -TIP: Note that Ruby 1.8.7 p248 and p249 have marshaling bugs that crash Rails 3.0. Ruby Enterprise Edition have these fixed since release 1.8.7-2010.02 though. On the 1.9 front, Ruby 1.9.1 is not usable because it outright segfaults on Rails 3.0, so if you want to use Rails 3 with 1.9.x jump on 1.9.2 for smooth sailing. +TIP: Note that Ruby 1.8.7 p248 and p249 have marshaling bugs that crash Rails 3.0. Ruby Enterprise Edition have these +fixed since release 1.8.7-2010.02 though. On the 1.9 front, Ruby 1.9.1 is not usable because it outright segfaults on +Rails 3.0, so if you want to use Rails 3 with 1.9.x jump on 1.9.2 for smooth sailing. * The "RubyGems":http://rubyforge.org/frs/?group_id=126 packaging system ** If you want to learn more about RubyGems, please read the "RubyGems User Guide":http://docs.rubygems.org/read/book/1 * A working installation of the "SQLite3 Database":http://www.sqlite.org -Rails is a web application framework running on the Ruby programming language. If you have no prior experience with Ruby, you will find a very steep learning curve diving straight into Rails. There are some good free resources on the internet for learning Ruby, including: +Rails is a web application framework running on the Ruby programming language. If you have no prior experience with +Ruby, you will find a very steep learning curve diving straight into Rails. There are some good free resources on the +internet for learning Ruby, including: * "Mr. Neighborly's Humble Little Ruby Book":http://www.humblelittlerubybook.com * "Programming Ruby":http://www.ruby-doc.org/docs/ProgrammingRuby/ @@ -31,15 +37,23 @@ Rails is a web application framework running on the Ruby programming language. I h3. What is Rails? -Rails is a web application development framework written in the Ruby language. It is designed to make programming web applications easier by making assumptions about what every developer needs to get started. It allows you to write less code while accomplishing more than many other languages and frameworks. Experienced Rails developers also report that it makes web application development more fun. +Rails is a web application development framework written in the Ruby language. It is designed to make programming web +applications easier by making assumptions about what every developer needs to get started. It allows you to write less +code while accomplishing more than many other languages and frameworks. Experienced Rails developers also report that +it makes web application development more fun. -Rails is opinionated software. It makes the assumption that there is a "best" way to do things, and it's designed to encourage that way - and in some cases to discourage alternatives. If you learn "The Rails Way" you'll probably discover a tremendous increase in productivity. If you persist in bringing old habits from other languages to your Rails development, and trying to use patterns you learned elsewhere, you may have a less happy experience. +Rails is opinionated software. It makes the assumption that there is a "best" way to do things, and it's designed to +encourage that way - and in some cases to discourage alternatives. If you learn "The Rails Way" you'll probably discover +a tremendous increase in productivity. If you persist in bringing old habits from other languages to your Rails +development, and trying to use patterns you learned elsewhere, you may have a less happy experience. The Rails philosophy includes several guiding principles: * DRY - "Don't Repeat Yourself" - suggests that writing the same code over and over again is a bad thing. -* Convention Over Configuration - means that Rails makes assumptions about what you want to do and how you're going to do it, rather than requiring you to specify every little thing through endless configuration files. -* REST is the best pattern for web applications - organizing your application around resources and standard HTTP verbs is the fastest way to go. +* Convention Over Configuration - means that Rails makes assumptions about what you want to do and how you're going to +d o it, rather than requiring you to specify every little thing through endless configuration files. +* REST is the best pattern for web applications - organizing your application around resources and standard HTTP verbs +i s the fastest way to go. h4. The MVC Architecture @@ -51,20 +65,29 @@ At the core of Rails is the Model, View, Controller architecture, usually just c h5. Models -A model represents the information (data) of the application and the rules to manipulate that data. In the case of Rails, models are primarily used for managing the rules of interaction with a corresponding database table. In most cases, each table in your database will correspond to one model in your application. The bulk of your application's business logic will be concentrated in the models. +A model represents the information (data) of the application and the rules to manipulate that data. In the case of +Rails, models are primarily used for managing the rules of interaction with a corresponding database table. In most +cases, each table in your database will correspond to one model in your application. The bulk of your application's +business logic will be concentrated in the models. h5. Views -Views represent the user interface of your application. In Rails, views are often HTML files with embedded Ruby code that perform tasks related solely to the presentation of the data. Views handle the job of providing data to the web browser or other tool that is used to make requests from your application. +Views represent the user interface of your application. In Rails, views are often HTML files with embedded Ruby code +that perform tasks related solely to the presentation of the data. Views handle the job of providing data to the web +browser or other tool that is used to make requests from your application. h5. Controllers -Controllers provide the "glue" between models and views. In Rails, controllers are responsible for processing the incoming requests from the web browser, interrogating the models for data, and passing that data on to the views for presentation. +Controllers provide the "glue" between models and views. In Rails, controllers are responsible for processing the +incoming requests from the web browser, interrogating the models for data, and passing that data on to the views for +presentation. h4. The Components of Rails -Rails ships as many individual components. Each of these components are briefly explained below. If you are new to Rails, as you read this section, don't get hung up on the details of each component, as they will be -explained in further detail later. For instance, we will bring up Rack applications, but you don't need to know anything about them to continue with this guide. +Rails ships as many individual components. Each of these components are briefly explained below. If you are new to +Rails, as you read this section, don't get hung up on the details of each component, as they will be explained in +further detail later. For instance, we will bring up Rack applications, but you don't need to know anything about them +to continue with this guide. * Action Pack ** Action Controller @@ -84,7 +107,9 @@ Action Pack is a single gem that contains Action Controller, Action View and Act h6. Action Controller -Action Controller is the component that manages the controllers in a Rails application. The Action Controller framework processes incoming requests to a Rails application, extracts parameters, and dispatches them to the intended action. Services provided by Action Controller include session management, template rendering, and redirect management. +Action Controller is the component that manages the controllers in a Rails application. The Action Controller framework +processes incoming requests to a Rails application, extracts parameters, and dispatches them to the intended action. +Services provided by Action Controller include session management, template rendering, and redirect management. h6. Action View @@ -94,35 +119,47 @@ are covered in more detail in another guide called "Layouts and Rendering":layou h6. Action Dispatch -Action Dispatch handles routing of web requests and dispatches them as you want, either to your application or any other Rack application. Rack applications are a more advanced topic and are covered in a separate guide called "Rails on Rack":rails_on_rack.html. +Action Dispatch handles routing of web requests and dispatches them as you want, either to your application or any other +Rack application. Rack applications are a more advanced topic and are covered in a separate guide called "Rails on +Rack":rails_on_rack.html. h5. Action Mailer -Action Mailer is a framework for building e-mail services. You can use Action Mailer to receive and process incoming email and send simple plain text or complex multipart emails based on flexible templates. +Action Mailer is a framework for building e-mail services. You can use Action Mailer to receive and process incoming +email and send simple plain text or complex multipart emails based on flexible templates. h5. Active Model -Active Model provides a defined interface between the Action Pack gem services and Object Relationship Mapping gems such as Active Record. Active Model allows Rails to utilize other ORM frameworks in place of Active Record if your application needs this. +Active Model provides a defined interface between the Action Pack gem services and Object Relationship Mapping gems +such as Active Record. Active Model allows Rails to utilize other ORM frameworks in place of Active Record if your +application needs this. h5. Active Record -Active Record is the base for the models in a Rails application. It provides database independence, basic CRUD functionality, advanced finding capabilities, and the ability to relate models to one another, among other services. +Active Record is the base for the models in a Rails application. It provides database independence, basic CRUD +functionality, advanced finding capabilities, and the ability to relate models to one another, among other services. h5. Active Resource -Active Resource provides a framework for managing the connection between business objects and RESTful web services. It implements a way to map web-based resources to local objects with CRUD semantics. +Active Resource provides a framework for managing the connection between business objects and RESTful web services. It +implements a way to map web-based resources to local objects with CRUD semantics. h5. Active Support -Active Support is an extensive collection of utility classes and standard Ruby library extensions that are used in Rails, both by the core code and by your applications. +Active Support is an extensive collection of utility classes and standard Ruby library extensions that are used in +Rails, both by the core code and by your applications. h5. Railties -Railties is the core Rails code that builds new Rails applications and glues the various frameworks and plugins together in any Rails application. +Railties is the core Rails code that builds new Rails applications and glues the various frameworks and plugins together +in any Rails application. h4. REST -Rest stands for Representational State Transfer and is the foundation of the RESTful architecture. This is generally considered to be Roy Fielding's doctoral thesis, "Architectural Styles and the Design of Network-based Software Architectures":http://www.ics.uci.edu/~fielding/pubs/dissertation/top.htm. While you can read through the thesis, REST in terms of Rails boils down to two main principles: +Rest stands for Representational State Transfer and is the foundation of the RESTful architecture. This is generally +considered to be Roy Fielding's doctoral thesis, "Architectural Styles and the Design of Network-based Software +Architectures":http://www.ics.uci.edu/~fielding/pubs/dissertation/top.htm. While you can read through the thesis, REST +in terms of Rails boils down to two main principles: * Using resource identifiers such as URLs to represent resources. * Transferring representations of the state of that resource between system components. @@ -131,18 +168,23 @@ For example, to a Rails application a request such as this: DELETE /photos/17 -would be understood to refer to a photo resource with the ID of 17, and to indicate a desired action - deleting that resource. REST is a natural style for the architecture of web applications, and Rails hooks into this shielding you from many of the RESTful complexities and browser quirks. +would be understood to refer to a photo resource with the ID of 17, and to indicate a desired action - deleting that +resource. REST is a natural style for the architecture of web applications, and Rails hooks into this shielding you from +many of the RESTful complexities and browser quirks. -If you'd like more details on REST as an architectural style, these resources are more approachable than Fielding's thesis: +If you'd like more details on REST as an architectural style, these resources are more approachable than Fielding's +thesis: * "A Brief Introduction to REST":http://www.infoq.com/articles/rest-introduction by Stefan Tilkov * "An Introduction to REST":http://bitworking.org/news/373/An-Introduction-to-REST (video tutorial) by Joe Gregorio * "Representational State Transfer":http://en.wikipedia.org/wiki/Representational_State_Transfer article in Wikipedia -* "How to GET a Cup of Coffee":http://www.infoq.com/articles/webber-rest-workflow by Jim Webber, Savas Parastatidis & Ian Robinson +* "How to GET a Cup of Coffee":http://www.infoq.com/articles/webber-rest-workflow by Jim Webber, Savas Parastatidis & +Ian Robinson h3. Creating a New Rails Project -If you follow this guide, you'll create a Rails project called blog, a (very) simple weblog. Before you can start building the application, you need to make sure that you have Rails itself installed. +If you follow this guide, you'll create a Rails project called blog, a (very) simple weblog. Before you can +start building the application, you need to make sure that you have Rails itself installed. h4. Installing Rails @@ -157,7 +199,9 @@ TIP. If you're working on Windows, you can quickly install Ruby and Rails with " h4. Creating the Blog Application -The best way to use this guide is to follow each step as it happens, no code or step needed to make this example application has been left out, so you can literally follow along step by step. If you need to see the completed code, you can download it from "Getting Started Code":https://github.com/mikel/getting-started-code. +The best way to use this guide is to follow each step as it happens, no code or step needed to make this example +application has been left out, so you can literally follow along step by step. If you need to see the completed code, +you can download it from "Getting Started Code":https://github.com/mikel/getting-started-code. To begin, open a terminal, navigate to a folder where you have rights to create files, and type: @@ -175,7 +219,9 @@ After you create the blog application, switch to its folder to continue work dir $ cd blog -In any case, Rails will create a folder in your working directory called blog. Open up that folder and explore its contents. Most of the work in this tutorial will happen in the app/ folder, but here's a basic rundown on the function of each folder that Rails creates in a new application by default: +In any case, Rails will create a folder in your working directory called blog. Open up that folder and explore +its contents. Most of the work in this tutorial will happen in the app/ folder, but here's a basic rundown on +the function of each folder that Rails creates in a new application by default: |_.File/Folder|_.Purpose| |Gemfile|This file allows you to specify what gem dependencies are needed for your Rails application. See section on Bundler, below.| @@ -196,7 +242,8 @@ In any case, Rails will create a folder in your working directory called blo h4. Installing the Required Gems -Rails applications manage gem dependencies with "Bundler":http://gembundler.com/v1.0/index.html by default. As we don't need any other gems beyond the ones in the generated +Gemfile+ we can directly run +Rails applications manage gem dependencies with "Bundler":http://gembundler.com/v1.0/index.html by default. As we don't +need any other gems beyond the ones in the generated +Gemfile+ we can directly run $ bundle install @@ -206,8 +253,10 @@ to have them ready. h4. Configuring a Database -Just about every Rails application will interact with a database. The database to use is specified in a configuration file, +config/database.yml+. -If you open this file in a new Rails application, you'll see a default database configuration using SQLite3. The file contains sections for three different environments in which Rails can run by default: +Just about every Rails application will interact with a database. The database to use is specified in a configuration +file, +config/database.yml+. +If you open this file in a new Rails application, you'll see a default database configuration using SQLite3. The file +contains sections for three different environments in which Rails can run by default: * The +development+ environment is used on your development computer as you interact manually with the application. * The +test+ environment is used to run automated tests. From 06b59e39a120efe173c2f2655b7f822fbf0107f0 Mon Sep 17 00:00:00 2001 From: Michael Lavrisha Date: Sun, 24 Jul 2011 14:34:34 -0600 Subject: [PATCH 04/24] Rewrite apart of the REST section to be in the present tense --- railties/guides/source/getting_started.textile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 1bdfd79476..6eaa47e04e 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -127,11 +127,11 @@ Rest stands for Representational State Transfer and is the foundation of the RES * Using resource identifiers such as URLs to represent resources. * Transferring representations of the state of that resource between system components. -For example, to a Rails application a request such as this: +For example, the following HTTP request: DELETE /photos/17 -would be understood to refer to a photo resource with the ID of 17, and to indicate a desired action - deleting that resource. REST is a natural style for the architecture of web applications, and Rails hooks into this shielding you from many of the RESTful complexities and browser quirks. +refers to a photo resource with an ID of 17 and indicates an action to be taken upon it: deletion. REST is a natural style for the architecture of web applications, and Rails hooks into this shielding you from many of the RESTful complexities and browser quirks. If you'd like more details on REST as an architectural style, these resources are more approachable than Fielding's thesis: From b08483633993d90d77f776b8fccb4e8ce4678505 Mon Sep 17 00:00:00 2001 From: Jason Noble & Ralph Shnelvar Date: Sun, 24 Jul 2011 14:37:24 -0600 Subject: [PATCH 05/24] Reformatted to 80 chars. --- .../guides/source/getting_started.textile | 783 +++++++++++++----- 1 file changed, 570 insertions(+), 213 deletions(-) diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 0912355e83..aaad63523a 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -1,6 +1,7 @@ h2. Getting Started with Rails -This guide covers getting up and running with Ruby on Rails. After reading it, you should be familiar with: +This guide covers getting up and running with Ruby on Rails. After reading it, +you should be familiar with: * Installing Rails, creating a new Rails application, and connecting your application to a database * The general layout of a Rails application @@ -9,26 +10,31 @@ This guide covers getting up and running with Ruby on Rails. After reading it, y endprologue. -WARNING. This Guide is based on Rails 3.1. Some of the code shown here will not work in earlier versions of Rails. +WARNING. This Guide is based on Rails 3.1. Some of the code shown here will not +work in earlier versions of Rails. h3. Guide Assumptions -This guide is designed for beginners who want to get started with a Rails application from scratch. It does not assume -that you have any prior experience with Rails. However, to get the most out of it, you need to have some prerequisites -installed: +This guide is designed for beginners who want to get started with a Rails +application from scratch. It does not assume that you have any prior experience +with Rails. However, to get the most out of it, you need to have some +prerequisites installed: * The "Ruby":http://www.ruby-lang.org/en/downloads language version 1.8.7 or higher -TIP: Note that Ruby 1.8.7 p248 and p249 have marshaling bugs that crash Rails 3.0. Ruby Enterprise Edition have these -fixed since release 1.8.7-2010.02 though. On the 1.9 front, Ruby 1.9.1 is not usable because it outright segfaults on -Rails 3.0, so if you want to use Rails 3 with 1.9.x jump on 1.9.2 for smooth sailing. +TIP: Note that Ruby 1.8.7 p248 and p249 have marshaling bugs that crash Rails +3.0. Ruby Enterprise Edition have these fixed since release 1.8.7-2010.02 +though. On the 1.9 front, Ruby 1.9.1 is not usable because it outright segfaults +on Rails 3.0, so if you want to use Rails 3 with 1.9.x jump on 1.9.2 for smooth +sailing. * The "RubyGems":http://rubyforge.org/frs/?group_id=126 packaging system ** If you want to learn more about RubyGems, please read the "RubyGems User Guide":http://docs.rubygems.org/read/book/1 * A working installation of the "SQLite3 Database":http://www.sqlite.org -Rails is a web application framework running on the Ruby programming language. If you have no prior experience with -Ruby, you will find a very steep learning curve diving straight into Rails. There are some good free resources on the +Rails is a web application framework running on the Ruby programming language. +If you have no prior experience with Ruby, you will find a very steep learning +curve diving straight into Rails. There are some good free resources on the internet for learning Ruby, including: * "Mr. Neighborly's Humble Little Ruby Book":http://www.humblelittlerubybook.com @@ -37,15 +43,19 @@ internet for learning Ruby, including: h3. What is Rails? -Rails is a web application development framework written in the Ruby language. It is designed to make programming web -applications easier by making assumptions about what every developer needs to get started. It allows you to write less -code while accomplishing more than many other languages and frameworks. Experienced Rails developers also report that -it makes web application development more fun. +Rails is a web application development framework written in the Ruby language. +It is designed to make programming web applications easier by making assumptions +about what every developer needs to get started. It allows you to write less +code while accomplishing more than many other languages and frameworks. +Experienced Rails developers also report that it makes web application +development more fun. -Rails is opinionated software. It makes the assumption that there is a "best" way to do things, and it's designed to -encourage that way - and in some cases to discourage alternatives. If you learn "The Rails Way" you'll probably discover -a tremendous increase in productivity. If you persist in bringing old habits from other languages to your Rails -development, and trying to use patterns you learned elsewhere, you may have a less happy experience. +Rails is opinionated software. It makes the assumption that there is a "best" +way to do things, and it's designed to encourage that way - and in some cases to +discourage alternatives. If you learn "The Rails Way" you'll probably discover a +tremendous increase in productivity. If you persist in bringing old habits from +other languages to your Rails development, and trying to use patterns you +learned elsewhere, you may have a less happy experience. The Rails philosophy includes several guiding principles: @@ -57,7 +67,8 @@ i s the fastest way to go. h4. The MVC Architecture -At the core of Rails is the Model, View, Controller architecture, usually just called MVC. MVC benefits include: +At the core of Rails is the Model, View, Controller architecture, usually just +called MVC. MVC benefits include: * Isolation of business logic from the user interface * Ease of keeping code DRY @@ -65,29 +76,34 @@ At the core of Rails is the Model, View, Controller architecture, usually just c h5. Models -A model represents the information (data) of the application and the rules to manipulate that data. In the case of -Rails, models are primarily used for managing the rules of interaction with a corresponding database table. In most -cases, each table in your database will correspond to one model in your application. The bulk of your application's -business logic will be concentrated in the models. +A model represents the information (data) of the application and the rules to +manipulate that data. In the case of Rails, models are primarily used for +managing the rules of interaction with a corresponding database table. In most +cases, each table in your database will correspond to one model in your +application. The bulk of your application's business logic will be concentrated +in the models. h5. Views -Views represent the user interface of your application. In Rails, views are often HTML files with embedded Ruby code -that perform tasks related solely to the presentation of the data. Views handle the job of providing data to the web +Views represent the user interface of your application. In Rails, views are +often HTML files with embedded Ruby code that perform tasks related solely to +the presentation of the data. Views handle the job of providing data to the web browser or other tool that is used to make requests from your application. h5. Controllers -Controllers provide the "glue" between models and views. In Rails, controllers are responsible for processing the -incoming requests from the web browser, interrogating the models for data, and passing that data on to the views for +Controllers provide the "glue" between models and views. In Rails, controllers +are responsible for processing the incoming requests from the web browser, +interrogating the models for data, and passing that data on to the views for presentation. h4. The Components of Rails -Rails ships as many individual components. Each of these components are briefly explained below. If you are new to -Rails, as you read this section, don't get hung up on the details of each component, as they will be explained in -further detail later. For instance, we will bring up Rack applications, but you don't need to know anything about them -to continue with this guide. +Rails ships as many individual components. Each of these components are briefly +explained below. If you are new to Rails, as you read this section, don't get +hung up on the details of each component, as they will be explained in further +detail later. For instance, we will bring up Rack applications, but you don't +need to know anything about them to continue with this guide. * Action Pack ** Action Controller @@ -103,63 +119,76 @@ to continue with this guide. h5. Action Pack -Action Pack is a single gem that contains Action Controller, Action View and Action Dispatch. The "VC" part of "MVC". +Action Pack is a single gem that contains Action Controller, Action View and +Action Dispatch. The "VC" part of "MVC". h6. Action Controller -Action Controller is the component that manages the controllers in a Rails application. The Action Controller framework -processes incoming requests to a Rails application, extracts parameters, and dispatches them to the intended action. -Services provided by Action Controller include session management, template rendering, and redirect management. +Action Controller is the component that manages the controllers in a Rails +application. The Action Controller framework processes incoming requests to a +Rails application, extracts parameters, and dispatches them to the intended +action. Services provided by Action Controller include session management, +template rendering, and redirect management. h6. Action View -Action View manages the views of your Rails application. It can create both HTML and XML output by default. Action View -manages rendering templates, including nested and partial templates, and includes built-in AJAX support. View templates -are covered in more detail in another guide called "Layouts and Rendering":layouts_and_rendering.html. +Action View manages the views of your Rails application. It can create both HTML +and XML output by default. Action View manages rendering templates, including +nested and partial templates, and includes built-in AJAX support. View +templates are covered in more detail in another guide called "Layouts and +Rendering":layouts_and_rendering.html. h6. Action Dispatch -Action Dispatch handles routing of web requests and dispatches them as you want, either to your application or any other -Rack application. Rack applications are a more advanced topic and are covered in a separate guide called "Rails on +Action Dispatch handles routing of web requests and dispatches them as you want, +either to your application or any other Rack application. Rack applications are +a more advanced topic and are covered in a separate guide called "Rails on Rack":rails_on_rack.html. h5. Action Mailer -Action Mailer is a framework for building e-mail services. You can use Action Mailer to receive and process incoming -email and send simple plain text or complex multipart emails based on flexible templates. +Action Mailer is a framework for building e-mail services. You can use Action +Mailer to receive and process incoming email and send simple plain text or +complex multipart emails based on flexible templates. h5. Active Model -Active Model provides a defined interface between the Action Pack gem services and Object Relationship Mapping gems -such as Active Record. Active Model allows Rails to utilize other ORM frameworks in place of Active Record if your +Active Model provides a defined interface between the Action Pack gem services +and Object Relationship Mapping gems such as Active Record. Active Model allows +Rails to utilize other ORM frameworks in place of Active Record if your application needs this. h5. Active Record -Active Record is the base for the models in a Rails application. It provides database independence, basic CRUD -functionality, advanced finding capabilities, and the ability to relate models to one another, among other services. +Active Record is the base for the models in a Rails application. It provides +database independence, basic CRUD functionality, advanced finding capabilities, +and the ability to relate models to one another, among other services. h5. Active Resource -Active Resource provides a framework for managing the connection between business objects and RESTful web services. It -implements a way to map web-based resources to local objects with CRUD semantics. +Active Resource provides a framework for managing the connection between +business objects and RESTful web services. It implements a way to map web-based +resources to local objects with CRUD semantics. h5. Active Support -Active Support is an extensive collection of utility classes and standard Ruby library extensions that are used in -Rails, both by the core code and by your applications. +Active Support is an extensive collection of utility classes and standard Ruby +library extensions that are used in Rails, both by the core code and by your +applications. h5. Railties -Railties is the core Rails code that builds new Rails applications and glues the various frameworks and plugins together -in any Rails application. +Railties is the core Rails code that builds new Rails applications and glues the +various frameworks and plugins together in any Rails application. h4. REST -Rest stands for Representational State Transfer and is the foundation of the RESTful architecture. This is generally -considered to be Roy Fielding's doctoral thesis, "Architectural Styles and the Design of Network-based Software -Architectures":http://www.ics.uci.edu/~fielding/pubs/dissertation/top.htm. While you can read through the thesis, REST -in terms of Rails boils down to two main principles: +Rest stands for Representational State Transfer and is the foundation of the +RESTful architecture. This is generally considered to be Roy Fielding's doctoral +thesis, "Architectural Styles and the Design of Network-based Software +Architectures":http://www.ics.uci.edu/~fielding/pubs/dissertation/top.htm. While +you can read through the thesis, REST in terms of Rails boils down to two main +principles: * Using resource identifiers such as URLs to represent resources. * Transferring representations of the state of that resource between system components. @@ -168,12 +197,13 @@ For example, to a Rails application a request such as this: DELETE /photos/17 -would be understood to refer to a photo resource with the ID of 17, and to indicate a desired action - deleting that -resource. REST is a natural style for the architecture of web applications, and Rails hooks into this shielding you from -many of the RESTful complexities and browser quirks. +would be understood to refer to a photo resource with the ID of 17, and to +indicate a desired action - deleting that resource. REST is a natural style for +the architecture of web applications, and Rails hooks into this shielding you +from many of the RESTful complexities and browser quirks. -If you'd like more details on REST as an architectural style, these resources are more approachable than Fielding's -thesis: +If you'd like more details on REST as an architectural style, these resources +are more approachable than Fielding's thesis: * "A Brief Introduction to REST":http://www.infoq.com/articles/rest-introduction by Stefan Tilkov * "An Introduction to REST":http://bitworking.org/news/373/An-Introduction-to-REST (video tutorial) by Joe Gregorio @@ -183,8 +213,9 @@ Ian Robinson h3. Creating a New Rails Project -If you follow this guide, you'll create a Rails project called blog, a (very) simple weblog. Before you can -start building the application, you need to make sure that you have Rails itself installed. +If you follow this guide, you'll create a Rails project called blog, a +(very) simple weblog. Before you can start building the application, you need to +make sure that you have Rails itself installed. h4. Installing Rails @@ -195,15 +226,19 @@ Usually run this as the root user: # gem install rails -TIP. If you're working on Windows, you can quickly install Ruby and Rails with "Rails Installer":http://railsinstaller.org. +TIP. If you're working on Windows, you can quickly install Ruby and Rails with +"Rails Installer":http://railsinstaller.org. h4. Creating the Blog Application -The best way to use this guide is to follow each step as it happens, no code or step needed to make this example -application has been left out, so you can literally follow along step by step. If you need to see the completed code, -you can download it from "Getting Started Code":https://github.com/mikel/getting-started-code. +The best way to use this guide is to follow each step as it happens, no code or +step needed to make this example application has been left out, so you can +literally follow along step by step. If you need to see the completed code, you +can download it from "Getting Started +Code":https://github.com/mikel/getting-started-code. -To begin, open a terminal, navigate to a folder where you have rights to create files, and type: +To begin, open a terminal, navigate to a folder where you have rights to create +files, and type: $ rails new blog @@ -211,17 +246,21 @@ $ rails new blog This will create a Rails application called Blog in a directory called blog. -TIP: You can see all of the switches that the Rails application builder accepts by running rails new -h. +TIP: You can see all of the switches that the Rails application builder accepts +by running rails new -h. -After you create the blog application, switch to its folder to continue work directly in that application: +After you create the blog application, switch to its folder to continue work +directly in that application: $ cd blog -In any case, Rails will create a folder in your working directory called blog. Open up that folder and explore -its contents. Most of the work in this tutorial will happen in the app/ folder, but here's a basic rundown on -the function of each folder that Rails creates in a new application by default: +In any case, Rails will create a folder in your working directory called +blog. Open up that folder and explore its contents. Most of the work in +this tutorial will happen in the app/ folder, but here's a basic +rundown on the function of each folder that Rails creates in a new application +by default: |_.File/Folder|_.Purpose| |Gemfile|This file allows you to specify what gem dependencies are needed for your Rails application. See section on Bundler, below.| @@ -242,8 +281,9 @@ the function of each folder that Rails creates in a new application by default: h4. Installing the Required Gems -Rails applications manage gem dependencies with "Bundler":http://gembundler.com/v1.0/index.html by default. As we don't -need any other gems beyond the ones in the generated +Gemfile+ we can directly run +Rails applications manage gem dependencies with +"Bundler":http://gembundler.com/v1.0/index.html by default. As we don't need any +other gems beyond the ones in the generated +Gemfile+ we can directly run $ bundle install @@ -253,10 +293,11 @@ to have them ready. h4. Configuring a Database -Just about every Rails application will interact with a database. The database to use is specified in a configuration -file, +config/database.yml+. -If you open this file in a new Rails application, you'll see a default database configuration using SQLite3. The file -contains sections for three different environments in which Rails can run by default: +Just about every Rails application will interact with a database. The database +to use is specified in a configuration file, +config/database.yml+. If you open +this file in a new Rails application, you'll see a default database +configuration using SQLite3. The file contains sections for three different +environments in which Rails can run by default: * The +development+ environment is used on your development computer as you interact manually with the application. * The +test+ environment is used to run automated tests. @@ -264,9 +305,15 @@ contains sections for three different environments in which Rails can run by def h5. Configuring an SQLite3 Database -Rails comes with built-in support for "SQLite3":http://www.sqlite.org, which is a lightweight serverless database application. While a busy production environment may overload SQLite, it works well for development and testing. Rails defaults to using an SQLite database when creating a new project, but you can always change it later. +Rails comes with built-in support for "SQLite3":http://www.sqlite.org, which is +a lightweight serverless database application. While a busy production +environment may overload SQLite, it works well for development and testing. +Rails defaults to using an SQLite database when creating a new project, but you +can always change it later. -Here's the section of the default configuration file (config/database.yml) with connection information for the development environment: +Here's the section of the default configuration file +(config/database.yml) with connection information for the development +environment: development: @@ -276,11 +323,17 @@ development: timeout: 5000 -NOTE: In this guide we are using an SQLite3 database for data storage, because it is a zero configuration database that just works. Rails also supports MySQL and PostgreSQL "out of the box", and has plugins for many database systems. If you are using a database in a production environment Rails most likely has an adapter for it. +NOTE: In this guide we are using an SQLite3 database for data storage, because +it is a zero configuration database that just works. Rails also supports MySQL +and PostgreSQL "out of the box", and has plugins for many database systems. If +you are using a database in a production environment Rails most likely has an +adapter for it. h5. Configuring a MySQL Database -If you choose to use MySQL instead of the shipped SQLite3 database, your +config/database.yml+ will look a little different. Here's the development section: +If you choose to use MySQL instead of the shipped SQLite3 database, your ++config/database.yml+ will look a little different. Here's the development +section: development: @@ -293,11 +346,14 @@ development: socket: /tmp/mysql.sock -If your development computer's MySQL installation includes a root user with an empty password, this configuration should work for you. Otherwise, change the username and password in the +development+ section as appropriate. +If your development computer's MySQL installation includes a root user with an +empty password, this configuration should work for you. Otherwise, change the +username and password in the +development+ section as appropriate. h5. Configuring a PostgreSQL Database -If you choose to use PostgreSQL, your +config/database.yml+ will be customized to use PostgreSQL databases: +If you choose to use PostgreSQL, your +config/database.yml+ will be customized +to use PostgreSQL databases: development: @@ -311,7 +367,8 @@ development: h5. Configuring an SQLite3 Database for JRuby Platform -If you choose to use SQLite3 and using JRuby, your +config/database.yml+ will look a little different. Here's the development section: +If you choose to use SQLite3 and using JRuby, your +config/database.yml+ will +look a little different. Here's the development section: development: @@ -321,7 +378,8 @@ development: h5. Configuring a MySQL Database for JRuby Platform -If you choose to use MySQL and using JRuby, your +config/database.yml+ will look a little different. Here's the development section: +If you choose to use MySQL and using JRuby, your +config/database.yml+ will look +a little different. Here's the development section: development: @@ -333,7 +391,9 @@ development: h5. Configuring a PostgreSQL Database for JRuby Platform -Finally if you choose to use PostgreSQL and using JRuby, your +config/database.yml+ will look a little different. Here's the development section: +Finally if you choose to use PostgreSQL and using JRuby, your ++config/database.yml+ will look a little different. Here's the development +section: development: @@ -346,51 +406,79 @@ development: Change the username and password in the +development+ section as appropriate. -TIP: You don't have to update the database configurations manually. If you had a look at the options of application generator, you have seen that one of them is named --database. It lets you choose an adapter for couple of most used relational databases. You can even run the generator repeatedly: cd .. && rails new blog --database=mysql. When you confirm the overwriting of the +config/database.yml+ file, your application will be configured for MySQL instead of SQLite. +TIP: You don't have to update the database configurations manually. If you had a +look at the options of application generator, you have seen that one of them is +named --database. It lets you choose an adapter for couple of most used +relational databases. You can even run the generator repeatedly: cd .. && +rails new blog --database=mysql. When you confirm the overwriting of the ++config/database.yml+ file, your application will be configured for MySQL +instead of SQLite. h4. Creating the Database -Now that you have your database configured, it's time to have Rails create an empty database for you. You can do this by running a rake command: +Now that you have your database configured, it's time to have Rails create an +empty database for you. You can do this by running a rake command: $ rake db:create -This will create your development and test SQLite3 databases inside the db/ folder. +This will create your development and test SQLite3 databases inside the +db/ folder. -TIP: Rake is a general-purpose command-runner that Rails uses for many things. You can see the list of available rake commands in your application by running +rake -T+. +TIP: Rake is a general-purpose command-runner that Rails uses for many things. +You can see the list of available rake commands in your application by running ++rake -T+. h3. Hello, Rails! -One of the traditional places to start with a new language is by getting some text up on screen quickly. To do this, you need to get your Rails application server running. +One of the traditional places to start with a new language is by getting some +text up on screen quickly. To do this, you need to get your Rails application +server running. h4. Starting up the Web Server -You actually have a functional Rails application already. To see it, you need to start a web server on your development machine. You can do this by running: +You actually have a functional Rails application already. To see it, you need to +start a web server on your development machine. You can do this by running: $ rails server -This will fire up an instance of the WEBrick web server by default (Rails can also use several other web servers). To see your application in action, open a browser window and navigate to "http://localhost:3000":http://localhost:3000. You should see Rails' default information page: +This will fire up an instance of the WEBrick web server by default (Rails can +also use several other web servers). To see your application in action, open a +browser window and navigate to "http://localhost:3000":http://localhost:3000. +You should see Rails' default information page: !images/rails_welcome.png(Welcome Aboard screenshot)! -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. +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. -The "Welcome Aboard" page is the _smoke test_ for a new Rails application: it makes sure that you have your software configured correctly enough to serve a page. You can also click on the _About your application’s environment_ link to see a summary of your application's environment. +The "Welcome Aboard" page is the _smoke test_ for a new Rails application: it +makes sure that you have your software configured correctly enough to serve a +page. You can also click on the _About your application’s environment_ link to +see a summary of your application's environment. h4. Say "Hello", Rails -To get Rails saying "Hello", you need to create at minimum a controller and a view. Fortunately, you can do that in a single command. Enter this command in your terminal: +To get Rails saying "Hello", you need to create at minimum a controller and a +view. Fortunately, you can do that in a single command. Enter this command in +your terminal: $ rails generate controller home index -TIP: If you're on Windows, or your Ruby is set up in some non-standard fashion, you may need to explicitly pass Rails +rails+ commands to Ruby: ruby \path\to\your\application\script\rails generate controller home index. +TIP: If you're on Windows, or your Ruby is set up in some non-standard fashion, +you may need to explicitly pass Rails +rails+ commands to Ruby: ruby +\path\to\your\application\script\rails generate controller home index. -Rails will create several files for you, including +app/views/home/index.html.erb+. This is the template that will be used to display the results of the +index+ action (method) in the +home+ controller. Open this file in your text editor and edit it to contain a single line of code: +Rails will create several files for you, including ++app/views/home/index.html.erb+. This is the template that will be used to +display the results of the +index+ action (method) in the +home+ controller. +Open this file in your text editor and edit it to contain a single line of code:

Hello, Rails!

@@ -398,17 +486,30 @@ Rails will create several files for you, including +app/views/home/index.html.er h4. Setting the Application Home Page -Now that we have made the controller and view, we need to tell Rails when we want "Hello Rails" to show up. In our case, we want it to show up when we navigate to the root URL of our site, "http://localhost:3000":http://localhost:3000, instead of the "Welcome Aboard" smoke test. +Now that we have made the controller and view, we need to tell Rails when we +want "Hello Rails" to show up. In our case, we want it to show up when we +navigate to the root URL of our site, +"http://localhost:3000":http://localhost:3000, instead of the "Welcome Aboard" +smoke test. -The first step to doing this is to delete the default page from your application: +The first step to doing this is to delete the default page from your +application: $ rm public/index.html -We need to do this as Rails will deliver any static file in the +public+ directory in preference to any dynamic content we generate from the controllers. +We need to do this as Rails will deliver any static file in the +public+ +directory in preference to any dynamic content we generate from the controllers. -Now, you have to tell Rails where your actual home page is located. Open the file +config/routes.rb+ in your editor. This is your application's _routing file_ which holds entries in a special DSL (domain-specific language) that tells Rails how to connect incoming requests to controllers and actions. This file contains many sample routes on commented lines, and one of them actually shows you how to connect the root of your site to a specific controller and action. Find the line beginning with +root :to+, uncomment it and change it like the following: +Now, you have to tell Rails where your actual home page is located. Open the +file +config/routes.rb+ in your editor. This is your application's _routing +file_ which holds entries in a special DSL (domain-specific language) that tells +Rails how to connect incoming requests to controllers and actions. This file +contains many sample routes on commented lines, and one of them actually shows +you how to connect the root of your site to a specific controller and action. +Find the line beginning with +root :to+, uncomment it and change it like the +following: Blog::Application.routes.draw do @@ -419,27 +520,42 @@ Blog::Application.routes.draw do root :to => "home#index" -The +root :to => "home#index"+ tells Rails to map the root action to the home controller's index action. +The +root :to => "home#index"+ tells Rails to map the root action to the home +controller's index action. -Now if you navigate to "http://localhost:3000":http://localhost:3000 in your browser, you'll see +Hello, Rails!+. +Now if you navigate to "http://localhost:3000":http://localhost:3000 in your +browser, you'll see +Hello, Rails!+. -NOTE. For more information about routing, refer to "Rails Routing from the Outside In":routing.html. +NOTE. For more information about routing, refer to "Rails Routing from the +Outside In":routing.html. h3. Getting Up and Running Quickly with Scaffolding -Rails _scaffolding_ is a quick way to generate some of the major pieces of an application. If you want to create the models, views, and controllers for a new resource in a single operation, scaffolding is the tool for the job. +Rails _scaffolding_ is a quick way to generate some of the major pieces of an +application. If you want to create the models, views, and controllers for a new +resource in a single operation, scaffolding is the tool for the job. h3. Creating a Resource -In the case of the blog application, you can start by generating a scaffolded Post resource: this will represent a single blog posting. To do this, enter this command in your terminal: +In the case of the blog application, you can start by generating a scaffolded +Post resource: this will represent a single blog posting. To do this, enter this +command in your terminal: $ rails generate scaffold Post name:string title:string content:text -NOTE. While scaffolding will get you up and running quickly, the code it generates is unlikely to be a perfect fit for your application. You'll most probably want to customize the generated code. Many experienced Rails developers avoid scaffolding entirely, preferring to write all or most of their source code from scratch. Rails, however, makes it really simple to customize templates for generated models, controllers, views and other source files. You'll find more information in the "Creating and Customizing Rails Generators & Templates":generators.html guide. +NOTE. While scaffolding will get you up and running quickly, the code it +generates is unlikely to be a perfect fit for your application. You'll most +probably want to customize the generated code. Many experienced Rails developers +avoid scaffolding entirely, preferring to write all or most of their source code +from scratch. Rails, however, makes it really simple to customize templates for +generated models, controllers, views and other source files. You'll find more +information in the "Creating and Customizing Rails Generators & +Templates":generators.html guide. -The scaffold generator will build 17 files in your application, along with some folders, and edit one more. Here's a quick overview of what it creates: +The scaffold generator will build 17 files in your application, along with some +folders, and edit one more. Here's a quick overview of what it creates: |_.File |_.Purpose| |db/migrate/20100207214725_create_posts.rb |Migration to create the posts table in your database (your name will include a different timestamp)| @@ -462,9 +578,15 @@ The scaffold generator will build 17 files in your application, along with some h4. Running a Migration -One of the products of the +rails generate scaffold+ command is a _database migration_. Migrations are Ruby classes that are designed to make it simple to create and modify database tables. Rails uses rake commands to run migrations, and it's possible to undo a migration after it's been applied to your database. Migration filenames include a timestamp to ensure that they're processed in the order that they were created. +One of the products of the +rails generate scaffold+ command is a _database +migration_. Migrations are Ruby classes that are designed to make it simple to +create and modify database tables. Rails uses rake commands to run migrations, +and it's possible to undo a migration after it's been applied to your database. +Migration filenames include a timestamp to ensure that they're processed in the +order that they were created. -If you look in the +db/migrate/20100207214725_create_posts.rb+ file (remember, yours will have a slightly different name), here's what you'll find: +If you look in the +db/migrate/20100207214725_create_posts.rb+ file (remember, +yours will have a slightly different name), here's what you'll find: class CreatePosts < ActiveRecord::Migration @@ -480,7 +602,14 @@ class CreatePosts < ActiveRecord::Migration end -The above migration creates a method name +change+ which will be called when you run this migration. The action defined in that method is also reversible, which means Rails knows how to reverse the change made by this migration, in case you want to reverse it at later date. By default, when you run this migration it will creates a +posts+ table with two string columns and a text column. It also creates two timestamp fields to track record creation and updating. More information about Rails migrations can be found in the "Rails Database Migrations":migrations.html guide. +The above migration creates a method name +change+ which will be called when you +run this migration. The action defined in that method is also reversible, which +means Rails knows how to reverse the change made by this migration, in case you +want to reverse it at later date. By default, when you run this migration it +will creates a +posts+ table with two string columns and a text column. It also +creates two timestamp fields to track record creation and updating. More +information about Rails migrations can be found in the "Rails Database +Migrations":migrations.html guide. At this point, you can use a rake command to run the migration: @@ -488,7 +617,8 @@ At this point, you can use a rake command to run the migration: $ rake db:migrate
-Rails will execute this migration command and tell you it created the Posts table. +Rails will execute this migration command and tell you it created the Posts +table. == CreatePosts: migrating ==================================================== @@ -497,28 +627,43 @@ Rails will execute this migration command and tell you it created the Posts tabl == CreatePosts: migrated (0.0020s) =========================================== -NOTE. Because you're working in the development environment by default, this command will apply to the database defined in the +development+ section of your +config/database.yml+ file. If you would like to execute migrations in other environment, for instance in production, you must explicitly pass it when invoking the command: rake db:migrate RAILS_ENV=production. +NOTE. Because you're working in the development environment by default, this +command will apply to the database defined in the +development+ section of your ++config/database.yml+ file. If you would like to execute migrations in other +environment, for instance in production, you must explicitly pass it when +invoking the command: rake db:migrate RAILS_ENV=production. h4. Adding a Link -To hook the posts up to the home page you've already created, you can add a link to the home page. Open +app/views/home/index.html.erb+ and modify it as follows: +To hook the posts up to the home page you've already created, you can add a link +to the home page. Open +app/views/home/index.html.erb+ and modify it as follows:

Hello, Rails!

<%= link_to "My Blog", posts_path %>
-The +link_to+ method is one of Rails' built-in view helpers. It creates a hyperlink based on text to display and where to go - in this case, to the path for posts. +The +link_to+ method is one of Rails' built-in view helpers. It creates a +hyperlink based on text to display and where to go - in this case, to the path +for posts. h4. Working with Posts in the Browser -Now you're ready to start working with posts. To do that, navigate to "http://localhost:3000":http://localhost:3000/ and then click the "My Blog" link: +Now you're ready to start working with posts. To do that, navigate to +"http://localhost:3000":http://localhost:3000/ and then click the "My Blog" +link: !images/posts_index.png(Posts Index screenshot)! -This is the result of Rails rendering the +index+ view of your posts. There aren't currently any posts in the database, but if you click the +New Post+ link you can create one. After that, you'll find that you can edit posts, look at their details, or destroy them. All of the logic and HTML to handle this was built by the single +rails generate scaffold+ command. +This is the result of Rails rendering the +index+ view of your posts. There +aren't currently any posts in the database, but if you click the +New Post+ link +you can create one. After that, you'll find that you can edit posts, look at +their details, or destroy them. All of the logic and HTML to handle this was +built by the single +rails generate scaffold+ command. -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. +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. Congratulations, you're riding the rails! Now it's time to see how it all works. @@ -531,11 +676,16 @@ class Post < ActiveRecord::Base end -There isn't much to this file - but note that the +Post+ class inherits from +ActiveRecord::Base+. Active Record supplies a great deal of functionality to your Rails models for free, including basic database CRUD (Create, Read, Update, Destroy) operations, data validation, as well as sophisticated search support and the ability to relate multiple models to one another. +There isn't much to this file - but note that the +Post+ class inherits from ++ActiveRecord::Base+. Active Record supplies a great deal of functionality to +your Rails models for free, including basic database CRUD (Create, Read, Update, +Destroy) operations, data validation, as well as sophisticated search support +and the ability to relate multiple models to one another. h4. Adding Some Validation -Rails includes methods to help you validate the data that you send to models. Open the +app/models/post.rb+ file and edit it: +Rails includes methods to help you validate the data that you send to models. +Open the +app/models/post.rb+ file and edit it: class Post < ActiveRecord::Base @@ -545,17 +695,24 @@ class Post < ActiveRecord::Base end -These changes will ensure that all posts have a name and a title, and that the title is at least five characters long. Rails can validate a variety of conditions in a model, including the presence or uniqueness of columns, their format, and the existence of associated objects. +These changes will ensure that all posts have a name and a title, and that the +title is at least five characters long. Rails can validate a variety of +conditions in a model, including the presence or uniqueness of columns, their +format, and the existence of associated objects. h4. Using the Console -To see your validations in action, you can use the console. The console is a command-line tool that lets you execute Ruby code in the context of your application: +To see your validations in action, you can use the console. The console is a +command-line tool that lets you execute Ruby code in the context of your +application: $ rails console -TIP: The default console will make changes to your database. You can instead open a console that will roll back any changes you make by using +rails console --sandbox+. +TIP: The default console will make changes to your database. You can instead +open a console that will roll back any changes you make by using +rails console +--sandbox+. After the console loads, you can use it to work with your application's models: @@ -572,15 +729,21 @@ After the console loads, you can use it to work with your application's models: :name=>["can't be blank"] }>
-This code shows creating a new +Post+ instance, attempting to save it and getting +false+ for a return value (indicating that the save failed), and inspecting the +errors+ of the post. +This code shows creating a new +Post+ instance, attempting to save it and +getting +false+ for a return value (indicating that the save failed), and +inspecting the +errors+ of the post. When you're finished, type +exit+ and hit +return+ to exit the console. -TIP: Unlike the development web server, the console does not automatically load your code afresh for each line. If you make changes to your models while the console is open, type +reload!+ at the console prompt to load them. +TIP: Unlike the development web server, the console does not automatically load +your code afresh for each line. If you make changes to your models while the +console is open, type +reload!+ at the console prompt to load them. h4. Listing All Posts -The easiest place to start looking at functionality is with the code that lists all posts. Open the file +app/controllers/posts_controller.rb+ and look at the +index+ action: +The easiest place to start looking at functionality is with the code that lists +all posts. Open the file +app/controllers/posts_controller.rb+ and look at the ++index+ action: def index @@ -593,11 +756,19 @@ def index end -+Post.all+ calls the +Post+ model to return all of the posts currently in the database. The result of this call is an array of posts that we store in an instance variable called +@posts+. ++Post.all+ calls the +Post+ model to return all of the posts currently in the +database. The result of this call is an array of posts that we store in an +instance variable called +@posts+. -TIP: For more information on finding records with Active Record, see "Active Record Query Interface":active_record_querying.html. +TIP: For more information on finding records with Active Record, see "Active +Record Query Interface":active_record_querying.html. -The +respond_to+ block handles both HTML and JSON calls to this action. If you browse to "http://localhost:3000/posts.json":http://localhost:3000/posts.json, you'll see a JSON containing all of the posts. The HTML format looks for a view in +app/views/posts/+ with a name that corresponds to the action name. Rails makes all of the instance variables from the action available to the view. Here's +app/views/posts/index.html.erb+: +The +respond_to+ block handles both HTML and JSON calls to this action. If you +browse to "http://localhost:3000/posts.json":http://localhost:3000/posts.json, +you'll see a JSON containing all of the posts. The HTML format looks for a view +in +app/views/posts/+ with a name that corresponds to the action name. Rails +makes all of the instance variables from the action available to the view. +Here's +app/views/posts/index.html.erb+:

Listing posts

@@ -629,18 +800,31 @@ The +respond_to+ block handles both HTML and JSON calls to this action. If you b <%= link_to 'New post', new_post_path %>
-This view iterates over the contents of the +@posts+ array to display content and links. A few things to note in the view: +This view iterates over the contents of the +@posts+ array to display content +and links. A few things to note in the view: * +link_to+ builds a hyperlink to a particular destination * +edit_post_path+ and +new_post_path+ are helpers that Rails provides as part of RESTful routing. You'll see a variety of these helpers for the different actions that the controller includes. -NOTE. In previous versions of Rails, you had to use +<%=h post.name %>+ so that any HTML would be escaped before being inserted into the page. In Rails 3.0, this is now the default. To get unescaped HTML, you now use +<%= raw post.name %>+. +NOTE. In previous versions of Rails, you had to use +<%=h post.name %>+ so +that any HTML would be escaped before being inserted into the page. In Rails +3.0, this is now the default. To get unescaped HTML, you now use +<%= raw +post.name %>+. -TIP: For more details on the rendering process, see "Layouts and Rendering in Rails":layouts_and_rendering.html. +TIP: For more details on the rendering process, see "Layouts and Rendering in +Rails":layouts_and_rendering.html. h4. Customizing the Layout -The view is only part of the story of how HTML is displayed in your web browser. Rails also has the concept of +layouts+, which are containers for views. When Rails renders a view to the browser, it does so by putting the view's HTML into a layout's HTML. In previous versions of Rails, the +rails generate scaffold+ command would automatically create a controller specific layout, like +app/views/layouts/posts.html.erb+, for the posts controller. However this has been changed in Rails 3.0. An application specific +layout+ is used for all the controllers and can be found in +app/views/layouts/application.html.erb+. Open this layout in your editor and modify the +body+ tag: +The view is only part of the story of how HTML is displayed in your web browser. +Rails also has the concept of +layouts+, which are containers for views. When +Rails renders a view to the browser, it does so by putting the view's HTML into +a layout's HTML. In previous versions of Rails, the +rails generate scaffold+ +command would automatically create a controller specific layout, like ++app/views/layouts/posts.html.erb+, for the posts controller. However this has +been changed in Rails 3.0. An application specific +layout+ is used for all the +controllers and can be found in +app/views/layouts/application.html.erb+. Open +this layout in your editor and modify the +body+ tag: @@ -659,11 +843,13 @@ The view is only part of the story of how HTML is displayed in your web browser. -Now when you refresh the +/posts+ page, you'll see a gray background to the page. This same gray background will be used throughout all the views for posts. +Now when you refresh the +/posts+ page, you'll see a gray background to the +page. This same gray background will be used throughout all the views for posts. h4. Creating New Posts -Creating a new post involves two actions. The first is the +new+ action, which instantiates an empty +Post+ object: +Creating a new post involves two actions. The first is the +new+ action, which +instantiates an empty +Post+ object: def new @@ -686,9 +872,15 @@ The +new.html.erb+ view displays this empty Post to the user: <%= link_to 'Back', posts_path %> -The +<%= render 'form' %>+ line is our first introduction to _partials_ in Rails. A partial is a snippet of HTML and Ruby code that can be reused in multiple locations. In this case, the form used to make a new post, is basically identical to a form used to edit a post, both have text fields for the name and title and a text area for the content with a button to make a new post or update the existing post. +The +<%= render 'form' %>+ line is our first introduction to _partials_ in +Rails. A partial is a snippet of HTML and Ruby code that can be reused in +multiple locations. In this case, the form used to make a new post, is basically +identical to a form used to edit a post, both have text fields for the name and +title and a text area for the content with a button to make a new post or update +the existing post. -If you take a look at +views/posts/_form.html.erb+ file, you will see the following: +If you take a look at +views/posts/_form.html.erb+ file, you will see the +following: <%= form_for(@post) do |f| %> @@ -721,17 +913,34 @@ If you take a look at +views/posts/_form.html.erb+ file, you will see the follow <% end %> -This partial receives all the instance variables defined in the calling view file, so in this case, the controller assigned the new Post object to +@post+ and so, this is available in both the view and partial as +@post+. +This partial receives all the instance variables defined in the calling view +file, so in this case, the controller assigned the new Post object to +@post+ +and so, this is available in both the view and partial as +@post+. -For more information on partials, refer to the "Layouts and Rendering in Rails":layouts_and_rendering.html#using-partials guide. +For more information on partials, refer to the "Layouts and Rendering in +Rails":layouts_and_rendering.html#using-partials guide. -The +form_for+ block is used to create an HTML form. Within this block, you have access to methods to build various controls on the form. For example, +f.text_field :name+ tells Rails to create a text input on the form, and to hook it up to the +name+ attribute of the instance being displayed. You can only use these methods with attributes of the model that the form is based on (in this case +name+, +title+, and +content+). Rails uses +form_for+ in preference to having you write raw HTML because the code is more succinct, and because it explicitly ties the form to a particular model instance. +The +form_for+ block is used to create an HTML form. Within this block, you have +access to methods to build various controls on the form. For example, ++f.text_field :name+ tells Rails to create a text input on the form, and to hook +it up to the +name+ attribute of the instance being displayed. You can only use +these methods with attributes of the model that the form is based on (in this +case +name+, +title+, and +content+). Rails uses +form_for+ in preference to +having you write raw HTML because the code is more succinct, and because it +explicitly ties the form to a particular model instance. -The +form_for+ block is also smart enough to work out if you are doing a _New Post_ or an _Edit Post_ action, and will set the form +action+ tags and submit button names appropriately in the HTML output. +The +form_for+ block is also smart enough to work out if you are doing a _New +Post_ or an _Edit Post_ action, and will set the form +action+ tags and submit +button names appropriately in the HTML output. -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. +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. -When the user clicks the +Create Post+ button on this form, the browser will send information back to the +create+ method of the controller (Rails knows to call the +create+ method because the form is sent with an HTTP POST request; that's one of the conventions that I mentioned earlier): +When the user clicks the +Create Post+ button on this form, the browser will +send information back to the +create+ method of the controller (Rails knows to +call the +create+ method because the form is sent with an HTTP POST request; +that's one of the conventions that I mentioned earlier): def create @@ -752,15 +961,32 @@ def create end -The +create+ action instantiates a new Post object from the data supplied by the user on the form, which Rails makes available in the +params+ hash. After successfully saving the new post, +create+ returns the appropriate format that the user has requested (HTML in our case). It then redirects the user to the resulting post +show+ action and sets a notice to the user that the Post was successfully created. +The +create+ action instantiates a new Post object from the data supplied by the +user on the form, which Rails makes available in the +params+ hash. After +successfully saving the new post, +create+ returns the appropriate format that +the user has requested (HTML in our case). It then redirects the user to the +resulting post +show+ action and sets a notice to the user that the Post was +successfully created. -If the post was not successfully saved, due to a validation error, then the controller returns the user back to the +new+ action with any error messages so that the user has the chance to fix the error and try again. +If the post was not successfully saved, due to a validation error, then the +controller returns the user back to the +new+ action with any error messages so +that the user has the chance to fix the error and try again. -The "Post was successfully created." message is stored inside of the Rails +flash+ hash, (usually just called _the flash_) so that messages can be carried over to another action, providing the user with useful information on the status of their request. In the case of +create+, the user never actually sees any page rendered during the Post creation process, because it immediately redirects to the new Post as soon Rails saves the record. The Flash carries over a message to the next action, so that when the user is redirected back to the +show+ action, they are presented with a message saying "Post was successfully created." +The "Post was successfully created." message is stored inside of the Rails ++flash+ hash, (usually just called _the flash_) so that messages can be carried +over to another action, providing the user with useful information on the status +of their request. In the case of +create+, the user never actually sees any page +rendered during the Post creation process, because it immediately redirects to +the new Post as soon Rails saves the record. The Flash carries over a message to +the next action, so that when the user is redirected back to the +show+ action, +they are presented with a message saying "Post was successfully created." h4. Showing an Individual Post -When you click the +show+ link for a post on the index page, it will bring you to a URL like +http://localhost:3000/posts/1+. Rails interprets this as a call to the +show+ action for the resource, and passes in +1+ as the +:id+ parameter. Here's the +show+ action: +When you click the +show+ link for a post on the index page, it will bring you +to a URL like +http://localhost:3000/posts/1+. Rails interprets this as a call +to the +show+ action for the resource, and passes in +1+ as the +:id+ parameter. +Here's the +show+ action: def show @@ -773,7 +999,9 @@ def show end -The +show+ action uses +Post.find+ to search for a single record in the database by its id value. After finding the record, Rails displays it by using +show.html.erb+: +The +show+ action uses +Post.find+ to search for a single record in the database +by its id value. After finding the record, Rails displays it by using ++show.html.erb+:

<%= notice %>

@@ -800,7 +1028,9 @@ The +show+ action uses +Post.find+ to search for a single record in the database h4. Editing Posts -Like creating a new post, editing a post is a two-part process. The first step is a request to +edit_post_path(@post)+ with a particular post. This calls the +edit+ action in the controller: +Like creating a new post, editing a post is a two-part process. The first step +is a request to +edit_post_path(@post)+ with a particular post. This calls the ++edit+ action in the controller: def edit @@ -808,7 +1038,8 @@ def edit end -After finding the requested post, Rails uses the +edit.html.erb+ view to display it: +After finding the requested post, Rails uses the +edit.html.erb+ view to display +it:

Editing post

@@ -819,9 +1050,12 @@ After finding the requested post, Rails uses the +edit.html.erb+ view to display <%= link_to 'Back', posts_path %>
-Again, as with the +new+ action, the +edit+ action is using the +form+ partial, this time however, the form will do a PUT action to the PostsController and the submit button will display "Update Post" +Again, as with the +new+ action, the +edit+ action is using the +form+ partial, +this time however, the form will do a PUT action to the PostsController and the +submit button will display "Update Post" -Submitting the form created by this view will invoke the +update+ action within the controller: +Submitting the form created by this view will invoke the +update+ action within +the controller: def update @@ -841,11 +1075,17 @@ def update end -In the +update+ action, Rails first uses the +:id+ parameter passed back from the edit view to locate the database record that's being edited. The +update_attributes+ call then takes the rest of the parameters from the request and applies them to this record. If all goes well, the user is redirected to the post's +show+ view. If there are any problems, it's back to the +edit+ view to correct them. +In the +update+ action, Rails first uses the +:id+ parameter passed back from +the edit view to locate the database record that's being edited. The ++update_attributes+ call then takes the rest of the parameters from the request +and applies them to this record. If all goes well, the user is redirected to the +post's +show+ view. If there are any problems, it's back to the +edit+ view to +correct them. h4. Destroying a Post -Finally, clicking one of the +destroy+ links sends the associated id to the +destroy+ action: +Finally, clicking one of the +destroy+ links sends the associated id to the ++destroy+ action: def destroy @@ -859,15 +1099,25 @@ def destroy end -The +destroy+ method of an Active Record model instance removes the corresponding record from the database. After that's done, there isn't any record to display, so Rails redirects the user's browser to the index view for the model. +The +destroy+ method of an Active Record model instance removes the +corresponding record from the database. After that's done, there isn't any +record to display, so Rails redirects the user's browser to the index view for +the model. h3. Adding a Second Model -Now that you've seen how a model built with scaffolding looks like, it's time to add a second model to the application. The second model will handle comments on blog posts. +Now that you've seen how a model built with scaffolding looks like, it's time to +add a second model to the application. The second model will handle comments on +blog posts. h4. Generating a Model -Models in Rails use a singular name, and their corresponding database tables use a plural name. For the model to hold comments, the convention is to use the name Comment. Even if you don't want to use the entire apparatus set up by scaffolding, most Rails developers still use generators to make things like models and controllers. To create the new model, run this command in your terminal: +Models in Rails use a singular name, and their corresponding database tables use +a plural name. For the model to hold comments, the convention is to use the name +Comment. Even if you don't want to use the entire apparatus set up by +scaffolding, most Rails developers still use generators to make things like +models and controllers. To create the new model, run this command in your +terminal: $ rails generate model Comment commenter:string body:text post:references @@ -887,9 +1137,12 @@ class Comment < ActiveRecord::Base end
-This is very similar to the +post.rb+ model that you saw earlier. The difference is the line +belongs_to :post+, which sets up an Active Record _association_. You'll learn a little about associations in the next section of this guide. +This is very similar to the +post.rb+ model that you saw earlier. The difference +is the line +belongs_to :post+, which sets up an Active Record _association_. +You'll learn a little about associations in the next section of this guide. -In addition to the model, Rails has also made a migration to create the corresponding database table: +In addition to the model, Rails has also made a migration to create the +corresponding database table: class CreateComments < ActiveRecord::Migration @@ -907,13 +1160,16 @@ class CreateComments < ActiveRecord::Migration end -The +t.references+ line sets up a foreign key column for the association between the two models. And the +add_index+ line sets up an index for this association column. Go ahead and run the migration: +The +t.references+ line sets up a foreign key column for the association between +the two models. And the +add_index+ line sets up an index for this association +column. Go ahead and run the migration: $ rake db:migrate -Rails is smart enough to only execute the migrations that have not already been run against the current database, so in this case you will just see: +Rails is smart enough to only execute the migrations that have not already been +run against the current database, so in this case you will just see: == CreateComments: migrating ================================================= @@ -924,12 +1180,16 @@ Rails is smart enough to only execute the migrations that have not already been h4. Associating Models -Active Record associations let you easily declare the relationship between two models. In the case of comments and posts, you could write out the relationships this way: +Active Record associations let you easily declare the relationship between two +models. In the case of comments and posts, you could write out the relationships +this way: * Each comment belongs to one post * One post can have many comments -In fact, this is very close to the syntax that Rails uses to declare this association. You've already seen the line of code inside the Comment model that makes each comment belong to a Post: +In fact, this is very close to the syntax that Rails uses to declare this +association. You've already seen the line of code inside the Comment model that +makes each comment belong to a Post: class Comment < ActiveRecord::Base @@ -949,13 +1209,20 @@ class Post < ActiveRecord::Base end -These two declarations enable a good bit of automatic behavior. For example, if you have an instance variable +@post+ containing a post, you can retrieve all the comments belonging to that post as the array +@post.comments+. +These two declarations enable a good bit of automatic behavior. For example, if +you have an instance variable +@post+ containing a post, you can retrieve all +the comments belonging to that post as the array +@post.comments+. -TIP: For more information on Active Record associations, see the "Active Record Associations":association_basics.html guide. +TIP: For more information on Active Record associations, see the "Active Record +Associations":association_basics.html guide. h4. Adding a Route for Comments -As with the +home+ controller, we will need to add a route so that Rails knows where we would like to navigate to see +comments+. Open up the +config/routes.rb+ file again, you will see an entry that was added automatically for +posts+ near the top by the scaffold generator, +resources :posts+, edit it as follows: +As with the +home+ controller, we will need to add a route so that Rails knows +where we would like to navigate to see +comments+. Open up the ++config/routes.rb+ file again, you will see an entry that was added +automatically for +posts+ near the top by the scaffold generator, +resources +:posts+, edit it as follows: resources :posts do @@ -963,13 +1230,17 @@ resources :posts do end -This creates +comments+ as a _nested resource_ within +posts+. This is another part of capturing the hierarchical relationship that exists between posts and comments. +This creates +comments+ as a _nested resource_ within +posts+. This is another +part of capturing the hierarchical relationship that exists between posts and +comments. -TIP: For more information on routing, see the "Rails Routing from the Outside In":routing.html guide. +TIP: For more information on routing, see the "Rails Routing from the Outside +In":routing.html guide. h4. Generating a Controller -With the model in hand, you can turn your attention to creating a matching controller. Again, there's a generator for this: +With the model in hand, you can turn your attention to creating a matching +controller. Again, there's a generator for this: $ rails generate controller Comments @@ -985,9 +1256,14 @@ This creates six files and one empty directory: * +app/assets/stylesheets/comment.css.scss+ - Cascading style sheet for the controller * +app/assets/javascripts/comment.js.coffee+ - CoffeeScript for the controller -Like with any blog, our readers will create their comments directly after reading the post, and once they have added their comment, will be sent back to the post show page to see their comment now listed. Due to this, our +CommentsController+ is there to provide a method to create comments and delete SPAM comments when they arrive. +Like with any blog, our readers will create their comments directly after +reading the post, and once they have added their comment, will be sent back to +the post show page to see their comment now listed. Due to this, our ++CommentsController+ is there to provide a method to create comments and delete +SPAM comments when they arrive. -So first, we'll wire up the Post show template (+/app/views/posts/show.html.erb+) to let us make a new comment: +So first, we'll wire up the Post show template +(+/app/views/posts/show.html.erb+) to let us make a new comment:

<%= notice %>

@@ -1026,7 +1302,8 @@ So first, we'll wire up the Post show template (+/app/views/posts/show.html.erb+ <%= link_to 'Back to Posts', posts_path %> |
-This adds a form on the Post show page that creates a new comment, which will call the +CommentsController+ +create+ action, so let's wire that up: +This adds a form on the Post show page that creates a new comment, which will +call the +CommentsController+ +create+ action, so let's wire that up: class CommentsController < ApplicationController @@ -1038,11 +1315,21 @@ class CommentsController < ApplicationController end -You'll see a bit more complexity here than you did in the controller for posts. That's a side-effect of the nesting that you've set up; each request for a comment has to keep track of the post to which the comment is attached, thus the initial find action to the Post model to get the post in question. +You'll see a bit more complexity here than you did in the controller for posts. +That's a side-effect of the nesting that you've set up; each request for a +comment has to keep track of the post to which the comment is attached, thus the +initial find action to the Post model to get the post in question. -In addition, the code takes advantage of some of the methods available for an association. We use the +create+ method on +@post.comments+ to create and save the comment. This will automatically link the comment so that it belongs to that particular post. +In addition, the code takes advantage of some of the methods available for an +association. We use the +create+ method on +@post.comments+ to create and save +the comment. This will automatically link the comment so that it belongs to that +particular post. -Once we have made the new comment, we send the user back to the original post using the +post_path(@post)+ helper. As we have already seen, this calls the +show+ action of the +PostsController+ which in turn renders the +show.html.erb+ template. This is where we want the comment to show, so let's add that to the +app/views/posts/show.html.erb+. +Once we have made the new comment, we send the user back to the original post +using the +post_path(@post)+ helper. As we have already seen, this calls the ++show+ action of the +PostsController+ which in turn renders the +show.html.erb+ +template. This is where we want the comment to show, so let's add that to the ++app/views/posts/show.html.erb+.

<%= notice %>

@@ -1096,15 +1383,20 @@ Once we have made the new comment, we send the user back to the original post us <%= link_to 'Back to Posts', posts_path %> |
-Now you can add posts and comments to your blog and have them show up in the right places. +Now you can add posts and comments to your blog and have them show up in the +right places. h3. Refactoring -Now that we have Posts and Comments working, if we take a look at the +app/views/posts/show.html.erb+ template, it's getting long and awkward. We can use partials to clean this up. +Now that we have Posts and Comments working, if we take a look at the ++app/views/posts/show.html.erb+ template, it's getting long and awkward. We can +use partials to clean this up. h4. Rendering Partial Collections -First we will make a comment partial to extract showing all the comments for the post. Create the file +app/views/comments/_comment.html.erb+ and put the following into it: +First we will make a comment partial to extract showing all the comments for the +post. Create the file +app/views/comments/_comment.html.erb+ and put the +following into it:

@@ -1118,7 +1410,8 @@ First we will make a comment partial to extract showing all the comments for the

-Then in the +app/views/posts/show.html.erb+ you can change it to look like the following: +Then in the +app/views/posts/show.html.erb+ you can change it to look like the +following:

<%= notice %>

@@ -1162,11 +1455,16 @@ Then in the +app/views/posts/show.html.erb+ you can change it to look like the f <%= link_to 'Back to Posts', posts_path %> |
-This will now render the partial in +app/views/comments/_comment.html.erb+ once for each comment that is in the +@post.comments+ collection. As the +render+ method iterates over the @post.comments collection, it assigns each comment to a local variable named the same as the partial, in this case +comment+ which is then available in the partial for us to show. +This will now render the partial in +app/views/comments/_comment.html.erb+ once +for each comment that is in the +@post.comments+ collection. As the +render+ +method iterates over the @post.comments collection, it assigns each +comment to a local variable named the same as the partial, in this case ++comment+ which is then available in the partial for us to show. h4. Rendering a Partial Form -Lets also move that new comment section out to it's own partial, again, you create a file +app/views/comments/_form.html.erb+ and in it you put: +Lets also move that new comment section out to it's own partial, again, you +create a file +app/views/comments/_form.html.erb+ and in it you put: <%= form_for([@post, @post.comments.build]) do |f| %> @@ -1216,15 +1514,22 @@ Then you make the +app/views/posts/show.html.erb+ look like the following: <%= link_to 'Back to Posts', posts_path %> | -The second render just defines the partial template we want to render, comments/form, Rails is smart enough to spot the forward slash in that string and realize that you want to render the _form.html.erb file in the app/views/comments directory. +The second render just defines the partial template we want to render, +comments/form, Rails is smart enough to spot the forward slash in that +string and realize that you want to render the _form.html.erb file in +the app/views/comments directory. -The +@post+ object is available to any partials rendered in the view because we defined it as an instance variable. +The +@post+ object is available to any partials rendered in the view because we +defined it as an instance variable. h3. Deleting Comments -Another important feature on a blog is being able to delete SPAM comments. To do this, we need to implement a link of some sort in the view and a +DELETE+ action in the +CommentsController+. +Another important feature on a blog is being able to delete SPAM comments. To do +this, we need to implement a link of some sort in the view and a +DELETE+ action +in the +CommentsController+. -So first, let's add the delete link in the +app/views/comments/_comment.html.erb+ partial: +So first, let's add the delete link in the ++app/views/comments/_comment.html.erb+ partial:

@@ -1244,7 +1549,10 @@ So first, let's add the delete link in the +app/views/comments/_comment.html.erb

-Clicking this new "Destroy Comment" link will fire off a DELETE /posts/:id/comments/:id to our +CommentsController+, which can then use this to find the comment we want to delete, so let's add a destroy action to our controller: +Clicking this new "Destroy Comment" link will fire off a DELETE +/posts/:id/comments/:id to our +CommentsController+, which can then use +this to find the comment we want to delete, so let's add a destroy action to our +controller: class CommentsController < ApplicationController @@ -1265,12 +1573,17 @@ class CommentsController < ApplicationController end -The +destroy+ action will find the post we are looking at, locate the comment within the @post.comments collection, and then remove it from the database and send us back to the show action for the post. +The +destroy+ action will find the post we are looking at, locate the comment +within the @post.comments collection, and then remove it from the +database and send us back to the show action for the post. h4. Deleting Associated Objects -If you delete a post then its associated comments will also need to be deleted. Otherwise they would simply occupy space in the database. Rails allows you to use the +dependent+ option of an association to achieve this. Modify the Post model, +app/models/post.rb+, as follows: +If you delete a post then its associated comments will also need to be deleted. +Otherwise they would simply occupy space in the database. Rails allows you to +use the +dependent+ option of an association to achieve this. Modify the Post +model, +app/models/post.rb+, as follows: class Post < ActiveRecord::Base @@ -1283,13 +1596,20 @@ end h3. Security -If you were to publish your blog online, anybody would be able to add, edit and delete posts or delete comments. +If you were to publish your blog online, anybody would be able to add, edit and +delete posts or delete comments. -Rails provides a very simple HTTP authentication system that will work nicely in this situation. +Rails provides a very simple HTTP authentication system that will work nicely in +this situation. -In the +PostsController+ we need to have a way to block access to the various actions if the person is not authenticated, here we can use the Rails http_basic_authenticate_with method, allowing access to the requested action if that method allows it. +In the +PostsController+ we need to have a way to block access to the various +actions if the person is not authenticated, here we can use the Rails +http_basic_authenticate_with method, allowing access to the requested +action if that method allows it. -To use the authentication system, we specify it at the top of our +PostsController+, in this case, we want the user to be authenticated on every action, except for +index+ and +show+, so we write that: +To use the authentication system, we specify it at the top of our ++PostsController+, in this case, we want the user to be authenticated on every +action, except for +index+ and +show+, so we write that: class PostsController < ApplicationController @@ -1304,7 +1624,8 @@ class PostsController < ApplicationController # snipped for brevity -We also only want to allow authenticated users to delete comments, so in the +CommentsController+ we write: +We also only want to allow authenticated users to delete comments, so in the ++CommentsController+ we write: class CommentsController < ApplicationController @@ -1316,16 +1637,21 @@ class CommentsController < ApplicationController # snipped for brevity -Now if you try to create a new post, you will be greeted with a basic HTTP Authentication challenge +Now if you try to create a new post, you will be greeted with a basic HTTP +Authentication challenge !images/challenge.png(Basic HTTP Authentication Challenge)! h3. Building a Multi-Model Form -Another feature of your average blog is the ability to tag posts. To implement this feature your application needs to interact with more than one model on a single form. Rails offers support for nested forms. +Another feature of your average blog is the ability to tag posts. To implement +this feature your application needs to interact with more than one model on a +single form. Rails offers support for nested forms. -To demonstrate this, we will add support for giving each post multiple tags, right in the form where you create the post. First, create a new model to hold the tags: +To demonstrate this, we will add support for giving each post multiple tags, +right in the form where you create the post. First, create a new model to hold +the tags: $ rails generate model tag name:string post:references @@ -1337,7 +1663,9 @@ Again, run the migration to create the database table: $ rake db:migrate -Next, edit the +post.rb+ file to create the other side of the association, and to tell Rails (via the +accepts_nested_attributes_for+ macro) that you intend to edit tags via posts: +Next, edit the +post.rb+ file to create the other side of the association, and +to tell Rails (via the +accepts_nested_attributes_for+ macro) that you intend to +edit tags via posts: class Post < ActiveRecord::Base @@ -1353,7 +1681,10 @@ class Post < ActiveRecord::Base end -The +:allow_destroy+ option on the nested attribute declaration tells Rails to display a "remove" checkbox on the view that you'll build shortly. The +:reject_if+ option prevents saving new tags that do not have any attributes filled in. +The +:allow_destroy+ option on the nested attribute declaration tells Rails to +display a "remove" checkbox on the view that you'll build shortly. The ++:reject_if+ option prevents saving new tags that do not have any attributes +filled in. We will modify +views/posts/_form.html.erb+ to render a partial to make a tag: @@ -1392,13 +1723,20 @@ We will modify +views/posts/_form.html.erb+ to render a partial to make a tag: <% end %> -Note that we have changed the +f+ in +form_for(@post) do |f|+ to +post_form+ to make it easier to understand what is going on. +Note that we have changed the +f+ in +form_for(@post) do |f|+ to +post_form+ to +make it easier to understand what is going on. -This example shows another option of the render helper, being able to pass in local variables, in this case, we want the local variable +form+ in the partial to refer to the +post_form+ object. +This example shows another option of the render helper, being able to pass in +local variables, in this case, we want the local variable +form+ in the partial +to refer to the +post_form+ object. -We also add a @post.tags.build at the top of this form, this is to make sure there is a new tag ready to have it's name filled in by the user. If you do not build the new tag, then the form will not appear as there is no new Tag object ready to create. +We also add a @post.tags.build at the top of this form, this is to make +sure there is a new tag ready to have it's name filled in by the user. If you do +not build the new tag, then the form will not appear as there is no new Tag +object ready to create. -Now create the folder app/views/tags and make a file in there called _form.html.erb which contains the form for the tag: +Now create the folder app/views/tags and make a file in there called +_form.html.erb which contains the form for the tag: <%= form.fields_for :tags do |tag_form| %> @@ -1415,7 +1753,8 @@ Now create the folder app/views/tags and make a file in there called -Finally, we will edit the app/views/posts/show.html.erb template to show our tags. +Finally, we will edit the app/views/posts/show.html.erb template to +show our tags.

<%= notice %>

@@ -1451,13 +1790,18 @@ Finally, we will edit the app/views/posts/show.html.erb template to sho <%= link_to 'Back to Posts', posts_path %> |
-With these changes in place, you'll find that you can edit a post and its tags directly on the same view. +With these changes in place, you'll find that you can edit a post and its tags +directly on the same view. -However, that method call @post.tags.map { |t| t.name }.join(", ") is awkward, we could handle this by making a helper method. +However, that method call @post.tags.map { |t| t.name }.join(", ") is +awkward, we could handle this by making a helper method. h3. View Helpers -View Helpers live in app/helpers and provide small snippets of reusable code for views. In our case, we want a method that strings a bunch of objects together using their name attribute and joining them with a comma. As this is for the Post show template, we put it in the PostsHelper. +View Helpers live in app/helpers and provide small snippets of reusable +code for views. In our case, we want a method that strings a bunch of objects +together using their name attribute and joining them with a comma. As this is +for the Post show template, we put it in the PostsHelper. Open up app/helpers/posts_helper.rb and add the following: @@ -1469,7 +1813,8 @@ module PostsHelper end -Now you can edit the view in app/views/posts/show.html.erb to look like this: +Now you can edit the view in app/views/posts/show.html.erb to look like +this:

<%= notice %>

@@ -1507,7 +1852,10 @@ Now you can edit the view in app/views/posts/show.html.erb to look like h3. What's Next? -Now that you've seen your first Rails application, you should feel free to update it and experiment on your own. But you don't have to do everything without help. As you need assistance getting up and running with Rails, feel free to consult these support resources: +Now that you've seen your first Rails application, you should feel free to +update it and experiment on your own. But you don't have to do everything +without help. As you need assistance getting up and running with Rails, feel +free to consult these support resources: * The "Ruby on Rails guides":index.html * The "Ruby on Rails Tutorial":http://railstutorial.org/book @@ -1522,9 +1870,18 @@ Rails also comes with built-in help that you can generate using the rake command h3. Configuration Gotchas -The easiest way to work with Rails is to store all external data as UTF-8. If you don't, Ruby libraries and Rails will often be able to convert your native data into UTF-8, but this doesn't always work reliably, so you're better off ensuring that all external data is UTF-8. +The easiest way to work with Rails is to store all external data as UTF-8. If +you don't, Ruby libraries and Rails will often be able to convert your native +data into UTF-8, but this doesn't always work reliably, so you're better off +ensuring that all external data is UTF-8. -If you have made a mistake in this area, the most common symptom is a black diamond with a question mark inside appearing in the browser. Another common symptom is characters like "ü" appearing instead of "ü". Rails takes a number of internal steps to mitigate common causes of these problems that can be automatically detected and corrected. However, if you have external data that is not stored as UTF-8, it can occasionally result in these kinds of issues that cannot be automatically detected by Rails and corrected. +If you have made a mistake in this area, the most common symptom is a black +diamond with a question mark inside appearing in the browser. Another common +symptom is characters like "ü" appearing instead of "ü". Rails takes a number +of internal steps to mitigate common causes of these problems that can be +automatically detected and corrected. However, if you have external data that is +not stored as UTF-8, it can occasionally result in these kinds of issues that +cannot be automatically detected by Rails and corrected. Two very common sources of data that are not UTF-8: * Your text editor: Most text editors (such as Textmate), default to saving files as From e99a0b62ec128272350060554a0f41673fcdb78d Mon Sep 17 00:00:00 2001 From: Jason Noble & Ralph Shnelvar Date: Sun, 24 Jul 2011 14:51:48 -0600 Subject: [PATCH 06/24] Add a note about the fact that the Windows prompt will look different than the linux/osx prompt --- railties/guides/source/getting_started.textile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index aaad63523a..b3b3581147 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -217,6 +217,8 @@ If you follow this guide, you'll create a Rails project called blog, a (very) simple weblog. Before you can start building the application, you need to make sure that you have Rails itself installed. +TIP: The examples below use # and $ to denote terminal prompts. If you are using Windows, your prompt will look something like c:\source_code> + h4. Installing Rails In most cases, the easiest way to install Rails is to take advantage of RubyGems: From 72e06dc7a01a999e786106ae410583642ff81e6d Mon Sep 17 00:00:00 2001 From: Jason Noble & Ralph Shnelvar Date: Sun, 24 Jul 2011 15:04:12 -0600 Subject: [PATCH 07/24] Fix TIP formatting issue --- railties/guides/source/getting_started.textile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index b3b3581147..94778608ae 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -249,7 +249,8 @@ $ rails new blog This will create a Rails application called Blog in a directory called blog. TIP: You can see all of the switches that the Rails application builder accepts -by running rails new -h. +by running +rails new -h. After you create the blog application, switch to its folder to continue work directly in that application: From dd8a485170b1a91557fa2e7cfdcb1a941b778e2e Mon Sep 17 00:00:00 2001 From: John Date: Sun, 24 Jul 2011 17:04:52 -0400 Subject: [PATCH 08/24] Fixed Typo --- activerecord/lib/active_record/persistence.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activerecord/lib/active_record/persistence.rb b/activerecord/lib/active_record/persistence.rb index d9cd7987b0..ebda3875cd 100644 --- a/activerecord/lib/active_record/persistence.rb +++ b/activerecord/lib/active_record/persistence.rb @@ -287,7 +287,7 @@ module ActiveRecord private - # A hook to be overriden by association modules. + # A hook to be overridden by association modules. def destroy_associations end From 715c128e6a454addbb95df17dbc14cb3780bcea6 Mon Sep 17 00:00:00 2001 From: Jason Noble & Ralph Shnelvar Date: Sun, 24 Jul 2011 15:33:59 -0600 Subject: [PATCH 09/24] Remove "bundle install" section, as rails new ______ runs bundle install for you --- railties/guides/source/getting_started.textile | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 94778608ae..b01576b85c 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -282,18 +282,6 @@ by default: |tmp/|Temporary files| |vendor/|A place for all third-party code. In a typical Rails application, this includes Ruby Gems, the Rails source code (if you install it into your project) and plugins containing additional prepackaged functionality.| -h4. Installing the Required Gems - -Rails applications manage gem dependencies with -"Bundler":http://gembundler.com/v1.0/index.html by default. As we don't need any -other gems beyond the ones in the generated +Gemfile+ we can directly run - - -$ bundle install - - -to have them ready. - h4. Configuring a Database Just about every Rails application will interact with a database. The database From fe5cb7c521d9cc452454fea4146af173cfe82c94 Mon Sep 17 00:00:00 2001 From: Jason Noble & Ralph Shnelvar Date: Sun, 24 Jul 2011 15:39:22 -0600 Subject: [PATCH 10/24] Update wording of TIP about --database option for rails new --- railties/guides/source/getting_started.textile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index b01576b85c..4c61cae0cb 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -397,12 +397,12 @@ development: Change the username and password in the +development+ section as appropriate. -TIP: You don't have to update the database configurations manually. If you had a -look at the options of application generator, you have seen that one of them is -named --database. It lets you choose an adapter for couple of most used -relational databases. You can even run the generator repeatedly: cd .. && -rails new blog --database=mysql. When you confirm the overwriting of the -+config/database.yml+ file, your application will be configured for MySQL +TIP: You don't have to update the database configurations manually. If you look at the +options of the application generator, you will see that one of the options +is named --database. This option allows you to choose an adapter from a +list of the most used relational databases. You can even run the generator +repeatedly: cd .. && rails new blog --database=mysql. When you confirm the overwriting + of the +config/database.yml+ file, your application will be configured for MySQL instead of SQLite. h4. Creating the Database From 5ee349c7116e4ba1f76681660b71467998c90ed0 Mon Sep 17 00:00:00 2001 From: Jason Noble & Ralph Shnelvar Date: Sun, 24 Jul 2011 16:01:51 -0600 Subject: [PATCH 11/24] Updated rails_welcome.png to latest Rails welcome page. --- .../guides/assets/images/rails_welcome.png | Bin 106417 -> 121314 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/railties/guides/assets/images/rails_welcome.png b/railties/guides/assets/images/rails_welcome.png index 0e02cf5a8c0596864e321d39c7751c755012cb09..f2aa210d19d2cf512e4af98f03677b30e863bc6a 100644 GIT binary patch literal 121314 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 aAAPz``A4}y1Rv&HmiToc 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 M2ucc6@@f124{+5w4*&oF literal 106417 zcmeEtWmBC&wk{CdCAd2Tcemh9LU7r*1b5rGy9Srw5Zv9}-CZ~CvhkalbLY&Q^9Syi z`=P6=-g;YBudXG}dOBQ1Ng4%_01*NL0!3Cv;yVNc)YIQa1`qr93u&}#&fgBfUPj9a z0s;x^9}N;BJrfTCf($}dLhOe-0RPMyA^|EH=yJo)C>5Ve|8=ej-!jIxVx-CLz1uibGt&B+v>Ccdo zq8KXB|L!1Iy}>)75rO|X;Ge^RvFKOy%*@>T{Dj=r_RdzLN%S#JLf`&l=x;6z%?{6o z{O9YvA%V$ziNEuvOLaFLQz`!EU;kXr{~^pT;q?JLUqA6b_ZA__0Z%t#2TP>*{Xb^@ z$Cy=0D7l-pJ=HmGhW{nc1lez@E_{1V+5aJkD27GsKc_;+=)?is58 zCH!w8ioa6{33J)h{V(~ak^ioq0V$pM@00rfg8aYMNRinrv+Q?q@lUS4S9aDfLx`E+ zXF|^T1xR6GW*45T(NKqkB}(^j#}P_Ne3<5bPkp?DWyHkitP2O5==(*_NSNFjHn7Vf zZnmjq)W7vzPY8WDo)#Du1`mFDY0BWX632$DTZx*T{Vw>p?xf#ip_Ty9Q;%uN0o$2$ zK5-kpD#~y^^=_q@bap}(JeO2efodSHz4y>JxQI}sw1u!zWiV~yd|p~Gc0SW?nDUKN znKQ~yMyqnBYW>U##x1z)^oeR(q&L|d+QRk0=#fe<%)@c{g)^_V0Cix-`QwVjNeHN= z^2_cM>gNOlyfx(hz!n_##$J``YV}R@fUib|CrD z*L{>)7KgL4D-Tq3DjA%XWazz24w!e0nJXkzF+CTqpOJ`K>Ow#$g{%9=I#gK3c2q9hsX7(?011rGOgPf9?6V5ao0gKm?hH7d<{c{=9{7^??)* zikg~w0#!jLdf)fuU0TN1809$#CVu;+TLDww4rrixd1~QNRjejdBrnJWrqTRq@olQi zuO$!Gzb5wz1t9<}94I8)7R%~Ie(kvLjbf&~Inw3*THwV_vE5@fQdL$dW-^N1Y`wZi zb&it>e*9u$=ZPfTBW6)zriFvb`O~td>W^3;X(#~|m_1NsN-G4`H(9L@tr)-H3y<0i z+S$VF#h3qKZ|c>cwWIeh-QNIVMfZZKRNC;J=*~O46jK<&`qEIO>FAN$VXOpGmIJg+ zA#vyF{PUU2f%LT`{th#&!LS4-diAd;^|d_nX&8K0KcU@@0#tRjXbr2l?q0t)YrcEG zLVfexX7~XDk(E2y^&_{ydK`a*6ebj8|AKdTM0yY>KHw9s-zSXPjOCFhfFu42{>BnL zvrP<%G#W9=i!_JVoBxzaz;a)XLTOOSEUxuyZjK|El3zC``%&6V3}ed$^!u`vgTS-$ zzYOAZI(+>q;If=$4jH9$!PAZ!{NOY*^%4T6%yVjI;ND*q{#uLAScqLxtR~DVjOx!e zKI9&MM76<+e=Yu9cG24q5piHdd5M7L5muh5;yr2A{#&%KCbSZ;HXvvVF8L4Us9T<< zE#G*dY0_!6JpcpIfxG)GG?f81pU#PA{6O*wW&2K)OeE>n;wnbe<Lr!f2;Q2rvA0x7Bo zQ;|xGmVb6-n{+lIG2$ZY&nn>tQ_makqA zTR7;0KeeM?E`Jpbit9r0{DLHRX@b&zdWf9dfmP zT+{^F(G3_-ZTp5UwEZQB=AM=D#r&tOJ6ZxL9_yQGLg;H%6Zz%X6#7gPvd~2|Zi+jByr8b(s=;I&x4az(1e|z!OPf(n)P5S7Swnvu-!?88X z$?V_~W@3W`$tt5x5!E=x`t?ZDuErAh1L@dpuor`6_y=rOWgGE^?FT-E7pgTzk6Yyz zR(2BEQmptJz*LV2Rp#@%Vo1Z5CJ`BuJ^d8eOdK$VtTZ`I2|15sWc>ZbvJyH7T(%VSFF^3B3L0o3}Afq zG7O=#J1H>Cu7isC@jt?_zk!b(eElD(K1~bxk?1(@_+zqZiIg;iew6}N*g&_Qx$TGf znWc;tzs4R?AOFRyV`OjPjuS9!D7izgBD~^7)NUWZ9;?g|UKTCvC@fAXg`BEW0C#g# zN+Y}HyK3;CIW6az5tv5dyLc9T58kqEQk?L(mq zt&89=gcI)1Mq|DMrPU1rs0NGGhDvOv%Pk|!T@De0aLXA2q$5h6Uh<2~jLxI%miwkk z8lHdPn<=*0q?{EO8UE!t{t6WcU(Y^LED;LjrDbom1GRiKi2#p?B9$fi&~}e}&&36Q zJPV^oyAha3xGD8iBd%*r7?D0JCujLOy?3~Vo{1;DqQngJe%m1=khSW>=NeckVdf2) zjiU>qy4x?th3XZ+OUP(Vm-~FFEN;1||09bZN?wxfHBg{;e8ZaQ(6RM6Dlj}S^lH)@ zT?9z<{JKy6L-nJ}?O2B>L^toeD$vt-o-+YRtM`7`AfUoIHUb6k{+#2r2OjR8^lnLw zOFe?%v;qyqI2lk#Jv^v9IvF}(2fE?*npvwnT;A{m%J_2mEM zKvHa~wS2e9|9U#nP;Sl9U)u0M2}cmlul#kgtg zl71L;$x}`fORJ=F!iwZv(_NV4oQtHkkGox`h%ooVWuhNX4wOpANNjJmII&vYutIZv zlAg((x_Y)6t9b}Kr!x>SMna^ki5NKZ@{N%u&5X#_Cz0eB@SxEejgu^0U9~FWXvSR#C{2Wp$l{AIv%dz7;DEr{P+;#2b)&H!cIX?erK_#DZY4_lkMmF8k{dqB zr@Zz(GqM|9yASfOi%j1K*X*0_HVm-TZ4nu{VNd_=}j4(79iSRa_YNmfX0C0)Yt-$**)!i}Y77pULVdBUcEK1XcD{-D7I z_o>o~LrW%eh=611F1RW2BksfkVXDt!#I1Q`#zyf_X6K)Zz(fhw?7fBy;65FJ@#;DZSiY+vME1QWQO}ZCRp(HN+e7-;F;~=FTA{m zZ~M#q#|Y`MLW&sj_2hK+@>jA%TK&8dQ}rtPVYWoyK-z zmqKt`QWv9>ERvpu_SO9;i1lvMV^ZDWyBvVpcA- zkT9Yj=7X^)$U&@n$QAh|xyU=;Ep8wPd_hqhCg(mWkd+}l6k{KVfu(7TRN7b6$J_viTKxnoL z;c|qw7;A*23`%UX#gGyk?iyM9mIPVp>Avh=oN!sq$schqJ`p=4P49<$;VYWWL;p2X zybRFlRr=?{B0jI~Lr=l{Bje-q#C9y7Q?)0l#YJ7)8@k#yzu2fL3R^bU9IFXcJblv> z=+4P7Zovd{Yb6OFC#V0UDv05N_i?$F1w%jm?rYdnNdtsutJ+C|5cZC)LlTHZw6Fd~ zHKcq^dM{v@ZVAUrQUXKp(3EaFH0jn0S*ORfuZklhlA){+#)20*f-m&x9TzN=@Rj(Y zz(;pDN}0vPBdB|q&b13n+j_7rZ>i$fVJY>({E(ud_nu85-5}ld-s_od6ziC2a4X%m zJ*?%8PP&F5T&L7#S%TCvwRVl^?aQNlRTvT#{Fv7_&Q;Q=;if*sUY^NUF9{8ZKygfC z&CO6j{jUA>>R{7D^*iffTC5;0=}X&7yjIMPtRfbWp22uC-~IL448GIE(-d)2ct1vt zL_htr6KsIpyx+07fI;-oTY{^9-_5c6RUxrCbJ9~fCHQ-HdxqyuVHL4mYW{ew0;*tJ zgWvWT@oBb{+_*b1$>n1AcW8)67;*N5D75b^v*Cs~3G^0q7OqFm+jTiYrx(6w#lQ0Z zdK#z-xf{tuyP`p1I%drH>zSnWW~N4LH11c<=?$6*@bJ3<5Q z<@~~t*ppab8jcrX=_6a3!CPDyhm!Eu2X6)cDL{;EqH-?e^Vi7AffXMO)&_taW0PX)q3E;$uZ8iGE0( zUgUCh?RHd7#G$fmHscl+2FvI)bqir+fHs0ee3L;Kz7H7qnliYB4{-@6A)!o$Z|2hH zT2XtQzVDc^E%;ZeW-J44!NI((-Z1O(X*V~pQ)1!r;fjDHlA5B4)UG7W3rSboTz~n& zXWWXa;JJ!ZiJJpw@4>mG@YK{*UU%ook7X>o-iHXSe5O!V7SmQIoITy=4xXmZ!7G-U z2Hx#T9^89HYahrdw5E;BK-o0jPmxPD{hRqKbd0}VII7)4ymS@~BU50Gm9ROzv~9Nb z{cU_7JT(})9QOL3mOCHm9%kRlUzBrK0=T~YE0nZ=f!6-DzclhtTfaF(OY5h^TEWb5 zjHv2b#U-4y4E~|kUknork>DsoupK;| zxIH#gy}veTBLUDg%zmBHpxg8ci?q+TIDeEBwI>^IY2a;krbK0YL&x{^LXwo8YY}al zUw&E?VZ`yrxV}P)Av=Byq@SPSCE(AOAHAt)1%llA#bz0$YZk)6%LMB@@K5AP%2*$OK)F3 z+x|mw+zY94-p5_OyxvHDN)i6Ir06pyPQuIG&4s#*VXjYvT?~@XMT&Ienmc0IW6e_i z7^CdhDaW=Y-=S`w02jsY!UQ9IMY{k(kU%XVEs_RhUocx64Uac=%*e-R_slFTW15#p z%~_-bYBo%YKbG0fId&~@jox}QoRX;=G!VVjli7)5#Zzc}$=~!K7oS1e>!rkj{<8U+ zKelU|zlhHeqYC{h|`@zb?Jj}4Z0B+wi zP5xyZg1f6K{o>RkULmL2ufhLD7*mM+)v2G%v@iOwjL`|OV?1kC6P;gF90MuXW36r1 zJQ;COif?A(0H~x=83A-H2#5p6v0Z~RzTRP-btDop-*JC>5LhRB)>O}V+SPhn;{f9? zQZ0H|1bi?(1YGwb02891waOySuvrL97l8J`r+|QMQoNuOtis_jK|lVkIjYo9zB&5{ z?4`bbl*U&maf^Y+-2I`H#dmoWJ@k+$7g|ehB=3hNr2-QIsVKYA2tw6GU+-17BTgKFKGnl5sW>^b55&v+ zMtcSR7p+gpY`~e;DT2A?qvp$Vr|QYR2-N+QA1kX`Axyq*UMZ=y7fWufcZ4$icOpy= zM{Df|0M1DhXlf%F)yN>l4%X2($cE{?g?<>qnjSoh5wz}pu}^SlgJtT9d>O^q9|Iz9 z0TnK&J9t8-2~I)T|E*ISM1Lt*m+%bgRWDTu*4;Lm-~J>lD&Kq1I`)%PrWge_5W`Um zs0JmFe1+g3tV_`jgs%2ll!aQiTp0NEMF?Desf7^1-BWE+oabhD`h)Vynrt-(D7`^1 z_Mgg(FMT4?fu1X2F*`I`dluJkIM~uR^aDHE5Dz)j;xeWqo4|Qp0Ne+eh~{X-@lcME zaA9*C8Q8&KTUA4GOqi0{;fVW{VDU&HyZHxa-bs~fKdaR4r zuW)W$^OA}%%^@+77Ehl0fy=CEv+2pQy|WhXsA{+w6~1JE->u9!=-PtlKJ&PMRbY&A z?DZpiokHX-SX%H>&whvtHI^qDCe*lJv0#FE4f+!;3g!vk0;d_z~gV&C~1optb7}%rmSSxMeV|V*Ee= zy~`(NIco(?R;XGe1A4~dDUY8gr!ozazRKTit8E>-2 zp>K90)=0}5v09N5o*DWaiAE8-Z5<`a+FbmDWK85xCSeFQSJB);Nz>JGhibbd&mi## z7knBm%+K*%pn6=x(9j_C1_~)vB?@q3#T8IaV&dxu=h}+oEnY)M0>)$Y`_?l^96j9h*mKS$A8A&N zl8kfZ^_!q*QFppmn3PzsAtkrHf<;YDsrAT7cfNXSS8~!pokRP7ul$zi)>JwTZmKUO z!ez*AeF^DB2*q$kSw10=tZLXYf-d*P>Hos=$r+@D7=SwZQn-&NkL_jP1x?P8>+ zr=7vYwAH*$lcj6h$YYU?hp36loDeXeugtTi#T#n5dYC`toUgGZzejnUvIzJwi3LE# zL!7INw|5~Ob!wh&tc2>s!J)8lV1)8qwX`shvIG?(>%Shb03M)55xE7l*>=)N20fg& z#6r~94Xq|L13^Bg!-I({c$sITx^!{;FLCi9s+mB`QRx;h|M$%>1|A+O*(*=G{OZ0! zcwe+jKIRb+@Y`NRr`eFFx$=CWLq?ZSaEmeKRArWAj-liDJ#Gwgj^4RFXpp&yC(UA4 z7)CLam_>2W{!wjA(cDf;F41P^e4V7u1EKc2R<$lp%nLE-muqE4;Js6C1OX~qbarxCy-~D)Crs-y% z$WRnH00yPF#+OKC?#6$SYK6guDb)4e8iWo=7{Ob1W=lA_c z`A9c*J61;rn?)u}#j!+J+HZw1cW93iE~~TWnsEf7e~JtW#RT(ors}MJa;Z<=P=V); zOhGgBrOk}=kc9#Rmuo*w&oaLKX)2q=MI6*d*}Go=#mhx`v;~gDtzmf7jA%Yf{Kp11d>q3RJ(Bf zA03 z`!+2AVA9pWpJi?WJL&32LU=gtZ+RkJmnT#KAp~LZQE24)OBfTm-Ui*`wrOFK>ZUo@ zv9o!x%Jlu;ws;hgczPyS#r~-#7u;4|Pp`2XAu%T8V|s|5XZI8C?!)Jm=ME!=9apZG z&slJ6PQ&Q2>qE0mUj1BLWLLxPkdz6qo{bgd^Q7S;=JLB!(|7-@o?3G+L6i>DjS1zQ)6tOUOf&e8EW;OM59>zm#vlLr5} z0YT81bo_xA3cXAR`v?;?UPowA>p(?c6ln9FM#W)l>1J#@Oo@b}}qU-(CQ zq?*E~TKbQJ{~kWD3q3CF#ghPY;Fpt&i%Z6{Oh$oCs|xt#ep2sfv;Ge?;Ow%23M}bj z=3Kx9aP7v1B3&0Ek;S5+C@|Kbif)4$644B_%YG+Luf!0q_PhDCvN+JHM3u!QAk!swXF0)x ztFD^i`&rMfHDUEt1?(U?+uh2P*@_e-dn z)69~go{MF`P%!L|3<2Bqz)%)rH_1e+1x8Un0(j%~ zhwbn|z!w_F>PCZmhE$(Zm43K114G}j2&FxlLnUDKT~$f?&6n(sH^%ZewWsAhWF)V< z>2(d(i~G>{GeAgv6JYSl3)FI7_qoNCh&;Hh3rT5({V;b8kId%D8dnnn(I`sRK zo=&aFP^ui_NE5N!D|k-?`-E<{wzw)I=~ zBQY1PK(7IMyzJeRYpN2Rh#kot@*OIY4<$v6o zUuNI7)_XI!$nBf#{`P}eJ_l6)7{v8)7>s6E=S|AfnP1(J&u+ehl6Yt}^W$%rVi5@+ z77QFqW`gY@<#(p@xk=0+qo+qOG+bvG(xg1M8k_zpcFB4=dRnBU*+ge;`@8Us5kh#oLaq%>=~(L{k>hkIB`|2T{A&`i@CZsZg#jY6qz#|9G2ywj&{26S z(6Y{{877dwIeO(N`>N;%NO19XWKWmreUk5avkM--48$v)wbOowe5{|qm#XRFY@Aq2 zX&%7h2FLf2v9RBfQ8P{0qns63zb?s?ZW&h-A#V_r!L&lX;^QD?cP#d)rhpa2sa+7s z3!h}@XY8W8i9@u^VE%;wsMXBk=I6%Yr;^%2?xmC{8u<5sXlb?;q+AkiD{Su0BYNhw zc3`eXfQY#y0gj>#kSCE=@T8{CF)_mo=7D5Jph`adzE^MOAYou0>$WA)q0S%L z_aPHM#^r3{a6#f93cH05J1Y!P;@14#iVmnbNmM~9Lr$`zeJr~nlQ z#?XSy+TZPt1yfI05w7PuWE3htgrjg9ZC{nkI_{Tc?rlaIP=-H@MB*`<(rEhnVyn8E z59(1d1qoabD9+w*vdZMrgotEqiAdLtPX5SV=maSB9~HTxb0KmXZtt6a`;`?kP`7dE zQW<{=RHZd~2nd}SU>-25^$mL&mGg|a-W8&y^FY?Oqw60mbQ0uxo?IwUkT5Dxg;C(R z-~t)F?H*oa$?%Q4CfR!8i0=ydUC&P1d&)Z?)rV0vOTu^_%Qx$!^ic}R?dIbJnDeNS z8*dmXIH#1g&G)R}YPXV-m}ZSQ%JTO~?xwbYZTBMeuQRWAJwM;LxjMfASqhg^s9q?! zdm0?%IUM6Vyh~HEe6`Nn|3U>bxD4okc9TTf4V z1sR#{PiTUE0Rd3?XtTH|5q@Obs=B(?_U9;s+`Q;%><7q%WPFayV;Fj>N^ao$ z5bCZ3eTQe5&|EB+uKRVx#>zn>i%Y{wafzJG=EKVm&O5N;!g9AG0dK+~Zo|`S+_YcY zLDAcd25-&7C+2JvE?t0JeXIihmBs!}=}sU(#UPI;2uzrQIl%7y^^Nt4M>VYq3IjT<>B@=&pU-GP#PLSaHGIXD)c;Z zmj4Pjs&K;uz0!5yqB&~M&OlgvRL7RE`9)rCJS^%wY~Q4kw3#fr4KG+z#hIOuRtdXX zgdOMIOgk$uumwRLnJak*v}J4Lc+_Uydo%@OEDE*ZASEzX`sda@tU$Y6(h&xkpNg8B zVXTRw+uZqxPVR}sUYgIAXAP#qBzjP*TQ%7YbLEVq>CZ1X7$+Gjei~}Z&K54n#+$Jl z)ER!3mxo$$41}XJyz}o)`itbx$L3Z?DV)5ypD@Gsf)Q}`iJxOGQ$)VL9vsBl>|HJf zA2%fD!Pj&BvnFLR3%=eX2I1~Xa9*setiG2m`hW2TV2k!MrZr#sA2)M01=Vk46PlVpzJk8!P90;OVjuGbb zj9Gs@y&68j%<_|V!-Sh+hvB=L)T4eEuB0 z-}$OL-kBb7^u3lv1f&v9PZTcXamly7>e-ZvJ~258%7ZqVO`L014EgO|)byGtAI}w|Bmk7Zf0ypnmE2{yZfIx- zu?B&0Kd5?q@!FKI^TRH}n(TaVWPQv$r4nNY#Olw3*52HipA!OMOIHkd1jNfyb*rga2#Q#q1-Y*y(cYSZBe^G znRU>%fG6;PTkSSSy@z%dpwMt1(C+iK;Pff}cAB5`hx%$rEPi!`auC821(4 zNCV>=qm92*y&>$6OSk5mLJ-DG6&ypJvXAi}KNtDS;Ip-uS@^(Z!uvJON9#;L7-_HP zARY%2J8PU|TW5mwe-N+hb)e6v0J`4?2L}nH1h4aqQ(EEEl3`j3J)X{tnH`l9!Ao$z zy*@VKZCDd6Qg-UPM5GX`kVPo3pC5=AcB=RTf;psCca5)>w?w3=Wm{UT(GJ(SGmwBE zKMR-?#sXVTc;D~aN(Wt>osln|UNofe*FUg+4K*3;{D^my+Pg4c%J;L0e}L~v@ejJf zw=5$%p!AOGgnx3Qep&!uHE}rjb%2K`o3>-NrZK|LONo_rtl~auh#(l>!6i(M1b|8~ z%E*nT&qeo%-n=|FMnR_LsEN4oi_smK_ElZWV1h&Pnez3Rz`oDZdMGv^yD?cMF|g?a z4C_c2VUL0Xd>+qAeePCx^*sFKesiy|WU}`MDu?;KutEX9TGJ~&h4p-0xu%2Sb{kYk&Fv)89b;loG(@D4vdb3ITExdvP+WCja9;(gF%leEC{ zpvm%PeWm+kkV!;`#Z7ycWQ*y31j}vgrZ@eyX|j#mQR= zM9b^rqLjVy$}_oi+rNe^&p=W~juc$$*$T*%&xpcj)_<9f??i^`^>m0Qm8Lw@?i3Bd z&cWuWLRR{VOaDu!qAwDnVbz-b!DNv{G=BU*0S_F-kp3b@0XasI+%1#+M1@ zn&auZ;U{~9x~P6aUmyOxps&#%n<%%AV2vBq;QDUq1$F! zB*QMA4PU?n<8HA$>0nqTTh#ABfA}Zn&?h_|E}#<+3Bf}A;F06vS4l`X9P2;we{t}Q zpDb_joiaJPvchj!Govgdd%H#gRkL0dQ63 z&c-s`so}DzkK;eiJlzlvg}p^!X{)m)$!i5dZlBWtg2C-t9QJD#0@BvHMC5h&-?fG& zYv57-3^vvsMLMZ%h2E++>?6rmg2w0t7NustGDlw@+$qxIwk{_6y{ORPtk_L^>=3QC za7a7k7=tM5t_E00By41b73Pl#F^Ox2*D7wlUKK*VevAC2zk49PM@ksh9kWwXR^+SO znr!*I0RGRANR@dW&%Y~rkdWjPU(e20UCD#PNKr!!|IR8r zLj9<1=4qi8Mi##W@9I~xUAjKL9Av4#4v1dg^$P<7aUeEs)JWACX4W8>%DMj9m_{IA zK6=cyKZtZA1i|eCH4=xZ$5cJPg);U{0v1u^6H5<3G{vMrHE#D%cFB2;gn#2PWH#V z@wSRIEwfa$%aQf-?tJRyK~XvOCN{l!(ri+l$3xBolr~E_dWq7sSbF@}L38i^>eHT4`4FDe(SYc>rNW64jp;&3n0$y6|L|J4o zd|%!^j95@IJMVw->RD7s526WoI*aa}3+rSSq*+ikG-<$hf}c}_Wz*&1k)?5^lGJ{+ zNqA{51+w0S%p^7V#{9Xm#pAUn^K=OhU4ssg$8X@g4Mp{VzonHhx~6oBmu*p5B|NS_ z+X|M|cnqL^td8HRV=gvggc%+ej2P}*+V#g5G46FZJ@a=;POt`Qpoh$;n(eIQ=)nS= z`;E6TWvcwxvA%z?5^MpCtvn2rwz~SBJizL%zQ-*(>B==N0WtDnAH_lmt0djGsKBA2 zc~P}l+m(8}9iM&mqY>pVY~7DA(xL$}ti_`yx8+hsEVYDt+MD`>Gdwu&qtsd3uv9^P zy|{&yjoIn1{HbGnGzC#ZnjH4}Ojc+-8arhTW7Yc&JaK7Og!oMhW=q-KFI7xEtLN;r z;5S4*Ku0XK{Av$}1@*F(ldI8+(TN(zt#&DlcEvvmq8iZsh$Mp>#(gbixz;q)NZRKG z+F^BBq9D5$%1R26@Te#WlN-$>p&BAIG1T6_1sVG&k~)qK1onfheAk+qPt#|_*1<9J`9 z?)oPlEM-q}#~b#aC$1<(dg=ilZku6%>dw03$cE(0DYr7)5Nvh55K-+h<5HB<=V5R7 zLfowMo1cBu3pGuf5?c(mXarBadt*-N-c3{^Uccu625e)Po}+xx z6Jd3@yj)dI5Z!j{s%%9i=UKFw^@hJps;H|i z(z;u!5%8n55k5vM+48$BkTZH%qKpU9?9CtuMFX{RIz!Y1ZrIK?weU8cdMW0d#r?{a zHSN+B4CJmr**}2pxq56y>(O{hEQ;oYwZdAxHxWAL_?b3d9S2?ZsXun+s96l*LT@+^B-4-anSJJDRwg`yEu8&sZ4Z<}5#xblLG{z6&>-%pv^)Ng#yR9iOO{*iA@F z3!li~A#B?iMXmjs9ZVHzy`+>pp=L_Qk~o3XS88cDUn$cXobJI!1Q)LxX}vK$?36G4 zodDDJWR&Tkqy$MSbq!V9m8s*muAV+B(qlA2u|{_tN^Q2Nu6gJ4NtukIB3Jok&$`Ks z4y&$hElE?6``Dy^oMoBiPQ2pDSKiXv-FB4!|%Ye1o@nn z`fa3R+?E*4TPwaonop1;Zr9?-QUwpJe^$D7yfY1W2tL6Pl*wM8{+w1q_K17dCvP-CS8-TIT7hb41R|i>sg&AE#QXKe5#zs?teac0krHT+jv6g}_Xofle0>@_n zxf3C5qB&zT-5T0X5i)kS^?PD;;Xf?tsYUs%1lJWsZeMX`Y;_f5`z5ql<9-^!%~-d#olb4}eQ>M#AQgWL=!Hos zpp&z;($vqLkUJ1!R#ey3fwJ!Ko(gTep0B*uPRg*uv56Ohyh@v3vu*ej>$CqQ0u+S{ zMu5-#f(GH@D-05j!QWSkN2?8GV!sEz+ch0F{bC+N_5=0@{I!E@a{MX3Rg0CRNDEj< zJYO4U?QMprCA$;x^?FZEEo5;;o=Pgj20Ayc5b_SP^9R$<_F(-hA9-@O!E97lp{|uZ zL!l&|&kuXBpJAMHR*)pOOn!&7wxzFsT@}D0jqNGSb33LXiLFklraiHVd(S{7#I{UGFTBv zxMaS6@dSMdObRh#TYPcrZCG+Uct@m&u|(z*STdS;_#V~%Vv8Kplwf1&mHx5NEWq`d zP`x9zPYN;@&vWfZ)afN-A^lKg>}KELov~C)t{&XZsM3PWMfgSPrh=xhB9+rffk)oHC-w)sO~@Y2?5%<_)NU;%@k`8Nfwq3dHp!s@+L zfyQ94$;wY6c2(TxMA=4jbEc{|-ip^F^h)rxH{Qy)X!ZWIhGx^d$Z#q8XTGbL(?GVS zjj(s(vq0%nCp&!C#nuk*9E8LhthTEWbHE;J4ZHR(X@uC4a&HiWz*xMcQxie}%Z72i)vsu^KGu zV%~brf6nf$^yvEfzF4)5J1X+*+Q>}fjp?mre@aLos?1LXp7(_Bu|wDM;nMQP)@V&^ z!?w3Ng+)bXR)aqR5)Zn*5fI8=HI{G1q+dDjSKm|`+i?sxG!WP0v3McqQ1ytQ28K}O zTl*5AUTy|xpk?;n4bkKVirrb+r&G13GMr^mqct29mpX9}J_}fR^fdbnQpyw#P74di zfp>e2_Hmu^5%G=Vf`Va}P1FwHt{w+2J80z)Wx-AErUw*m&l19bWS#RafSz3Laz zXiXwN;0;~fh5GRsl;}=sTrX0*n}xavb6YOlf9Ijy*lN;-@o10bMKgqH{Ty_L*c97U3 z+Y0+eS560!Izq6~QNy;p%vy#wCF>}xsLKb8m>6H^9&~-MzQJ)&QH2|uSe0P4^9`3c zf2piYSpFWX`3qnq1!L_6mU1!2dw3<5#SKK^!FpgRMK_d^ zF{@%2^EGt2XvAixvccUY5E8x>6)(a<9%uIPa>z^mF+c7U|L@DE?3c8fI<<}d9fj1) z*PovrNN=T=gg>F%eCf;H7>et3fXPcB8M;zZ7mQQ}-4Z)_yXlpc4QP}l8!-UFOO(9h z)_a1^E@Sdq2f0!lOb_!sS!VtT&WZ>^OT5n(%HtZ({EQ_LLdJX>q0QMoZ`wN47DM_t z1h9|k*KLoL2O#rO9Pz2F3OMe|h!;`f0I9(fUmpYIt+^6d?v_)!QncSKEbyfHWSz-1 z8sO9yDEx44uVOIZ5o1LqZBgZ%lqvrh7d!dz&U^~lo*wnhV>~76P4t>GR;KvN8D)v+ z%=4nH*>sZXd0sOO1mkY;2tw47XqfPQJtLGkBMb^(U}vd#=3?h9J@~4xI@f=kNw~Hj z?bCd7NLcNC9a_TM4ns%{I8s@6EzFvBc#UsZkh>CxGkDH#>XpIw7Glb>7UB16!D* zUJ%+2%(!3a7b3nhn+WhNm^0 zL=~;GmaMz_dABYa3O@TvcgS_941a3NEu&q-b*(w!J4K{6c>1JXX+#+pt2&3Y;8LdD zQ-oGGT_sR@?~bvi{o5U;URd@zHlCKf+KEPVb#;9#BBQq-d+q>^22?z;gz`iH${2Nq z){geW7_Bsbv4#>KdzV~(a3zl>Z+?&xz6Qp&|RDh#(&bt&!+0>_R%QBW%qjV}Hbs+tG)Q;vI@JoUL@>8{Ae}XEj3-fISe@2m%f_X{y^D)TG-157_g` zx`P>Ty>14dZQ}XF*nDl92=Td7<#PrM6sQLxWEyC%8M8c1(|UeGTMliNM0A^qwQ78j zAD6+aov*u6-`b@WOprh)1lwuI)?VRijE;YQaz*pCwY?5Y+x5)v*^sVBCf>FY67if=-lVfFvT5Hu-7d! z^wt2@SDBO9SeJ$SkU=P4CwjbwGKt>9l_-+9({NO+b!Q_pZfn&W90n0}>Boi)UR@-W zYo6Anzdqg0ZptOq4^JLrS(YEW#6mFrL@YJt5p1uQ*+>KG5FKln%Si97FGN8cpYE=1 z;79D}KyOYuPBxew<5Kpag9MDhBtfQR% zaf-XvDSqEsqcr1CmJuiX#lCi%L8R-y=OqQ#l!%{=Te{O2Q>?PD8+f2xU)Qk8GVJ`) znC>jp-_qHGlID|XF8ydgRb}hZ!9+85vO^wP5LOEBfu+No+Zt^x8hE>a zj0veis=q>;+h<2J#XglhFP#^@!u}B|M^%=F-Az{8uzn58v&tZ*BKh%r)=qEb(2%?Q zDPdmmD(M?PrT?B;rJw>P3B4t;@^3^$5;t8mBC4M5p>R}C`xAkAE-_F34u0QBT<%=- zMOq%9MYSWDr9>h!i?9SXj`eA|pZ>?tP~xSbkY#G;$-s**r&NK43&kS^GJ?AZt7AU~ zBlYdW&EV9veCkhlSYIrF6zh&`UOjNDE{D26laE|>I6yl|adI>m> zQDsK8{JNY%7gLXFWn1NFIk%x@3=p{Kz$#s?67YWatL|R#Sx6Uo(Fj_mVKPs}jpP>S zuf5BwK<{*}MilCfMwVY`gj3jnj#>*E8DYOgWaSDo-u`fuP|QFsXLyq ziAx(25tG8wue%XsJMsG4h>u@+Y&z@58Poe!=AdQb7G)=@vh>B`8+2;1G*gf@7h)G? zhqf-)NaOJ`xDuo?phxSNI2Fwwnz9$3Q8^g7zOgr|g5%$On+u;4^7NuvKsr-35c8v(AQIs>-9)S?s z43b^dg!DHmVF)~3`UmANfIrmx+ka&cUj(2a+RnOHg9`nDa3zRHgH%niqxx~zGq z%0Tk>GZUoDS$Bg}Y87W8y1J4_Fs{tzZgM)pvW$s5Z^6OH0@L43zAPO4DRIg9&~RCk znBlo;HA~iHPC9*GD|}|7Z$5!_r18Ma#9aO~)Dkuf`eY2e8h#$ByaL}?TTASWIU@xy zWdu0vMS6-(#g@blRIBr6d{@>mlgWvSDYFW(37!}xqG^Zm5pf8fZILTEj5b7NI1}b} zpyp%S4_DNJPk-w$nLZkCHa>{O(u{jyhc#7rz-^f%Y5{4tj`|fO&A6Xb=QH<* zh94Um+X@wh6)~Wgeu~~|otd?(Bw?#Ab+ECpfwje1!L~HGxh4ZG=6)m)*H7JPA;mx& z>{tmbv(0X*AKIy?y*zKM-WVtw&sa95b(K!`1iii@30$yE{RFQ$s_Xj)BU*c~p+;KTRi63Cb+7O31nu8gjhIS;Xd=H`7vf4ggVlOi31L zX3_^cb1RCVo3QkYU7JCuPA7)Y`7oCV9&2KD)DN<}c$hNJ!i_ZG`xUmHI|`Wr!3kP- zc8)t2f<3A(z8{aHU%PLB?*moo5 zy&hWCwgd1t>#os7_ha7W>9=y*r9QUYwK9nGs^B~eV$cu$NW3YYe+lgpr@1z$D%G8P=_q~eE6Iw#PXsV0^%p3;>Qb?5xIgNwMrrLfBV zB6wIeF4=FV>`jehc0z_>elFn1ht6*Hu4GZd$2X>4<~!)rTa9{6y)Kx=oYBMVl#ke& zf2i=+EzdpyHtNH@Z&M0t><8t1+}#gHy5+CZCe0<$s( zLQ+o#742mnw_VGVmd86ZXh8BjM)?@sbIS`0`J)ZWG@W-O*DDKxpn455#cLSIg=WKz zswNvXpY4E9?X=VoiAs$FgZ5r!pN~t|I{Q@Mf}~1v`}RKms4ogLitzkDE2UgzrcKynT0q!&^lh>ff?T)weQ-y=&N*^ZsXv5uffKYQ7 z(ZII;`4wcTY%Y>D!S%HDQtebwSD@7gVMK6f~-Ra)?BCUK@}2D40ZIh)B95KsjSNmG%f5J zoqlDeeYPFZ9ucc6R}3*2%;Y%^NMe^i1U@<4#c0LTQu14c;^n>iKRDSk;Z1xP(m<+^|3Ko}8;rM+MRYJyJ!5j!?dihf%v z4I(^R;Xh(>N56kXdAbYH-qjJN{@4s@kF6dLP-}TdypbF96b)p~ZY(MnfY3~Y6oZ6n zKw5*EO`tegGz-br2GDc|SsgD#D=>E>S0q{B03;-`@kzC+>^W8mkV$M4I^{WPshu`% zl@GMzDi?Ht@aT92VR}zH`2|DOAH--r3GLZEb_uc=E7?Y6sdTJ$A0t{`L94z-m#9et z7x4)u#M0@R+i#d5IG~1T)sYCUj}_h+yBJ_ArEEj3wbJc+x|B(A3?~6$cEV~6dp@iF zh3&94LsaE@|4TG~cQDE+?KI@8cfu6mUAta;tbxWEps_N!iB z0bLJei7t8RKB=Lv2yB9X_-28kOG8&*f8}-l{n}jouDR1aa zWRCm3C$`ro(UUBxg0?D%Hezi9W?$z!hPo&q?(k$kc(*R`23oF8A%kDQ8mFdq(=3Ji z%Zk~MSPNj%mjr?`RTd-4UbD$sCk?dimAWgKw)y9vt`w_WrqBUdd@rUfI{>|ImC zGf1P>Y23GE3~kIxC#|U=Z=H_T3An_?i^xbdxor9_bD(!qF?Hsszm_w+39YjcOpu5> zGnAgc(_pqA){_LEB?r6KrqunO!BjiEjl>o?$ob?SC%uq9#o`lmr{1Z=2_DT%ju;w! zVYh$m2YV#i4G8%D#04bkJ|5iSh-^fwCL|`s?D)A2$JSxM+#`B7Sfz|=!&nB()@F;* z@jec40_AKK6jl8&VFiE$bKrYb zvsrKeV{JZnqp)W1g7!P5SXHnJ|AspF4u}Tj!@_?PF~N>-G2802{WM__e6fMWEgB(e zBIhIobL5vp`(TUp0txhdG=1+r6t9+=fPadny!?wuxog;X3-uakUA z&DIk^ja2mc7}H+|twh;w^XpyD-Tu=Pw7XG3d24G%S@wFJ{?~|<2{;6wr7I}TiR>XQ za3-KJeqB40(rWR4u?pj(bRT!QLHT-N>$d3uWhLo_ zy!vq{Y*ei_)?Z#=vb(SE+^#zklR$X|a%)&#O*0e|Q4RQXeKqQl@x>(YrrT;^*j@t+a3 zKZ=ME!f46;!o-UP$I=uSpTR%;iKidkOqzgr zV`h?{Vsg2IqudByY|ET}(^nOa{saZ@e|^AAwMg+Ln%Y0$#2)6p%=FRp`W@xrr8?s7 z6Nu7DZ5g<4QkC)VpvfQToNrkOCi29a6P>M^jF2}m_?}l$ZLg$|jRo=?yC)R-U1wxA z%YKYU5M(1S@T%TRug3(NRSoJy<^G#Oh?iC>Uz=sxsIQ?(861`cBtQ__;x>@Hn*rg^ zox+W77x_@#=;9Bj@W`2b5Hi57Yc^=GoehXE`}TukVV(53I^}$w|5p|)0eq#g?$eO$ z7zgDdZUgg+sz<7WD|MQq+TBT??{4-La7JmRD{OQekx-_)8UXdN?!A;9)LM?E^%r5p zrVlzH5yC^v?+Cb-Tb}YjGB-T) z`fn_fP?tw%{}*D*n{Y}A{tIxCHh#T>O9`MF>CkG!1?ZalHEVRMbow<=-TLg@N%vU~ zj&-6Y#yxfTbB|R!=W5C+_;M8w0;qxx6hdIv151PX)|Ld*!|hp4`4XZrcd$qy)~RK` zjG{j>2u}ovbrJLC4e(%BPu=qOJRckfftV%Wz>{1XUOoMQn2pkLf_b{Y+bH}diD1G7HCF!*Q=WEb@VWZTcp7EIz|;>5~VTQ++7 zU@U>M+Hys3>9gBypdK1flC;1MUgxGhO56Qw^Z!Ru(w&{O@^8`%i7Pm00onMb+3>vr zHJotgWdO>WLq4IqBT>9JAcT2VkZpf~fZ|S-w1X9x6%ype_DK zxwFa%rb?*hg=(l0-H{+X9ca(y1sB=pW_+1`W)*8~S;sQ3HNoH*|Qp9M(0Z zGlz`Kcwu$tFsW%{QTvUd$|Q@bkc|_~=K%Cf^NCBn&v80*6Ccx4+~sDrL!jI1`*ya0 z=$dgTH*e!WcmmFb9UOs77c}Da)sn&vWK@27rfNN5rB01VH3!-1||y-|`G z>^Sl%l{-o#m=E*IVKu0SM8)k7l**kObutaA;5vAc=<4B@Q^0#f;R?IT_X07Jf^s z**iDNdo#cB1Xe6?0NB*G_hB(We?;4Py6>q)a-plwuEe2Rjq1U>zy1OylI~c7#XOQkM^kIuH8&CAy{WFG5Ro28I z;rIk&7KA8!^SJ??62(dEp{*+F+ujdKFMVqst8fS2+5_9w6LAszyXj5CC;YXKT2plE z(Fkm^x+3O_{?q!uLy!N!8e2~zm@vnFo{rJdxE|I4{(BvNy78@`U~kR38^N>I2i3o4 zlKBtBLVU|=CO23p%NuX59$l}S=f8cS$IP2k8nAQX}FH58r$&&PK>1fJ`D zSf9d5CkTbVuVHx5p+3R==(IVO=Cs)8w zVL1C-P+jdErwQTd#QY0e1%tE;I2iy*2hbrCpmJ}qfqr3s+vLbz211kp;=z5UWz~20DR)lWp_oJ)+*wQ&^ z;0F=N)Ltc}sqNY0nP(Pjbt6NFat`(t$uT@PjP*g0-QQ!KCz$%flHL$>-@aJLp!&vg zlS%by+nDj>!4+63J|OgRT1yk46c8bZ#Cp86(!Q=C)a z?3j`KiJ%we9a}29DDXLz2FlCxm{eN8PvY}964#;ovk!TMLh?3a8im}`w-c(lRY8EW z<#V7{UmSC5FTCw?WtfIPF}b0Ua^M(J_flvwuBc82qLVe9-botMa*dW_y{t}zLMA#L zDAHpV1mw4fiIK94o>>|3hx@`(wr>BQS2WL`g-O+YawNiSN<@xwnp0FM4KpouRs-AG zIm)o?QVO>GMEo5P#+_zX8<+)`@j<4^fd)2i*dg0zlH}TIELPiwdcJDheu@#r4dP29H-<4>A9_=TG+#+cea`fe*Jo%aRh!Sg zw$V}L$dTM^waqZCD+bI^y797ZF;KBGA|0jd6hCGos9@#HlDK{z5$fzgj1R5<9dx*C z#QZQ$b#nU^YDWYk`tC}eeHm;^Nz%NBIr4+nP{IjR!ncpASS%VHqT|jhcRtGCI zlZUf(d)WGbf4m|-ErQ+=Z)!}5yg~Up6vwUG+UZxFyZK>s>J53nnFxUn`}9^Yx>pd^ z810i=k2;s!g>Pn~c;G=M*^8H?Dxf@bQ+156@Ts_9)&sSBRhJ2=e~k8uF@Wb@V7+}@ zZo2<41!*dDdX{bVL?-0S1*jvnAT*iknAi6gM$vh1Ar=}HNv3(Ad4r1`Q+hZuPmdb^ zwn*o0#&ZADuYcFVlrXn9RO;Fq_D#x)Se%1PD5uPC>!K!gFHm@&Kt3^*_~aS>gAo|i zH!^DMh@?o(d$zO&-pDv$YgmddL?x{)IpSk>_f8|?Z=E=1z4O|%t|u}7)Pza$(U*gC4;s|7Y|`Ok?Hl`GK^MB<(q4-mp!u+eY|sF{w&~mXu!qe4sScQ z>p>6oMY7os#U^&B^yhN&^R)-Z6ah&!f@9e`(7|171-ww)^vhd;d75M+K2B;dN8mbB znqaJdPNkYTHXg{Q=3dp@fJhlp-SlVv=gB0>JGx}^x6b#_xM)}(t2G2Nr|~w-UFDyP zOzxhl&3O6nWRJu|;ZF{C@HC7+y=Wlc37pd9CK4FDMEdBXL??w!Z~W1g+9?rQ?;d&3 z(P1;~&{_ko2|Ox946|;#D36+@**5d5JTGNGfb;l}kbL6t4f z;D9AI5}r#2;r6DED&yT)Uy<2hpbR=nFotq7{wAPhK=A2Ng#5*7|A|-a&QJDsIC~IV z6*l}Ncad8S8(+@WSeg^apu{F%NugTUlG9oQnWkrbLsZWX_CFK2-qwjgFrM)xzd@ zX?E$2A1$qE35a(hHqE7F{07yKR(tB(DDP1?3==s*PkWhY)#I;#tM&>x0W>u1j}k0W z`vg+I7oOl|0nU(Eo8vj)#?BLer$ndTlwrg%6p3N$#0VWjuGV`eVaVg`_-0pdA zq)$df>@@_CLr&cUE?l$<^tO)#mUq%d0o-&n-5VEvHT_8?D`afb2>zUdnRZOWZ31`c zc%7E>8xI~7)whZNIQ$^*?WCNGyJG1F;&)qy1t{**8SramhU;6+ArZ!^i`v)zmo{Bf zH)qZnc^91YtHbHoY^Qs7mYMpfXsV=(c|m&KGdlMog@e6gD!)>G`eI>3`%r$-)9sp{ zDtZ3f(cx9knt8ne+IfPhae?z-#T_zs;TD_Vjg>>F%;wW!kpViJ-C7w!0AC}zCuPLB zRF$PHuDZ!+79_t4$#q*tK&SGf-NLtah??XiWv0WFp!rFh; zLX+NiXP$!@a0$*?LyohC$EO6nDusbm)Fot87N!z{{8mvObIfXNsFYB(Zy@*Rhg~#! zBHE&&i5qtxZRP6{N*^(2gd$_M&6&unyAroptc8KtRz|fk9DDNeoUKiApWckSG_B_e zSgSJQBqaqD6|F=m^tHWB_r8#^&QO3uMR>35;=5H)OThIxnjDC7?F2E&U;;Y`Pra^j zX`+WX3+4JCW&@QqB+$LY5OVGE+cINVXp&iTAeb;I+bg{s9jAHJb&ksp@`6CmTf{Np zeouoUWz_f&YzTA^sL$kcammW9?mxSWOWjg_MI>L2V2%K=z_ajF_VGkq8F%}s1G<>e zKBaRKnw`e!@`V3p6oxQ&swxYz7n0<8nUb{+GBD*=UwtV54_oupA0osi%*)?ZFb{k} zaFn* zPd`Haob`LL3i)n!MNE)kZcdeg^|N(NPYDJKTO%`&?g^oI+C)HXV4s#HSjn|w zB`l?0{G;9;N~;Drey0=qGz6=~?p4&|Fi!X#@>*9>M2j2RMLS|78!$Td%`e77{ z2?*BRnc(q?fc=#$DU2LYAU(4r-G0ILi@9CPuY>^Vx|U8iFGP+s#0r(=UKvLcxseoC z)}ee2lqLob5rs@n`I>vv5h0a}N{0NIL&_N2E54K!n$bgf)3nV$LqW-`3V7M~wD|;@ z`EJkX)$Rhuxk{SIrn{&E6RL`-m~XH6NVUdmB>K+;j_Jd~Q3#-nOeFGj^a0!RJ3CIX z4)jHpele>;pxnt2@Zm-7Z)6$_Vy)bUlovNQsYjzSA}hs`CWV~%&r3MV>4Bk?K7HaF zhj0k#D#5tttAD{zuTPEATLnv z6e@uU;sgpCMkIwfP;s9~p8P*w8FwL~;!E35S%DL<_umJ+_FmrAxB9>?=8Q08Z9THmH^5FS1gBAr zvU#O}Q8Cl^)0{3;gi{X{PdpzQ#-U%48veO~lG9@YpG>Jr=MrNlgmk3@ z>MIPHXgH$BsDtx&EM_R}u)d##gZ6%fgl&YBhkW|R*_j498QJUlEL?nZG%XOy$j|Vr zyfVF=q?ilpAO)sHxs>o;uX1X ziba`9*eBn~QHGx?+T&==OV4>cfdJKVB6oRdRusi-nsZE!otPb!t=uKb-Bz3SFk@d; zi2`V%RF5*-FO~S0Qb@}%3s%L^`D9~ti)s!?w&*rejw=(%7~?++w^$jp*d}7Eu%Ml? zmylPTR-~=N`}E>Sp)y~w#z-BSs`3yOkYdj$^!rPSGprVDpeLOqObA*7$!D_4wd+|V zJ>HUsY%Bkjs1^|co3JMfj*~`5&2Bhz zt<%{8>s*H<;F&qj>D1CW_x37_4=*aMYaL&sP9b^n2^-H|H0eJg6twoPa-{`}piacQ z?W4$!xZ{%4_#IAd&;@sL8Gfqm#3xam44P}A?MMy|+5zJ@WssGc%vU;T8+lW(C@)5L zy`dY7h1!U~U@{{J>UoP%k>{si{Z5whqUqru&(FicrW;tSAn4hi$Pe0KKnI7p4#){; z82usus+m8GY&c|zwxDGZePv_!1fe*CM`*1{aWDfb^yuGW@73=+ELZ7>M+}4~Riz)u z6iGIjw}Z7Z-QQs*;Xm@I<3Am-Fgk$&ZNcx~BeV&dpU&l+3GKdJA}C0eu?d?g#ada3 zF9xrC;to`$Q8koGz48142cC`N3B2nt z`T;$*p5Q}m!^dg7ONku%0s3t~Tle=v1$fNmyLS|2h6AHUz3d|Sxd!>Dao*7q#0`w4 zY~Vs(vSD>8`@={8%x~vLBq(wZ@^sOZm5Q#z+M)&bvA@EU`XoNT@Nnp925306hU{qH z&dyH6{l^tazEVMsbH^M4v!0HlH@>5!=*k4rZx4}}NFwS47LC%Ue)fXdNYA&aFn96u z_G$qrmiTo^R`AT44e+9Vm3mM7I7S`sVCJ~`E7>ZkaZzVnvBvrZnyOYiyQ0qs6P8i^%AMT4>Wzsi zbOT$bTKQL=jaQ;<2#8@;JCN5s;ScBw8+W3l_dQlB9}ckQD{Q)^SyhUJVE=hT(SYq! zf;(`@Hk|Y~YlyfsN*>Vo++I1UR-MI#UeC@*(6`B(Ef$~_n6u;Nxi&frM+>MEH;H0S z8NS5YF5g9edFanLC_DtmDFr>c1oc+ii`7aMe=W9>}n{up`<$reEEJ z(_2?^O&gw}qcMtg?Kz)X-@aPEp(BBfR^)DNuC5!*pGfb?7qo=fx&8a>bpoAr2s~_F z8fh4c*&=a{*Ul$vCqNt9!K~tgaQ9~6mToOknbxwghtmlFMOzuk$VOORORcbTCXI_Y z(AXI5VGAW$>`XWm;KBL761zX^0n+$ryaATIpBGSq0tIu*j~Bgk9uJbxclObUb*x`y z6VkN;sl0X(TA?jIIQsX4?Fg0EaR)Z14@TdQGjAy`FQh`?)b#L&F6K|)&)M;Q+X5{_ z=>VM&lP#!b2xq4cv!gW^s>CsjUkYn-Xi=9emfa&&;PmaSpPVYVY_bm8OCIix`baz* z9*~Y&7e9iByQ@0e{W>FD)D#DPM?CUIWgj*Hy&ux_CQCyi|GET7$J^8rJ^X2{VN}g<%SZ6 z9LnI&NaT+~<}Y3!gEMCfK*umtlKTOlvY9bpVj=AQ8dXu7?ez4gSH5m)BDh5&LZRN< z3?~+hXSqp-<3$7{!36z8UH9a8(sok(y>Z1Wo;#nrEFp(P>`CchZ=FjDg1Ei3Nhxy2 zdY#wQN=o6r$KWZ$rz&|-)k*_@U`f6rgV$JLYT-!FCsIAT#ogVI8Ul0TZfkgtE$X(9 z?7i2@JR>6`LP9D`xZ$BiV)vlyZFbrptiqUf5SWi+SR6?8a zA9~Mq22a^JU#Dl!%%iSLojuV>8r%pZDfzA_BE}b1Duh_0j{M~a{;Y$o{J`ICrFI3{ z9OXsd^sGl3e5~Zh`&#%;vJj|yYvbRajtq2A%Z`qv=zGO?zGVTHIibOp4eo+toil2S zFKKi9{Y1YYnFCfE+>Jx|;1#yJN;bpca=q1P!rf2~F?Xo>$}B}id{l}4G`r{?P}#u| z$@~#JmVBPMZ6x-1Mw;1!*zR)~DV*BbWAlZwWN%H&V&xeUektkx(V@51x@&d%xLca8 zt!s5ftlACUCdLUsE>$FEpNSi8k-F(4AW$~tfylG+j6mv;H=l+d>>AyCq zoGhz9fT(a!%USnf&X@#gdf!x1sf?XrR-9oD2E1jqnzV4{UZ4o72$zV%*2<1JU5~vR0v4etM^PFTWRPI59ua%8$4}KcX7#79y^niwE}~0 z`<{$8Bk}5>%713oe|8~~`Eb5^Ce1G5PI}hbDn2M}yx-ZHoeGq@dmQ-e+$af(_qOiI zoQI+2PBh)cD-;^m9?Eg@eS7pr!+`xh_>M;U!I?**_!Zn~z9v?JOKW#&F>rg9^W#c6 zBtmC<*Ak9>l`o|sF-K;*q*X~K+k%mI4k}!)+-?(R3;?nU$0)O#q4u=+>W6<`vqvbq zHH|2hO1w%dyduB5WH~^&=xC^gA*F*0TMBPdy0ooIX{8GQEdDxgWHI;HG=C!D^c57=hBq3cM00>9?teH+= zmmRBDpXyOJJfiI3=n+c>I$q6dB1f))3X>Z>Yb{wLYR8`u;MM-lGff|BXi9*05}g}s zs35}jl)jtrD!Z;5YkV3}4TMv5gRJ^MPmp|HFqiYG9i%vu04A1Etn9c*FB~xYue)=V z>_V04%zAPb-8u?cWe9tHx&|{WUxMOZ8I`zG@o{T~53|q-LK{Y=Q&@{=jwqF*}=&+*GsBg{-w_vnaYQePuRgTMd*X&_;C!$h? z%65~fbDohHE*bt|tH;GqU$;6nAUtKIL2Rl>p4Lz&XE2ek=IA^5haM$=d>MGnFgksFLs1_XEnkj)8VcfVr`nenBSp7 zYbFpB&y|Ne85btjBm-07@S=XJwCIzv8|Z+*;d1}<)vfUlUJs+cc?JLm0U^*iyG7^r zq(rs5>C)ALe1C<2=;Gg_qX5;*fcWo~^-pTD|zUl&$n z3VifUPP_>Vt6T`?av|gCkbh-3KdO#fT%gb8$7+9Tuh+EblkBo@EVNiZHY>eymZFv4 zk9&ijnVdaC%SQyes{y+Gi#f@a-4BkNp)UUpgn907N)J=o3bJqEOt??4+38QI+D@uI zz$+{C0vnf`P+ybO#-ROzUOY9lU)@S_g#G-Oa#zIY^j8`w$kl6ozcRT?gk9=>=oB^&zuSpH! zd6x$8PQz1DJ&h)ppMp&r_g*~^2Bqx%g&@eM9-$?{DyiacOawhG^BYv}2H$WL$D>pc z(KI?H=I8exuyAmTtXr3tl~H#7{|HD2P$rho#H6UhMO$0j=Mi}Op7wTX5Qt6Y zwMn8I>J-is+A1NNEYHl2F@|ys;%IWAzuW(_S)r9etG{75Wn*RGTSE^GCki-+1q}lT zE7r%yRCh5Qzp5FKvv6wQdNC|mHqr_wxChL-d;s60}ZV3*6}EJH~9T0&%L(( zIRMydC_Po`L*I@kX*wz9633KF4wLZf4y~Ims&q{Bh1Y60+<21rcEq>fA=uCH!A>qviDn|Lx7LAK|HiJe%{cE)x ze7qki@$@ULK)=?>s4HAht#7SG6KHN0Kup$xY>}o&um@6alGhYXK>1e*J*NoJjTbbr7cr0hsBcgU#Ngswixr1(VwSS4_kkrVV5j;y<48&rW!h zw>52V9DSpUQ+kUNi%rx&cIb~+`-J_gQ+@gj(Y0>;Ptf;=-n#)W4OP17k8tb#5Bcy9 z@*x?3Q|5nZfMnLiAHA822=d3^{~>1}eUURV0oFYJIm4gPzUWu?uZ6W>jp%>KuF_v* zS5H9e$G^&y|LLWl;QEl&a`M`=*&oZT=MMkFknAM*-4{si!o$vo8Vqk^C zwv6?kzy0ZM=)Ss@?u9Bz@SU}Prc%ARr*Ew zr6*>mL)9C9Q~o+t7xWi>+k3hp39tRu_%D|39ZP0pS(Is<)iCq zjm_bK#hTPOUq?O(6*bjVlZ`%;>5lKgxQ6a~pNLYB85!)B8fJtn&la~mbem>oGQ<4` z6FE#*y$osYYTddXeP^@;8(pcWsUq8dbo34w^7^#i++dki#3}0KN?kd4$xL;qp|PCo zeICxfJbW&Qu|^3tTs7aJn61SE2NkrUOR+Y)d1 zRPr3HWV z=nI89W;4h-sIE_fao+R>kFkH!Y;bpCAKG^9?3Vz0pUcBYLV'sF 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%0DAtr z_nAg!YosH~k*CaeKDPz4^ZUn|P^1G;pQQUMn2u2U<#?RQ;*WDKi5J^kK}!r(?GFEh z8C6ivg}P-!IBisqT{E$o*A#5u=mf`wqoLZWnS3Ok9&xI{$r7rOMO#Q+x;$5=OHN*WGr=A= zo5i46AAaRZAPzeIv;g-7RSQ&uI9i9A4_Y}kO)sfNFlJB7f}Pi;46%p!JLcXZ79S$? zOMBpvey!(lnlWvW;WH!VW&33?nYob~gUYU|b*G2Jw>11heN{w4ciUMh+HLvz?i zML98h|Ix^oxSzlA_;N4_zW7}b>@YkGWGl4qM?$@HY6k@$by?WD>pdnNh2cG-XeZjh z&RmWO(GhO`0aO%FGpYK7chc@H)_I_&SaDJ(Um;}$#pVZ80wPWCy&{81j^Z?tUm1Kz zbWSM%wjwfn62z|@NP;haV#&VWc)0dgMhR5|-pL#498sUqS9D)>gmd!m)L!bQx^eOn zO^7Jf>L(S*hvt_qwo^N8clziJRNSMS)S;>uKEi$xq!1}y-n-#3@p-^|S3Via`})2# z?TLRVALCI@!CzT!PtD|^z08vtY_;YzV7?f5t#Y|Fs(Kzh8;OEp;d^5w=72g-@Cy=W z4_~iMy}sNq<6P~j@i_wub(S$g!=xwNjMp6?@SZTPUf$v#^?&y3IzG|!zF4-qXt@zN zxv9Q-(p^q$tKHJCrz*QZFlW+Jh!6E>=x*p7#3BtFDm%&UjUe<-tcIBGU~i|Tte~XQ zK6tz~!?3@+qmCVPihF1rxyrA{)KJ}A51fExDf*JEnL?)9WA-#8O)X<$KEl1P4UftQ zgt0z9@3$}@oSC7%eLuhk?dIti{w8iV>DUJMIYUvdk(Wxppo?9~awjt#!-`z~04@Rq zKvu-KieYbj&-`0cy&fl&lvfs+`V=-(bvABC3@1+nvF9OKyx1sphXAN^Q2TMXHzThj zk(=WZ-aIrcNy^PR!tJ`Md)v&kpHy4S^2{6Ed%01-;MJKMt3>b;mvVFiE~jfJiVa)& z$oc%uL)B;#uNP|?YE5K$ciq~)v5QC&IcaN-IPksB)U8)mXJsn&KzxVv+aDn$>7Z`s z5p&r<$I!Ys`+%hLJ58q~k4ro>-JEbM##_>XF650AvdaOG6Yh;OCYCQg(UTw*UD9SL zaPzA|9(Ul$la9hz8t9^&`(|`U*yXSh0%W`tNgErbMXW;c=_&S5vtGknG7~e#D6Bw>}MG+>-?IY0vvE z{}Hoiw&q}^$q7MPr$Qy2thG3-Xt%?8Dr%L;fHGc?x;(kwyF|i|O`}uQAMb5=^tzEF z7QO!^j|Di!J-)~>XJqhFz{|dO?oC6--jdnC4^^G)@0B)X2qLAYyLagA>ePuzdJHd3 zCp&T2@xYPv(T;4^6xE~_Slzb7jH#!GiRTtSrSg{pZ>|5kIm`o(9@th zkt@ih(%<~(WWYTqZD_rYd+2h9k}@HcHA`rv09xG4OZtJB(HR|KR04Z`WW3`kgEq6&E>O2`Y`Uv(P31} zQ75oiIUcX66}mV@S!gRiE~Yl~IUt0!m^F0`rH_D-ldKDJusSaovyxg&SC-t@3R#(> zWtLo{dv4&GvNP{^|M1Pr^c6#r>Nu4J$kvIDZ*{TU82rBUE8h^;tFaFge%N?OzI^gz z3kueU^!bx^&Y|$R;GCSwI`9D5cRh|^suiPy`T#W%LRCzCGT!%2B)kVlZ|^+d{ke}sH+ z+c!)_PDHc;$yONbcQeda9pEd6;$+#Numzx_b>pNAQD7;ppboY2J;?LRW=tSoMd?KD z(CLx%`1OsZaAx$LkWuOA>eE+eRsOuIl--Z?7VN#r2xW~rIhqSK%8?Jch&k^m%T0a` z@R6rhEDoOMhwmH5PEIFGpS(Q*>Ln)I14S$@+u4O5JBe`sTxwd>-49TkDRQVWMZI%j0D`U zVbSX%ZJCXEg#`Lf+Mn3fg*7RL_wW(P^`m!G+`~<}J|W+ldNp(xs_Mw87U-lHJe=KN zWVxjQ)rvc8-~m%oPKK3lyugVXs%AIC<%kv-AWP6{fbemgITcEQ^l4P0nNP> znDvx>=lj`l1Nl^bLy6MFbL15hoBII&m#x-ZGYVULUR)vW$F`OWY{H@xqv z+0O7K`dMo7*^HVeJ_TczuQFBW8}Eox#IE?J?3OepEl?aep*cC>SG4A?2KdDt4Kj4Y zOKQg6lp=T@+h=LM{ip6HC(py|=d>_Ct_y6kL^L*sUCnXZ`)2B?wnGJ(-&Bu6Dg{<)Vbdf zXlQLV39fWntLz!buVbb=v`si@t>>g88(|!n@lU=b&K+FluQooE}$bYiLxsBBM%U@A~pb@uUs>x`PK8qF}O za-Xibh^+taPE4CXHFNri@#p2bNjwWE!sua3R+20@R8*|xJ!-uu;H#Syx5uHO?lnKg z9J|=+uSoQaTbke-GyN@i`THN4*n4XP^WAv|K_`|L{UgtKui@xZefNArrTqC)QErx& z7^VYr4o$B4>-#r?A{+!A`Oep_F2BZA!prY{MuLS>JwrWJENHuT%1Wl?ekUY46M3JLMoupGrx7dX57IYJ{% zOz(9Lg}QAj#paLl^#vxj9s1;IV)&_|gBiEXTB``%psXR<{PuPP)0i`|C!^JH>F8S! z*Kb0L*l;5-`&$@`saSd2`J5`ne>zcg{m8I0Hzc2XRq8r#oU1lApsACZ9GZ@`u}Nn` z9ASpSl8x?ecbd*A{!SPAI{F;E`JJe5g*o&-;`#8NGt&Rr_LS2LYRIK(us`^=evsVl z=@~euzWbpXrI`L{Zuz1iTDyjU9jbc3bPA@L2PV3)2>7ug^6cB@_NAO}taxco5e9|o zeV3N`V-Due1iMNbO6NbI+$IuQ^P1`)VW1GmnAeIVsQhcePxIKs4>2K3o&>McL~tmFK_yh^@P!?D`tP_O;Uvt$8H$4cZcxB+m7DLNZFL;1ci;x4SiFNS&PZ4l40r0!iLZK z)mIWf+2&HTqLp7{sm~0kM$jBBkX4l1s0ah+4J+ZzfNEJiY?_soeI8Oe++~Wniq@ zPiRDI4;nH)D5;0ScBihW^ENs4oh4n8%I$KN2*6P-H{#i%t>v>2{ywG@$e9GrS_g52 zx@7L7krr!}BWg^FQ$F<NfMJuri8i5=6Km^_1 zOaikhBfSX#)L>$q?u{>;Kl!D7AZbuuWn3{0D-zK0#9jluxQ|{-=Trsm&_V-ZTkZAV z`4sCQN# z<(vzqZ&mPqWt54+@K*+XP^G1X(o}?uD95clG&Xjmha`?gykVucM-N6>Wu-F7ZdC!A zRFi>&v0{0Y$O4s3WtXL~d^KR~@~)Y!W~2{0_TgIeif)Nr0DdF(_+Im};?B}&Sy9F5Xa}DVSWf4le+B zXTJSt71#Po3%rdw#0}pjL{C}Wfbw#x%q*U%Do3(M-eveMT>3BGt*z_wh-z+Yu%$Au ze&LCUpC8DLtYbqo*F@&>3IQ1<(!vg9Tq;JkVkpRoobhEcqKnf{+pVSi3sz2M@8>tMIeRA?zn?& zN`VXV)*{&RYI0#Y5+%taZ?A)_2k`edgO(^gFxR;5j^9k@dXDD_hgcJj*4-CZAa1Bz zlcPwag~rlGE0ShR(x&LUEW7$NwvP;AMdUuaNwDyDMJiTi7gPgXFR*jDg8Eyu_qGpH zD@mQGI;4kQFGYPRFNAGIrAMjb1-HC5LvXftUW}63F6raf3x@9oNJ@EEj~?eYdZYJD zyJ-K6^D73ZYF;QR(R3#=YHrFif>-6n;)LOfwc_Vk?%qP8-Z`)p2jV`W-mq8S{; z(XkX}2$B!_|Jx;Nu7|Xp3dYu)wc8|9uH<9Nps)xUQLH?QXEJ_PED<&Ac^Go$D12C1Fiz0+ln+W$pAL)3jJSx+upni`lZX^EGGYeC zm^H{_6I%Bu5ov>?;^zeHco-Yk1gp=Ui>F055*}5WnMP!Gl5CKtWh+pJiSEu4?^4~w zGdh>{Q*rM3$$zDi-$SL&;sp4EL+N$<@kf#3q(M*4|Eb`NsV|yMnXa{(CJ-Vr{XQmc zpLg?!voUN8{}0Wz+rB|16Oj=C(=)fI7{7ymqShK_C7Zsf zyy?Y+YDF1MrYrIMnnGM#|ALbFikV#Ep}!~7-()Ti6p&Tn*UMXx@+!TH6ki}EFJ$Z| zCu=*^taA3eN@`Mr-_o6{=@Ib5G{b%AIH+G(I8cie+#Se(qf4n6;SBa8!v(nhf#4%& z(8Chh{_3^odTzbU$L7rK?u8hSwUPaKl0p=^KJRR=}s~XWSMyrTAj)p^U#45yUc!HF^vRWEbY3LuVTNF)uq> zrNhntaF-;JgSWf?RWz+py>XbHJS|XFNc7uxMJ^_EHn`Hxu6R{mI9$roH*f7<#6wcfQ`qvRkf6EKe^yt7iu5}2eZV8Rkf)P`&pweAbZP{-6(Xc;S)Vo>!Wy2pUA-n6|7X{mfjaLN+a zv<%5HfksnZ#x>4ij7~mM0TuIyNpo?dFFs-|mKV%O5a~T`;-Ju}>l}Hkq4O(3I(Zz6 zZN1s~A%2tymFP}*Zq+q}j5ppD(crg0(jT6(a{jz)^;26f?`vM)}d);0bYRx$31e|4%aO$tEbhFJZ z!B{9Q^N-=|weaGzt?lpQv%pcvhnBoX_F}=5k97R)wkPYxOS`DV)A{ ziK+%*Vj7n=>(>`*I-&64w8Rij3- z5^^?k;gr_;b|`;7?o*?oHi4Vjh)hE8LRD>k`p)<)g31C5SIrAEkMp=412XN2RQGqE zdb-K@oyxRCEi`&AgImaEK#lX5&xV=peYt*WUz?lRw+u^Cv{IP*H&NJFkx$1zYbdg) zIRL@yjd{4#SCo4XIa(67NHRLc$46lu2rh@A!~^EzyuqBx$MV~G zzN6%IH5s`tkQNm49^)os!A-4)dZ#_w2thTP?yvg@n%dVI#3Il+om6C1m^avavh$}S zByZEx#(6!JU|A(DUC5$;@&F48Kxk(QA=N$i|H=E{9W>J~0yj(I@bL-OP>`QPI*?n8 zUV4Y>Uy?+w4#Xeoe2)Lx_09JX3+0bj!JDhD% z0|Za$S<9Vt9#dvvg@0K2Drqx$00dYM3(kze<^G41ELt+D*Z)caaaMIYnA!hBs@En_ z#Z$Wh^B(sZ&1-m=j$B;SWh-a%{VY}CzIze-4=Me^fR27$?i2xwdnGGIe$u&pP#VM& zFu^Jkr$~6Iw4o>ppngR}Pb8Ghj~EjsFnqDB@7jwu;yvhrIOux(tuHEZi3GMuySQAJ z-Nn`mLf7XRHX%5N?`enZ2VO8f!-zOxD(w!+7u4YQul&i=aY82>$1lU|bVL8VSJ3;n zqJy@f^V2_)je-lbHb%QtxbLAMcx|}^Ex@qoG#psVOOs(wlflX~%BGffd6B^qn7}@I zpVJ$M)!vhT$jt@s8S}A#ry>`er^b2XJP)A+O<&>QR-za!y_7DVY?Y{Bfz!ZY{o1xr z`qMou%sk-=I9$5Keew2<)M~jNH}%h$dXjDSVYsSkOd`6JA_E~OEQ@T?Y_8n~ zR^b^nGo98>E66!yw?31d_>5taZo&y$AXxD!K^9^8$&4*X;n@FF8>p?{4EX=JddsLf zmUV43xVr?0;K4n(%fuxR+#P~V+}+*X-90!2cXxMpLU8$Jvi4s4p8L0YjIQb))m>GO zy{n>V;qRE)&$q#B?I zk~Ja+ajM~;#j7K)OR==3mh&@1mEwcnRE%$a_AubaEops!8?+G@+`U z$Es_o!4~qG<@`rxJ;Kn-9(!>Tj^@8#z*YZM!R(0Svts@N_CnImm;Zf9Z;%n^4NubU zg5=5>Yf;9VgaNAe9~>@M;Na)g&mMmZXn4CaLf+qVd{XoTrGdTK2h3<~-QUI^DZn^; zHswgFVLM{R#}7Y^$_}J_8iqy04}RM~rslFEaAzIP6r01V1>f%0mOc5>WlMe^_9xZi zCXM&MsTQdY3|#IwtE@mKEqCE4UE;b7dxRL=FYu~P!Qg`|{e=WKo!x$z#4-h69eJ^$ zjzk%7NGnn~iHvvsrt>GwA}IL2S4uNjz0NmAFZra0D4+lENvR!>2yN9LdpQOW#0y$) zvoh^?;OLyqf+ZtYNQhTykyu>vACD?-V1Yq-PVrNk1A5XwR$l*wwn^}+mJ(}=|2$Ta{OELB|kVUwKBXYw`_7Vav* z@Y$&jeeVaG*NF<`Ghf7Xb>J)pxu!7=w2s9ZX!n61mSXB*w=*a@RBZmVyRHf&<=DJJ zS5L7JO&qwV&^tiDtxxp@EkA25pvJCu`&_}V z*Ig<0t7tKl)fYZ`0QS%7|DG)VL=&-9TXw^=Xd%G3N;Xr!!+Nc>K=3p|dr3EK>dmDa zUdM#u!^Y0M=apb+%;9E$LzqK(?}i=2Cdj3unf|O6GB99KYJ~2L_NLwm<}=XnZ(&$z zgV>boE_<+x^Honv7Xl9XP(pMiC=prEPQLo-XogW+8UHWbfQS;4T1?ykTu!>Y4xSsF z8CQu#mYrpxqB|Le;plfwA%mw$IT|CPJC{P|DL*pV7{^rDu&C3C2V#+HsF^$vSoeLa z4MqH=j7}7v@bnn_)^v=RYLsR?9_a;?D+qX#P9fiHNt~WA?BH*$%zp~dAY1SKsHcu7 z8zGvrNgIRc!7ay{`XqnSiHv*`kJ>~+r;SN*NT%zgzx5n2U=YZmYpw&0UMDAgkEN~q zv+TGo3W}>#E&c_U0l*5iYOGuqKGVaFJ<6I&z zOjo$8+V3J$m`Uca;l1SWJpzT9_x$=FQM#N%44XK5Y>EstzwsU1Ngw~CXyD&MRDbZo zAo8h*DEW2@NRv3U{|c}*KPhOdfF+*bRq0m8X*p-Ct>lYn_DYo|8XzT92-zuuF=$Wc z$l^m;ubG895w>rM4;rly&yklWM0u+I94=)aW&)y2!+*v4xQlnrW_#~2i)WbU#Z5Ck zOqjLu>(_pT0|C{3CCTi>dgiw*%M$zN){4_=VU1f<@+tp_sjdQp3xxGbqxln(2;D#o zUdcl|3p44m#D40^sh_2dri9Dtirv)e`849Sd-Zuf#mU7g+Jc88ACqT-{1*C@S7Cta zEW>=V>S1Km;niry_HP_RsE3Q?r60A$4oecLX$oZ_8tv+YisrN;)1vy@#Ro?=vWlbH z{7$USxtP7pB7L<6-!JAUwg|Kg-^BYF*!RHmKC=+PkL*af5>YSbxvYV$?ep{09~| zuYYXUf8i4!74VmwH5$Cm=@i(9&IZ`)PhYn1Z$%B2!W}_nEB=E(qzLB!u`lJHVSgJ* z@B#ON@ZUB~8&duE@*f!C8*EKm6c$s)e@w{#y_QA;0x!}nCTlnT+w#vj@h3c}z0zmf z=-)r>-@c}l|3HVz?oq!@{@43|ZXas{h4}wj+5X(mw@3=)iYr>NulVxs`R6Z!SOap) zdC=-{rv7`-|10TbQ~4w4n$I%q_;;J|&s)F(wQGX)4*%al=9K;k-7mc(I353Y=lK^n zsQ{gDH{o&Q{(pm%O$0%fvWN(y1l{l`*gf_eE;YR)vN;Pn^@dgSZD+35c)hxvEjiy*owz^l z=^HrQL|xgaiPJ^?d2(BK@UT_WZG!tOK`tk9hMp+&pNi!&|5HHTx4W|?CYD%le}K6N zci;FZtL;0|bFS9Rgu$v>lvgd?`{Q74;888*k(^&XQg}58OB=;}e@Np+mEhzN+93P% z)9`XKPI%xl#nsiF;BXWW68d+u+at7ElBfA&97U@+#~F< zN<1=zC3K7uvakA_lyO%qyJ;wk`R(oKj2!m>nXzE}!b`%U^2|1*YRsyE6RS#HDbVR& z9(Fk6h;J$6fZ;2wUDp$J(gyO}7vi_4$YvT7R4uHc03Vk;L`>EMA0Tv9W9QMK#Ix;f z{jVzYRXsLD;nYg8@n7sqy7dRrtXF~H%=QMp$0!CH?1o#xi=Mc`_50MIDd7zRJL~9zRRyYQ3%{ehHsgbbLr^64o7QfnulqmQ(vKfzM@ChO?<@F0chSvR8Pdn;FbCW?U;=6E@B3B(16^Y0&y+`yX&NTTIkZlf`Wc%{`U zdx>eI9YQ_2+MPQD^qh9yDwAdZnSipOFXcV0BnUOJdF!qyvb)Jt5${0^(&xSF zNpwNqz9+7Po3T1{)Y3jg1dfM*u&^o)%9*1n>7eG?76P&T$Rmr&*q(*XB{Fl%3vT`gz6KGg&=M z;I22~snW9cvA8f&iF|Zns#&_?=RW0}%2grkAAnbBC!&jf2wRvNox>9e=xYm#Cpxdf< zMf~UIC#V3vIN>9vz|N(BTC+>)$*s@Q9(cgdt+MHlql$!_iPr}sLbkB+nCrC^J&8SB z(96LVauG!1P_Cp{F+3pgTsEcj8;?keRycwu?p`-I7LghWHPG1cy zF!4DC7ay!V7Z*>PFjeCwS7u`Hj-D&T$ahEUbj~R}Wq9gx)z78%h>1|# z)jZLtL<((}CC9x8HuRHRBF`A#!#VtWn_h9@X+(K@d|pjxU&jLA)#E2q#S$dWVG z;|>qO@?R}L6dx2itN!<@1vbDV#o=iU1=Vz7(`hu5i}%;aq6@GYMugNa-eEx;5G+zo zInn!(c7*WbdcxU4- z&SDOJbfSfB!&jKj^m*A~8I#VS8s03h5d?NZPkPvJ>v(D)WSVg3l&MQotc8iE2wWsl%IM0a(?$5MG3|B<_6Oz;8H`84C0|gkb7Y4=)R& zZ+1K+Drmtkkl4jpi!BlTDoyB?RQySdvqUp$tH}yNO+jWKuXt^OQ3j{s-f+(vB1mr8 zZq5E(ad1TLUQ-)F=@+~r$2~{%@`a)hH*>y;Kl1sAa>B9dR?zHvNmWTc>a;r6peQb6 zDC000nRg8o*1X*i<21=hyp!^m^MUwjX60;29Dc)I?G_4`7x(LjvrG+Twz<6B+~*jP zFXg>UQ7b?A-LRFnI&HFpW1loH+J|~?D*-)Ir_e(C z1%|~%R1gwQv@iwo2FAZcdf{lTw}$85HL{LZHgvgV0C?i}A-(U?6h!W2c;=`V_ztX`1=EPNj7J!LDUVGJItwe&*_D93(vJ*6cKd@dYND9raxDCl#&`=nm}P zA1{K%HG|qKzOOOKI?3P`@edlX7~CfE)QYIW8aor}e2G8@Nd3mwtc^x|35f78`)$cA zq4v5!WH$7Zc!Z`eD)~--lYtLd+$hpk1?@YayIv;gU8zmIULf(@0Hatm`^jcQ9pDMO zv&Rov-
iG3(iOfTfu0;RzMDIu;W8EI&fUsaj8=23Q?rg_R9G#1fg8cicf z2GsuzA-^a3fFV@@fxP!dG)gpa@U{OgC!dGpf`Ok0nc-!(2N3M*L{@Y`0Xg}A=+3K1 zCAoAYeIZv!bf_w0qAM4W^OzuT)a$S^&a4<5YlTSa1Qq_Ah>d4x4y87^C+c=7PRKQho{; zH^Ol*SAsRlfe&-@a6>X9YBTUyi~`Xa4deyYbizcxsh~GsgV_uOs63J2fit$V5$Y+< zm*~f?EDkyaxo@jt%s&P1XM@?EztDo2n}-5ZOGI9PqaR{oLV2oH1?@Zu4itDrR@;)< z(}>&5&_u^Km~1}T<#VvD3>4RtYda?d9^z<6Pr&_P{RANWxV3D_`XXixv64;3$BbQj zeY|wDnTOP{t5=Qnb|D=N^yvAsOU4QIG03n*?i7dBD$vC@7H1wIhR$LrAIRDDi}n@x zCd+843aR8a|BAqufA%p@kR?tWpN0%bii+WlVofo+-=~C>rJG6)MN#^dS21G`&;DkL z-^{GfrXYCR>MV}g$i`1xq`M);I(_k|dSC6!5S!rIa`bhvfJX?zSJR&?^#8fEN`+=x^p%6U?;e z@q72-q8qI^%cXlkZ1!M8H!`27uQFYmVrQDR6=VJtDkq-}M zS{bqnwY=t^_R07O2Am6sFY8Rh_L>|D$fp74@a;^73B_Gq(~dEaJ=1Gc@+b0 zA3CIsH~)mgV@dkvxP*o_@ogm1tO^wGjsSSIQJ5#s_>!Q|N@wN_GUPErwcIMm#ENh` zpMq)#W0&;(o`vAuF~BAh$i;JXwCTNx@e}`T{)57uZwCvRfS`Dd1%)O**({dFwa69O z&Uriv3&9ken8lm|eUB&tb6Qqcj-460hn*aUwG=tQKIi6$(3b~0F6v$0$qwU!d!MbI zMKG0CB`=%}C`!ri7k6f;Ow5K4@Y1%!4Rk4^{+jj}XVF#-W}LpKP9H0ETn!fyg5cpa z{Mpeih_5QtD^F*?_1A=*1D{-TCY(Mw`Bc3svvvak#eqwsug!S-v~=L~eW5C9_Fp&Y zz^5(OwP=iJ|7tMs5!~t9I~evXnl~yAmBsDhj;1ZwG?RORuj}*20gvRb%I;dKTFid0 zwr&9~*;6QpuQQBVF3I;|k85kbO0U*Nm=?8`*XL|OF7P}HiHa$jF!$=gbXVYnDKF6>pq{B{u|TCO5UeE8?&?66f)mmTd0o~ZeL@A1N{ z3f9Cg;KuSwa*a5j9Eu`3n(yuYa>;DdmioB6(Grc~3)49H6ti_p;TVh_k%KUyG(4zQ zU-q0X?)+^D1iFuZ0)i(1c=oUtE)B4MTt~|0J4eoB^1n`Lfr@U>f#K(+p}laxA&2nh zEJtMgSTLpiz0c%Cu=UblI%IaiEH=qhOm*}fP{j*#(e)9kNt%N$p_F3jYudrY4$b>3 z`pHBaq|R^7Yo`Nr%&leG(fVETMzDK`qnWG2jTY%cvitoMlFq+}dRTzZx+8dAixY&w z46%rQ9XiBbXMK|dUAp}aIIe=fw*Y*8DRE^YRLMob=%{Oeh+Xe$*TTa z=FDe?Do1YP=)L9?{9Ie)9e`yAo1a_M3@7>OfG^mrWSz%FcRp>CU~;k#^f@%!U5Z{l zEc5lR&tG|-tY&NVhSBL-R3lH%#M_^Ozu5Lf(+-&-*+{AjC$C)hY#^u5VdETQrFDJ( zGB}rxvqr|G*>z21@#a zNmBX_k(CG4@|sXQZV{AQ4ud`7{t#idxOZaf1e^56@Y0zZ-H8;R%?~xh%=5{YAIA2D zOasxX-u1?M+DbyAy4gg`+Xlsr9*m`UPEoS169Ph+^0yS7(>P0n>P5)uKEq_Lv%4M( zQPP494nPOC3BMnYi`1qi{#*M8S$BNBqc6F^*c3JuX2rC11)(fBjGadrp{b2DW%A+U zzHe2k(@cW(+R|T9DN+#T88UqP4f4c(bj6F`PG+KIa<^v6Xq)k^NjtJ4HBBU%f^w7I zLqsb^qWnAR;n^#p)k+!Y9I72#IBHoq-s7|orLVg2<3=W)$SDHc(^u8}un6=9smmd*K@q-0PHcp*5WBak~j-#m%OQzV8v|0Yynl6nm03 zw2u?QKrJefN+I1akroZ$yW}A9I7!yRX{{VONkB zQLRKHre(?5n;_zyt{VLFnIY!N&m~jBPUIo^{l0D*AzVsk{kJx4EK)zU5@`)@SgR^2 z!ZV^+G+;H7gv4c~*>#R9`y!oZP+0cO0d9zlHZ#I0SvQK|vgqVkRz}Jq__$*F`_)bc zceF@H5AI)-?<+)g`m70fsRpy?HtAD)roskL!s`{jRsLd9o^1_wQRMFzeH7OlzR|*4 zw)V5$R$|W(UVCI*IpsnfN5B-F_ZM})9*Y^!Ad?r(4OOkN-bNnjQC}>)^%WcSSq!DvL9>w_yZ>=vWi|lf-^zO2mV+Lc~_p8>_ne34vWEa2cEAI3}m^{ z+}{gR+}0T?vfkjFRN1GrDTwn3dC$_A6{}sLDVCyWfQc5)5;@Or6f1pFLs0Z#Z)X)p z!jNS!>P5GbW1`ZyH)B$6fsYwF9iX*UoR`A$M6ux-u8Gwq^mgpG*PVEup|mmXNOp;j zQ~oVUzHh8if^rgokqUKeU?VyIkj!)c*Ix$AC;ev^5)#sD^~21}QR0aZ`)+C^u8vvnSp^e`Cu#NMTK%ho@?h5Q8?ji0>)Pr+ov&#EajTS}6oe z&PB$rq>UF>J~F2Fjg|VyavcZQIwt0zfHUZu3=UK-&(B9CZ@-kaigbKQxwrB>8H%B|6 zh!0m)b)9pY>g~cvp+Z3sA>bHSFHta2 zJ)gFP1<`~ACcx;|%fE)f>Ziy^H9RP$_YEmi8)FBl)g;Mn$J2_Ce7N1XtUR5%Dh*pB zAEF4*3WR4J4s`{W0C@N(+4y<9UXwp6VtiMN#VDH<S%xK-iW9ht2a5>#LJ_~clru4Gv+0S;t&hUfNs)rnCgQ-^US7!$G-V+9b>-AN% zlXEM2L(*m{U3#f)upMyG2V_Z|M%LP$pgK@A-7hC}=!>6U?Nfd>xHGFYtuid;LV2+|;`kPP99JswF4KBS(nmd!4OL#hr!Vh7y#7 zGWb`11W5&=a%}mxiKWuNz4p!p=lZni$X12OtvotmbR2qY1tDT4Cw>ypj0E$S+)xV^ z)kONOrur>#q7y$xHP823J<*8}gwyQvZ(1IitTBOiP2#t^)b{SA!@SeIU-_P#7QjF* zdQLUnXrf=_18K*650f)RBDfTzM^^N5w?yAX?H5BBNLNd5g$d^8KIf~n05`E%0ZH(= zdwQp*1@xsp->ulQHtVzRa8Oqdwcc`b2tAnBU&F>~_q%wi1DqPl1U+r2`C>-r43!@< z@1pfi*jh|J4xBiowrJHFeKY)cVo9T@qZ5_()SJ&u#?h|Sj91>&_~c+smDK`4f1Bm~ zy86arXR>lt`46TKnGu-klI8m~1?7v>qa)urpKWAfTjr8PY){wiLzSzcdr+=>yvh#&Fe==IF)M*F@U_J&;%a+ z-C_l><7CPYVlot|QJH$Ci58mu<|W{z zyT$QcV6d}@(!u*e?ucrbGuiF#6%S%aP)7r?zdazo5vk;PE1bFX>>^ulW#R3{{ukCM zx%y5BY=5gWMdEIm?Y(oAIAIih7b!OqMQOwFA|t-}ub{K zrg(}vIe|+N943=~~*}-bvbdl&)g*{*EsS+y(`U(M_$YF`So# zB^{CzZA2t~lsPKd48tn_ravFnxOB=lV|p$&ZqgJ!qcP{~+D7aO#OJETD|jdeEQDdD z*B+i5Vp3jm(}}^8Oipixfkz%uBkct4V5zk=#*Q3_s(Q8*M}4cHCS4bQ2nW$1_{fH= zjY#i~I3+LP-!Ny|UNxuKV-?pv7{`o$Y=0Rz(A_bWA3f)ak&7efB5wGc)Q=cWub?Uu zps802o&IX~6WuH_=$HKnJ3`~Cl%jGg)M^9m_Ik!~<*%XTAH?ip<`>qvy7d0K1>>1s zx)Q60*t1b%Z-(Ok5Gk0Pj>`PN$8l@{R>p!hU!|oN`M4IAn{0mW&-g8QhqCDjPy#Q- z_XWAKjdTqYB0ci>7Lk=uQu5m-qeEYZ;_u)yIIXZ#DuJstDPvdGl+0{L3N%CWsLkN0>VG1j^d*0e-oQ)0b}>t#{KF!2%^e0m=?m~{GIY&`tkAGP)`!*Z4#GXW z^mVrIFg``WZFkRJI~scBF^DYdjm04-C2TFplsGhhux0%JB8m zO$cgPQAOeL58(Y?vb}^9DW>CmgL(x>c)$p_(tRXWP(NhQ4wkqG8K6%{)W3``vA`X0 z)26s^dV`oeDXZmU03|ZkZW!#@ubOA%)%P>k7hE>cy`jw^K@-S(K}MU7_ur=5#8ri7 z9>T0zC{{{|)l%XUpO*_u&s(}sgN(iw!u!zl+!(;z&BqU8HVb)W1_;*cEmS_fCgS7J zge!@q)U(w;k&4?CwS}Mw1G*`re%@f0UJRU^L6+sqUk|k!j77e2Sgq~xkUqkFc?7E;bQ>lyvuI*wQ{RI&3lMrPdS9p)9w+Y;(=aB2LLfAg~M8Co8MmKqWNK3+_rag zCdKcFmNWa#r#umnYL(_OJ@LOBm*PaeMBeMO=DmHHH#;Hnk;)7lOBWCmN%z(2cgg{z zNdm<Ik}LXU>@FO_YMMAb)h-Q9~M^IyxzF+80U9h(6Z@ z7C4b;MR2!n#P&pWUeg%7vm7bK^CnbyE@cf23k zDrj@Y{E-Bpl7bNpqoB<-qRJwcJreElkVHw>G4r{+ka_U)LYy?PO-45pbU%NU>4<-p zF{a0*`8+hHDYn@MAl5Ece1`yKNYsre#FUE5RN&Dzy)|K8(03p5k`ig^Z1}!JK%Vfj z3ALHC)AX0LEi(6KTf#qr#}GztUwdh31NZ7ANW7+n*8~@>HJfoHB`rj?Px?pcjULF2 zb|y}-6tsw8^u2IbHh%M@+3;MWu(%}vQs~<{MF%$gA0Y*~-1^N_w8^dpJN4e4N?fbM^yqu>Eakq*GY-YxrOcI&t_z z0>P1Ei-Xvln5}ErkXiv_OR&LbyTKhy^3ua8YHM;9gs>Vmb7YfoC83MSj%axgXrQ*0 z$jGNFiJY5V&Ba}8sk@Efx7S_?X~Y4e_M7OTI7j4?S%B!{*owcB{uY&yNPe{_ROP)7 z(~ewt3o!1t)Pw^PVvc=PwY($T%)P!;>#GHw7 z?h~I>3;+sJ(s(^69)zhcnF2wzHa5S!Hf_b0pC}|T()4rRO5lvFTZ6nisxdd=%|WJE zQ;lkWVe0urZ(%i?;j^AMgojgS|Bpdqzu6gTNwuB7A`@)T{#h`=k_@e|1UlZ?qb`auA zZiVofi#hS#`3#w}22aDOMabHN#7!L%fD$B}6My!+?xW{`yPx*&sT%1Sfw}Ar^I*q) zaN09(7*bsw{@E4EnIvRo)0@2pg(HBk8UaiG>SIC-qj}B0Zo1Ir7&n^DdG=r#ZEJB# zcEL7rGt`l#p5!x0R~pveLA=F9*Y^(`(+m#T?xk4e!-joLfqwN=7!By#P2=U2MbL9B zw7Ol5g&+Sa1^`BuJky8?FqA#lE?GJ(kcEo7^~+Cgskh9M6q33B#JHd}+rvL6Nc-A= zghGERG(PL*uwc&Yz9H?>_xU|zbt0O>i~6`__95YoF2(*eBtv0>VVJw;Gh3oW3dQRa zo`Sf|s2%Z$T_QGj=)q-x)`}vxR0_5fS)TAge>iEE`Ak4(&%EXFT4j8MCmKV<)oJl_ zSEkYMT*0~1e7m(M=DF}18PwuRBdE;btX{7`%r<6$ZLt7 z%l=BC1A_v9b&oLVJPt}B7sT6)y-f%x1=HhVt(xs=!-w@((-iME!4w0mel)#ev2-h$ z7jO=;Tcij0nT}jdw8FP9TZ;K|<28+ca{0QbZ>&Ko3FwpmTCVtt);Q*%A3$3oBA%YQ zJ|#c!sLY#?dTe2*<0dLf#?O!U(e$hQv|-1{Hu5fyS@A500*N7giux?c7G4j|IF^Et ztr;KjXc3lD{wvYO<5Y!4m&VC#ap;MPlJrRn&EYbJZgHD@F*82+PH0wvHqGy_j59QM z!pMBYBSS5>JCB`0EtPtc@j`9KrskGZi|sk!1wP?mC;-D7%imW8uibtutdG3*JD=@a zo?!wi4BOd8)D4RD;8^OkT1sZHSkn-p`Dm^6utF5iGxOVRFp8c238Gq%Xq7|>t1PPt zkj<|95)Car;GKH3Cn(HWuOTG%QD>Ns>HT;<1*6o*aKox^kAqjrAIy`@J~Z7vRv0l7 z#Q#iIByGyHGYpJ%MUUOcIdp7Bv)VM0G06L8r|9M^Lqa?m@)y-9m|j>ji)Z$vPZpIqQ-uPi(8+*dD5+w$~-n?z|;8%jl;CM&p{UMn9K;EtjZ~6(C$~w z?P6(!beEdd%JqF0-2hS@&-r!6BLgdOhbQ?*1mnrIV#a5uXEF}=iLbw(OYb=`MNyEV zOJ@@D@IUUL&uC4o^_t4N_sJ<|%}-I|KDf4OtBHG2y+&#(E^L*GsaL&bNW5Jw$J$T! zD^eMbcpta3rMWElH_5jviFzjbX|xuBU3+|Q zOr4uJ6*fi*U&lREJl}qpZ=#8Qm~a$!^G3Fi+}bc};hL zD(?7pH{gyp^MMZnb=8R#EPO@vb^ott|FhWz;#!bL|7%E|ee zdsXlEY+ z`EO!`3+5*UOFciXoNt}y3~lT`$~2fw2qCPsZk)yBjd#6L`fSYHgs(xmiAm7EU53Nx z|5)DRY*;Gk94Vt*O;~gEI6Mh!7`xJuS4aza=}0uO7YN2kzO_tPt3OG)r~6 zdY2W#vgN*2)1(6Nu^eeEQL?mDEs;3BHOykQfK$=fJVd-q zq=%aZ>m6VAT;e|g7MLE7+qM9}&0bwIW(S)=ossg$9tgs>(MwJWZf6?u$wUcC&CzfV z>|aqy*cFJoiQWwr3a8{=k{qcanbg(hfx{MsZeR4O<>-PoXd??LJ>K=v*MrX8dCU|U z=pPD@hVaU>@~5vM*S^RzBrh8TztYX;D)g8a_GjN_Vqdoo8d!Zp;OBtbIJEV{4o;Jy zbOkF7k*Al@VWPo~9086cEbM9g#Al`=Y_SvkJwV#7wi$xAuAw};H;T0J1*2u?9NSWl z=smWLm_!nrxT%0Hchad{@G0GFyCxQU@jY(G;EEi&w3O@kck@n2cncc*AxTujf;6l2 z;TVVIr^jjQba{x#3Pe8m_uf7*O=${!^Kyc$3^c|?Dy+$xm77H zTG@dww;T{7v}JZf*#5+`I}3h(gF~{R36CBM8Xou<0@Cc*P|`_y!yOh{reAjE z1=@WvbeiJEuV8?KWj-Jw{9=R-SVEe$*~`P>qo64SUWk>xe(Ru~fHAk^Hg-l{y2cu= zlL7Svq*wSOrl%5d$cgk^>SKo1X8dBs@dozkLhts+G!5ig!WILfNu3ZCXGd#XV!c=<$jHG3j5ZsUaur1gdCR#y=*dN~F zDDz-`MRvyVI=0+BbU}D%|4s{&O7XKx9yxxY3jI`K;}jJ8&7x_JwR1Ksp=#C{JlP>* z-XPtOP+1vZ+bQ<0Y+A)wS zjb(mSY{dIfbEH(*+$n&UrNFQx+avq9%SVEVGITc~J0Pk$UK-5?ssy7&+dT+d<5Ik| zZAZld^OQId>0n9bY-(vJvJwwpvuro=ry?Ad2 zn{>V)ZO3w{zMx#$`W!=M$*`vw?V2iqC-r6lh0XVSAuBD5E*gtuc0gD}&xr1M-Gmt$1ZE4${>Nzx{F+9U)s7pG>~EZx0`uefuNs#8baCOp>LM+MHph=H-MjvQ3o zF3SN-j)2XLUuHeI1W--vInpcj0dp3_6Ky}$-luN_9aNqwe5pibwA8j1RnlOo2(hY3 z$nTeQ<23*Lo%&eoNtSGvF~%)-)V{~0QD{4EpPYz;m-l10z{)h=~f|Dm*WoACB;{(4CMo0s6R z3$nbtN7{fRZk3a76)bW)O`pP9=@z2v+HGJPqPRW1UShvsl@Bcc*CYa~2{Nk$Tg}(* z=)!>i!yw7KoZ(yUuUhO%&wE-uLIFIC}p zNmRZ`2OIlE!8N!aTg>Bs15yq9^PHdK=nnBHwgL?2IDW`o3%^%C*q)+ZBmKD8w@~oN z=i$_~W8FLZ$3nAZDFb>R)sG|W`Cg~k1gXzBUMevMD22rF9+2-F|Q&sQXErgJktjUsqQ z9<9lEXePez!`aOn zl6kFUH&wa_v1D(8Gz`dj+l&wbLkao84DGpoc-vBib=m|+-J%6^>jn?TkGr%sq&eYW zrGp>tELYN^(XNAW5Nt^E9Q?p3Xtq=DcPS##-e6a0-FZc$v-z0s;}%a)4#qA&JJBu- zxAMwLD}4sXU6)?jeBwUD5qCRXKz4Sq(<)&E$;Wn8=DbG7)PPrIg- za2E1v5`_{s0&-_FVWU;mHw+0LNP#ZI;xtE>gY`!j{Z*DyB(>JNokJ{%+E%6LF*UcZ zExmyAeO&SvXZHC@aP3I;60;+R(hQ&9E7^vn8eWmPS}1U8O+O>T*3T78%xj8C;5Mv; zQe!@p3h!u$lLKHXy@& z5Gj3}x?BRY(#LMar%`BCiza3SBORet8B9atv?OjsDF7HWEL1xvPRC}`hs!F4zfe#N>sVU^lXsVtMD_d zRN|affvOcv4$)5Qd42;&bkz7x0`Z>of}T)0>9al+@WstIC#XX{&et3M)G@JSu4>R$ zll@0in%0c?J6x8tZO3@YvLN)^F-Uk$o69)*^Vtf>7dg@Y+!kYQRwlN-+^;NPJVe>n z4B`mJ#kYruWr(R-b*n&Kn3&Nx=Lu^D?IV~<=MfG#{gLJ=>q!(MQwXFoI+B={D%ae< zqP-{RaoZlvV=oQE3oOz9mePBD&YrUB0{hj40oSV&X|!dE2|9KR$rBD(uZt(^_-LUZ z8Ev7EbTuQszYg(oK4}*IV4^qVqj6H!Tj!ev@Du+_ng2|r1TpT3lx|pi6nqI1N-)n1>YdZL3x*=`E6n7G`&8|5CNK$nSVR zcKKJ~nXcbcgP2TF{2v3>oCJP=G_le?~$0M?dTchpiph zLZth>>v2{LB*xy}=(@=>I+n99{B)o8w3#CXTvQZ3J^{s)8;S0SrBJQb+XA4i2T&hbFHv}^E<`wd06VARbk7=9;UL|?!wEPTS< z&_z&h1(~rVw?32W-m4|YO(66HnqU`&uQ-O~u7Rb%WGW!QI1IwQ#DBkFCcDXH5YIfZ zW|3oAf(A^Hs#Xcg%&^Rzd1IRNYPzIph1|MdbbD#AGC4CGFF9k-+*uYX0_DN&NKNqj zwi(|M-jD>#a}`;xemS%aG4jIyg~$Y<3-7nr!(*$yHltFxqq+_zM5q{Bz}+PjJ!;+G zQxvpA9MLZZ5@vhY!I?9&3~tvKzZ$dNr3JUa#?8v*mxf&5DvDC%9X-B2r1pmloZ|s4 z-M}_wy@*ai00ouPr1XG^FJiyOZ6X7-KL#4(Z{)JS*bJzM56i2{x+P91~qTO*I}M z-)a)1IF4F1Yon9m=R5P&By{3lDZ7#duIkmN=^vf=_IDv&3b-$-Y#Xt7h~IT~x%^k4 zDz8N$@H&bLU`72GdII~Fj)V<@o=RAr2#vee+57 zJ@XRJFTCkcbyH^x$M(J`r4I?8Vt#!o*AS>bK3BxyHRCJ(!zr&^lPe8pt=QS8u%PwW zQ&-@63BCt+=OG z*B)S-zP+;xw4hR@-wU{)(RE*y{Hr5LFgFzFITPL_g!>cLH2p!l66wMU&q8x&6@H=f7(8mBhM4spDlWFD)`#lph-2) zw*H=^Qa&f((|jeJSgU0dW*Kr9O<48HMR@0e32G-!oNZdQk~ehrHpOqLy32e7-+3vw zCv_D(nRt2k`l|Y1&>F`D+h4y~=DKlrtfA10Tw~3T_u~A596s!+e<$|-=j*lRO2Hpo zJk7jTM=j9KUTBf^Wc~RCfyEa+C7%cIEsl%l+Fo@tb*hK>W=7+tjW?Q%|K}Wd$7Wt! zv{my@`H|q~=MDb=S5*ei(2l;CCKtB**tNytj~rk1ZnYBwOe=J+RXJeVzSC^*WPvP6Ajcp+Xw!5IC+Jtx#Gp1DJLa8!nS(P zW!|1JyHem=;(Sepa)JMdefCbU9`~bdTPMnIeI2o{X6NrI|Kp5V=Dg5|Z+-QS=gp1y zmKhhTEM-l&eDyTDJU*>fdz^pe;R3;|RhYC$S7t}glwSAySA>5)TO!FgNmP*Hq)%O$ z6CW4MO1ZbLX4%dX{HoKPd*6tOXAaF!HypS)+5_613Y_V8($bI{OY3 zSw7(sE|_I?;=uBa_rLP@n|^SOOF7`~%4$}itfXwa`2XZUU&noS95*?BsA&m&9`(mc zQgz7|E|;p4LdX6sQSA@jCOB1nX8DPqCoJO>%BLL!Zi&uTs5|(TGa`M_W$`se?p!io zbSmcl_Low$viR5hLkrPhWd+@X#i~#zsidcww83t_geU)rf0yIk=FK_2)j@%&yX*Sp z*J}BD#ik_6!unqZjRuOq6>&2{LR@;Jyo(RHM23Cl5(-c-tkv8*eI7r&1_Aan{TlAC z6SmUsJBfN4z@aA4dci>7H7an2K=v!l1&S}+{AdQeK?XX>z(+v`w1!da>Jcx*4Qb$E znG3*zK;XQ9w=X#O;IKA8{YGuOioZwAkTfXZPumI@Vn z9<9z$*pbZO@+g5x7+BK%bIB--K`PZC>i^|tWW1<9?BE|Z5#Awz7}qGk`N5;EV}S+q hZgN<6g+rX_zr0jLXI!u1Yh?x?@O1TaS?83{1OUN#Ri*#{ From 2f7ea1907dbaae737a227977b9b645e4ae22c8a0 Mon Sep 17 00:00:00 2001 From: Jason Noble & Ralph Shnelvar Date: Sun, 24 Jul 2011 16:07:41 -0600 Subject: [PATCH 12/24] Make the rails not found tip more explanatory. --- railties/guides/source/getting_started.textile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 4c61cae0cb..c2c8ee02ad 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -462,8 +462,8 @@ your terminal: $ rails generate controller home index
-TIP: If you're on Windows, or your Ruby is set up in some non-standard fashion, -you may need to explicitly pass Rails +rails+ commands to Ruby: ruby +TIP: If you get a command not found error when running this command, you +need to explicitly pass Rails +rails+ commands to Ruby: ruby \path\to\your\application\script\rails generate controller home index. Rails will create several files for you, including From 6734bc98e7a90dd7c4dce47750721a0d19170d83 Mon Sep 17 00:00:00 2001 From: Mike Howard Date: Sun, 24 Jul 2011 16:09:38 -0600 Subject: [PATCH 13/24] Updated migrations.textile to clarify Using Models in Your Migrations Rewrote entire section including example code, error message, and work around. --- railties/guides/source/migrations.textile | 107 ++++++++++++++++++---- 1 file changed, 87 insertions(+), 20 deletions(-) diff --git a/railties/guides/source/migrations.textile b/railties/guides/source/migrations.textile index c88e3cc338..e51ee0f535 100644 --- a/railties/guides/source/migrations.textile +++ b/railties/guides/source/migrations.textile @@ -477,7 +477,7 @@ Several methods are provided that allow you to control all this: For example, this migration - +
 class CreateProducts < ActiveRecord::Migration
   def change
     suppress_messages do
@@ -496,7 +496,7 @@ class CreateProducts < ActiveRecord::Migration
     end
   end
 end
-
+
generates the following output @@ -514,40 +514,107 @@ If you just want Active Record to shut up then running +rake db:migrate VERBOSE= h3. Using Models in Your Migrations -When creating or updating data in a migration it is often tempting to use one of your models. After all they exist to provide easy access to the underlying data. This can be done but some caution should be observed. +When creating or updating data in a migration it is often tempting to use one of your models. After all they exist to provide easy access to the underlying data. This can be done, but some caution should be observed. -Consider for example a migration that uses the +Product+ model to update a row in the corresponding table. Alice later updates the +Product+ model, adding a new column and a validation on it. Bob comes back from holiday, updates the source and runs outstanding migrations with +rake db:migrate+, including the one that used the +Product+ model. When the migration runs the source is up to date and so the +Product+ model has the validation added by Alice. The database however is still old and so does not have that column and an error ensues because that validation is on a column that does not yet exist. +For example, problems occur when the model uses database columns which are (1) not currently in the database and (2) will be created by this or a subsequent migration. -Frequently I just want to update rows in the database without writing out the SQL by hand: I'm not using anything specific to the model. One pattern for this is to define a copy of the model inside the migration itself, for example: +Consider this example, where Alice and Bob are working on the same code base which contains a +Product+ model: - -class AddPartNumberToProducts < ActiveRecord::Migration - class Product < ActiveRecord::Base - end +Bob goes on vacation. +Alice creates a migration for the +products+ table which adds a new column and initializes it. +She also adds a validation to the Product model for the new column. + +
+# db/migrate/20100513121110_add_flag_to_product.rb
+
+class AddFlagToProduct < ActiveRecord::Migration
   def change
-    ...
+    add_column :products, :flag, :int
+    Product.all.each { |f| f.update_attributes!(:flag => 'false') }
   end
 end
-
-The migration has its own minimal copy of the +Product+ model and no longer cares about the +Product+ model defined in the application.
+
-h4. Dealing with Changing Models +
+# app/model/product.rb
 
-For performance reasons information about the columns a model has is cached. For example if you add a column to a table and then try and use the corresponding model to insert a new row it may try to use the old column information. You can force Active Record to re-read the column information with the +reset_column_information+ method, for example
+class Product < ActiveRecord::Base
+  validates_presence_of :flag
+end
+
- -class AddPartNumberToProducts < ActiveRecord::Migration +Alice adds a second migration which adds and initializes another column to the +products+ table and also adds a validation to the Product model for the new column. + +
+# db/migrate/20100515121110_add_fuzz_to_product.rb
+
+class AddFuzzToProduct < ActiveRecord::Migration
+  def change
+    add_column :products, :fuzz, :string
+    Product.all.each { |f| f.update_attributes! :fuzz => 'fuzzy' }
+  end
+end
+
+ +
+# app/model/product.rb
+
+class Product < ActiveRecord::Base
+  validates_presence_of :flag
+  validates_presence_of :fuzz
+end
+
+ +Both migrations work for Alice. + +Bob comes back from vacation and: + +# updates the source - which contains both migrations and the latests version of the Product model. +# runs outstanding migrations with +rake db:migrate+, which includes the one that updates the +Product+ model. + +The migration crashes because when the model attempts to save, it tries to validate the second added column, which is not in the database when the _first_ migration runs. + +
+rake aborted!
+An error has occurred, this and all later migrations canceled:
+
+undefined method `fuzz' for #
+
+ +A fix for this is to create a local model within the migration. This keeps rails from running the validations, so that the migrations run to completion. + +When using a faux model, it's a good idea to call +Product.reset_column_information+ to refresh the ActiveRecord cache for the Product model prior to updating data in the database. + +If Alice had done this instead, there would have been no problem: + +
+# db/migrate/20100513121110_add_flag_to_product.rb
+
+class AddFlagToProduct < ActiveRecord::Migration
   class Product < ActiveRecord::Base
   end
-
   def change
-    add_column :product, :part_number, :string
+    add_column :products, :flag, :int
+    Product.reset_column_information  
+    Product.all.each { |f| f.update_attributes!(:flag => false) }
+  end
+end
+
+ +
+# db/migrate/20100515121110_add_fuzz_to_product.rb
+
+class AddFuzzToProduct < ActiveRecord::Migration
+  class Product < ActiveRecord::Base
+  end
+  def change
+    add_column :products, :fuzz, :string
     Product.reset_column_information
-    ...
+    Product.all.each { |f| f.update_attributes! :fuzz => 'fuzzy' }
   end
 end
-
+
h3. Schema Dumping and You From e3dbe66e196069fde7d3ff118bd25a03184915fa Mon Sep 17 00:00:00 2001 From: Michael Lavrisha Date: Sun, 24 Jul 2011 16:17:40 -0600 Subject: [PATCH 14/24] Update the TIP formatter to handle multiline tips - includes 3 tests --- .../guides/rails_guides/textile_extensions.rb | 3 +- .../test/guides/textile_extionsions_test.rb | 37 +++++++++++++++++++ 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 railties/test/guides/textile_extionsions_test.rb diff --git a/railties/guides/rails_guides/textile_extensions.rb b/railties/guides/rails_guides/textile_extensions.rb index 352c5e91dd..0887ebf76b 100644 --- a/railties/guides/rails_guides/textile_extensions.rb +++ b/railties/guides/rails_guides/textile_extensions.rb @@ -15,10 +15,11 @@ module RailsGuides end def tip(body) - body.gsub!(/^TIP[.:](.*)$/) do |m| + body.gsub!(/^TIP[.:](.*?)(\n\Z|\n\n+|\Z)/m) do |m| result = "

" result << $1.strip result << '

' + result << $2 if $2 result end end diff --git a/railties/test/guides/textile_extionsions_test.rb b/railties/test/guides/textile_extionsions_test.rb new file mode 100644 index 0000000000..9f1068d9be --- /dev/null +++ b/railties/test/guides/textile_extionsions_test.rb @@ -0,0 +1,37 @@ +require 'isolation/abstract_unit' +require 'guides/rails_guides/textile_extensions' + +class TextileExtensionsTest < Test::Unit::TestCase + include ActiveSupport::Testing::Isolation + include RailsGuides::TextileExtensions + + test "tips can handle a single line" do + expected_output = "

this is a single line tip

" + assert_equal expected_output, tip('TIP. this is a single line tip') + end + + def setup + @multi_line_tip = "This is a multi-line tip.\n" + + "Isn't it fantastic?" + end + + test "tips can handle a multi-line tip" do + expected_output = "

#{@multi_line_tip}

" + + assert_equal expected_output, tip("TIP. #{@multi_line_tip}") + end + + test "muli-line tips handles text before and after the tip" do + pre_line = "This is text before hand.\n\n" + post_line = "\n\nThis is some text after" + input_text = pre_line + + "TIP. #{@multi_line_tip}" + + post_line + + expected_output = pre_line + + "

#{@multi_line_tip}

" + + post_line + + assert_equal expected_output, tip(input_text) + end +end \ No newline at end of file From 5cece57c93aff28010defece05085cff903fb9d2 Mon Sep 17 00:00:00 2001 From: Michael Lavrisha Date: Sun, 24 Jul 2011 16:36:23 -0600 Subject: [PATCH 15/24] Simpler brief explanation of Rails and REST --- railties/guides/source/getting_started.textile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index a9994a2602..3a1a0fe64a 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -198,9 +198,8 @@ For example, the following HTTP request: DELETE /photos/17 refers to a photo resource with an ID of 17 and indicates an action to be taken -upon it: deletion. REST is a natural style for the architecture of web applications, -and Rails hooks into this shielding you from many of the RESTful complexities and -browser quirks. +upon it: deletion. REST is a natural web application architecture which Rails +abstracts, shielding you from RESTful complexities and browser quirks. If you'd like more details on REST as an architectural style, these resources are more approachable than Fielding's thesis: From 1ca4990a1028c1c3531819fa50b7f3c07eb32aca Mon Sep 17 00:00:00 2001 From: Jason Noble & Ralph Shnelvar Date: Sun, 24 Jul 2011 16:28:57 -0600 Subject: [PATCH 16/24] Extend description of rails generate scaffold and what it's options accomplish --- railties/guides/source/getting_started.textile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 41af90e720..a44222a441 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -535,6 +535,10 @@ command in your terminal: $ rails generate scaffold Post name:string title:string content:text
+This will create a new database table called posts (plural of Post). The table +will have three columns, name (type string), title (type string) and content +(type text). It will also hook this new database up to Rails (details below). + NOTE. While scaffolding will get you up and running quickly, the code it generates is unlikely to be a perfect fit for your application. You'll most probably want to customize the generated code. Many experienced Rails developers From 0076a6fce2b037d6be0c0e8c26b769e66f7dbfee Mon Sep 17 00:00:00 2001 From: Jason Noble & Ralph Shnelvar Date: Sun, 24 Jul 2011 16:36:50 -0600 Subject: [PATCH 17/24] Fix two spaces after end of sentence. --- railties/guides/source/getting_started.textile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index a44222a441..0b89021392 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -535,9 +535,9 @@ command in your terminal: $ rails generate scaffold Post name:string title:string content:text -This will create a new database table called posts (plural of Post). The table +This will create a new database table called posts (plural of Post). The table will have three columns, name (type string), title (type string) and content -(type text). It will also hook this new database up to Rails (details below). +(type text). It will also hook this new database up to Rails (details below). NOTE. While scaffolding will get you up and running quickly, the code it generates is unlikely to be a perfect fit for your application. You'll most From 1e5fa59d132562399536a3ca06295b60558bc258 Mon Sep 17 00:00:00 2001 From: Jason Noble & Ralph Shnelvar Date: Sun, 24 Jul 2011 16:37:18 -0600 Subject: [PATCH 18/24] Add in a tip about opening two command prompt windows --- railties/guides/source/getting_started.textile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 0b89021392..ae7cee47dc 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -426,6 +426,11 @@ One of the traditional places to start with a new language is by getting some text up on screen quickly. To do this, you need to get your Rails application server running. +TIP: You may find it helpful to open two command prompt windows and navigate +to your Rails project in both. Leave the server running ('rails server') in +the first window, and run the commands listed below in the second terminal +window. + h4. Starting up the Web Server You actually have a functional Rails application already. To see it, you need to From f330e6af34dfbbe18834009422ba003d23eb96eb Mon Sep 17 00:00:00 2001 From: Elliot Winkler Date: Sun, 24 Jul 2011 17:08:09 -0600 Subject: [PATCH 19/24] Improve ch. 1 of the Form Helpers guide --- railties/guides/source/form_helpers.textile | 74 ++++++++------------- 1 file changed, 28 insertions(+), 46 deletions(-) diff --git a/railties/guides/source/form_helpers.textile b/railties/guides/source/form_helpers.textile index 96a52af612..bf2a7369a7 100644 --- a/railties/guides/source/form_helpers.textile +++ b/railties/guides/source/form_helpers.textile @@ -27,9 +27,7 @@ The most basic form helper is +form_tag+. <% end %> -When called without arguments like this, it creates a form element that has the current page as its action and "post" as its method (some line breaks added for readability): - -Sample output from +form_tag+: +When called without arguments like this, it creates a +<form>+ tag which, when submitted, will POST to the current page. For instance, assuming the current page is +/home/index+, the generated HTML will look like this (some line breaks added for readability):
@@ -41,36 +39,30 @@ Sample output from +form_tag+:
-If you carefully observe this output, you can see that the helper generated something you didn't specify: a +div+ element with two hidden input elements inside. The first input element with name +utf8+ enforces browsers to properly respect your form's character encoding and is generated for all forms whether action is "get" or "post". Second input element with name +authenticity_token+ is a security feature of Rails called *cross-site request forgery protection* and form helpers generate it for every form whose action is not "get" (provided that this security feature is enabled). You can read more about this in the "Ruby On Rails Security Guide":./security.html#_cross_site_reference_forgery_csrf. +Now, you'll notice that the HTML contains something extra: a +div+ element with two hidden input elements inside. This div is important, because the form cannot be successfully submitted without it. The first input element with name +utf8+ enforces browsers to properly respect your form's character encoding and is generated for all forms whether their actions are "GET" or "POST". The second input element with name +authenticity_token+ is a security feature of Rails called *cross-site request forgery protection*, and form helpers generate it for every non-GET form (provided that this security feature is enabled). You can read more about this in the "Security Guide":./security.html#_cross_site_reference_forgery_csrf. -NOTE: Throughout this guide, this +div+ with the hidden input elements will be stripped away to have clearer code samples. +NOTE: Throughout this guide, the +div+ with the hidden input elements will be excluded from code samples for brevity. h4. A Generic Search Form -Probably the most minimal form often seen on the web is a search form with a single text input for search terms. This form consists of: +One of the most basic forms you see on the web is a search form. This form contains: # a form element with "GET" method, # a label for the input, # a text input element, and # a submit element. -IMPORTANT: Always use "GET" as the method for search forms. This allows users to bookmark a specific search and get back to it. More generally Rails encourages you to use the right HTTP verb for an action. - -To create this form you will use +form_tag+, +label_tag+, +text_field_tag+, and +submit_tag+, respectively. - -A basic search form +To create this form you will use +form_tag+, +label_tag+, +text_field_tag+, and +submit_tag+, respectively. Like this: -<%= form_tag(search_path, :method => "get") do %> +<%= form_tag("/search", :method => "get") do %> <%= label_tag(:q, "Search for:") %> <%= text_field_tag(:q) %> <%= submit_tag("Search") %> <% end %> -TIP: +search_path+ can be a named route specified in "routes.rb" as:
match "search" => "search" This declares that path "/search" will be handled by action "search" belonging to controller "search". - -The above view code will result in the following markup: +This will generate the following HTML:
@@ -80,47 +72,35 @@ The above view code will result in the following markup:
+TIP: For every form input, an ID attribute is generated from its name ("q" in the example). These IDs can be very useful for CSS styling or manipulation of form controls with JavaScript. + Besides +text_field_tag+ and +submit_tag+, there is a similar helper for _every_ form control in HTML. -TIP: For every form input, an ID attribute is generated from its name ("q" in the example). These IDs can be very useful for CSS styling or manipulation of form controls with JavaScript. +IMPORTANT: Always use "GET" as the method for search forms. This allows users to bookmark a specific search and get back to it. More generally Rails encourages you to use the right HTTP verb for an action. h4. Multiple Hashes in Form Helper Calls -By now you've seen that the +form_tag+ helper accepts 2 arguments: the path for the action and an options hash. This hash specifies the method of form submission and HTML options such as the form element's class. +The +form_tag+ helper accepts 2 arguments: the path for the action and an options hash. This hash specifies the method of form submission and HTML options such as the form element's class. -As with the +link_to+ helper, the path argument doesn't have to be given a string. It can be a hash of URL parameters that Rails' routing mechanism will turn into a valid URL. However, this is a bad way to pass multiple hashes as method arguments: +As with the +link_to+ helper, the path argument doesn't have to be given a string; it can be a hash of URL parameters recognizable by Rails' routing mechanism, which will turn the hash into a valid URL. However, since both arguments to +form_tag+ are hashes, you can easily run into a problem if you would like to specify both. For instance, let's say you write this: form_tag(:controller => "people", :action => "search", :method => "get", :class => "nifty_form") -# =>
+# => '' -Here you wanted to pass two hashes, but the Ruby interpreter sees only one hash, so Rails will construct a URL with extraneous parameters. The correct way of passing multiple hashes as arguments is to delimit the first hash (or both hashes) with curly brackets: +Here, +method+ and +class+ are appended to the query string of the generated URL because you even though you mean to write two hashes, you really only specified one. So you need to tell Ruby which is which by delimiting the first hash (or both) with curly brackets. This will generate the HTML you expect: form_tag({:controller => "people", :action => "search"}, :method => "get", :class => "nifty_form") -# => +# => '' -This is a common pitfall when using form helpers, since many of them accept multiple hashes. So in future, if a helper produces unexpected output, make sure that you have delimited the hash parameters properly. - -WARNING: Do not delimit the second hash without doing so with the first hash, otherwise your method invocation will result in an +expecting tASSOC+ syntax error. - h4. Helpers for Generating Form Elements -Rails provides a series of helpers for generating form elements such as checkboxes, text fields and radio buttons. These basic helpers, with names ending in _tag such as +text_field_tag+ and +check_box_tag+ generate just a single +<input>+ element. The first parameter to these is always the name of the input. In the controller this name will be the key in the +params+ hash used to get the value entered by the user. For example, if the form contains +Rails provides a series of helpers for generating form elements such as checkboxes, text fields, and radio buttons. These basic helpers, with names ending in "_tag" (such as +text_field_tag+ and +check_box_tag+), generate just a single +<input>+ element. The first parameter to these is always the name of the input. When the form is submitted, the name will be passed along with the form data, and will make its way to the +params+ hash in the controller with the value entered by the user for that field. For example, if the form contains +<%= text_field_tag(:query) %>+, then you would be able to get the value of this field in the controller with +params[:query]+. - -<%= text_field_tag(:query) %> - - -then the controller code should use - - -params[:query] - - -to retrieve the value entered by the user. When naming inputs, be aware that Rails uses certain conventions that control whether values are at the top level of the +params+ hash, inside an array or a nested hash and so on. You can read more about them in the parameter_names section. For details on the precise usage of these helpers, please refer to the "API documentation":http://api.rubyonrails.org/classes/ActionView/Helpers/FormTagHelper.html. +When naming inputs, Rails uses certain conventions that make it possible to submit parameters with non-scalar values such as arrays or hashes, which will also be accessible in +params+. You can read more about them in "chapter 7 of this guide":#understanding-parameter-naming-conventions. For details on the precise usage of these helpers, please refer to the "API documentation":http://api.rubyonrails.org/classes/ActionView/Helpers/FormTagHelper.html. h5. Checkboxes @@ -133,7 +113,7 @@ Checkboxes are form controls that give the user a set of options they can enable <%= label_tag(:pet_cat, "I own a cat") %> -output: +This generates the following: @@ -142,11 +122,11 @@ output: -The second parameter to +check_box_tag+ is the value of the input. This is the value that will be submitted by the browser if the checkbox is ticked (i.e. the value that will be present in the +params+ hash). With the above form you would check the value of +params[:pet_dog]+ and +params[:pet_cat]+ to see which pets the user owns. +The first parameter to +check_box_tag+, of course, is the name of the input. The second parameter, naturally, is the value of the input. This value will be included in the form data (and be present in +params+) when the checkbox is checked. h5. Radio Buttons -Radio buttons, while similar to checkboxes, are controls that specify a set of options in which they are mutually exclusive (i.e. the user can only pick one): +Radio buttons, while similar to checkboxes, are controls that specify a set of options in which they are mutually exclusive (i.e., the user can only pick one): <%= radio_button_tag(:age, "child") %> @@ -155,7 +135,7 @@ Radio buttons, while similar to checkboxes, are controls that specify a set of o <%= label_tag(:age_adult, "I'm over 21") %> -output: +Output: @@ -164,13 +144,13 @@ output: -As with +check_box_tag+ the second parameter to +radio_button_tag+ is the value of the input. Because these two radio buttons share the same name (age) the user will only be able to select one and +params[:age]+ will contain either "child" or "adult". +As with +check_box_tag+, the second parameter to +radio_button_tag+ is the value of the input. Because these two radio buttons share the same name (age) the user will only be able to select one, and +params[:age]+ will contain either "child" or "adult". -IMPORTANT: Always use labels for each checkbox and radio button. They associate text with a specific option and provide a larger clickable region. +NOTE: Always use labels for checkbox and radio buttons. They associate text with a specific option and make it easier for users to click the inputs by expanding the clickable region. h4. Other Helpers of Interest -Other form controls worth mentioning are the text area, password input, hidden input, search input, tel input, url input and email input: +Other form controls worth mentioning are textareas, password fields, hidden fields, search fields, telephone fields, URL fields and email fields: <%= text_area_tag(:message, "Hi, nice site", :size => "24x6") %> @@ -194,9 +174,11 @@ Output: -Hidden inputs are not shown to the user, but they hold data like any textual input. Values inside them can be changed with JavaScript. The search, tel, url and email inputs are specified in HTML5 and may receive special handling and/or formatting in some user-agents. +Hidden inputs are not shown to the user but instead hold data like any textual input. Values inside them can be changed with JavaScript. -TIP: If you're using password input fields (for any purpose), you might want to configure your application to prevent those parameters from being logged. +IMPORTANT: The search, telephone, URL, and email inputs are HTML5 controls. If you require your app to have a consistent experience in older browsers, you will need an HTML5 polyfill (provided by CSS and/or JavaScript). There is definitely "no shortage of solutions for this":https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-Browser-Polyfills, although a couple of popular tools at the moment are "Modernizr":http://www.modernizr.com/ and "yepnope":http://yepnopejs.com/, which provide a simple way to add functionality based on the presence of detected HTML5 features. + +TIP: If you're using password input fields (for any purpose), you might want to configure your application to prevent those parameters from being logged. You can learn about this in the "Security Guide":security.html#logging. h3. Dealing with Model Objects From 60c505dc796dddccf83c0e8d7938c1360df42d9b Mon Sep 17 00:00:00 2001 From: Vijay Dev Date: Mon, 25 Jul 2011 17:37:01 +0530 Subject: [PATCH 20/24] Revert "Update the TIP formatter to handle multiline tips" This reverts commit e3dbe66e196069fde7d3ff118bd25a03184915fa. Reason: Code changes are not allowed in docrails. --- .../guides/rails_guides/textile_extensions.rb | 3 +- .../test/guides/textile_extionsions_test.rb | 37 ------------------- 2 files changed, 1 insertion(+), 39 deletions(-) delete mode 100644 railties/test/guides/textile_extionsions_test.rb diff --git a/railties/guides/rails_guides/textile_extensions.rb b/railties/guides/rails_guides/textile_extensions.rb index 0887ebf76b..352c5e91dd 100644 --- a/railties/guides/rails_guides/textile_extensions.rb +++ b/railties/guides/rails_guides/textile_extensions.rb @@ -15,11 +15,10 @@ module RailsGuides end def tip(body) - body.gsub!(/^TIP[.:](.*?)(\n\Z|\n\n+|\Z)/m) do |m| + body.gsub!(/^TIP[.:](.*)$/) do |m| result = "

" result << $1.strip result << '

' - result << $2 if $2 result end end diff --git a/railties/test/guides/textile_extionsions_test.rb b/railties/test/guides/textile_extionsions_test.rb deleted file mode 100644 index 9f1068d9be..0000000000 --- a/railties/test/guides/textile_extionsions_test.rb +++ /dev/null @@ -1,37 +0,0 @@ -require 'isolation/abstract_unit' -require 'guides/rails_guides/textile_extensions' - -class TextileExtensionsTest < Test::Unit::TestCase - include ActiveSupport::Testing::Isolation - include RailsGuides::TextileExtensions - - test "tips can handle a single line" do - expected_output = "

this is a single line tip

" - assert_equal expected_output, tip('TIP. this is a single line tip') - end - - def setup - @multi_line_tip = "This is a multi-line tip.\n" + - "Isn't it fantastic?" - end - - test "tips can handle a multi-line tip" do - expected_output = "

#{@multi_line_tip}

" - - assert_equal expected_output, tip("TIP. #{@multi_line_tip}") - end - - test "muli-line tips handles text before and after the tip" do - pre_line = "This is text before hand.\n\n" - post_line = "\n\nThis is some text after" - input_text = pre_line + - "TIP. #{@multi_line_tip}" + - post_line - - expected_output = pre_line + - "

#{@multi_line_tip}

" + - post_line - - assert_equal expected_output, tip(input_text) - end -end \ No newline at end of file From 203a85f191455d40ac869cd57e0ac50e8da342b7 Mon Sep 17 00:00:00 2001 From: Vijay Dev Date: Mon, 25 Jul 2011 17:39:17 +0530 Subject: [PATCH 21/24] Revert "Add in a tip about opening two command prompt windows" This reverts commit 1e5fa59d132562399536a3ca06295b60558bc258. Reason: It's somewhat a grey area. We don't really want to tell the users how they want to use the terminal. --- railties/guides/source/getting_started.textile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index ae7cee47dc..0b89021392 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -426,11 +426,6 @@ One of the traditional places to start with a new language is by getting some text up on screen quickly. To do this, you need to get your Rails application server running. -TIP: You may find it helpful to open two command prompt windows and navigate -to your Rails project in both. Leave the server running ('rails server') in -the first window, and run the commands listed below in the second terminal -window. - h4. Starting up the Web Server You actually have a functional Rails application already. To see it, you need to From 6f29b356c1e8cb73d8a696a393450a9ce4eeda57 Mon Sep 17 00:00:00 2001 From: JudeArasu Date: Mon, 25 Jul 2011 23:26:36 +0530 Subject: [PATCH 22/24] aligment issues fixed --- activesupport/CHANGELOG | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index a25720adbf..aca55011f0 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -1,11 +1,11 @@ *Rails 3.2.0 (unreleased)* * The definition of blank string for Ruby 1.9 has been extended to Unicode whitespace. -Also, in 1.8 the ideographic space U+3000 is considered to be whitespace. [Akira Matsuda, Damien Mathieu] + Also, in 1.8 the ideographic space U+3000 is considered to be whitespace. [Akira Matsuda, Damien Mathieu] * The inflector understands acronyms. [dlee] -* Deprecated ActiveSupport::Memoizable in favor of Ruby memoization pattern [José Valim] +* Deprecated ActiveSupport::Memoizable in favor of Ruby memoization pattern [José Valim] * Added Time#all_day/week/quarter/year as a way of generating ranges (example: Event.where(created_at: Time.now.all_week)) [DHH] @@ -14,11 +14,12 @@ Also, in 1.8 the ideographic space U+3000 is considered to be whitespace. [Akira * Removed ActiveSupport::SecureRandom in favor of SecureRandom from the standard library [Jon Leighton] * ActiveSupport::OrderedHash now has different behavior for #each and -#each_pair when given a block accepting its parameters with a splat. [Andrew Radev] + #each_pair when given a block accepting its parameters with a splat. [Andrew Radev] *Rails 3.1.0 (unreleased)* -* ActiveSupport::Dependencies now raises NameError if it finds an existing constant in load_missing_constant. This better reflects the nature of the error which is usually caused by calling constantize on a nested constant. [Andrew White] +* ActiveSupport::Dependencies now raises NameError if it finds an existing constant in load_missing_constant. + This better reflects the nature of the error which is usually caused by calling constantize on a nested constant. [Andrew White] * Deprecated ActiveSupport::SecureRandom in favour of SecureRandom from the standard library [Jon Leighton] @@ -29,13 +30,13 @@ Also, in 1.8 the ideographic space U+3000 is considered to be whitespace. [Akira * Add Object#in? to test if an object is included in another object [Prem Sichanugrist, Brian Morearty, John Reitano] * LocalCache strategy is now a real middleware class, not an anonymous class -posing for pictures. + posing for pictures. * ActiveSupport::Dependencies::ClassCache class has been introduced for -holding references to reloadable classes. + holding references to reloadable classes. * ActiveSupport::Dependencies::Reference has been refactored to take direct -advantage of the new ClassCache. + advantage of the new ClassCache. * Backports Range#cover? as an alias for Range#include? in Ruby 1.8 [Diego Carrion, fxn] @@ -85,7 +86,8 @@ advantage of the new ClassCache. * Implemented String#strip_heredoc. [fxn] -* Pluggable cache stores: setting config.cache_store = "custom_store" will require 'active_support/cache/custom_store' and look for the CustomStore constant. #5486 [Mike Perham] +* Pluggable cache stores: setting config.cache_store = "custom_store" will require 'active_support/cache/custom_store' and + look for the CustomStore constant. #5486 [Mike Perham] * Removed Object#returning, Object#tap should be used instead. [Santiago Pastorino] @@ -185,7 +187,7 @@ advantage of the new ClassCache. * Georgetown TimeZone is now mapped to "America/Guyana" instead of "America/Argentina/San_Juan" #1821 [Geoff Buesing, Reuben Sivan] * Changed the default ActiveSupport.use_standard_json_time_format from false to true and -ActiveSupport.escape_html_entities_in_json from true to false to match previously announced Rails 3 defaults [DHH] + ActiveSupport.escape_html_entities_in_json from true to false to match previously announced Rails 3 defaults [DHH] * Added Object#presence that returns the object if it's #present? otherwise returns nil [DHH/Colin Kelley] @@ -1538,3 +1540,4 @@ approximations and shouldn't be used for critical calculations. [Michael Koziars * Added that Inflector now accepts Symbols and Classes by calling .to_s on the word supplied * Added time unit extensions to Fixnum that'll return the period in seconds, like 2.days + 4.hours. + From 50ca6f06c739994329cd936fce5f266bd799b37e Mon Sep 17 00:00:00 2001 From: Vijay Dev Date: Mon, 25 Jul 2011 23:41:28 +0530 Subject: [PATCH 23/24] Revert "aligment issues fixed" This reverts commit 6f29b356c1e8cb73d8a696a393450a9ce4eeda57. Reason: Changelogs are not meant to be changed in docrails. --- activesupport/CHANGELOG | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index aca55011f0..a25720adbf 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -1,11 +1,11 @@ *Rails 3.2.0 (unreleased)* * The definition of blank string for Ruby 1.9 has been extended to Unicode whitespace. - Also, in 1.8 the ideographic space U+3000 is considered to be whitespace. [Akira Matsuda, Damien Mathieu] +Also, in 1.8 the ideographic space U+3000 is considered to be whitespace. [Akira Matsuda, Damien Mathieu] * The inflector understands acronyms. [dlee] -* Deprecated ActiveSupport::Memoizable in favor of Ruby memoization pattern [José Valim] +* Deprecated ActiveSupport::Memoizable in favor of Ruby memoization pattern [José Valim] * Added Time#all_day/week/quarter/year as a way of generating ranges (example: Event.where(created_at: Time.now.all_week)) [DHH] @@ -14,12 +14,11 @@ * Removed ActiveSupport::SecureRandom in favor of SecureRandom from the standard library [Jon Leighton] * ActiveSupport::OrderedHash now has different behavior for #each and - #each_pair when given a block accepting its parameters with a splat. [Andrew Radev] +#each_pair when given a block accepting its parameters with a splat. [Andrew Radev] *Rails 3.1.0 (unreleased)* -* ActiveSupport::Dependencies now raises NameError if it finds an existing constant in load_missing_constant. - This better reflects the nature of the error which is usually caused by calling constantize on a nested constant. [Andrew White] +* ActiveSupport::Dependencies now raises NameError if it finds an existing constant in load_missing_constant. This better reflects the nature of the error which is usually caused by calling constantize on a nested constant. [Andrew White] * Deprecated ActiveSupport::SecureRandom in favour of SecureRandom from the standard library [Jon Leighton] @@ -30,13 +29,13 @@ * Add Object#in? to test if an object is included in another object [Prem Sichanugrist, Brian Morearty, John Reitano] * LocalCache strategy is now a real middleware class, not an anonymous class - posing for pictures. +posing for pictures. * ActiveSupport::Dependencies::ClassCache class has been introduced for - holding references to reloadable classes. +holding references to reloadable classes. * ActiveSupport::Dependencies::Reference has been refactored to take direct - advantage of the new ClassCache. +advantage of the new ClassCache. * Backports Range#cover? as an alias for Range#include? in Ruby 1.8 [Diego Carrion, fxn] @@ -86,8 +85,7 @@ * Implemented String#strip_heredoc. [fxn] -* Pluggable cache stores: setting config.cache_store = "custom_store" will require 'active_support/cache/custom_store' and - look for the CustomStore constant. #5486 [Mike Perham] +* Pluggable cache stores: setting config.cache_store = "custom_store" will require 'active_support/cache/custom_store' and look for the CustomStore constant. #5486 [Mike Perham] * Removed Object#returning, Object#tap should be used instead. [Santiago Pastorino] @@ -187,7 +185,7 @@ * Georgetown TimeZone is now mapped to "America/Guyana" instead of "America/Argentina/San_Juan" #1821 [Geoff Buesing, Reuben Sivan] * Changed the default ActiveSupport.use_standard_json_time_format from false to true and - ActiveSupport.escape_html_entities_in_json from true to false to match previously announced Rails 3 defaults [DHH] +ActiveSupport.escape_html_entities_in_json from true to false to match previously announced Rails 3 defaults [DHH] * Added Object#presence that returns the object if it's #present? otherwise returns nil [DHH/Colin Kelley] @@ -1540,4 +1538,3 @@ approximations and shouldn't be used for critical calculations. [Michael Koziars * Added that Inflector now accepts Symbols and Classes by calling .to_s on the word supplied * Added time unit extensions to Fixnum that'll return the period in seconds, like 2.days + 4.hours. - From 598eab90ffb60638a578b5b205388cb755485280 Mon Sep 17 00:00:00 2001 From: Xavier Noria Date: Mon, 25 Jul 2011 14:12:12 -0700 Subject: [PATCH 24/24] let TIP and friends handle a multiline paragraph Normally I would have done this in master, but there was already a guide with wrapped content, so worked here. I am going to cross-merge now. --- railties/guides/rails_guides/generator.rb | 2 +- .../guides/rails_guides/textile_extensions.rb | 35 ++++++++++--------- 2 files changed, 19 insertions(+), 18 deletions(-) diff --git a/railties/guides/rails_guides/generator.rb b/railties/guides/rails_guides/generator.rb index 14d671c8f3..d304512ff7 100644 --- a/railties/guides/rails_guides/generator.rb +++ b/railties/guides/rails_guides/generator.rb @@ -204,7 +204,7 @@ module RailsGuides t = RedCloth.new(body) t.hard_breaks = false t.lite_mode = lite_mode - t.to_html(:notestuff, :plusplus, :code, :tip) + t.to_html(:notestuff, :plusplus, :code) end end diff --git a/railties/guides/rails_guides/textile_extensions.rb b/railties/guides/rails_guides/textile_extensions.rb index 352c5e91dd..b3e0e32357 100644 --- a/railties/guides/rails_guides/textile_extensions.rb +++ b/railties/guides/rails_guides/textile_extensions.rb @@ -3,23 +3,24 @@ require 'active_support/core_ext/object/inclusion' module RailsGuides module TextileExtensions def notestuff(body) - body.gsub!(/^(IMPORTANT|CAUTION|WARNING|NOTE|INFO)[.:](.*)$/) do |m| - css_class = $1.downcase - css_class = 'warning' if css_class.in?(['caution', 'important']) - - result = "

" - result << $2.strip - result << '

' - result - end - end - - def tip(body) - body.gsub!(/^TIP[.:](.*)$/) do |m| - result = "

" - result << $1.strip - result << '

' - result + # The following regexp detects special labels followed by a + # paragraph, perhaps at the end of the document. + # + # It is important that we do not eat more than one newline + # because formatting may be wrong otherwise. For example, + # if a bulleted list follows the first item is not rendered + # as a list item, but as a paragraph starting with a plain + # asterisk. + body.gsub!(/^(TIP|IMPORTANT|CAUTION|WARNING|NOTE|INFO)[.:](.*?)(\n(?=\n)|\Z)/m) do |m| + css_class = case $1 + when 'CAUTION', 'IMPORTANT' + 'warning' + when 'TIP' + 'info' + else + $1.downcase + end + %Q(

#{$2.strip}

) end end