(draft) guides for the Kindle and Kindle apps [Mip Earson & Xavier Noria]

This commit is contained in:
Xavier Noria 2011-12-24 17:26:18 -08:00
parent 41e466fda8
commit 8eb3596617
16 changed files with 491 additions and 205 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -0,0 +1,11 @@
p { text-indent: 0; }
p, H1, H2, H3, H4, H5, H6, H7, H8, table { margin-top: 1em;}
.pagebreak { page-break-before: always; }
#toc H3 {
text-indent: 1em;
}
#toc .document {
text-indent: 2em;
}

View File

@ -47,6 +47,11 @@
# Set to "1" to indicate generated guides should be marked as edge. This
# inserts a badge and changes the preamble of the home page.
#
# KINDLE
# Set to "1" to generate the .mobi with all the guides. The kindlegen
# executable must be in your PATH. Google for it if you do not have it
# locally, it is available from Amazon for free.
#
# ---------------------------------------------------------------------------
require 'set'
@ -65,35 +70,70 @@ module RailsGuides
class Generator
attr_reader :guides_dir, :source_dir, :output_dir, :edge, :warnings, :all
GUIDES_RE = /\.(?:textile|html\.erb)$/
GUIDES_RE = /\.(?:textile|erb)$/
def initialize(output=nil)
@lang = ENV['GUIDES_LANGUAGE']
set_flags_from_environment
if kindle?
check_for_kindlegen
register_kindle_mime_types
end
initialize_dirs(output)
create_output_dir_if_needed
set_flags_from_environment
end
def generate
generate_guides
copy_assets
end
private
def initialize_dirs(output)
@guides_dir = File.join(File.dirname(__FILE__), '..')
@source_dir = File.join(@guides_dir, "source", @lang.to_s)
@output_dir = output || File.join(@guides_dir, "output", @lang.to_s)
end
def create_output_dir_if_needed
FileUtils.mkdir_p(output_dir)
end
def set_flags_from_environment
@edge = ENV['EDGE'] == '1'
@warnings = ENV['WARNINGS'] == '1'
@all = ENV['ALL'] == '1'
@kindle = ENV['KINDLE'] == '1'
@version = ENV['RAILS_VERSION'] || `git rev-parse --short HEAD`.chomp
@lang = ENV['GUIDES_LANGUAGE']
end
def register_kindle_mime_types
Mime::Type.register_alias("application/xml", :opf, %w(opf))
Mime::Type.register_alias("application/xml", :ncx ,%w(ncx))
end
def generate
generate_guides
copy_assets
generate_mobi if kindle?
end
private
def kindle?
@kindle
end
def check_for_kindlegen
if `which kindlegen`.blank?
raise "Can't create a kindle version without `kindlegen`."
end
end
def generate_mobi
system "kindlegen #{output_dir}/rails_guides.opf -o #{kindle_output_file} > #{output_dir}/kindlegen.out 2>&1"
puts "Guides compiled as Kindle book to #{kindle_output_file}"
puts "(kindlegen log at #{output_dir}/kindlegen.out)."
end
def kindle_output_file
"rails_guides_#@version%s.mobi" % (@lang.present? ? ".#@lang" : '')
end
def initialize_dirs(output)
@guides_dir = File.join(File.dirname(__FILE__), '..')
@source_dir = "#@guides_dir/source/#@lang"
@output_dir = output || "#@guides_dir/output/#@lang"
end
def create_output_dir_if_needed
FileUtils.mkdir_p(output_dir)
end
def generate_guides
@ -105,6 +145,13 @@ module RailsGuides
def guides_to_generate
guides = Dir.entries(source_dir).grep(GUIDES_RE)
if kindle?
Dir.entries("#{source_dir}/kindle").grep(GUIDES_RE).map do |entry|
guides << "kindle/#{entry}"
end
end
ENV.key?('ONLY') ? select_only(guides) : guides
end
@ -120,36 +167,47 @@ module RailsGuides
end
def output_file_for(guide)
guide.sub(GUIDES_RE, '.html')
if guide =~/\.textile$/
guide.sub(/\.textile$/, '.html')
else
guide.sub(/\.erb$/, '')
end
end
def output_path_for(output_file)
File.join(output_dir, File.basename(output_file))
end
def generate?(source_file, output_file)
fin = File.join(source_dir, source_file)
fout = File.join(output_dir, output_file)
fout = output_path_for(output_file)
all || !File.exists?(fout) || File.mtime(fout) < File.mtime(fin)
end
def generate_guide(guide, output_file)
puts "Generating #{output_file}"
File.open(File.join(output_dir, output_file), 'w') do |f|
view = ActionView::Base.new(source_dir, :edge => edge)
output_path = output_path_for(output_file)
puts "Generating #{guide} as #{output_file}"
layout = guide.start_with?('kindle/') ? 'kindle/layout' : 'layout'
File.open(output_path, 'w') do |f|
view = ActionView::Base.new(source_dir, :version => @version)
view.extend(Helpers)
if guide =~ /\.html\.erb$/
if guide =~ /\.(\w+)\.erb$/
# Generate the special pages like the home.
# Passing a template handler in the template name is deprecated. So pass the file name without the extension.
result = view.render(:layout => 'layout', :file => $`)
result = view.render(:layout => layout, :formats => [$1], :file => $`)
else
body = File.read(File.join(source_dir, guide))
body = set_header_section(body, view)
body = set_index(body, view)
result = view.render(:layout => 'layout', :text => textile(body))
result = view.render(:layout => layout, :text => textile(body))
warn_about_broken_links(result) if @warnings
end
f.write result
f.write(result)
end
end

