From 657476743ebf85ce1bb95aa8b9b486b48092aad1 Mon Sep 17 00:00:00 2001 From: Pratik Naik Date: Tue, 21 Oct 2008 17:10:21 +0100 Subject: Use custom templates and stuff --- .../doc/guides/html/actioncontroller_basics.html | 8 +- railties/doc/guides/html/association_basics.html | 8 +- railties/doc/guides/html/authors.html | 8 +- .../guides/html/benchmarking_and_profiling.html | 8 +- railties/doc/guides/html/caching_with_rails.html | 8 +- railties/doc/guides/html/creating_plugins.html | 8 +- .../guides/html/debugging_rails_applications.html | 8 +- railties/doc/guides/html/finders.html | 8 +- railties/doc/guides/html/form_helpers.html | 8 +- .../guides/html/getting_started_with_rails.html | 22 +- railties/doc/guides/html/index.html | 36 +-- .../doc/guides/html/layouts_and_rendering.html | 8 +- railties/doc/guides/html/migrations.html | 8 +- railties/doc/guides/html/routing_outside_in.html | 8 +- railties/doc/guides/html/security.html | 8 +- .../guides/html/testing_rails_applications.html | 8 +- railties/doc/guides/source/index.txt | 28 +- railties/doc/guides/source/stylesheets/base.css | 358 +++++++++++++++++++++ railties/doc/guides/source/stylesheets/forms.css | 35 ++ railties/doc/guides/source/stylesheets/more.css | 82 +++++ .../doc/guides/source/templates/guides.html.erb | 97 ++++++ railties/doc/guides/source/templates/inline.css | 165 ++++++++++ 22 files changed, 836 insertions(+), 99 deletions(-) create mode 100644 railties/doc/guides/source/stylesheets/base.css create mode 100644 railties/doc/guides/source/stylesheets/forms.css create mode 100644 railties/doc/guides/source/stylesheets/more.css create mode 100644 railties/doc/guides/source/templates/guides.html.erb create mode 100644 railties/doc/guides/source/templates/inline.css (limited to 'railties/doc') diff --git a/railties/doc/guides/html/actioncontroller_basics.html b/railties/doc/guides/html/actioncontroller_basics.html index 4df3a7e9b2..98ce2b48bf 100644 --- a/railties/doc/guides/html/actioncontroller_basics.html +++ b/railties/doc/guides/html/actioncontroller_basics.html @@ -6,9 +6,9 @@ - - - + + + + + + + +
class="notoc"<% end %>> + <% if show_toc %> + + <% end %> +
+ <%- if multi_page? && !is_preamble? -%> +

<%= current_chapter.title %>

+ <%- else -%> +

<%=h title %>

+ <%- end -%> + <%= contents %> + <%- if multi_page? -%> +
+ <%- if prev_chapter -%> + + <%- end -%> + <%- if next_chapter -%> + + <%- end -%> +
+ <%- end -%> +
+
+ + diff --git a/railties/doc/guides/source/templates/inline.css b/railties/doc/guides/source/templates/inline.css new file mode 100644 index 0000000000..66964c80e5 --- /dev/null +++ b/railties/doc/guides/source/templates/inline.css @@ -0,0 +1,165 @@ +div#container { + max-width: 900px; + padding-bottom: 3em; +} + +div#content { + margin-left: 200px; +} + +div#container.notoc { + max-width: 600px; +} + +.notoc div#content { + margin-left: 0; +} + +pre { + line-height: 1.4em; +} + +#content p tt { + background: #eeeeee; + border: solid 1px #cccccc; + padding: 3px; +} + +dt { + font-weight: bold; +} + +#content dt tt { + font-size: 10pt; +} + +dd { + margin-left: 3em; +} + +#content dt tt, #content pre tt { + background: none; + padding: 0; + border: 0; +} + +#content .olist ol { + margin-left: 2em; +} + +#header { + position: relative; + max-width: 840px; + margin-left: auto; + margin-right: auto; +} + +#header.notoc { + max-width: 580px; +} + +#logo { + position: absolute; + left: 10px; + top: 10px; + width: 110px; + height: 140px; +} + +div#header h1#site_title { + background: url('http://web.rubyonrails.com/images/ruby_on_rails_by_mike_rundle2.gif') top left no-repeat; + position: absolute; + width: 392px; + height: 55px; + left: 145px; + top: 20px; + margin: 0; + padding: 0; +} + +#site_title span { + display: none; +} + +#site_title_tagline { + display: none; +} + +ul#navMain { + position: absolute; + margin: 0; + padding: 0; + top: 97px; + left: 145px; +} + +.left-floaty, .right-floaty { + padding: 15px; +} + +.admonitionblock, +.tableblock { + margin-left: 1em; + margin-right: 1em; + margin-top: 0.25em; + margin-bottom: 1em; +} + +.admonitionblock .icon { + padding-right: 8px; +} + +.admonitionblock .content { + border: solid 1px #ffda78; + background: #fffebd; + padding: 10px; + padding-top: 8px; + padding-bottom: 8px; +} + +.admonitionblock .title { + font-size: 140%; + margin-bottom: 0.5em; +} + +.tableblock table { + border: solid 1px #aaaaff; + background: #f0f0ff; +} + +.tableblock th { + background: #e0e0e0; +} + +.tableblock th, +.tableblock td { + padding: 3px; + padding-left: 5px; + padding-right: 5px; +} + +.sidebarblock { + margin-top: 0.25em; + margin: 1em; + border: solid 1px #ccccbb; + padding: 8px; + background: #ffffe0; +} + +.sidebarblock .sidebar-title { + font-size: 140%; + font-weight: 600; + margin-bottom: 0.3em; +} + +.sidebarblock .sidebar-content > .para:last-child > p { + margin-bottom: 0; +} + +.sidebarblock .sidebar-title a { + text-decoration: none; +} + +.sidebarblock .sidebar-title a:hover { + text-decoration: underline; +} -- cgit v1.2.3