1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add the Working with JavaScript Guides in the guides home as WIP

This commit is contained in:
Rafael Mendonça França 2012-10-27 13:14:02 -02:00
parent f3807a8ce6
commit e3dad960e8

View file

@ -1,4 +1,4 @@
- -
name: Start Here name: Start Here
documents: documents:
- -
@ -26,82 +26,87 @@
description: This guide covers the database query interface provided by Active Record. description: This guide covers the database query interface provided by Active Record.
- -
name: Views name: Views
documents: documents:
- -
name: Layouts and Rendering in Rails name: Layouts and Rendering in Rails
url: layouts_and_rendering.html url: layouts_and_rendering.html
description: This guide covers the basic layout features of Action Controller and Action View, including rendering and redirecting, using content_for blocks, and working with partials. description: This guide covers the basic layout features of Action Controller and Action View, including rendering and redirecting, using content_for blocks, and working with partials.
- -
name: Action View Form Helpers name: Action View Form Helpers
url: form_helpers.html url: form_helpers.html
description: Guide to using built-in Form helpers. description: Guide to using built-in Form helpers.
- -
name: Controllers name: Controllers
documents: documents:
- -
name: Action Controller Overview name: Action Controller Overview
url: action_controller_overview.html url: action_controller_overview.html
description: This guide covers how controllers work and how they fit into the request cycle in your application. It includes sessions, filters, and cookies, data streaming, and dealing with exceptions raised by a request, among other topics. description: This guide covers how controllers work and how they fit into the request cycle in your application. It includes sessions, filters, and cookies, data streaming, and dealing with exceptions raised by a request, among other topics.
- -
name: Rails Routing from the Outside In name: Rails Routing from the Outside In
url: routing.html url: routing.html
description: This guide covers the user-facing features of Rails routing. If you want to understand how to use routing in your own Rails applications, start here. description: This guide covers the user-facing features of Rails routing. If you want to understand how to use routing in your own Rails applications, start here.
- -
name: Digging Deeper name: Digging Deeper
documents: documents:
- -
name: Active Support Core Extensions name: Active Support Core Extensions
url: active_support_core_extensions.html url: active_support_core_extensions.html
description: This guide documents the Ruby core extensions defined in Active Support. description: This guide documents the Ruby core extensions defined in Active Support.
- -
name: Rails Internationalization API name: Rails Internationalization API
url: i18n.html url: i18n.html
description: This guide covers how to add internationalization to your applications. Your application will be able to translate content to different languages, change pluralization rules, use correct date formats for each country and so on. description: This guide covers how to add internationalization to your applications. Your application will be able to translate content to different languages, change pluralization rules, use correct date formats for each country and so on.
- -
name: Action Mailer Basics name: Action Mailer Basics
url: action_mailer_basics.html url: action_mailer_basics.html
work_in_progress: true work_in_progress: true
description: This guide describes how to use Action Mailer to send and receive emails. description: This guide describes how to use Action Mailer to send and receive emails.
- -
name: Testing Rails Applications name: Testing Rails Applications
url: testing.html url: testing.html
work_in_progress: true work_in_progress: true
description: This is a rather comprehensive guide to doing both unit and functional tests in Rails. It covers everything from 'What is a test?' to the testing APIs. Enjoy. description: This is a rather comprehensive guide to doing both unit and functional tests in Rails. It covers everything from 'What is a test?' to the testing APIs. Enjoy.
- -
name: Securing Rails Applications name: Securing Rails Applications
url: security.html url: security.html
description: This guide describes common security problems in web applications and how to avoid them with Rails. description: This guide describes common security problems in web applications and how to avoid them with Rails.
- -
name: Debugging Rails Applications name: Debugging Rails Applications
url: debugging_rails_applications.html url: debugging_rails_applications.html
description: This guide describes how to debug Rails applications. It covers the different ways of achieving this and how to understand what is happening "behind the scenes" of your code. description: This guide describes how to debug Rails applications. It covers the different ways of achieving this and how to understand what is happening "behind the scenes" of your code.
- -
name: Performance Testing Rails Applications name: Performance Testing Rails Applications
url: performance_testing.html url: performance_testing.html
description: This guide covers the various ways of performance testing a Ruby on Rails application. description: This guide covers the various ways of performance testing a Ruby on Rails application.
- -
name: Configuring Rails Applications name: Configuring Rails Applications
url: configuring.html url: configuring.html
description: This guide covers the basic configuration settings for a Rails application. description: This guide covers the basic configuration settings for a Rails application.
- -
name: Rails Command Line Tools and Rake Tasks name: Rails Command Line Tools and Rake Tasks
url: command_line.html url: command_line.html
description: This guide covers the command line tools and rake tasks provided by Rails. description: This guide covers the command line tools and rake tasks provided by Rails.
- -
name: Caching with Rails name: Caching with Rails
work_in_progress: true work_in_progress: true
url: caching_with_rails.html url: caching_with_rails.html
description: Various caching techniques provided by Rails. description: Various caching techniques provided by Rails.
- -
name: Asset Pipeline name: Asset Pipeline
url: asset_pipeline.html url: asset_pipeline.html
description: This guide documents the asset pipeline. description: This guide documents the asset pipeline.
- -
name: Working with JavaScript in Rails
work_in_progress: true
url: working_with_javascript_in_rails.html
description: This guide covers the built-in Ajax/JavaScript functionality of Rails.
-
name: Getting Started with Engines name: Getting Started with Engines
url: engines.html url: engines.html
description: This guide explains how to write a mountable engine. description: This guide explains how to write a mountable engine.
work_in_progress: true work_in_progress: true
- -
name: The Rails Initialization Process name: The Rails Initialization Process
work_in_progress: true work_in_progress: true
url: initialization.html url: initialization.html
@ -109,38 +114,38 @@
- -
name: Extending Rails name: Extending Rails
documents: documents:
- -
name: The Basics of Creating Rails Plugins name: The Basics of Creating Rails Plugins
work_in_progress: true work_in_progress: true
url: plugins.html url: plugins.html
description: This guide covers how to build a plugin to extend the functionality of Rails. description: This guide covers how to build a plugin to extend the functionality of Rails.
- -
name: Rails on Rack name: Rails on Rack
url: rails_on_rack.html url: rails_on_rack.html
description: This guide covers Rails integration with Rack and interfacing with other Rack components. description: This guide covers Rails integration with Rack and interfacing with other Rack components.
- -
name: Creating and Customizing Rails Generators name: Creating and Customizing Rails Generators
url: generators.html url: generators.html
description: This guide covers the process of adding a brand new generator to your extension or providing an alternative to an element of a built-in Rails generator (such as providing alternative test stubs for the scaffold generator). description: This guide covers the process of adding a brand new generator to your extension or providing an alternative to an element of a built-in Rails generator (such as providing alternative test stubs for the scaffold generator).
- -
name: Contributing to Ruby on Rails name: Contributing to Ruby on Rails
documents: documents:
- -
name: Contributing to Ruby on Rails name: Contributing to Ruby on Rails
url: contributing_to_ruby_on_rails.html url: contributing_to_ruby_on_rails.html
description: Rails is not 'somebody else's framework.' This guide covers a variety of ways that you can get involved in the ongoing development of Rails. description: Rails is not 'somebody else's framework.' This guide covers a variety of ways that you can get involved in the ongoing development of Rails.
- -
name: API Documentation Guidelines name: API Documentation Guidelines
url: api_documentation_guidelines.html url: api_documentation_guidelines.html
description: This guide documents the Ruby on Rails API documentation guidelines. description: This guide documents the Ruby on Rails API documentation guidelines.
- -
name: Ruby on Rails Guides Guidelines name: Ruby on Rails Guides Guidelines
url: ruby_on_rails_guides_guidelines.html url: ruby_on_rails_guides_guidelines.html
description: This guide documents the Ruby on Rails guides guidelines. description: This guide documents the Ruby on Rails guides guidelines.
- -
name: Release Notes name: Release Notes
documents: documents:
- -
name: Upgrading Ruby on Rails name: Upgrading Ruby on Rails
url: upgrading_ruby_on_rails.html url: upgrading_ruby_on_rails.html
work_in_progress: true work_in_progress: true
@ -157,15 +162,15 @@
name: Ruby on Rails 3.1 Release Notes name: Ruby on Rails 3.1 Release Notes
url: 3_1_release_notes.html url: 3_1_release_notes.html
description: Release notes for Rails 3.1. description: Release notes for Rails 3.1.
- -
name: Ruby on Rails 3.0 Release Notes name: Ruby on Rails 3.0 Release Notes
url: 3_0_release_notes.html url: 3_0_release_notes.html
description: Release notes for Rails 3.0. description: Release notes for Rails 3.0.
- -
name: Ruby on Rails 2.3 Release Notes name: Ruby on Rails 2.3 Release Notes
url: 2_3_release_notes.html url: 2_3_release_notes.html
description: Release notes for Rails 2.3. description: Release notes for Rails 2.3.
- -
name: Ruby on Rails 2.2 Release Notes name: Ruby on Rails 2.2 Release Notes
url: 2_2_release_notes.html url: 2_2_release_notes.html
description: Release notes for Rails 2.2. description: Release notes for Rails 2.2.