View File

@ -11,6 +11,14 @@ module RailsGuides
result << content_tag(:dd, capture(&block))
result
end
def documents_by_section
@documents_by_section ||= YAML.load_file(File.expand_path('../../source/documents.yaml', __FILE__))
end
def documents_flat
documents_by_section.map {|section| section['documents']}.flatten
end
def author(name, nick, image = 'credits_pic_blank.gif', &block)
image = "images/#{image}"

View File

@ -0,0 +1,2 @@
<p>This work is licensed under a <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-Share Alike 3.0</a> License</p>
<p>"Rails", "Ruby on Rails", and the Rails logo are trademarks of David Heinemeier Hansson. All rights reserved.</p>

View File

@ -0,0 +1,21 @@
<h2>Ruby on Rails Guides (<%= @version %>)</h2>
<% if @edge %>
<p>
These are <b>Edge Guides</b>, based on the current
<a href="https://github.com/rails/rails/tree/master">master branch</a>.
</p>
<p>
If you are looking for the ones for the stable version please check
<a href="http://guides.rubyonrails.org">http://guides.rubyonrails.org</a> instead.
</p>
<% else %>
<p>
These are the new guides for Rails 3. The guides for Rails 2.3 are still available
at <a href="http://guides.rubyonrails.org/v2.3.11/">http://guides.rubyonrails.org/v2.3.11/</a>.
</p>
<% end %>
<p>
These guides are designed to make you immediately productive with Rails,
and to help you understand how all of the pieces fit together.
</p>

View File

@ -0,0 +1,153 @@
-
name: Start Here
documents:
-
name: Getting Started with Rails
url: getting_started.html
description: Everything you need to know to install Rails and create your first application.
-
name: Models
documents:
-
name: Rails Database Migrations
url: migrations.html
description: This guide covers how you can use Active Record migrations to alter your database in a structured and organized manner.
-
name: Active Record Validations and Callbacks
url: active_record_validations_callbacks.html
description: This guide covers how you can use Active Record validations and callbacks.
-
name: Active Record Associations
url: association_basics.html
description: This guide covers all the associations provided by Active Record.
-
name: Active Record Query Interface
url: active_record_querying.html
description: This guide covers the database query interface provided by Active Record.
-
name: Views
documents:
-
name: Layouts and Rendering in Rails
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.
-
name: Action View Form Helpers
url: form_helpers.html
description: Guide to using built-in Form helpers.
-
name: Controllers
documents:
-
name: Action Controller Overview
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.
-
name: Rails Routing from the Outside In
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.
-
name: Digging Deeper
documents:
-
name: Active Support Core Extensions
url: active_support_core_extensions.html
description: This guide documents the Ruby core extensions defined in Active Support.
-
name: Rails Internationalization API
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.
-
name: Action Mailer Basics
url: action_mailer_basics.html
work_in_progress: true
description: This guide describes how to use Action Mailer to send and receive emails.
-
name: Testing Rails Applications
url: testing.html
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.
-
name: Securing Rails Applications
url: security.html
description: This guide describes common security problems in web applications and how to avoid them with Rails.
-
name: Debugging Rails Applications
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.
-
name: Performance Testing Rails Applications
url: performance_testing.html
description: This guide covers the various ways of performance testing a Ruby on Rails application.
-
name: Configuring Rails Applications
url: configuring.html
description: This guide covers the basic configuration settings for a Rails application.
-
name: Rails Command Line Tools and Rake tasks
url: command_line.html
description: This guide covers the command line tools and rake tasks provided by Rails.
-
name: Caching with Rails
work_in_progress: true
url: caching_with_rails.html
description: Various caching techniques provided by Rails.
-
name: Asset Pipeline
url: asset_pipeline.html
description: This guide documents the asset pipeline.
-
name: The Rails Initialization Process
work_in_progress: true
url: initialization.html
description: This guide explains the internals of the Rails initialization process as of Rails 3.1
-
name: Extending Rails
documents:
-
name: The Basics of Creating Rails Plugins
work_in_progress: true
url: plugins.html
description: This guide covers how to build a plugin to extend the functionality of Rails.
-
name: Rails on Rack
url: rails_on_rack.html
description: This guide covers Rails integration with Rack and interfacing with other Rack components.
-
name: Creating and Customizing Rails Generators
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).
-
name: Contributing to Ruby on Rails
documents:
-
name: Contributing to Ruby on Rails
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.
-
name: API Documentation Guidelines
url: api_documentation_guidelines.html
description: This guide documents the Ruby on Rails API documentation guidelines.
-
name: Ruby on Rails Guides Guidelines
url: ruby_on_rails_guides_guidelines.html
description: This guide documents the Ruby on Rails guides guidelines.
-
name: Release Notes
documents:
-
name: Ruby on Rails 3.1 Release Notes
url: 3_1_release_notes.html
description: Release notes for Rails 3.1.
-
name: Ruby on Rails 3.0 Release Notes
url: 3_0_release_notes.html
description: Release notes for Rails 3.0.
-
name: Ruby on Rails 2.3 Release Notes
url: 2_3_release_notes.html
description: Release notes for Rails 2.3.
-
name: Ruby on Rails 2.2 Release Notes
url: 2_2_release_notes.html
description: Release notes for Rails 2.2.

View File

@ -3,28 +3,7 @@ Ruby on Rails Guides
<% end %>
<% content_for :header_section do %>
<h2>Ruby on Rails Guides (<%= ENV['RAILS_VERSION'] || 'edge' %>)</h2>
<% if @edge %>
<p>
These are <b>Edge Guides</b>, based on the current
<a href="https://github.com/rails/rails/tree/master">master branch</a>.
</p>
<p>
If you are looking for the ones for the stable version please check
<a href="http://guides.rubyonrails.org">http://guides.rubyonrails.org</a> instead.
</p>
<% else %>
<p>
These are the new guides for Rails 3. The guides for Rails 2.3 are still available
at <a href="http://guides.rubyonrails.org/v2.3.11/">http://guides.rubyonrails.org/v2.3.11/</a>.
</p>
<% end %>
<p>
These guides are designed to make you immediately productive with Rails,
and to help you understand how all of the pieces fit together.
</p>
<%= render 'welcome' %>
<% end %>
<% content_for :index_section do %>
@ -35,157 +14,13 @@ Ruby on Rails Guides
</div>
<% end %>
<h3>Start Here</h3>
<dl>
<%= guide('Getting Started with Rails', 'getting_started.html') do %>
<p>Everything you need to know to install Rails and create your first application.</p>
<% documents_by_section.each do |section| %>
<h3><%= section['name'] %></h3>
<dl>
<% section['documents'].each do |document| %>
<%= guide(document['name'], document['url'], :work_in_progress => document['work_in_progress']) do %>
<p><%= document['description'] %></p>
<% end %>
<% end %>
</dl>
<% end %>
</dl>
<h3>Models</h3>
<dl>
<%= guide("Rails Database Migrations", 'migrations.html') do %>
<p>This guide covers how you can use Active Record migrations to alter your database in a structured and organized manner.</p>
<% end %>
<%= guide("Active Record Validations and Callbacks", 'active_record_validations_callbacks.html') do %>
<p>This guide covers how you can use Active Record validations and callbacks.</p>
<% end %>
<%= guide("Active Record Associations", 'association_basics.html') do %>
<p>This guide covers all the associations provided by Active Record.</p>
<% end %>
<%= guide("Active Record Query Interface", 'active_record_querying.html') do %>
<p>This guide covers the database query interface provided by Active Record.</p>
<% end %>
</dl>
<h3>Views</h3>
<dl>
<%= guide("Layouts and Rendering in Rails", 'layouts_and_rendering.html') do %>
<p>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.</p>
<% end %>
<%= guide("Action View Form Helpers", 'form_helpers.html', :work_in_progress => true) do %>
<p>Guide to using built-in Form helpers.</p>
<% end %>
</dl>
<h3>Controllers</h3>
<dl>
<%= guide("Action Controller Overview", 'action_controller_overview.html') do %>
<p>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.</p>
<% end %>
<%= guide("Rails Routing from the Outside In", 'routing.html') do %>
<p>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.</p>
<% end %>
</dl>
<h3>Digging Deeper</h3>
<dl>
<%= guide("Active Support Core Extensions", 'active_support_core_extensions.html') do %>
<p>This guide documents the Ruby core extensions defined in Active Support.</p>
<% end %>
<%= guide("Rails Internationalization API", 'i18n.html') do %>
<p>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.</p>
<% end %>
<%= guide("Action Mailer Basics", 'action_mailer_basics.html', :work_in_progress => true) do %>
<p>This guide describes how to use Action Mailer to send and receive emails.</p>
<% end %>
<%= guide("Testing Rails Applications", 'testing.html', :work_in_progress => true) do %>
<p>This is a rather comprehensive guide to doing both unit and functional tests in Rails. It covers everything from &quot;What is a test?&quot; to the testing APIs. Enjoy.</p>
<% end %>
<%= guide("Securing Rails Applications", 'security.html') do %>
<p>This guide describes common security problems in web applications and how to avoid them with Rails.</p>
<% end %>
<%= guide("Debugging Rails Applications", 'debugging_rails_applications.html') do %>
<p>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.</p>
<% end %>
<%= guide("Performance Testing Rails Applications", 'performance_testing.html') do %>
<p>This guide covers the various ways of performance testing a Ruby on Rails application.</p>
<% end %>
<%= guide("Configuring Rails Applications", 'configuring.html') do %>
<p>This guide covers the basic configuration settings for a Rails application.</p>
<% end %>
<%= guide("Rails Command Line Tools and Rake tasks", 'command_line.html') do %>
<p>This guide covers the command line tools and rake tasks provided by Rails.</p>
<% end %>
<%= guide("Caching with Rails", 'caching_with_rails.html', :work_in_progress => true) do %>
<p>Various caching techniques provided by Rails.</p>
<% end %>
<%= guide('Asset Pipeline', 'asset_pipeline.html') do %>
<p>This guide documents the asset pipeline.</p>
<% end %>
</dl>
<h3>Extending Rails</h3>
<dl>
<%= guide("The Basics of Creating Rails Plugins", 'plugins.html', :work_in_progress => true) do %>
<p>This guide covers how to build a plugin to extend the functionality of Rails.</p>
<% end %>
<%= guide("Rails on Rack", 'rails_on_rack.html') do %>
<p>This guide covers Rails integration with Rack and interfacing with other Rack components.</p>
<% end %>
<%= guide("Creating and Customizing Rails Generators", 'generators.html') do %>
<p>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).</p>
<% end %>
</dl>
<h3>Contributing to Ruby on Rails</h3>
<dl>
<%= guide("Contributing to Ruby on Rails", 'contributing_to_ruby_on_rails.html') do %>
<p>Rails is not &quot;somebody else's framework.&quot; This guide covers a variety of ways that you can get involved in the ongoing development of Rails.</p>
<% end %>
<%= guide('API Documentation Guidelines', 'api_documentation_guidelines.html') do %>
<p>This guide documents the Ruby on Rails API documentation guidelines.</p>
<% end %>
<%= guide('Ruby on Rails Guides Guidelines', 'ruby_on_rails_guides_guidelines.html') do %>
<p>This guide documents the Ruby on Rails guides guidelines.</p>
<% end %>
</dl>
<h3>Release Notes</h3>
<dl>
<%= guide("Ruby on Rails 3.1 Release Notes", '3_1_release_notes.html') do %>
<p>Release notes for Rails 3.1.</p>
<% end %>
<%= guide("Ruby on Rails 3.0 Release Notes", '3_0_release_notes.html') do %>
<p>Release notes for Rails 3.0.</p>
<% end %>
<%= guide("Ruby on Rails 2.3 Release Notes", '2_3_release_notes.html') do %>
<p>Release notes for Rails 2.3.</p>
<% end %>
<%= guide("Ruby on Rails 2.2 Release Notes", '2_2_release_notes.html') do %>
<p>Release notes for Rails 2.2.</p>
<% end %>
</dl>

View File

@ -0,0 +1,26 @@
# Rails Guides on the Kindle
## Synopsis
1. Obtain `kindlegen` from the link below and put the binary in your path
2. Run `KINDLE=1 rake generate_guides` to generate the guides and compile the `.mobi` file
3. Copy `output/kindle/rails_guides.mobi` to your Kindle
## Resources
* [StackOverflow: Kindle Periodical Format](http://stackoverflow.com/questions/5379565/kindle-periodical-format)
* Example Periodical [.ncx](https://gist.github.com/808c971ed087b839d462) and [.opf](https://gist.github.com/d6349aa8488eca2ee6d0)
* [Kindle Publishing guidelines](http://kindlegen.s3.amazonaws.com/AmazonKindlePublishingGuidelines.pdf)
* [KindleGen & Kindle Previewer](http://www.amazon.com/gp/feature.html?ie=UTF8&docId=1000234621)
## TODO
### Post release
* Integrate generated Kindle document in to published HTML guides
* Tweak heading styles (most docs use h3/h4/h5, which end up being smaller than the text under it)
* Tweak table styles (smaller text? Many of the tables are unusable on a Kindle in portrait mode)
* Have the HTML/XML TOC 'drill down' into the TOCs of the individual guides
* `.epub` generation.

View File

@ -0,0 +1 @@
<%= render 'license' %>

View File

@ -0,0 +1,27 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title><%= yield(:page_title) || 'Ruby on Rails Guides' %></title>
<link rel="stylesheet" type="text/css" href="stylesheets/kindle.css" />
</head>
<body class="guide">
<% if content_for? :header_section %>
<%= yield :header_section %>
<div class="pagebreak">
<% end %>
<% if content_for? :index_section %>
<%= yield :index_section %>
<div class="pagebreak">
<% end %>
<%= yield.html_safe %>
</body>
</html>

View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://www.idpf.org/2007/opf" version="2.0" unique-identifier="RailsGuides">
<metadata>
<meta name="cover" content="cover" />
<dc-metadata xmlns:dc="http://purl.org/dc/elements/1.1/">
<dc:title>Ruby on Rails Guides (<%= @version %>)</dc:title>
<dc:language>en-us</dc:language>
<dc:creator>Ruby on Rails</dc:creator>
<dc:publisher>Ruby on Rails</dc:publisher>
<dc:subject>Reference</dc:subject>
<dc:date><%= Time.now.strftime('%Y-%m-%d') %></dc:date>
<dc:description>These guides are designed to make you immediately productive with Rails, and to help you understand how all of the pieces fit together.</dc:description>
</dc-metadata>
<x-metadata>
<output content-type="application/x-mobipocket-subscription-magazine" encoding="utf-8"/>
</x-metadata>
</metadata>
<manifest>
<!-- HTML content files [mandatory] -->
<% documents_flat.each do |document| %>
<item id="<%= document['url'] %>" media-type="text/html" href="<%= document['url'] %>" />
<% end %>
<% %w{toc.html credits.html welcome.html copyright.html}.each do |url| %>
<item id="<%= url %>" media-type="text/html" href="<%= url %>" />
<% end %>
<item id="toc" media-type="application/x-dtbncx+xml" href="toc.ncx" />
<item id="cover" media-type="image/jpeg" href="images/rails_guides_kindle_cover.jpg"/>
</manifest>
<spine toc="toc">
<itemref idref="toc.html" />
<itemref idref="welcome.html" />
<itemref idref="credits.html" />
<itemref idref="copyright.html" />
<% documents_flat.each do |document| %>
<itemref idref="<%= document['url'] %>" />
<% end %>
</spine>
<guide>
<reference type="toc" title="Table of Contents" href="toc.html"></reference>
</guide>
</package>

View File

@ -0,0 +1,24 @@
<% content_for :page_title do %>
Ruby on Rails Guides
<% end %>
<h1>Table of Contents</h1>
<div id="toc">
<ul><li><a href="welcome.html">Welcome</a></li></ul>
<% documents_by_section.each_with_index do |section, i| %>
<h3><%= "#{i + 1}." %> <%= section['name'] %></h3>
<ul>
<% section['documents'].each do |document| %>
<li>
<a href="<%= document['url'] %>"><%= document['name'] %></a>
<% if document['work_in_progress']%>(WIP)<% end %>
</li>
<% end %>
</ul>
<% end %>
<hr />
<ul>
<li><a href="credits.html">Credits</a></li>
<li><a href="copyright.html">Copyright &amp; License</a></li>
<ul>
</div>

View File

@ -0,0 +1,64 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ncx PUBLIC "-//NISO//DTD ncx 2005-1//EN"
"http://www.daisy.org/z3986/2005/ncx-2005-1.dtd">
<ncx xmlns="http://www.daisy.org/z3986/2005/ncx/" version="2005-1" xml:lang="en-US">
<head>
<meta name="dtb:uid" content="RailsGuides"/>
<meta name="dtb:depth" content="2"/>
<meta name="dtb:totalPageCount" content="0"/>
<meta name="dtb:maxPageNumber" content="0"/>
</head>
<docTitle><text>Ruby on Rails Guides</text></docTitle>
<docAuthor><text>docrails</text></docAuthor>
<navMap>
<navPoint playOrder="0" class="periodical" id="periodical">
<navLabel>
<text>Table of Contents</text>
</navLabel>
<content src="toc.html"/>
<navPoint class="section" id="welcome" playOrder="1">
<navLabel>
<text>Introduction</text>
</navLabel>
<content src="welcome.html"/>
<navPoint class="article" id="welcome" playOrder="2">
<navLabel>
<text>Welcome</text>
</navLabel>
<content src="welcome.html"/>
</navPoint>
<navPoint class="article" id="credits" playOrder="3">
<navLabel><text>Credits</text></navLabel>
<content src="credits.html">
</navPoint>
<navPoint class="article" id="copyright" playOrder="4">
<navLabel><text>Copyright &amp; License</text></navLabel>
<content src="copyright.html">
</navPoint>
</navPoint>
<% play_order = 4 %>
<% documents_by_section.each_with_index do |section, section_no| %>
<navPoint class="section" id="chapter_<%= section_no + 1 %>" playOrder="<% play_order +=1 %>">
<navLabel>
<text><%= section['name'] %></text>
</navLabel>
<content src="<%=section['documents'].first['url'] %>"/>
<% section['documents'].each_with_index do |document, document_no| %>
<navPoint class="article" id="_<%=section_no+1%>.<%=document_no+1%>" playOrder="<%=play_order +=1 %>">
<navLabel>
<text><%= document['name'] %></text>
</navLabel>
<content src="<%=document['url'] %>"/>
</navPoint>
<% end %>
</navPoint>
<% end %>
</navPoint>
</navMap>
</ncx>

View File

@ -0,0 +1,5 @@
<%= render 'welcome' %>
<h3>Kindle Edition</h3>
The Kindle Edition of the Rails Guides should be considered a 'work in progress'. Track changes and raise issues at <a href="https://github.com/mipearson/rails/tree/guides_for_kindle">https://github.com/mipearson/rails/tree/guides_for_kindle</a>.

View File

@ -143,8 +143,7 @@
<hr class="hide" />
<div id="footer">
<div class="wrapper">
<p>This work is licensed under a <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-Share Alike 3.0</a> License</p>
<p>"Rails", "Ruby on Rails", and the Rails logo are trademarks of David Heinemeier Hansson. All rights reserved.</p>
<%= render 'license' %>
</div>
</div>