Created
December 22, 2010 08:55
-
-
Save matthewd/751287 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From e925fe3d38d907d57c46e53809d0252929b3b9fd Mon Sep 17 00:00:00 2001 | |
| From: Matthew Draper <[email protected]> | |
| Date: Wed, 22 Dec 2010 20:04:35 +1030 | |
| Subject: [PATCH 1/3] Use UTC in XML timestamps, to avoid duelling regenerations. | |
| --- | |
| web/_site/feed/atom.xml | 4 ++-- | |
| web/feed/atom.xml | 4 ++-- | |
| 2 files changed, 4 insertions(+), 4 deletions(-) | |
| diff --git a/web/_site/feed/atom.xml b/web/_site/feed/atom.xml | |
| index b47d886..90d9973 100644 | |
| --- a/web/_site/feed/atom.xml | |
| +++ b/web/_site/feed/atom.xml | |
| @@ -5,7 +5,7 @@ | |
| <link href="http://rubini.us/atom.xml" rel="self"/> | |
| <link href="http://rubini.us/"/> | |
| - <updated>2010-12-15T00:00:00-08:00</updated> | |
| + <updated>2010-12-15T00:00:00+00:00</updated> | |
| <id>http://rubini.us/</id> | |
| @@ -14,7 +14,7 @@ | |
| <author><name>Brian Ford</name></author> | |
| <title>Rubinius Has a Blog!</title> | |
| <link href="http://rubini.us/2010/12/15/rubinius-has-a-blog/"/> | |
| - <updated>2010-12-15T00:00:00-08:00</updated> | |
| + <updated>2010-12-15T00:00:00+00:00</updated> | |
| <id>http://rubini.us/2010/12/15/rubinius-has-a-blog</id> | |
| <content type="html"><p>Many thought the day would never come, but Rubinius finally has a blog. That&rsquo;s | |
| not all, though: We have integrated the website, blog, and documentation using | |
| diff --git a/web/feed/atom.xml b/web/feed/atom.xml | |
| index b4fac57..482a551 100644 | |
| --- a/web/feed/atom.xml | |
| +++ b/web/feed/atom.xml | |
| @@ -8,7 +8,7 @@ layout: nil | |
| <link href="http://rubini.us/atom.xml" rel="self"/> | |
| <link href="http://rubini.us/"/> | |
| {% for post in site.posts limit:1 %} | |
| - <updated>{{ post.date | date_to_xmlschema }}</updated> | |
| + <updated>{{ post.date | date: '%Y-%m-%dT00:00:00+00:00' }}</updated> | |
| {% endfor %} | |
| <id>http://rubini.us/</id> | |
| @@ -17,7 +17,7 @@ layout: nil | |
| <author><name>{{ post.author }}</name></author> | |
| <title>{{ post.title }}</title> | |
| <link href="http://rubini.us{{ post.url }}"/> | |
| - <updated>{{ post.date | date_to_xmlschema }}</updated> | |
| + <updated>{{ post.date | date: '%Y-%m-%dT00:00:00+00:00' }}</updated> | |
| <id>http://rubini.us{{ post.id }}</id> | |
| <content type="html">{{ post.content | xml_escape }}</content> | |
| </entry> | |
| -- | |
| 1.7.2.3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 5860dae0fe0e588ce84d1b84c7c65037ee7477e4 Mon Sep 17 00:00:00 2001 | |
| From: Matthew Draper <[email protected]> | |
| Date: Wed, 22 Dec 2010 20:09:57 +1030 | |
| Subject: [PATCH 2/3] Add links to next and prev; use per-page titles. | |
| --- | |
| web/_layouts/page.html | 6 ++++-- | |
| .../2010/12/15/rubinius-has-a-blog/index.html | 4 +++- | |
| web/_site/about/1.1.1/index.html | 2 ++ | |
| web/_site/about/one_one/index.html | 2 ++ | |
| web/_site/about/one_point_oh/index.html | 2 ++ | |
| web/_site/about/one_point_one/index.html | 2 ++ | |
| web/_site/blog/index.html | 2 ++ | |
| web/_site/doc/de/appendix-a-glossary/index.html | 6 ++++-- | |
| .../doc/de/appendix-b-reading-list/index.html | 6 ++++-- | |
| web/_site/doc/de/bootstrapping/index.html | 6 ++++-- | |
| web/_site/doc/de/build-system/index.html | 6 ++++-- | |
| web/_site/doc/de/bytecode-compiler/ast/index.html | 6 ++++-- | |
| .../doc/de/bytecode-compiler/compiler/index.html | 6 ++++-- | |
| .../doc/de/bytecode-compiler/generator/index.html | 6 ++++-- | |
| web/_site/doc/de/bytecode-compiler/index.html | 6 ++++-- | |
| .../doc/de/bytecode-compiler/parser/index.html | 6 ++++-- | |
| .../bytecode-compiler/transformations/index.html | 6 ++++-- | |
| .../doc/de/contributing/communication/index.html | 6 ++++-- | |
| web/_site/doc/de/contributing/index.html | 6 ++++-- | |
| .../doc/de/contributing/style-guide/index.html | 6 ++++-- | |
| web/_site/doc/de/garbage-collector/index.html | 6 ++++-- | |
| .../de/garbage-collector/large-objects/index.html | 6 ++++-- | |
| .../garbage-collector/mature-generation/index.html | 6 ++++-- | |
| .../doc/de/garbage-collector/nursery/index.html | 6 ++++-- | |
| .../garbage-collector/young-generation/index.html | 6 ++++-- | |
| .../doc/de/getting-started/building/index.html | 6 ++++-- | |
| web/_site/doc/de/getting-started/index.html | 6 ++++-- | |
| .../doc/de/getting-started/requirements/index.html | 6 ++++-- | |
| .../de/getting-started/running-rubinius/index.html | 6 ++++-- | |
| .../de/getting-started/troubleshooting/index.html | 6 ++++-- | |
| .../doc/de/how-to/fix-a-failing-spec/index.html | 6 ++++-- | |
| web/_site/doc/de/how-to/index.html | 6 ++++-- | |
| .../de/how-to/translate-documentation/index.html | 6 ++++-- | |
| .../doc/de/how-to/write-a-blog-post/index.html | 6 ++++-- | |
| .../doc/de/how-to/write-a-ruby-spec/index.html | 6 ++++-- | |
| web/_site/doc/de/how-to/write-a-ticket/index.html | 6 ++++-- | |
| .../doc/de/how-to/write-documentation/index.html | 6 ++++-- | |
| web/_site/doc/de/index-of-terms/index.html | 6 ++++-- | |
| web/_site/doc/de/index.html | 6 ++++-- | |
| web/_site/doc/de/jit/index.html | 6 ++++-- | |
| web/_site/doc/de/ruby/blocks-and-procs/index.html | 6 ++++-- | |
| web/_site/doc/de/ruby/class-variables/index.html | 6 ++++-- | |
| .../doc/de/ruby/classes-and-modules/index.html | 6 ++++-- | |
| web/_site/doc/de/ruby/constants/index.html | 6 ++++-- | |
| web/_site/doc/de/ruby/global-variables/index.html | 6 ++++-- | |
| web/_site/doc/de/ruby/index.html | 6 ++++-- | |
| .../doc/de/ruby/instance-variables/index.html | 6 ++++-- | |
| web/_site/doc/de/ruby/local-variables/index.html | 6 ++++-- | |
| web/_site/doc/de/ruby/methods/index.html | 6 ++++-- | |
| web/_site/doc/de/ruby/scripts/index.html | 6 ++++-- | |
| web/_site/doc/de/specs/compiler/index.html | 6 ++++-- | |
| web/_site/doc/de/specs/index.html | 6 ++++-- | |
| web/_site/doc/de/specs/rubyspec/index.html | 6 ++++-- | |
| web/_site/doc/de/systems/c-api/index.html | 6 ++++-- | |
| web/_site/doc/de/systems/concurrency/index.html | 6 ++++-- | |
| web/_site/doc/de/systems/ffi/index.html | 6 ++++-- | |
| web/_site/doc/de/systems/index.html | 6 ++++-- | |
| web/_site/doc/de/systems/io/index.html | 6 ++++-- | |
| web/_site/doc/de/systems/primitives/index.html | 6 ++++-- | |
| web/_site/doc/de/tools/debugger/index.html | 6 ++++-- | |
| web/_site/doc/de/tools/index.html | 6 ++++-- | |
| web/_site/doc/de/tools/memory-analysis/index.html | 6 ++++-- | |
| web/_site/doc/de/tools/profiler/index.html | 6 ++++-- | |
| .../custom-dispatch-logic/index.html | 6 ++++-- | |
| web/_site/doc/de/virtual-machine/index.html | 6 ++++-- | |
| .../doc/de/virtual-machine/instructions/index.html | 6 ++++-- | |
| web/_site/doc/de/what-is-rubinius/index.html | 4 +++- | |
| web/_site/doc/en/appendix-a-glossary/index.html | 4 +++- | |
| .../doc/en/appendix-b-reading-list/index.html | 4 +++- | |
| web/_site/doc/en/bootstrapping/index.html | 4 +++- | |
| web/_site/doc/en/build-system/index.html | 4 +++- | |
| web/_site/doc/en/bytecode-compiler/ast/index.html | 4 +++- | |
| .../doc/en/bytecode-compiler/compiler/index.html | 4 +++- | |
| .../doc/en/bytecode-compiler/generator/index.html | 4 +++- | |
| web/_site/doc/en/bytecode-compiler/index.html | 4 +++- | |
| .../doc/en/bytecode-compiler/parser/index.html | 4 +++- | |
| .../bytecode-compiler/transformations/index.html | 4 +++- | |
| .../doc/en/contributing/communication/index.html | 4 +++- | |
| web/_site/doc/en/contributing/index.html | 4 +++- | |
| .../doc/en/contributing/style-guide/index.html | 4 +++- | |
| web/_site/doc/en/garbage-collector/index.html | 4 +++- | |
| .../en/garbage-collector/large-objects/index.html | 4 +++- | |
| .../garbage-collector/mature-generation/index.html | 4 +++- | |
| .../doc/en/garbage-collector/nursery/index.html | 4 +++- | |
| .../garbage-collector/young-generation/index.html | 4 +++- | |
| .../doc/en/getting-started/building/index.html | 4 +++- | |
| web/_site/doc/en/getting-started/index.html | 4 +++- | |
| .../doc/en/getting-started/requirements/index.html | 4 +++- | |
| .../en/getting-started/running-rubinius/index.html | 4 +++- | |
| .../en/getting-started/troubleshooting/index.html | 4 +++- | |
| .../doc/en/how-to/fix-a-failing-spec/index.html | 4 +++- | |
| web/_site/doc/en/how-to/index.html | 4 +++- | |
| .../en/how-to/translate-documentation/index.html | 4 +++- | |
| .../doc/en/how-to/write-a-blog-post/index.html | 4 +++- | |
| .../doc/en/how-to/write-a-ruby-spec/index.html | 4 +++- | |
| web/_site/doc/en/how-to/write-a-ticket/index.html | 4 +++- | |
| .../doc/en/how-to/write-documentation/index.html | 4 +++- | |
| web/_site/doc/en/index-of-terms/index.html | 4 +++- | |
| web/_site/doc/en/index.html | 4 +++- | |
| web/_site/doc/en/jit/index.html | 4 +++- | |
| web/_site/doc/en/ruby/blocks-and-procs/index.html | 4 +++- | |
| web/_site/doc/en/ruby/class-variables/index.html | 4 +++- | |
| .../doc/en/ruby/classes-and-modules/index.html | 4 +++- | |
| web/_site/doc/en/ruby/constants/index.html | 4 +++- | |
| web/_site/doc/en/ruby/global-variables/index.html | 4 +++- | |
| web/_site/doc/en/ruby/index.html | 4 +++- | |
| .../doc/en/ruby/instance-variables/index.html | 4 +++- | |
| web/_site/doc/en/ruby/local-variables/index.html | 4 +++- | |
| web/_site/doc/en/ruby/methods/index.html | 4 +++- | |
| web/_site/doc/en/ruby/scripts/index.html | 4 +++- | |
| web/_site/doc/en/specs/compiler/index.html | 4 +++- | |
| web/_site/doc/en/specs/index.html | 4 +++- | |
| web/_site/doc/en/specs/rubyspec/index.html | 4 +++- | |
| web/_site/doc/en/systems/c-api/index.html | 4 +++- | |
| web/_site/doc/en/systems/concurrency/index.html | 4 +++- | |
| web/_site/doc/en/systems/ffi/index.html | 4 +++- | |
| web/_site/doc/en/systems/index.html | 4 +++- | |
| web/_site/doc/en/systems/io/index.html | 4 +++- | |
| web/_site/doc/en/systems/primitives/index.html | 4 +++- | |
| web/_site/doc/en/tools/debugger/index.html | 4 +++- | |
| web/_site/doc/en/tools/index.html | 4 +++- | |
| web/_site/doc/en/tools/memory-analysis/index.html | 4 +++- | |
| web/_site/doc/en/tools/profiler/index.html | 4 +++- | |
| .../custom-dispatch-logic/index.html | 4 +++- | |
| web/_site/doc/en/virtual-machine/index.html | 4 +++- | |
| .../doc/en/virtual-machine/instructions/index.html | 4 +++- | |
| web/_site/doc/en/what-is-rubinius/index.html | 2 ++ | |
| web/_site/doc/es/appendix-a-glossary/index.html | 6 ++++-- | |
| .../doc/es/appendix-b-reading-list/index.html | 6 ++++-- | |
| web/_site/doc/es/bootstrapping/index.html | 6 ++++-- | |
| web/_site/doc/es/build-system/index.html | 6 ++++-- | |
| web/_site/doc/es/bytecode-compiler/ast/index.html | 6 ++++-- | |
| .../doc/es/bytecode-compiler/compiler/index.html | 6 ++++-- | |
| .../doc/es/bytecode-compiler/generator/index.html | 6 ++++-- | |
| web/_site/doc/es/bytecode-compiler/index.html | 6 ++++-- | |
| .../doc/es/bytecode-compiler/parser/index.html | 6 ++++-- | |
| .../bytecode-compiler/transformations/index.html | 6 ++++-- | |
| .../doc/es/contributing/communication/index.html | 6 ++++-- | |
| web/_site/doc/es/contributing/index.html | 6 ++++-- | |
| .../doc/es/contributing/style-guide/index.html | 6 ++++-- | |
| web/_site/doc/es/garbage-collector/index.html | 6 ++++-- | |
| .../es/garbage-collector/large-objects/index.html | 6 ++++-- | |
| .../garbage-collector/mature-generation/index.html | 6 ++++-- | |
| .../doc/es/garbage-collector/nursery/index.html | 6 ++++-- | |
| .../garbage-collector/young-generation/index.html | 6 ++++-- | |
| .../doc/es/getting-started/building/index.html | 6 ++++-- | |
| web/_site/doc/es/getting-started/index.html | 6 ++++-- | |
| .../doc/es/getting-started/requirements/index.html | 6 ++++-- | |
| .../es/getting-started/running-rubinius/index.html | 6 ++++-- | |
| .../es/getting-started/troubleshooting/index.html | 6 ++++-- | |
| .../doc/es/how-to/fix-a-failing-spec/index.html | 6 ++++-- | |
| web/_site/doc/es/how-to/index.html | 6 ++++-- | |
| .../es/how-to/translate-documentation/index.html | 6 ++++-- | |
| .../doc/es/how-to/write-a-blog-post/index.html | 6 ++++-- | |
| .../doc/es/how-to/write-a-ruby-spec/index.html | 6 ++++-- | |
| web/_site/doc/es/how-to/write-a-ticket/index.html | 6 ++++-- | |
| .../doc/es/how-to/write-documentation/index.html | 6 ++++-- | |
| web/_site/doc/es/index-of-terms/index.html | 6 ++++-- | |
| web/_site/doc/es/index.html | 6 ++++-- | |
| web/_site/doc/es/jit/index.html | 6 ++++-- | |
| web/_site/doc/es/ruby/blocks-and-procs/index.html | 6 ++++-- | |
| web/_site/doc/es/ruby/class-variables/index.html | 6 ++++-- | |
| .../doc/es/ruby/classes-and-modules/index.html | 6 ++++-- | |
| web/_site/doc/es/ruby/constants/index.html | 6 ++++-- | |
| web/_site/doc/es/ruby/global-variables/index.html | 6 ++++-- | |
| web/_site/doc/es/ruby/index.html | 6 ++++-- | |
| .../doc/es/ruby/instance-variables/index.html | 6 ++++-- | |
| web/_site/doc/es/ruby/local-variables/index.html | 6 ++++-- | |
| web/_site/doc/es/ruby/methods/index.html | 6 ++++-- | |
| web/_site/doc/es/ruby/scripts/index.html | 6 ++++-- | |
| web/_site/doc/es/specs/compiler/index.html | 6 ++++-- | |
| web/_site/doc/es/specs/index.html | 6 ++++-- | |
| web/_site/doc/es/specs/rubyspec/index.html | 6 ++++-- | |
| web/_site/doc/es/systems/c-api/index.html | 6 ++++-- | |
| web/_site/doc/es/systems/concurrency/index.html | 6 ++++-- | |
| web/_site/doc/es/systems/ffi/index.html | 6 ++++-- | |
| web/_site/doc/es/systems/index.html | 6 ++++-- | |
| web/_site/doc/es/systems/io/index.html | 6 ++++-- | |
| web/_site/doc/es/systems/primitives/index.html | 6 ++++-- | |
| web/_site/doc/es/tools/debugger/index.html | 6 ++++-- | |
| web/_site/doc/es/tools/index.html | 6 ++++-- | |
| web/_site/doc/es/tools/memory-analysis/index.html | 6 ++++-- | |
| web/_site/doc/es/tools/profiler/index.html | 6 ++++-- | |
| .../custom-dispatch-logic/index.html | 6 ++++-- | |
| web/_site/doc/es/virtual-machine/index.html | 6 ++++-- | |
| .../doc/es/virtual-machine/instructions/index.html | 6 ++++-- | |
| web/_site/doc/es/what-is-rubinius/index.html | 4 +++- | |
| web/_site/doc/index.html | 2 ++ | |
| web/_site/doc/ja/appendix-a-glossary/index.html | 6 ++++-- | |
| .../doc/ja/appendix-b-reading-list/index.html | 6 ++++-- | |
| web/_site/doc/ja/bootstrapping/index.html | 6 ++++-- | |
| web/_site/doc/ja/build-system/index.html | 6 ++++-- | |
| web/_site/doc/ja/bytecode-compiler/ast/index.html | 6 ++++-- | |
| .../doc/ja/bytecode-compiler/compiler/index.html | 6 ++++-- | |
| .../doc/ja/bytecode-compiler/generator/index.html | 6 ++++-- | |
| web/_site/doc/ja/bytecode-compiler/index.html | 6 ++++-- | |
| .../doc/ja/bytecode-compiler/parser/index.html | 6 ++++-- | |
| .../bytecode-compiler/transformations/index.html | 6 ++++-- | |
| .../doc/ja/contributing/communication/index.html | 6 ++++-- | |
| web/_site/doc/ja/contributing/index.html | 6 ++++-- | |
| .../doc/ja/contributing/style-guide/index.html | 6 ++++-- | |
| web/_site/doc/ja/garbage-collector/index.html | 6 ++++-- | |
| .../ja/garbage-collector/large-objects/index.html | 6 ++++-- | |
| .../garbage-collector/mature-generation/index.html | 6 ++++-- | |
| .../doc/ja/garbage-collector/nursery/index.html | 6 ++++-- | |
| .../garbage-collector/young-generation/index.html | 6 ++++-- | |
| .../doc/ja/getting-started/building/index.html | 6 ++++-- | |
| web/_site/doc/ja/getting-started/index.html | 6 ++++-- | |
| .../doc/ja/getting-started/requirements/index.html | 6 ++++-- | |
| .../ja/getting-started/running-rubinius/index.html | 6 ++++-- | |
| .../ja/getting-started/troubleshooting/index.html | 6 ++++-- | |
| .../doc/ja/how-to/fix-a-failing-spec/index.html | 6 ++++-- | |
| web/_site/doc/ja/how-to/index.html | 6 ++++-- | |
| .../ja/how-to/translate-documentation/index.html | 6 ++++-- | |
| .../doc/ja/how-to/write-a-blog-post/index.html | 6 ++++-- | |
| .../doc/ja/how-to/write-a-ruby-spec/index.html | 6 ++++-- | |
| web/_site/doc/ja/how-to/write-a-ticket/index.html | 6 ++++-- | |
| .../doc/ja/how-to/write-documentation/index.html | 6 ++++-- | |
| web/_site/doc/ja/index-of-terms/index.html | 6 ++++-- | |
| web/_site/doc/ja/index.html | 6 ++++-- | |
| web/_site/doc/ja/jit/index.html | 6 ++++-- | |
| web/_site/doc/ja/ruby/blocks-and-procs/index.html | 6 ++++-- | |
| web/_site/doc/ja/ruby/class-variables/index.html | 6 ++++-- | |
| .../doc/ja/ruby/classes-and-modules/index.html | 6 ++++-- | |
| web/_site/doc/ja/ruby/constants/index.html | 6 ++++-- | |
| web/_site/doc/ja/ruby/global-variables/index.html | 6 ++++-- | |
| web/_site/doc/ja/ruby/index.html | 6 ++++-- | |
| .../doc/ja/ruby/instance-variables/index.html | 6 ++++-- | |
| web/_site/doc/ja/ruby/local-variables/index.html | 6 ++++-- | |
| web/_site/doc/ja/ruby/methods/index.html | 6 ++++-- | |
| web/_site/doc/ja/ruby/scripts/index.html | 6 ++++-- | |
| web/_site/doc/ja/specs/compiler/index.html | 6 ++++-- | |
| web/_site/doc/ja/specs/index.html | 6 ++++-- | |
| web/_site/doc/ja/specs/rubyspec/index.html | 6 ++++-- | |
| web/_site/doc/ja/systems/c-api/index.html | 6 ++++-- | |
| web/_site/doc/ja/systems/concurrency/index.html | 6 ++++-- | |
| web/_site/doc/ja/systems/ffi/index.html | 6 ++++-- | |
| web/_site/doc/ja/systems/index.html | 6 ++++-- | |
| web/_site/doc/ja/systems/io/index.html | 6 ++++-- | |
| web/_site/doc/ja/systems/primitives/index.html | 6 ++++-- | |
| web/_site/doc/ja/tools/debugger/index.html | 6 ++++-- | |
| web/_site/doc/ja/tools/index.html | 6 ++++-- | |
| web/_site/doc/ja/tools/memory-analysis/index.html | 6 ++++-- | |
| web/_site/doc/ja/tools/profiler/index.html | 6 ++++-- | |
| .../custom-dispatch-logic/index.html | 6 ++++-- | |
| web/_site/doc/ja/virtual-machine/index.html | 6 ++++-- | |
| .../doc/ja/virtual-machine/instructions/index.html | 6 ++++-- | |
| web/_site/doc/ja/what-is-rubinius/index.html | 4 +++- | |
| web/_site/doc/ru/appendix-a-glossary/index.html | 6 ++++-- | |
| .../doc/ru/appendix-b-reading-list/index.html | 6 ++++-- | |
| web/_site/doc/ru/bootstrapping/index.html | 6 ++++-- | |
| web/_site/doc/ru/build-system/index.html | 6 ++++-- | |
| web/_site/doc/ru/bytecode-compiler/ast/index.html | 6 ++++-- | |
| .../doc/ru/bytecode-compiler/compiler/index.html | 6 ++++-- | |
| .../doc/ru/bytecode-compiler/generator/index.html | 6 ++++-- | |
| web/_site/doc/ru/bytecode-compiler/index.html | 6 ++++-- | |
| .../doc/ru/bytecode-compiler/parser/index.html | 6 ++++-- | |
| .../bytecode-compiler/transformations/index.html | 6 ++++-- | |
| .../doc/ru/contributing/communication/index.html | 6 ++++-- | |
| web/_site/doc/ru/contributing/index.html | 6 ++++-- | |
| .../doc/ru/contributing/style-guide/index.html | 6 ++++-- | |
| web/_site/doc/ru/garbage-collector/index.html | 6 ++++-- | |
| .../ru/garbage-collector/large-objects/index.html | 6 ++++-- | |
| .../garbage-collector/mature-generation/index.html | 6 ++++-- | |
| .../doc/ru/garbage-collector/nursery/index.html | 6 ++++-- | |
| .../garbage-collector/young-generation/index.html | 6 ++++-- | |
| .../doc/ru/getting-started/building/index.html | 6 ++++-- | |
| web/_site/doc/ru/getting-started/index.html | 6 ++++-- | |
| .../doc/ru/getting-started/requirements/index.html | 6 ++++-- | |
| .../ru/getting-started/running-rubinius/index.html | 6 ++++-- | |
| .../ru/getting-started/troubleshooting/index.html | 6 ++++-- | |
| .../doc/ru/how-to/fix-a-failing-spec/index.html | 6 ++++-- | |
| web/_site/doc/ru/how-to/index.html | 6 ++++-- | |
| .../ru/how-to/translate-documentation/index.html | 6 ++++-- | |
| .../doc/ru/how-to/write-a-blog-post/index.html | 6 ++++-- | |
| .../doc/ru/how-to/write-a-ruby-spec/index.html | 6 ++++-- | |
| web/_site/doc/ru/how-to/write-a-ticket/index.html | 6 ++++-- | |
| .../doc/ru/how-to/write-documentation/index.html | 6 ++++-- | |
| web/_site/doc/ru/index-of-terms/index.html | 6 ++++-- | |
| web/_site/doc/ru/index.html | 6 ++++-- | |
| web/_site/doc/ru/jit/index.html | 6 ++++-- | |
| web/_site/doc/ru/ruby/blocks-and-procs/index.html | 6 ++++-- | |
| web/_site/doc/ru/ruby/class-variables/index.html | 6 ++++-- | |
| .../doc/ru/ruby/classes-and-modules/index.html | 6 ++++-- | |
| web/_site/doc/ru/ruby/constants/index.html | 6 ++++-- | |
| web/_site/doc/ru/ruby/global-variables/index.html | 6 ++++-- | |
| web/_site/doc/ru/ruby/index.html | 6 ++++-- | |
| .../doc/ru/ruby/instance-variables/index.html | 6 ++++-- | |
| web/_site/doc/ru/ruby/local-variables/index.html | 6 ++++-- | |
| web/_site/doc/ru/ruby/methods/index.html | 6 ++++-- | |
| web/_site/doc/ru/ruby/scripts/index.html | 6 ++++-- | |
| web/_site/doc/ru/specs/compiler/index.html | 6 ++++-- | |
| web/_site/doc/ru/specs/index.html | 6 ++++-- | |
| web/_site/doc/ru/specs/rubyspec/index.html | 6 ++++-- | |
| web/_site/doc/ru/systems/c-api/index.html | 6 ++++-- | |
| web/_site/doc/ru/systems/concurrency/index.html | 6 ++++-- | |
| web/_site/doc/ru/systems/ffi/index.html | 6 ++++-- | |
| web/_site/doc/ru/systems/index.html | 6 ++++-- | |
| web/_site/doc/ru/systems/io/index.html | 6 ++++-- | |
| web/_site/doc/ru/systems/primitives/index.html | 6 ++++-- | |
| web/_site/doc/ru/tools/debugger/index.html | 6 ++++-- | |
| web/_site/doc/ru/tools/index.html | 6 ++++-- | |
| web/_site/doc/ru/tools/memory-analysis/index.html | 6 ++++-- | |
| web/_site/doc/ru/tools/profiler/index.html | 6 ++++-- | |
| .../custom-dispatch-logic/index.html | 6 ++++-- | |
| web/_site/doc/ru/virtual-machine/index.html | 6 ++++-- | |
| .../doc/ru/virtual-machine/instructions/index.html | 6 ++++-- | |
| web/_site/doc/ru/what-is-rubinius/index.html | 4 +++- | |
| web/_site/index.html | 2 ++ | |
| web/_site/projects/index.html | 2 ++ | |
| web/_site/releases/1.0.0/index.html | 2 ++ | |
| web/_site/releases/1.0.1/index.html | 2 ++ | |
| web/_site/releases/1.1.0/index.html | 2 ++ | |
| web/_site/releases/1.1.1/index.html | 2 ++ | |
| web/_site/releases/1.2.0/index.html | 2 ++ | |
| web/_site/releases/index.html | 2 ++ | |
| web/_site/roadmap/index.html | 2 ++ | |
| 317 files changed, 1172 insertions(+), 538 deletions(-) | |
| diff --git a/web/_layouts/page.html b/web/_layouts/page.html | |
| index cbacb0b..56d8a3f 100644 | |
| --- a/web/_layouts/page.html | |
| +++ b/web/_layouts/page.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>{% if page.title %}{{ page.title }} - Rubinius{% else %}Rubinius : Use Ruby™{% endif %}</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='{% if page.lang %}{{ page.lang }}{% else %}en{% endif %}' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + {% if page.previous_url %}<link href='{{ page.base_dir }}{{ page.previous_url }}' rel='prev' title='{{ page.previous }}'>{% endif %} | |
| + {% if page.next_url %}<link href='{{ page.base_dir }}{{ page.next_url }}' rel='next' title='{{ page.next }}'>{% endif %} | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/2010/12/15/rubinius-has-a-blog/index.html b/web/_site/2010/12/15/rubinius-has-a-blog/index.html | |
| index bbcadca..814ba50 100644 | |
| --- a/web/_site/2010/12/15/rubinius-has-a-blog/index.html | |
| +++ b/web/_site/2010/12/15/rubinius-has-a-blog/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Rubinius Has a Blog! - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/about/1.1.1/index.html b/web/_site/about/1.1.1/index.html | |
| index c6da119..8a0b55b 100644 | |
| --- a/web/_site/about/1.1.1/index.html | |
| +++ b/web/_site/about/1.1.1/index.html | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/about/one_one/index.html b/web/_site/about/one_one/index.html | |
| index ca3f414..0574877 100644 | |
| --- a/web/_site/about/one_one/index.html | |
| +++ b/web/_site/about/one_one/index.html | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/about/one_point_oh/index.html b/web/_site/about/one_point_oh/index.html | |
| index 443f836..8c0d30c 100644 | |
| --- a/web/_site/about/one_point_oh/index.html | |
| +++ b/web/_site/about/one_point_oh/index.html | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/about/one_point_one/index.html b/web/_site/about/one_point_one/index.html | |
| index d9cde1e..a804192 100644 | |
| --- a/web/_site/about/one_point_one/index.html | |
| +++ b/web/_site/about/one_point_one/index.html | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/blog/index.html b/web/_site/blog/index.html | |
| index 8e4009d..7f5c7d1 100644 | |
| --- a/web/_site/blog/index.html | |
| +++ b/web/_site/blog/index.html | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/appendix-a-glossary/index.html b/web/_site/doc/de/appendix-a-glossary/index.html | |
| index 11dc433..19e2166 100644 | |
| --- a/web/_site/doc/de/appendix-a-glossary/index.html | |
| +++ b/web/_site/doc/de/appendix-a-glossary/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Anhang A - Glossar - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/how-to/translate-documentation' rel='prev' title='Anleitung - Übersetzen von Dokumentation'> | |
| + <link href='/doc/de/appendix-b-reading-list' rel='next' title='Anhang B - Literaturverzeichnis'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/appendix-b-reading-list/index.html b/web/_site/doc/de/appendix-b-reading-list/index.html | |
| index 92eb0b2..29a8d18 100644 | |
| --- a/web/_site/doc/de/appendix-b-reading-list/index.html | |
| +++ b/web/_site/doc/de/appendix-b-reading-list/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Anhang B - Literaturverzeichnis - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/appendix-a-glossary' rel='prev' title='Anhang A - Glossar'> | |
| + <link href='/doc/de/index-of-terms' rel='next' title='Begriffsindex'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/bootstrapping/index.html b/web/_site/doc/de/bootstrapping/index.html | |
| index f889f65..475d032 100644 | |
| --- a/web/_site/doc/de/bootstrapping/index.html | |
| +++ b/web/_site/doc/de/bootstrapping/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Bootstrapping - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/build-system' rel='prev' title='Bausystem'> | |
| + <link href='/doc/de/virtual-machine' rel='next' title='Virtuelle Maschine'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/build-system/index.html b/web/_site/doc/de/build-system/index.html | |
| index c9d9f24..2bfaf66 100644 | |
| --- a/web/_site/doc/de/build-system/index.html | |
| +++ b/web/_site/doc/de/build-system/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Build System - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/specs/compiler' rel='prev' title='Specs - Compiler'> | |
| + <link href='/doc/de/bootstrapping' rel='next' title='Bootstrapping'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/bytecode-compiler/ast/index.html b/web/_site/doc/de/bytecode-compiler/ast/index.html | |
| index d7618a8..c5c9070 100644 | |
| --- a/web/_site/doc/de/bytecode-compiler/ast/index.html | |
| +++ b/web/_site/doc/de/bytecode-compiler/ast/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Abstract Syntax Trees - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/bytecode-compiler/parser' rel='prev' title='Parser'> | |
| + <link href='/doc/de/bytecode-compiler/compiler' rel='next' title='Compiler'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/bytecode-compiler/compiler/index.html b/web/_site/doc/de/bytecode-compiler/compiler/index.html | |
| index c7e2c78..c309a8b 100644 | |
| --- a/web/_site/doc/de/bytecode-compiler/compiler/index.html | |
| +++ b/web/_site/doc/de/bytecode-compiler/compiler/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Compiler - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/bytecode-compiler/ast' rel='prev' title='AST'> | |
| + <link href='/doc/de/bytecode-compiler/transformations' rel='next' title='Transformations'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/bytecode-compiler/generator/index.html b/web/_site/doc/de/bytecode-compiler/generator/index.html | |
| index df45a79..4477788 100644 | |
| --- a/web/_site/doc/de/bytecode-compiler/generator/index.html | |
| +++ b/web/_site/doc/de/bytecode-compiler/generator/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Generator - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/bytecode-compiler/transformations' rel='prev' title='Transformations'> | |
| + <link href='/doc/de/jit' rel='next' title='JIT Compiler'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/bytecode-compiler/index.html b/web/_site/doc/de/bytecode-compiler/index.html | |
| index b779e3c..00515ba 100644 | |
| --- a/web/_site/doc/de/bytecode-compiler/index.html | |
| +++ b/web/_site/doc/de/bytecode-compiler/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Bytecode Compiler - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/virtual-machine/custom-dispatch-logic' rel='prev' title='Virtual Machine - Custom Dispatch Logic'> | |
| + <link href='/doc/de/bytecode-compiler/parser' rel='next' title='Parser'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/bytecode-compiler/parser/index.html b/web/_site/doc/de/bytecode-compiler/parser/index.html | |
| index 58f7c79..6ff17ce 100644 | |
| --- a/web/_site/doc/de/bytecode-compiler/parser/index.html | |
| +++ b/web/_site/doc/de/bytecode-compiler/parser/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Ruby Parser - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/bytecode-compiler' rel='prev' title='Bytecode Compiler'> | |
| + <link href='/doc/de/bytecode-compiler/ast' rel='next' title='AST'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/bytecode-compiler/transformations/index.html b/web/_site/doc/de/bytecode-compiler/transformations/index.html | |
| index beaffb0..8a04997 100644 | |
| --- a/web/_site/doc/de/bytecode-compiler/transformations/index.html | |
| +++ b/web/_site/doc/de/bytecode-compiler/transformations/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Compiler Transforms - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/bytecode-compiler/compiler' rel='prev' title='Compiler'> | |
| + <link href='/doc/de/bytecode-compiler/generator' rel='next' title='Generator'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/contributing/communication/index.html b/web/_site/doc/de/contributing/communication/index.html | |
| index fe5bec8..0d5e9d0 100644 | |
| --- a/web/_site/doc/de/contributing/communication/index.html | |
| +++ b/web/_site/doc/de/contributing/communication/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Communication - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/contributing' rel='prev' title='Contributing'> | |
| + <link href='/doc/de/contributing/style-guide' rel='next' title='Style Guide'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/contributing/index.html b/web/_site/doc/de/contributing/index.html | |
| index 6fb0e44..4299ae5 100644 | |
| --- a/web/_site/doc/de/contributing/index.html | |
| +++ b/web/_site/doc/de/contributing/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Contributing - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/getting-started/troubleshooting' rel='prev' title='Troubleshooting'> | |
| + <link href='/doc/de/contributing/communication' rel='next' title='Communication'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/contributing/style-guide/index.html b/web/_site/doc/de/contributing/style-guide/index.html | |
| index 4be1dbe..487887f 100644 | |
| --- a/web/_site/doc/de/contributing/style-guide/index.html | |
| +++ b/web/_site/doc/de/contributing/style-guide/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Coding Style Guide - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/contributing/communication' rel='prev' title='Communication'> | |
| + <link href='/doc/de/ruby' rel='next' title='Ruby'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/garbage-collector/index.html b/web/_site/doc/de/garbage-collector/index.html | |
| index ccc4f84..937e3a4 100644 | |
| --- a/web/_site/doc/de/garbage-collector/index.html | |
| +++ b/web/_site/doc/de/garbage-collector/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Garbage Collector - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/jit' rel='prev' title='JIT Compiler'> | |
| + <link href='/doc/de/garbage-collector/nursery' rel='next' title='Nursery'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/garbage-collector/large-objects/index.html b/web/_site/doc/de/garbage-collector/large-objects/index.html | |
| index 1ac0bb4..6605343 100644 | |
| --- a/web/_site/doc/de/garbage-collector/large-objects/index.html | |
| +++ b/web/_site/doc/de/garbage-collector/large-objects/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Large Objects - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/garbage-collector/mature-generation' rel='prev' title='Mature Generation'> | |
| + <link href='/doc/de/systems' rel='next' title='Rubinius Systems'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/garbage-collector/mature-generation/index.html b/web/_site/doc/de/garbage-collector/mature-generation/index.html | |
| index 353f360..1203070 100644 | |
| --- a/web/_site/doc/de/garbage-collector/mature-generation/index.html | |
| +++ b/web/_site/doc/de/garbage-collector/mature-generation/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Mature Generation - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/garbage-collector/young-generation' rel='prev' title='Young Generation'> | |
| + <link href='/doc/de/garbage-collector/large-objects' rel='next' title='Large Objects'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/garbage-collector/nursery/index.html b/web/_site/doc/de/garbage-collector/nursery/index.html | |
| index 38ced7a..a3d9a36 100644 | |
| --- a/web/_site/doc/de/garbage-collector/nursery/index.html | |
| +++ b/web/_site/doc/de/garbage-collector/nursery/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Nursery - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/garbage-collector' rel='prev' title='Garbage Collector'> | |
| + <link href='/doc/de/garbage-collector/young-generation' rel='next' title='Young Generation'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/garbage-collector/young-generation/index.html b/web/_site/doc/de/garbage-collector/young-generation/index.html | |
| index 1dc07c2..8eef75e 100644 | |
| --- a/web/_site/doc/de/garbage-collector/young-generation/index.html | |
| +++ b/web/_site/doc/de/garbage-collector/young-generation/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Young Generation - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/garbage-collector/nursery' rel='prev' title='Nursery'> | |
| + <link href='/doc/de/garbage-collector/mature-generation' rel='next' title='Mature Generation'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/getting-started/building/index.html b/web/_site/doc/de/getting-started/building/index.html | |
| index db97285..9bf74f6 100644 | |
| --- a/web/_site/doc/de/getting-started/building/index.html | |
| +++ b/web/_site/doc/de/getting-started/building/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Rubinius bauen - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/getting-started/requirements' rel='prev' title='Abhängigkeiten'> | |
| + <link href='/doc/de/getting-started/running-rubinius' rel='next' title='Rubinius ausführen'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/getting-started/index.html b/web/_site/doc/de/getting-started/index.html | |
| index a977810..d3dabcb 100644 | |
| --- a/web/_site/doc/de/getting-started/index.html | |
| +++ b/web/_site/doc/de/getting-started/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Erste Schritte - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/what-is-rubinius' rel='prev' title='Was ist Rubinius?'> | |
| + <link href='/doc/de/getting-started/requirements' rel='next' title='Voraussetzungen'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/getting-started/requirements/index.html b/web/_site/doc/de/getting-started/requirements/index.html | |
| index c9f1ce0..ba94c24 100644 | |
| --- a/web/_site/doc/de/getting-started/requirements/index.html | |
| +++ b/web/_site/doc/de/getting-started/requirements/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Abhängigkeiten - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/getting-started' rel='prev' title='Erste Schritte'> | |
| + <link href='/doc/de/getting-started/building' rel='next' title='Rubinius bauen'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/getting-started/running-rubinius/index.html b/web/_site/doc/de/getting-started/running-rubinius/index.html | |
| index a7efb70..dc8b1a0 100644 | |
| --- a/web/_site/doc/de/getting-started/running-rubinius/index.html | |
| +++ b/web/_site/doc/de/getting-started/running-rubinius/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Rubinius ausführen - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/getting-started/building' rel='prev' title='Rubinius bauen'> | |
| + <link href='/doc/de/getting-started/troubleshooting' rel='next' title='Problemlösungen'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/getting-started/troubleshooting/index.html b/web/_site/doc/de/getting-started/troubleshooting/index.html | |
| index 805468e..e142b46 100644 | |
| --- a/web/_site/doc/de/getting-started/troubleshooting/index.html | |
| +++ b/web/_site/doc/de/getting-started/troubleshooting/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Problemlösungen - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/getting-started/running-rubinius' rel='prev' title='Rubinius ausführen'> | |
| + <link href='/doc/de/contributing' rel='next' title='Mitmachen'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/how-to/fix-a-failing-spec/index.html b/web/_site/doc/de/how-to/fix-a-failing-spec/index.html | |
| index 1ca1c3b..fce9b6f 100644 | |
| --- a/web/_site/doc/de/how-to/fix-a-failing-spec/index.html | |
| +++ b/web/_site/doc/de/how-to/fix-a-failing-spec/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Anleitung - Einen fehlgeschlagenen Spec reparieren - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/how-to/write-ruby-spec' rel='prev' title='Einen Ruby Spec schreiben'> | |
| + <link href='/doc/de/how-to/write-a-blog-post' rel='next' title='Einen Blogeintrag schreiben'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/how-to/index.html b/web/_site/doc/de/how-to/index.html | |
| index c9ab27d..34380f2 100644 | |
| --- a/web/_site/doc/de/how-to/index.html | |
| +++ b/web/_site/doc/de/how-to/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Anleitungen - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/tools/memory-analysis' rel='prev' title='Tools - Speicher Analyse'> | |
| + <link href='/doc/de/how-to/write-a-ticket' rel='next' title='Ein Ticket erstellen'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/how-to/translate-documentation/index.html b/web/_site/doc/de/how-to/translate-documentation/index.html | |
| index bfce294..f4d8529 100644 | |
| --- a/web/_site/doc/de/how-to/translate-documentation/index.html | |
| +++ b/web/_site/doc/de/how-to/translate-documentation/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Anleitung - Dokumentation übersetzen - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/how-to/write-documentation' rel='prev' title='Dokumentation schreiben'> | |
| + <link href='/doc/de/appendix-a-glossary' rel='next' title='Anhang A - Glossar'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/how-to/write-a-blog-post/index.html b/web/_site/doc/de/how-to/write-a-blog-post/index.html | |
| index ba3dc1c..97692ab 100644 | |
| --- a/web/_site/doc/de/how-to/write-a-blog-post/index.html | |
| +++ b/web/_site/doc/de/how-to/write-a-blog-post/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Anleitung - Einen Blogeintrag schreiben - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/how-to/fix-a-failing-spec' rel='prev' title='Einen fehlgeschlagenen Spec reparieren'> | |
| + <link href='/doc/de/how-to/write-documentation' rel='next' title='Dokumentation schreiben'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/how-to/write-a-ruby-spec/index.html b/web/_site/doc/de/how-to/write-a-ruby-spec/index.html | |
| index 1fbb6a2..37efc5e 100644 | |
| --- a/web/_site/doc/de/how-to/write-a-ruby-spec/index.html | |
| +++ b/web/_site/doc/de/how-to/write-a-ruby-spec/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Anleitung - Einen Ruby Spec schreiben - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/how-to/write-a-ticket' rel='prev' title='Ein Ticket erstellen'> | |
| + <link href='/doc/de/how-to/fix-a-failing-spec' rel='next' title='Einen fehlgeschlagenen Spec reparieren'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/how-to/write-a-ticket/index.html b/web/_site/doc/de/how-to/write-a-ticket/index.html | |
| index f7621b9..1b0afff 100644 | |
| --- a/web/_site/doc/de/how-to/write-a-ticket/index.html | |
| +++ b/web/_site/doc/de/how-to/write-a-ticket/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Anleitung - Ein Ticket erstellen - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/how-to' rel='prev' title='Anleitungen'> | |
| + <link href='/doc/de/how-to/write-a-ruby-spec' rel='next' title='Einen Ruby Spec schreiben'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/how-to/write-documentation/index.html b/web/_site/doc/de/how-to/write-documentation/index.html | |
| index 3e881b3..69db700 100644 | |
| --- a/web/_site/doc/de/how-to/write-documentation/index.html | |
| +++ b/web/_site/doc/de/how-to/write-documentation/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Anleitung - Dokumentation schreiben - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/how-to/write-a-blog-post' rel='prev' title='Einen Blogeintrag schreiben'> | |
| + <link href='/doc/de/how-to/translate-documentation' rel='next' title='Dokumentation übersetzen'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/index-of-terms/index.html b/web/_site/doc/de/index-of-terms/index.html | |
| index 3d2f7ec..5e8b980 100644 | |
| --- a/web/_site/doc/de/index-of-terms/index.html | |
| +++ b/web/_site/doc/de/index-of-terms/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Index of Terms - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/appendix-b-reading-list' rel='prev' title='Appendix B - Reading List'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/index.html b/web/_site/doc/de/index.html | |
| index a94a786..bc8951a 100644 | |
| --- a/web/_site/doc/de/index.html | |
| +++ b/web/_site/doc/de/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Inhaltsverzeichnis - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + <link href='/doc/de/what-is-rubinius' rel='next' title='Was ist Rubinius?'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/jit/index.html b/web/_site/doc/de/jit/index.html | |
| index 81e6466..1927498 100644 | |
| --- a/web/_site/doc/de/jit/index.html | |
| +++ b/web/_site/doc/de/jit/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>JIT Compiler - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/bytecode-compiler/generator' rel='prev' title='Bytecode Compiler - Generator'> | |
| + <link href='/doc/de/garbage-collector' rel='next' title='Garbage Collector'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/blocks-and-procs/index.html b/web/_site/doc/de/ruby/blocks-and-procs/index.html | |
| index af90820..0e7f695 100644 | |
| --- a/web/_site/doc/de/ruby/blocks-and-procs/index.html | |
| +++ b/web/_site/doc/de/ruby/blocks-and-procs/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Blocks & Procs - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/ruby/classes-and-modules' rel='prev' title='Classes & Modules'> | |
| + <link href='/doc/de/ruby/local-variables' rel='next' title='Local Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/class-variables/index.html b/web/_site/doc/de/ruby/class-variables/index.html | |
| index eceeb73..9570fab 100644 | |
| --- a/web/_site/doc/de/ruby/class-variables/index.html | |
| +++ b/web/_site/doc/de/ruby/class-variables/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Class Variables - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/ruby/instance-variables' rel='prev' title='Instance Variables'> | |
| + <link href='/doc/de/ruby/global-variables' rel='next' title='Global Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/classes-and-modules/index.html b/web/_site/doc/de/ruby/classes-and-modules/index.html | |
| index 31e738e..4189188 100644 | |
| --- a/web/_site/doc/de/ruby/classes-and-modules/index.html | |
| +++ b/web/_site/doc/de/ruby/classes-and-modules/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Classes & Modules - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/ruby/constants' rel='prev' title='Constants'> | |
| + <link href='/doc/de/ruby/blocks-and-procs' rel='next' title='Blocks & Procs'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/constants/index.html b/web/_site/doc/de/ruby/constants/index.html | |
| index a5d3497..380da36 100644 | |
| --- a/web/_site/doc/de/ruby/constants/index.html | |
| +++ b/web/_site/doc/de/ruby/constants/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Constants - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/ruby/methods' rel='prev' title='Methods'> | |
| + <link href='/doc/de/ruby/classes-and-modules' rel='next' title='Classes & Modules'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/global-variables/index.html b/web/_site/doc/de/ruby/global-variables/index.html | |
| index 1253827..c0c322d 100644 | |
| --- a/web/_site/doc/de/ruby/global-variables/index.html | |
| +++ b/web/_site/doc/de/ruby/global-variables/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Global Variables - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/ruby/class-variables' rel='prev' title='Class Variables'> | |
| + <link href='/doc/de/specs' rel='next' title='Specs'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/index.html b/web/_site/doc/de/ruby/index.html | |
| index 584b4c8..d221e52 100644 | |
| --- a/web/_site/doc/de/ruby/index.html | |
| +++ b/web/_site/doc/de/ruby/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Ruby - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/contributing/style-guide' rel='prev' title='Style Guide'> | |
| + <link href='/doc/de/ruby/scripts' rel='next' title='Scripts'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/instance-variables/index.html b/web/_site/doc/de/ruby/instance-variables/index.html | |
| index 72423f4..361fe44 100644 | |
| --- a/web/_site/doc/de/ruby/instance-variables/index.html | |
| +++ b/web/_site/doc/de/ruby/instance-variables/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Instance Variables - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/ruby/locas-variables' rel='prev' title='Local Variables'> | |
| + <link href='/doc/de/ruby/class-variables' rel='next' title='Class Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/local-variables/index.html b/web/_site/doc/de/ruby/local-variables/index.html | |
| index 5eb7937..68f049f 100644 | |
| --- a/web/_site/doc/de/ruby/local-variables/index.html | |
| +++ b/web/_site/doc/de/ruby/local-variables/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Local Variables - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/ruby/blocks-and-procs' rel='prev' title='Blocks & Procs'> | |
| + <link href='/doc/de/ruby/instance-variables' rel='next' title='Instance Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/methods/index.html b/web/_site/doc/de/ruby/methods/index.html | |
| index bf41b48..0815afe 100644 | |
| --- a/web/_site/doc/de/ruby/methods/index.html | |
| +++ b/web/_site/doc/de/ruby/methods/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Methods - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/ruby/scripts' rel='prev' title='Scripts'> | |
| + <link href='/doc/de/ruby/constants' rel='next' title='Constants'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/scripts/index.html b/web/_site/doc/de/ruby/scripts/index.html | |
| index 9acecc8..3429a5a 100644 | |
| --- a/web/_site/doc/de/ruby/scripts/index.html | |
| +++ b/web/_site/doc/de/ruby/scripts/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Scripts - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/ruby' rel='prev' title='Ruby'> | |
| + <link href='/doc/de/ruby/methods' rel='next' title='Methods'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/specs/compiler/index.html b/web/_site/doc/de/specs/compiler/index.html | |
| index b0017a4..9a47741 100644 | |
| --- a/web/_site/doc/de/specs/compiler/index.html | |
| +++ b/web/_site/doc/de/specs/compiler/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Compiler Specs - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/specs/rubyspec' rel='prev' title='RubySpec'> | |
| + <link href='/doc/de/build-system' rel='next' title='Build System'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/specs/index.html b/web/_site/doc/de/specs/index.html | |
| index 0ab2066..0f50726 100644 | |
| --- a/web/_site/doc/de/specs/index.html | |
| +++ b/web/_site/doc/de/specs/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Specs - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/ruby/global-variables' rel='prev' title='Ruby - Global Variables'> | |
| + <link href='/doc/de/specs/rubyspec' rel='next' title='RubySpec'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/specs/rubyspec/index.html b/web/_site/doc/de/specs/rubyspec/index.html | |
| index 0c76a5a..a17c416 100644 | |
| --- a/web/_site/doc/de/specs/rubyspec/index.html | |
| +++ b/web/_site/doc/de/specs/rubyspec/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>RubySpec - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/specs' rel='prev' title='Specs'> | |
| + <link href='/doc/de/specs/compiler' rel='next' title='Compiler Specs'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/systems/c-api/index.html b/web/_site/doc/de/systems/c-api/index.html | |
| index 33fb4b0..eae69c5 100644 | |
| --- a/web/_site/doc/de/systems/c-api/index.html | |
| +++ b/web/_site/doc/de/systems/c-api/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>C-API - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/systems/io' rel='prev' title='IO'> | |
| + <link href='/doc/de/tools' rel='next' title='Tools'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/systems/concurrency/index.html b/web/_site/doc/de/systems/concurrency/index.html | |
| index d7d75a9..4a96f7b 100644 | |
| --- a/web/_site/doc/de/systems/concurrency/index.html | |
| +++ b/web/_site/doc/de/systems/concurrency/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Concurrency - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/systems/ffi' rel='prev' title='FFI'> | |
| + <link href='/doc/de/systems/io' rel='next' title='IO'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/systems/ffi/index.html b/web/_site/doc/de/systems/ffi/index.html | |
| index 62b4453..6b72340 100644 | |
| --- a/web/_site/doc/de/systems/ffi/index.html | |
| +++ b/web/_site/doc/de/systems/ffi/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Foreign Function Interface - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/systems/primitives' rel='prev' title='Primitives'> | |
| + <link href='/doc/de/systems/concurrency' rel='next' title='Concurrency'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/systems/index.html b/web/_site/doc/de/systems/index.html | |
| index 1fb0a9a..2c6f84d 100644 | |
| --- a/web/_site/doc/de/systems/index.html | |
| +++ b/web/_site/doc/de/systems/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Rubinius Systems - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/garbage-collector/large-objects' rel='prev' title='Garbage Collector - Large Objects'> | |
| + <link href='/doc/de/systems/primitives' rel='next' title='Primitives'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/systems/io/index.html b/web/_site/doc/de/systems/io/index.html | |
| index 8d67a8d..a7db321 100644 | |
| --- a/web/_site/doc/de/systems/io/index.html | |
| +++ b/web/_site/doc/de/systems/io/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>IO - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/systems/concurrency' rel='prev' title='Concurrency'> | |
| + <link href='/doc/de/systems/c-api' rel='next' title='C-API'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/systems/primitives/index.html b/web/_site/doc/de/systems/primitives/index.html | |
| index 76b1dd6..07375d2 100644 | |
| --- a/web/_site/doc/de/systems/primitives/index.html | |
| +++ b/web/_site/doc/de/systems/primitives/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Primitives - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/systems' rel='prev' title='Rubinius Systems'> | |
| + <link href='/doc/de/systems/ffi' rel='next' title='FFI'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/tools/debugger/index.html b/web/_site/doc/de/tools/debugger/index.html | |
| index e5aa50b..af88422 100644 | |
| --- a/web/_site/doc/de/tools/debugger/index.html | |
| +++ b/web/_site/doc/de/tools/debugger/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Debugger - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/tools' rel='prev' title='Tools'> | |
| + <link href='/doc/de/tools/profiler' rel='next' title='Profiler'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/tools/index.html b/web/_site/doc/de/tools/index.html | |
| index aa5594d..2d94751 100644 | |
| --- a/web/_site/doc/de/tools/index.html | |
| +++ b/web/_site/doc/de/tools/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Tools - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/systems/c-api' rel='prev' title='Rubinius Systems - C-API'> | |
| + <link href='/doc/de/tools/debugger' rel='next' title='Debugger'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/tools/memory-analysis/index.html b/web/_site/doc/de/tools/memory-analysis/index.html | |
| index 27f52d6..15d7920 100644 | |
| --- a/web/_site/doc/de/tools/memory-analysis/index.html | |
| +++ b/web/_site/doc/de/tools/memory-analysis/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Memory Analysis - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/tools/profiler' rel='prev' title='Profiler'> | |
| + <link href='/doc/de/how-to' rel='next' title='How-To'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/tools/profiler/index.html b/web/_site/doc/de/tools/profiler/index.html | |
| index d6483ad..1e67574 100644 | |
| --- a/web/_site/doc/de/tools/profiler/index.html | |
| +++ b/web/_site/doc/de/tools/profiler/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Profiler - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/tools/debugger' rel='prev' title='Debugger'> | |
| + <link href='/doc/de/tools/memory-analysis' rel='next' title='Memory Analysis'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/virtual-machine/custom-dispatch-logic/index.html b/web/_site/doc/de/virtual-machine/custom-dispatch-logic/index.html | |
| index 07f596c..4561ab7 100644 | |
| --- a/web/_site/doc/de/virtual-machine/custom-dispatch-logic/index.html | |
| +++ b/web/_site/doc/de/virtual-machine/custom-dispatch-logic/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Custom Dispatch Logic - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/virtual-machine/instructions' rel='prev' title='Instructions'> | |
| + <link href='/doc/de/bytecode-compiler' rel='next' title='Bytecode Compiler'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/virtual-machine/index.html b/web/_site/doc/de/virtual-machine/index.html | |
| index d4a4719..9fc2b0f 100644 | |
| --- a/web/_site/doc/de/virtual-machine/index.html | |
| +++ b/web/_site/doc/de/virtual-machine/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Virtual Machine - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/bootstrapping' rel='prev' title='Bootstrapping'> | |
| + <link href='/doc/de/virtual-machine/instructions' rel='next' title='Instructions'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/virtual-machine/instructions/index.html b/web/_site/doc/de/virtual-machine/instructions/index.html | |
| index c1d2a28..755d245 100644 | |
| --- a/web/_site/doc/de/virtual-machine/instructions/index.html | |
| +++ b/web/_site/doc/de/virtual-machine/instructions/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Instructions - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/de/virtual-machine' rel='prev' title='Virtual Machine'> | |
| + <link href='/doc/de/virtual-machine/custom-dispatch-logic' rel='next' title='Custom Dispatch Logic'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/what-is-rubinius/index.html b/web/_site/doc/de/what-is-rubinius/index.html | |
| index 10a788c..6d02a2e 100644 | |
| --- a/web/_site/doc/de/what-is-rubinius/index.html | |
| +++ b/web/_site/doc/de/what-is-rubinius/index.html | |
| @@ -3,12 +3,14 @@ | |
| <head> | |
| <title>Rubinius : Use Ruby™</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='de' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + <link href='/doc/de/getting-started' rel='next' title='Erste Schritte'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/appendix-a-glossary/index.html b/web/_site/doc/en/appendix-a-glossary/index.html | |
| index e74c1b7..0070779 100644 | |
| --- a/web/_site/doc/en/appendix-a-glossary/index.html | |
| +++ b/web/_site/doc/en/appendix-a-glossary/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Appendix A - Glossary - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/how-to/translate-documentation' rel='prev' title='How-To - Translate Documentation'> | |
| + <link href='/doc/en/appendix-b-reading-list' rel='next' title='Appendix B - Reading List'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/appendix-b-reading-list/index.html b/web/_site/doc/en/appendix-b-reading-list/index.html | |
| index 9b4b4e8..4c2ade0 100644 | |
| --- a/web/_site/doc/en/appendix-b-reading-list/index.html | |
| +++ b/web/_site/doc/en/appendix-b-reading-list/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Appendix B - Reading List - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/appendix-a-glossary' rel='prev' title='Appendix A - Glossary'> | |
| + <link href='/doc/en/terms-index' rel='next' title='Terms Index'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/bootstrapping/index.html b/web/_site/doc/en/bootstrapping/index.html | |
| index e961da7..c2a9d73 100644 | |
| --- a/web/_site/doc/en/bootstrapping/index.html | |
| +++ b/web/_site/doc/en/bootstrapping/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Bootstrapping - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/build-system' rel='prev' title='Build System'> | |
| + <link href='/doc/en/virtual-machine' rel='next' title='Virtual Machine'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/build-system/index.html b/web/_site/doc/en/build-system/index.html | |
| index a74fc76..dca7ef8 100644 | |
| --- a/web/_site/doc/en/build-system/index.html | |
| +++ b/web/_site/doc/en/build-system/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Build System - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/specs/compiler' rel='prev' title='Specs - Compiler'> | |
| + <link href='/doc/en/bootstrapping' rel='next' title='Bootstrapping'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/bytecode-compiler/ast/index.html b/web/_site/doc/en/bytecode-compiler/ast/index.html | |
| index 83a6a7c..fb89ce7 100644 | |
| --- a/web/_site/doc/en/bytecode-compiler/ast/index.html | |
| +++ b/web/_site/doc/en/bytecode-compiler/ast/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Abstract Syntax Trees - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/bytecode-compiler/parser' rel='prev' title='Parser'> | |
| + <link href='/doc/en/bytecode-compiler/compiler' rel='next' title='Compiler'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/bytecode-compiler/compiler/index.html b/web/_site/doc/en/bytecode-compiler/compiler/index.html | |
| index ada8bd7..2a325ac 100644 | |
| --- a/web/_site/doc/en/bytecode-compiler/compiler/index.html | |
| +++ b/web/_site/doc/en/bytecode-compiler/compiler/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Compiler - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/bytecode-compiler/ast' rel='prev' title='AST'> | |
| + <link href='/doc/en/bytecode-compiler/transformations' rel='next' title='Transformations'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/bytecode-compiler/generator/index.html b/web/_site/doc/en/bytecode-compiler/generator/index.html | |
| index ec9bca4..e824fe8 100644 | |
| --- a/web/_site/doc/en/bytecode-compiler/generator/index.html | |
| +++ b/web/_site/doc/en/bytecode-compiler/generator/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Generator - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/bytecode-compiler/transformations' rel='prev' title='Transformations'> | |
| + <link href='/doc/en/jit' rel='next' title='JIT Compiler'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/bytecode-compiler/index.html b/web/_site/doc/en/bytecode-compiler/index.html | |
| index 7f9d9f8..d3a9157 100644 | |
| --- a/web/_site/doc/en/bytecode-compiler/index.html | |
| +++ b/web/_site/doc/en/bytecode-compiler/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Bytecode Compiler - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/virtual-machine/custom-dispatch-logic' rel='prev' title='Virtual Machine - Custom Dispatch Logic'> | |
| + <link href='/doc/en/bytecode-compiler/parser' rel='next' title='Parser'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/bytecode-compiler/parser/index.html b/web/_site/doc/en/bytecode-compiler/parser/index.html | |
| index f6ae42d..bc8832a 100644 | |
| --- a/web/_site/doc/en/bytecode-compiler/parser/index.html | |
| +++ b/web/_site/doc/en/bytecode-compiler/parser/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Ruby Parser - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/bytecode-compiler' rel='prev' title='Bytecode Compiler'> | |
| + <link href='/doc/en/bytecode-compiler/ast' rel='next' title='AST'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/bytecode-compiler/transformations/index.html b/web/_site/doc/en/bytecode-compiler/transformations/index.html | |
| index 544fa00..0014f6b 100644 | |
| --- a/web/_site/doc/en/bytecode-compiler/transformations/index.html | |
| +++ b/web/_site/doc/en/bytecode-compiler/transformations/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Compiler Transforms - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/bytecode-compiler/compiler' rel='prev' title='Compiler'> | |
| + <link href='/doc/en/bytecode-compiler/generator' rel='next' title='Generator'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/contributing/communication/index.html b/web/_site/doc/en/contributing/communication/index.html | |
| index 2b16aa5..7cccb00 100644 | |
| --- a/web/_site/doc/en/contributing/communication/index.html | |
| +++ b/web/_site/doc/en/contributing/communication/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Communication - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/contributing' rel='prev' title='Contributing'> | |
| + <link href='/doc/en/contributing/style-guide' rel='next' title='Style Guide'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/contributing/index.html b/web/_site/doc/en/contributing/index.html | |
| index ae96b36..60a7139 100644 | |
| --- a/web/_site/doc/en/contributing/index.html | |
| +++ b/web/_site/doc/en/contributing/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Contributing - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/getting-started/troubleshooting' rel='prev' title='Troubleshooting'> | |
| + <link href='/doc/en/contributing/communication' rel='next' title='Communication'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/contributing/style-guide/index.html b/web/_site/doc/en/contributing/style-guide/index.html | |
| index 0265fd2..01e7df9 100644 | |
| --- a/web/_site/doc/en/contributing/style-guide/index.html | |
| +++ b/web/_site/doc/en/contributing/style-guide/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Coding Style Guide - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/contributing/communication' rel='prev' title='Communication'> | |
| + <link href='/doc/en/ruby' rel='next' title='Ruby'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/garbage-collector/index.html b/web/_site/doc/en/garbage-collector/index.html | |
| index 305f13e..92d5c6d 100644 | |
| --- a/web/_site/doc/en/garbage-collector/index.html | |
| +++ b/web/_site/doc/en/garbage-collector/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Garbage Collector - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/jit' rel='prev' title='JIT Compiler'> | |
| + <link href='/doc/en/garbage-collector/nursery' rel='next' title='Nursery'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/garbage-collector/large-objects/index.html b/web/_site/doc/en/garbage-collector/large-objects/index.html | |
| index 8117074..bc3d378 100644 | |
| --- a/web/_site/doc/en/garbage-collector/large-objects/index.html | |
| +++ b/web/_site/doc/en/garbage-collector/large-objects/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Large Objects - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/garbage-collector/mature-generation' rel='prev' title='Mature Generation'> | |
| + <link href='/doc/en/systems' rel='next' title='Rubinius Systems'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/garbage-collector/mature-generation/index.html b/web/_site/doc/en/garbage-collector/mature-generation/index.html | |
| index 59e1681..0cc4e12 100644 | |
| --- a/web/_site/doc/en/garbage-collector/mature-generation/index.html | |
| +++ b/web/_site/doc/en/garbage-collector/mature-generation/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Mature Generation - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/garbage-collector/young-generation' rel='prev' title='Young Generation'> | |
| + <link href='/doc/en/garbage-collector/large-objects' rel='next' title='Large Objects'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/garbage-collector/nursery/index.html b/web/_site/doc/en/garbage-collector/nursery/index.html | |
| index 241ca60..4d504c1 100644 | |
| --- a/web/_site/doc/en/garbage-collector/nursery/index.html | |
| +++ b/web/_site/doc/en/garbage-collector/nursery/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Nursery - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/garbage-collector' rel='prev' title='Garbage Collector'> | |
| + <link href='/doc/en/garbage-collector/young-generation' rel='next' title='Young Generation'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/garbage-collector/young-generation/index.html b/web/_site/doc/en/garbage-collector/young-generation/index.html | |
| index 835ee98..a0d1af2 100644 | |
| --- a/web/_site/doc/en/garbage-collector/young-generation/index.html | |
| +++ b/web/_site/doc/en/garbage-collector/young-generation/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Young Generation - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/garbage-collector/nursery' rel='prev' title='Nursery'> | |
| + <link href='/doc/en/garbage-collector/mature-generation' rel='next' title='Mature Generation'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/getting-started/building/index.html b/web/_site/doc/en/getting-started/building/index.html | |
| index f1f9ebb..4af4e9f 100644 | |
| --- a/web/_site/doc/en/getting-started/building/index.html | |
| +++ b/web/_site/doc/en/getting-started/building/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Building Rubinius - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/getting-started/requirements' rel='prev' title='Requirements'> | |
| + <link href='/doc/en/getting-started/running-rubinius' rel='next' title='Running Rubinius'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/getting-started/index.html b/web/_site/doc/en/getting-started/index.html | |
| index de99505..4fce73c 100644 | |
| --- a/web/_site/doc/en/getting-started/index.html | |
| +++ b/web/_site/doc/en/getting-started/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Getting Started - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/what-is-rubinius' rel='prev' title='What is Rubinius?'> | |
| + <link href='/doc/en/getting-started/requirements' rel='next' title='Requirements'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/getting-started/requirements/index.html b/web/_site/doc/en/getting-started/requirements/index.html | |
| index c869df0..6adde10 100644 | |
| --- a/web/_site/doc/en/getting-started/requirements/index.html | |
| +++ b/web/_site/doc/en/getting-started/requirements/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Requirements - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/getting-started' rel='prev' title='Getting Started'> | |
| + <link href='/doc/en/getting-started/building' rel='next' title='Building'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/getting-started/running-rubinius/index.html b/web/_site/doc/en/getting-started/running-rubinius/index.html | |
| index 814ac72..0994667 100644 | |
| --- a/web/_site/doc/en/getting-started/running-rubinius/index.html | |
| +++ b/web/_site/doc/en/getting-started/running-rubinius/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Running Rubinius - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/getting-started/building' rel='prev' title='Building'> | |
| + <link href='/doc/en/getting-started/troubleshooting' rel='next' title='Troubleshooting'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/getting-started/troubleshooting/index.html b/web/_site/doc/en/getting-started/troubleshooting/index.html | |
| index f0f9b27..8f41b11 100644 | |
| --- a/web/_site/doc/en/getting-started/troubleshooting/index.html | |
| +++ b/web/_site/doc/en/getting-started/troubleshooting/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Troubleshooting - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/getting-started/running-rubinius' rel='prev' title='Running Rubinius'> | |
| + <link href='/doc/en/contributing' rel='next' title='Contributing'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/how-to/fix-a-failing-spec/index.html b/web/_site/doc/en/how-to/fix-a-failing-spec/index.html | |
| index 4ea03a1..ea82f7c 100644 | |
| --- a/web/_site/doc/en/how-to/fix-a-failing-spec/index.html | |
| +++ b/web/_site/doc/en/how-to/fix-a-failing-spec/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Fix a Failing Spec - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/how-to/write-ruby-spec' rel='prev' title='Write a Ruby Spec'> | |
| + <link href='/doc/en/how-to/write-a-blog-post' rel='next' title='Write a Blog Post'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/how-to/index.html b/web/_site/doc/en/how-to/index.html | |
| index 15643dd..efedf01 100644 | |
| --- a/web/_site/doc/en/how-to/index.html | |
| +++ b/web/_site/doc/en/how-to/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/tools/memory-analysis' rel='prev' title='Tools - Memory Analysis'> | |
| + <link href='/doc/en/how-to/write-a-ticket' rel='next' title='Write a Ticket'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/how-to/translate-documentation/index.html b/web/_site/doc/en/how-to/translate-documentation/index.html | |
| index 3bc1911..26c246c 100644 | |
| --- a/web/_site/doc/en/how-to/translate-documentation/index.html | |
| +++ b/web/_site/doc/en/how-to/translate-documentation/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Translate Documentation - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/how-to/write-documentation' rel='prev' title='Write Documentation'> | |
| + <link href='/doc/en/appendix-a-glossary' rel='next' title='Appendix A - Glossary'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/how-to/write-a-blog-post/index.html b/web/_site/doc/en/how-to/write-a-blog-post/index.html | |
| index 021f25b..b0616e2 100644 | |
| --- a/web/_site/doc/en/how-to/write-a-blog-post/index.html | |
| +++ b/web/_site/doc/en/how-to/write-a-blog-post/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Write a Blog Post - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/how-to/fix-a-failing-spec' rel='prev' title='Fix a Failing Spec'> | |
| + <link href='/doc/en/how-to/write-documentation' rel='next' title='Write Documentation'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/how-to/write-a-ruby-spec/index.html b/web/_site/doc/en/how-to/write-a-ruby-spec/index.html | |
| index a80be27..e791b9e 100644 | |
| --- a/web/_site/doc/en/how-to/write-a-ruby-spec/index.html | |
| +++ b/web/_site/doc/en/how-to/write-a-ruby-spec/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Write a Ruby Spec - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/how-to/write-a-ticket' rel='prev' title='Write a Ticket'> | |
| + <link href='/doc/en/how-to/fix-a-failing-spec' rel='next' title='Fix a Failing Spec'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/how-to/write-a-ticket/index.html b/web/_site/doc/en/how-to/write-a-ticket/index.html | |
| index d71bc94..e4808dc 100644 | |
| --- a/web/_site/doc/en/how-to/write-a-ticket/index.html | |
| +++ b/web/_site/doc/en/how-to/write-a-ticket/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Write a Ticket - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/how-to' rel='prev' title='How-To'> | |
| + <link href='/doc/en/how-to/write-a-ruby-spec' rel='next' title='Write a Ruby Spec'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/how-to/write-documentation/index.html b/web/_site/doc/en/how-to/write-documentation/index.html | |
| index 40cc68d..f7fa257 100644 | |
| --- a/web/_site/doc/en/how-to/write-documentation/index.html | |
| +++ b/web/_site/doc/en/how-to/write-documentation/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Write Documentation - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/how-to/write-a-blog-post' rel='prev' title='Write a Blog Post'> | |
| + <link href='/doc/en/how-to/translate-documentation' rel='next' title='Translate Documentation'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/index-of-terms/index.html b/web/_site/doc/en/index-of-terms/index.html | |
| index 3d423d2..8ab4714 100644 | |
| --- a/web/_site/doc/en/index-of-terms/index.html | |
| +++ b/web/_site/doc/en/index-of-terms/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Index of Terms - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/appendix-b-reading-list' rel='prev' title='Appendix B - Reading List'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/index.html b/web/_site/doc/en/index.html | |
| index 3d9abe6..ebf316e 100644 | |
| --- a/web/_site/doc/en/index.html | |
| +++ b/web/_site/doc/en/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Table of Contents - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + <link href='/doc/en/what-is-rubinius' rel='next' title='What is Rubinius?'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/jit/index.html b/web/_site/doc/en/jit/index.html | |
| index e4021ae..d5dbffe 100644 | |
| --- a/web/_site/doc/en/jit/index.html | |
| +++ b/web/_site/doc/en/jit/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>JIT Compiler - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/bytecode-compiler/generator' rel='prev' title='Bytecode Compiler - Generator'> | |
| + <link href='/doc/en/garbage-collector' rel='next' title='Garbage Collector'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/blocks-and-procs/index.html b/web/_site/doc/en/ruby/blocks-and-procs/index.html | |
| index 0f932c6..1d98e4b 100644 | |
| --- a/web/_site/doc/en/ruby/blocks-and-procs/index.html | |
| +++ b/web/_site/doc/en/ruby/blocks-and-procs/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Blocks & Procs - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/ruby/classes-and-modules' rel='prev' title='Classes & Modules'> | |
| + <link href='/doc/en/ruby/local-variables' rel='next' title='Local Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/class-variables/index.html b/web/_site/doc/en/ruby/class-variables/index.html | |
| index d3d7ff9..e6f9da0 100644 | |
| --- a/web/_site/doc/en/ruby/class-variables/index.html | |
| +++ b/web/_site/doc/en/ruby/class-variables/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Class Variables - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/ruby/instance-variables' rel='prev' title='Instance Variables'> | |
| + <link href='/doc/en/ruby/global-variables' rel='next' title='Global Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/classes-and-modules/index.html b/web/_site/doc/en/ruby/classes-and-modules/index.html | |
| index 8fe0cfc..6933e01 100644 | |
| --- a/web/_site/doc/en/ruby/classes-and-modules/index.html | |
| +++ b/web/_site/doc/en/ruby/classes-and-modules/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Classes & Modules - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/ruby/constants' rel='prev' title='Constants'> | |
| + <link href='/doc/en/ruby/blocks-and-procs' rel='next' title='Blocks & Procs'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/constants/index.html b/web/_site/doc/en/ruby/constants/index.html | |
| index 152df8e..6fab25c 100644 | |
| --- a/web/_site/doc/en/ruby/constants/index.html | |
| +++ b/web/_site/doc/en/ruby/constants/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Constants - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/ruby/methods' rel='prev' title='Methods'> | |
| + <link href='/doc/en/ruby/classes-and-modules' rel='next' title='Classes & Modules'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/global-variables/index.html b/web/_site/doc/en/ruby/global-variables/index.html | |
| index ab666aa..d2a194f 100644 | |
| --- a/web/_site/doc/en/ruby/global-variables/index.html | |
| +++ b/web/_site/doc/en/ruby/global-variables/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Global Variables - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/ruby/class-variables' rel='prev' title='Class Variables'> | |
| + <link href='/doc/en/specs' rel='next' title='Specs'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/index.html b/web/_site/doc/en/ruby/index.html | |
| index c1aa996..797c024 100644 | |
| --- a/web/_site/doc/en/ruby/index.html | |
| +++ b/web/_site/doc/en/ruby/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Ruby - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/contributing/style-guide' rel='prev' title='Style Guide'> | |
| + <link href='/doc/en/ruby/scripts' rel='next' title='Scripts'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/instance-variables/index.html b/web/_site/doc/en/ruby/instance-variables/index.html | |
| index 1693f56..4602253 100644 | |
| --- a/web/_site/doc/en/ruby/instance-variables/index.html | |
| +++ b/web/_site/doc/en/ruby/instance-variables/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Instance Variables - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/ruby/locas-variables' rel='prev' title='Local Variables'> | |
| + <link href='/doc/en/ruby/class-variables' rel='next' title='Class Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/local-variables/index.html b/web/_site/doc/en/ruby/local-variables/index.html | |
| index 36e40fd..70e8602 100644 | |
| --- a/web/_site/doc/en/ruby/local-variables/index.html | |
| +++ b/web/_site/doc/en/ruby/local-variables/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Local Variables - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/ruby/blocks-and-procs' rel='prev' title='Blocks & Procs'> | |
| + <link href='/doc/en/ruby/instance-variables' rel='next' title='Instance Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/methods/index.html b/web/_site/doc/en/ruby/methods/index.html | |
| index af0891a..aa38c1f 100644 | |
| --- a/web/_site/doc/en/ruby/methods/index.html | |
| +++ b/web/_site/doc/en/ruby/methods/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Methods - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/ruby/scripts' rel='prev' title='Scripts'> | |
| + <link href='/doc/en/ruby/constants' rel='next' title='Constants'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/scripts/index.html b/web/_site/doc/en/ruby/scripts/index.html | |
| index 46dbca8..ce73c2e 100644 | |
| --- a/web/_site/doc/en/ruby/scripts/index.html | |
| +++ b/web/_site/doc/en/ruby/scripts/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Scripts - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/ruby' rel='prev' title='Ruby'> | |
| + <link href='/doc/en/ruby/methods' rel='next' title='Methods'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/specs/compiler/index.html b/web/_site/doc/en/specs/compiler/index.html | |
| index 6aff0c3..159026f 100644 | |
| --- a/web/_site/doc/en/specs/compiler/index.html | |
| +++ b/web/_site/doc/en/specs/compiler/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Compiler Specs - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/specs/rubyspec' rel='prev' title='RubySpec'> | |
| + <link href='/doc/en/build-system' rel='next' title='Build System'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/specs/index.html b/web/_site/doc/en/specs/index.html | |
| index f0678d5..72f37ee 100644 | |
| --- a/web/_site/doc/en/specs/index.html | |
| +++ b/web/_site/doc/en/specs/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Specs - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/ruby/global-variables' rel='prev' title='Ruby - Global Variables'> | |
| + <link href='/doc/en/specs/rubyspec' rel='next' title='RubySpec'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/specs/rubyspec/index.html b/web/_site/doc/en/specs/rubyspec/index.html | |
| index 679d5bf..5b47430 100644 | |
| --- a/web/_site/doc/en/specs/rubyspec/index.html | |
| +++ b/web/_site/doc/en/specs/rubyspec/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>RubySpec - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/specs' rel='prev' title='Specs'> | |
| + <link href='/doc/en/specs/compiler' rel='next' title='Compiler Specs'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/systems/c-api/index.html b/web/_site/doc/en/systems/c-api/index.html | |
| index 5d915b9..9a15ae1 100644 | |
| --- a/web/_site/doc/en/systems/c-api/index.html | |
| +++ b/web/_site/doc/en/systems/c-api/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>C-API - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/systems/io' rel='prev' title='IO'> | |
| + <link href='/doc/en/tools' rel='next' title='Tools'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/systems/concurrency/index.html b/web/_site/doc/en/systems/concurrency/index.html | |
| index a9dc1d4..ebf8aab 100644 | |
| --- a/web/_site/doc/en/systems/concurrency/index.html | |
| +++ b/web/_site/doc/en/systems/concurrency/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Concurrency - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/systems/ffi' rel='prev' title='FFI'> | |
| + <link href='/doc/en/systems/io' rel='next' title='IO'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/systems/ffi/index.html b/web/_site/doc/en/systems/ffi/index.html | |
| index ea3a92b..890d0d7 100644 | |
| --- a/web/_site/doc/en/systems/ffi/index.html | |
| +++ b/web/_site/doc/en/systems/ffi/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Foreign Function Interface - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/systems/primitives' rel='prev' title='Primitives'> | |
| + <link href='/doc/en/systems/concurrency' rel='next' title='Concurrency'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/systems/index.html b/web/_site/doc/en/systems/index.html | |
| index 03b8cce..e5a2877 100644 | |
| --- a/web/_site/doc/en/systems/index.html | |
| +++ b/web/_site/doc/en/systems/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Rubinius Systems - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/garbage-collector/large-objects' rel='prev' title='Garbage Collector - Large Objects'> | |
| + <link href='/doc/en/systems/primitives' rel='next' title='Primitives'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/systems/io/index.html b/web/_site/doc/en/systems/io/index.html | |
| index cd528cd..79c0385 100644 | |
| --- a/web/_site/doc/en/systems/io/index.html | |
| +++ b/web/_site/doc/en/systems/io/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>IO - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/systems/concurrency' rel='prev' title='Concurrency'> | |
| + <link href='/doc/en/systems/c-api' rel='next' title='C-API'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/systems/primitives/index.html b/web/_site/doc/en/systems/primitives/index.html | |
| index 1ee1b1c..d22f35f 100644 | |
| --- a/web/_site/doc/en/systems/primitives/index.html | |
| +++ b/web/_site/doc/en/systems/primitives/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Primitives - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/systems' rel='prev' title='Rubinius Systems'> | |
| + <link href='/doc/en/systems/ffi' rel='next' title='FFI'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/tools/debugger/index.html b/web/_site/doc/en/tools/debugger/index.html | |
| index 77313c5..92060c8 100644 | |
| --- a/web/_site/doc/en/tools/debugger/index.html | |
| +++ b/web/_site/doc/en/tools/debugger/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Debugger - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/tools' rel='prev' title='Tools'> | |
| + <link href='/doc/en/tools/profiler' rel='next' title='Profiler'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/tools/index.html b/web/_site/doc/en/tools/index.html | |
| index 71aad1c..43f35bc 100644 | |
| --- a/web/_site/doc/en/tools/index.html | |
| +++ b/web/_site/doc/en/tools/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Tools - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/systems/c-api' rel='prev' title='Rubinius Systems - C-API'> | |
| + <link href='/doc/en/tools/debugger' rel='next' title='Debugger'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/tools/memory-analysis/index.html b/web/_site/doc/en/tools/memory-analysis/index.html | |
| index e31093d..9829978 100644 | |
| --- a/web/_site/doc/en/tools/memory-analysis/index.html | |
| +++ b/web/_site/doc/en/tools/memory-analysis/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Memory Analysis - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/tools/profiler' rel='prev' title='Profiler'> | |
| + <link href='/doc/en/how-to' rel='next' title='How-To'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/tools/profiler/index.html b/web/_site/doc/en/tools/profiler/index.html | |
| index 2943aac..ab86906 100644 | |
| --- a/web/_site/doc/en/tools/profiler/index.html | |
| +++ b/web/_site/doc/en/tools/profiler/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Profiler - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/tools/debugger' rel='prev' title='Debugger'> | |
| + <link href='/doc/en/tools/memory-analysis' rel='next' title='Memory Analysis'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/virtual-machine/custom-dispatch-logic/index.html b/web/_site/doc/en/virtual-machine/custom-dispatch-logic/index.html | |
| index dd58b05..2da7d4c 100644 | |
| --- a/web/_site/doc/en/virtual-machine/custom-dispatch-logic/index.html | |
| +++ b/web/_site/doc/en/virtual-machine/custom-dispatch-logic/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Custom Dispatch Logic - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/virtual-machine/instructions' rel='prev' title='Instructions'> | |
| + <link href='/doc/en/bytecode-compiler' rel='next' title='Bytecode Compiler'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/virtual-machine/index.html b/web/_site/doc/en/virtual-machine/index.html | |
| index 215603a..ba6fb7e 100644 | |
| --- a/web/_site/doc/en/virtual-machine/index.html | |
| +++ b/web/_site/doc/en/virtual-machine/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Virtual Machine - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/bootstrapping' rel='prev' title='Bootstrapping'> | |
| + <link href='/doc/en/virtual-machine/instructions' rel='next' title='Instructions'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/virtual-machine/instructions/index.html b/web/_site/doc/en/virtual-machine/instructions/index.html | |
| index 6f7fc22..1bf6926 100644 | |
| --- a/web/_site/doc/en/virtual-machine/instructions/index.html | |
| +++ b/web/_site/doc/en/virtual-machine/instructions/index.html | |
| @@ -1,7 +1,7 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Instructions - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| <meta content='en' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/en/virtual-machine' rel='prev' title='Virtual Machine'> | |
| + <link href='/doc/en/virtual-machine/custom-dispatch-logic' rel='next' title='Custom Dispatch Logic'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/what-is-rubinius/index.html b/web/_site/doc/en/what-is-rubinius/index.html | |
| index 92355b8..2e269d9 100644 | |
| --- a/web/_site/doc/en/what-is-rubinius/index.html | |
| +++ b/web/_site/doc/en/what-is-rubinius/index.html | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + <link href='/doc/en/getting-started' rel='next' title='Getting Started'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/appendix-a-glossary/index.html b/web/_site/doc/es/appendix-a-glossary/index.html | |
| index 398d9ea..dd92e9d 100644 | |
| --- a/web/_site/doc/es/appendix-a-glossary/index.html | |
| +++ b/web/_site/doc/es/appendix-a-glossary/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Appendix A - Glossary - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/how-to/translate-documentation' rel='prev' title='How-To - Translate Documentation'> | |
| + <link href='/doc/es/appendix-b-reading-list' rel='next' title='Appendix B - Reading List'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/appendix-b-reading-list/index.html b/web/_site/doc/es/appendix-b-reading-list/index.html | |
| index 63f4b87..96d145f 100644 | |
| --- a/web/_site/doc/es/appendix-b-reading-list/index.html | |
| +++ b/web/_site/doc/es/appendix-b-reading-list/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Appendix B - Reading List - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/appendix-a-glossary' rel='prev' title='Appendix A - Glossary'> | |
| + <link href='/doc/es/terms-index' rel='next' title='Terms Index'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/bootstrapping/index.html b/web/_site/doc/es/bootstrapping/index.html | |
| index 23306ad..38565b1 100644 | |
| --- a/web/_site/doc/es/bootstrapping/index.html | |
| +++ b/web/_site/doc/es/bootstrapping/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Bootstrapping - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/build-system' rel='prev' title='Sistema de Construcción'> | |
| + <link href='/doc/es/virtual-machine' rel='next' title='La Máquina Virtual'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/build-system/index.html b/web/_site/doc/es/build-system/index.html | |
| index 95c1e13..79c5589 100644 | |
| --- a/web/_site/doc/es/build-system/index.html | |
| +++ b/web/_site/doc/es/build-system/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Build System - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/specs/compiler' rel='prev' title='Specs - Compiler'> | |
| + <link href='/doc/es/bootstrapping' rel='next' title='Bootstrapping'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/bytecode-compiler/ast/index.html b/web/_site/doc/es/bytecode-compiler/ast/index.html | |
| index 7dfcd29..b39dae6 100644 | |
| --- a/web/_site/doc/es/bytecode-compiler/ast/index.html | |
| +++ b/web/_site/doc/es/bytecode-compiler/ast/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Abstract Syntax Trees - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/bytecode-compiler/parser' rel='prev' title='Parser'> | |
| + <link href='/doc/es/bytecode-compiler/compiler' rel='next' title='Compiler'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/bytecode-compiler/compiler/index.html b/web/_site/doc/es/bytecode-compiler/compiler/index.html | |
| index 6e33ea9..cfbf04c 100644 | |
| --- a/web/_site/doc/es/bytecode-compiler/compiler/index.html | |
| +++ b/web/_site/doc/es/bytecode-compiler/compiler/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Compiler - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/bytecode-compiler/ast' rel='prev' title='AST'> | |
| + <link href='/doc/es/bytecode-compiler/transformations' rel='next' title='Transformations'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/bytecode-compiler/generator/index.html b/web/_site/doc/es/bytecode-compiler/generator/index.html | |
| index c48a2a1..dc0fe63 100644 | |
| --- a/web/_site/doc/es/bytecode-compiler/generator/index.html | |
| +++ b/web/_site/doc/es/bytecode-compiler/generator/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Generator - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/bytecode-compiler/transformations' rel='prev' title='Transformations'> | |
| + <link href='/doc/es/jit' rel='next' title='JIT Compiler'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/bytecode-compiler/index.html b/web/_site/doc/es/bytecode-compiler/index.html | |
| index 293e196..dfb2b44 100644 | |
| --- a/web/_site/doc/es/bytecode-compiler/index.html | |
| +++ b/web/_site/doc/es/bytecode-compiler/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Compilador a bytecode - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/virtual-machine/custom-dispatch-logic' rel='prev' title='Lógica de búsqueda y ejecución de métodos'> | |
| + <link href='/doc/es/bytecode-compiler/parser' rel='next' title='Parser'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/bytecode-compiler/parser/index.html b/web/_site/doc/es/bytecode-compiler/parser/index.html | |
| index 7157fa5..f35a521 100644 | |
| --- a/web/_site/doc/es/bytecode-compiler/parser/index.html | |
| +++ b/web/_site/doc/es/bytecode-compiler/parser/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Ruby Parser - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/bytecode-compiler' rel='prev' title='Compilador a Bytecode'> | |
| + <link href='/doc/es/bytecode-compiler/ast' rel='next' title='AST'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/bytecode-compiler/transformations/index.html b/web/_site/doc/es/bytecode-compiler/transformations/index.html | |
| index 737156b..2277671 100644 | |
| --- a/web/_site/doc/es/bytecode-compiler/transformations/index.html | |
| +++ b/web/_site/doc/es/bytecode-compiler/transformations/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Transformaciones - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/bytecode-compiler/compiler' rel='prev' title='Compilador'> | |
| + <link href='/doc/es/bytecode-compiler/generator' rel='next' title='Generador'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/contributing/communication/index.html b/web/_site/doc/es/contributing/communication/index.html | |
| index af997f9..87e4b5b 100644 | |
| --- a/web/_site/doc/es/contributing/communication/index.html | |
| +++ b/web/_site/doc/es/contributing/communication/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Comunicación - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/contributing' rel='prev' title='Aportando a Rubinius'> | |
| + <link href='/doc/es/contributing/style-guide' rel='next' title='Guía de estilo'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/contributing/index.html b/web/_site/doc/es/contributing/index.html | |
| index 073d43d..9b8b251 100644 | |
| --- a/web/_site/doc/es/contributing/index.html | |
| +++ b/web/_site/doc/es/contributing/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Aportando a Rubinius - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/getting-started/troubleshooting' rel='prev' title='Resolviendo problemas'> | |
| + <link href='/doc/es/contributing/communication' rel='next' title='Comunicación'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/contributing/style-guide/index.html b/web/_site/doc/es/contributing/style-guide/index.html | |
| index 4ed9194..10bd816 100644 | |
| --- a/web/_site/doc/es/contributing/style-guide/index.html | |
| +++ b/web/_site/doc/es/contributing/style-guide/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Gúia de estilo - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/contributing/communication' rel='prev' title='Comunicación'> | |
| + <link href='/doc/es/ruby' rel='next' title='Ruby'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/garbage-collector/index.html b/web/_site/doc/es/garbage-collector/index.html | |
| index a997dc1..8bc6edd 100644 | |
| --- a/web/_site/doc/es/garbage-collector/index.html | |
| +++ b/web/_site/doc/es/garbage-collector/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Garbage Collector - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/jit' rel='prev' title='JIT Compiler'> | |
| + <link href='/doc/es/garbage-collector/nursery' rel='next' title='Nursery'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/garbage-collector/large-objects/index.html b/web/_site/doc/es/garbage-collector/large-objects/index.html | |
| index 09d81aa..cd1ad28 100644 | |
| --- a/web/_site/doc/es/garbage-collector/large-objects/index.html | |
| +++ b/web/_site/doc/es/garbage-collector/large-objects/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Large Objects - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/garbage-collector/mature-generation' rel='prev' title='Mature Generation'> | |
| + <link href='/doc/es/systems' rel='next' title='Rubinius Systems'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/garbage-collector/mature-generation/index.html b/web/_site/doc/es/garbage-collector/mature-generation/index.html | |
| index 937cb16..d678250 100644 | |
| --- a/web/_site/doc/es/garbage-collector/mature-generation/index.html | |
| +++ b/web/_site/doc/es/garbage-collector/mature-generation/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Mature Generation - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/garbage-collector/young-generation' rel='prev' title='Young Generation'> | |
| + <link href='/doc/es/garbage-collector/large-objects' rel='next' title='Large Objects'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/garbage-collector/nursery/index.html b/web/_site/doc/es/garbage-collector/nursery/index.html | |
| index 9461560..5556c68 100644 | |
| --- a/web/_site/doc/es/garbage-collector/nursery/index.html | |
| +++ b/web/_site/doc/es/garbage-collector/nursery/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Nursery - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/garbage-collector' rel='prev' title='Garbage Collector'> | |
| + <link href='/doc/es/garbage-collector/young-generation' rel='next' title='Young Generation'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/garbage-collector/young-generation/index.html b/web/_site/doc/es/garbage-collector/young-generation/index.html | |
| index a19ea21..7799fcf 100644 | |
| --- a/web/_site/doc/es/garbage-collector/young-generation/index.html | |
| +++ b/web/_site/doc/es/garbage-collector/young-generation/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Young Generation - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/garbage-collector/nursery' rel='prev' title='Nursery'> | |
| + <link href='/doc/es/garbage-collector/mature-generation' rel='next' title='Mature Generation'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/getting-started/building/index.html b/web/_site/doc/es/getting-started/building/index.html | |
| index b4e7b72..3121ba8 100644 | |
| --- a/web/_site/doc/es/getting-started/building/index.html | |
| +++ b/web/_site/doc/es/getting-started/building/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Construyendo Rubinius - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/getting-started/requirements' rel='prev' title='Requisitos'> | |
| + <link href='/doc/es/getting-started/running-rubinius' rel='next' title='Ejecutando Rubinius'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/getting-started/index.html b/web/_site/doc/es/getting-started/index.html | |
| index d806173..21984a8 100644 | |
| --- a/web/_site/doc/es/getting-started/index.html | |
| +++ b/web/_site/doc/es/getting-started/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Primeros pasos - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/what-is-rubinius' rel='prev' title='Qué es Rubinius?'> | |
| + <link href='/doc/es/getting-started/requirements' rel='next' title='Requisitos'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/getting-started/requirements/index.html b/web/_site/doc/es/getting-started/requirements/index.html | |
| index 3b86d72..fb4e180 100644 | |
| --- a/web/_site/doc/es/getting-started/requirements/index.html | |
| +++ b/web/_site/doc/es/getting-started/requirements/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Requisitos - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/getting-started' rel='prev' title='Primeros pasos'> | |
| + <link href='/doc/es/getting-started/building' rel='next' title='Construyendo Rubinius'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/getting-started/running-rubinius/index.html b/web/_site/doc/es/getting-started/running-rubinius/index.html | |
| index 217c0d3..c74de22 100644 | |
| --- a/web/_site/doc/es/getting-started/running-rubinius/index.html | |
| +++ b/web/_site/doc/es/getting-started/running-rubinius/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Ejecutando Rubinius - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/getting-started/building' rel='prev' title='Construyendo Rubinius'> | |
| + <link href='/doc/es/getting-started/troubleshooting' rel='next' title='Resolviendo problemas'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/getting-started/troubleshooting/index.html b/web/_site/doc/es/getting-started/troubleshooting/index.html | |
| index 5d103bf..f569e11 100644 | |
| --- a/web/_site/doc/es/getting-started/troubleshooting/index.html | |
| +++ b/web/_site/doc/es/getting-started/troubleshooting/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Resolviendo problemas - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/getting-started/running-rubinius' rel='prev' title='Ejecutando Rubinius'> | |
| + <link href='/doc/es/contributing' rel='next' title='Aportando a Rubinius'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/how-to/fix-a-failing-spec/index.html b/web/_site/doc/es/how-to/fix-a-failing-spec/index.html | |
| index 1fc5087..ff30341 100644 | |
| --- a/web/_site/doc/es/how-to/fix-a-failing-spec/index.html | |
| +++ b/web/_site/doc/es/how-to/fix-a-failing-spec/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Fix a Failing Spec - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/how-to/write-ruby-spec' rel='prev' title='Write a Ruby Spec'> | |
| + <link href='/doc/es/how-to/write-a-blog-post' rel='next' title='Write a Blog Post'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/how-to/index.html b/web/_site/doc/es/how-to/index.html | |
| index 0b0afd2..8275797 100644 | |
| --- a/web/_site/doc/es/how-to/index.html | |
| +++ b/web/_site/doc/es/how-to/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Cómo - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/tools/memory-analysis' rel='prev' title='Herramientas - Análisis de Memoria'> | |
| + <link href='/doc/es/how-to/write-a-ticket' rel='next' title='Escribir un reporte de fallos'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/how-to/translate-documentation/index.html b/web/_site/doc/es/how-to/translate-documentation/index.html | |
| index 439a2ae..e337442 100644 | |
| --- a/web/_site/doc/es/how-to/translate-documentation/index.html | |
| +++ b/web/_site/doc/es/how-to/translate-documentation/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Translate Documentation - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/how-to/write-documentation' rel='prev' title='Write Documentation'> | |
| + <link href='/doc/es/appendix-a-glossary' rel='next' title='Appendix A - Glossary'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/how-to/write-a-blog-post/index.html b/web/_site/doc/es/how-to/write-a-blog-post/index.html | |
| index 3afca5f..a1dc7a0 100644 | |
| --- a/web/_site/doc/es/how-to/write-a-blog-post/index.html | |
| +++ b/web/_site/doc/es/how-to/write-a-blog-post/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Write a Blog Post - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/how-to/fix-a-failing-spec' rel='prev' title='Fix a Failing Spec'> | |
| + <link href='/doc/es/how-to/write-documentation' rel='next' title='Write Documentation'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/how-to/write-a-ruby-spec/index.html b/web/_site/doc/es/how-to/write-a-ruby-spec/index.html | |
| index c02216f..5df7e24 100644 | |
| --- a/web/_site/doc/es/how-to/write-a-ruby-spec/index.html | |
| +++ b/web/_site/doc/es/how-to/write-a-ruby-spec/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Write a Ruby Spec - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/how-to/write-a-ticket' rel='prev' title='Write a Ticket'> | |
| + <link href='/doc/es/how-to/fix-a-failing-spec' rel='next' title='Fix a Failing Spec'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/how-to/write-a-ticket/index.html b/web/_site/doc/es/how-to/write-a-ticket/index.html | |
| index 333fbfa..65ca198 100644 | |
| --- a/web/_site/doc/es/how-to/write-a-ticket/index.html | |
| +++ b/web/_site/doc/es/how-to/write-a-ticket/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Write a Ticket - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/how-to' rel='prev' title='How-To'> | |
| + <link href='/doc/es/how-to/write-a-ruby-spec' rel='next' title='Write a Ruby Spec'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/how-to/write-documentation/index.html b/web/_site/doc/es/how-to/write-documentation/index.html | |
| index a567658..013b237 100644 | |
| --- a/web/_site/doc/es/how-to/write-documentation/index.html | |
| +++ b/web/_site/doc/es/how-to/write-documentation/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Write Documentation - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/how-to/write-a-blog-post' rel='prev' title='Write a Blog Post'> | |
| + <link href='/doc/es/how-to/translate-documentation' rel='next' title='Translate Documentation'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/index-of-terms/index.html b/web/_site/doc/es/index-of-terms/index.html | |
| index a03ee55..42dc5bf 100644 | |
| --- a/web/_site/doc/es/index-of-terms/index.html | |
| +++ b/web/_site/doc/es/index-of-terms/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Index of Terms - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/appendix-b-reading-list' rel='prev' title='Appendix B - Reading List'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/index.html b/web/_site/doc/es/index.html | |
| index 7d4095a..730ce12 100644 | |
| --- a/web/_site/doc/es/index.html | |
| +++ b/web/_site/doc/es/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Tabla de Contenido - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + <link href='/doc/es/what-is-rubinius' rel='next' title='Qué es Rubinius?'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/jit/index.html b/web/_site/doc/es/jit/index.html | |
| index 7ae3275..33c8aa4 100644 | |
| --- a/web/_site/doc/es/jit/index.html | |
| +++ b/web/_site/doc/es/jit/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>JIT Compiler - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/bytecode-compiler/generator' rel='prev' title='Bytecode Compiler - Generator'> | |
| + <link href='/doc/es/garbage-collector' rel='next' title='Garbage Collector'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/blocks-and-procs/index.html b/web/_site/doc/es/ruby/blocks-and-procs/index.html | |
| index fd1a630..d21c0aa 100644 | |
| --- a/web/_site/doc/es/ruby/blocks-and-procs/index.html | |
| +++ b/web/_site/doc/es/ruby/blocks-and-procs/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Blocks & Procs - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/ruby/classes-and-modules' rel='prev' title='Classes & Modules'> | |
| + <link href='/doc/es/ruby/local-variables' rel='next' title='Local Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/class-variables/index.html b/web/_site/doc/es/ruby/class-variables/index.html | |
| index 72763b0..df0b69c 100644 | |
| --- a/web/_site/doc/es/ruby/class-variables/index.html | |
| +++ b/web/_site/doc/es/ruby/class-variables/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Class Variables - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/ruby/instance-variables' rel='prev' title='Instance Variables'> | |
| + <link href='/doc/es/ruby/global-variables' rel='next' title='Global Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/classes-and-modules/index.html b/web/_site/doc/es/ruby/classes-and-modules/index.html | |
| index c1aeb88..4cd932f 100644 | |
| --- a/web/_site/doc/es/ruby/classes-and-modules/index.html | |
| +++ b/web/_site/doc/es/ruby/classes-and-modules/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Classes & Modules - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/ruby/constants' rel='prev' title='Constants'> | |
| + <link href='/doc/es/ruby/blocks-and-procs' rel='next' title='Blocks & Procs'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/constants/index.html b/web/_site/doc/es/ruby/constants/index.html | |
| index 7cb8ce7..c58b878 100644 | |
| --- a/web/_site/doc/es/ruby/constants/index.html | |
| +++ b/web/_site/doc/es/ruby/constants/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Constants - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/ruby/methods' rel='prev' title='Methods'> | |
| + <link href='/doc/es/ruby/classes-and-modules' rel='next' title='Classes & Modules'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/global-variables/index.html b/web/_site/doc/es/ruby/global-variables/index.html | |
| index adaf4f4..5a48236 100644 | |
| --- a/web/_site/doc/es/ruby/global-variables/index.html | |
| +++ b/web/_site/doc/es/ruby/global-variables/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Variables globales - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/ruby/class-variables' rel='prev' title='Variables de clase'> | |
| + <link href='/doc/es/specs' rel='next' title='Especificaciones'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/index.html b/web/_site/doc/es/ruby/index.html | |
| index 15b3709..5065e0f 100644 | |
| --- a/web/_site/doc/es/ruby/index.html | |
| +++ b/web/_site/doc/es/ruby/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Ruby - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/contributing/style-guide' rel='prev' title='Guía de estilo'> | |
| + <link href='/doc/es/ruby/scripts' rel='next' title='Scripts'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/instance-variables/index.html b/web/_site/doc/es/ruby/instance-variables/index.html | |
| index 6a048c6..8270cb1 100644 | |
| --- a/web/_site/doc/es/ruby/instance-variables/index.html | |
| +++ b/web/_site/doc/es/ruby/instance-variables/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Instance Variables - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/ruby/locas-variables' rel='prev' title='Local Variables'> | |
| + <link href='/doc/es/ruby/class-variables' rel='next' title='Class Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/local-variables/index.html b/web/_site/doc/es/ruby/local-variables/index.html | |
| index 822b702..dd03aab 100644 | |
| --- a/web/_site/doc/es/ruby/local-variables/index.html | |
| +++ b/web/_site/doc/es/ruby/local-variables/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Local Variables - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/ruby/blocks-and-procs' rel='prev' title='Blocks & Procs'> | |
| + <link href='/doc/es/ruby/instance-variables' rel='next' title='Instance Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/methods/index.html b/web/_site/doc/es/ruby/methods/index.html | |
| index d05a362..3d66bd2 100644 | |
| --- a/web/_site/doc/es/ruby/methods/index.html | |
| +++ b/web/_site/doc/es/ruby/methods/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Methods - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/ruby/scripts' rel='prev' title='Scripts'> | |
| + <link href='/doc/es/ruby/constants' rel='next' title='Constants'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/scripts/index.html b/web/_site/doc/es/ruby/scripts/index.html | |
| index b8125c7..a0c8418 100644 | |
| --- a/web/_site/doc/es/ruby/scripts/index.html | |
| +++ b/web/_site/doc/es/ruby/scripts/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Scripts - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/ruby' rel='prev' title='Ruby'> | |
| + <link href='/doc/es/ruby/methods' rel='next' title='Methods'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/specs/compiler/index.html b/web/_site/doc/es/specs/compiler/index.html | |
| index 20f45e8..9e01663 100644 | |
| --- a/web/_site/doc/es/specs/compiler/index.html | |
| +++ b/web/_site/doc/es/specs/compiler/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Compiler Specs - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/specs/rubyspec' rel='prev' title='RubySpec'> | |
| + <link href='/doc/es/build-system' rel='next' title='Build System'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/specs/index.html b/web/_site/doc/es/specs/index.html | |
| index 144cbaf..ea657a5 100644 | |
| --- a/web/_site/doc/es/specs/index.html | |
| +++ b/web/_site/doc/es/specs/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Especificaciones - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/ruby/global-variables' rel='prev' title='Ruby - Variables Globales'> | |
| + <link href='/doc/es/specs/rubyspec' rel='next' title='RubySpec'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/specs/rubyspec/index.html b/web/_site/doc/es/specs/rubyspec/index.html | |
| index a2488e9..29acba6 100644 | |
| --- a/web/_site/doc/es/specs/rubyspec/index.html | |
| +++ b/web/_site/doc/es/specs/rubyspec/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>RubySpec - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/specs' rel='prev' title='Specs'> | |
| + <link href='/doc/es/specs/compiler' rel='next' title='Compiler Specs'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/systems/c-api/index.html b/web/_site/doc/es/systems/c-api/index.html | |
| index 276c0dd..a9383e5 100644 | |
| --- a/web/_site/doc/es/systems/c-api/index.html | |
| +++ b/web/_site/doc/es/systems/c-api/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>C-API - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/systems/io' rel='prev' title='IO'> | |
| + <link href='/doc/es/tools' rel='next' title='Tools'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/systems/concurrency/index.html b/web/_site/doc/es/systems/concurrency/index.html | |
| index fd4af3f..4125165 100644 | |
| --- a/web/_site/doc/es/systems/concurrency/index.html | |
| +++ b/web/_site/doc/es/systems/concurrency/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Concurrency - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/systems/ffi' rel='prev' title='FFI'> | |
| + <link href='/doc/es/systems/io' rel='next' title='IO'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/systems/ffi/index.html b/web/_site/doc/es/systems/ffi/index.html | |
| index 89a1414..c9d916c 100644 | |
| --- a/web/_site/doc/es/systems/ffi/index.html | |
| +++ b/web/_site/doc/es/systems/ffi/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Foreign Function Interface - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/systems/primitives' rel='prev' title='Primitives'> | |
| + <link href='/doc/es/systems/concurrency' rel='next' title='Concurrency'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/systems/index.html b/web/_site/doc/es/systems/index.html | |
| index 4b95ca7..17e8e7c 100644 | |
| --- a/web/_site/doc/es/systems/index.html | |
| +++ b/web/_site/doc/es/systems/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Rubinius Systems - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/garbage-collector/large-objects' rel='prev' title='Garbage Collector - Large Objects'> | |
| + <link href='/doc/es/systems/primitives' rel='next' title='Primitives'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/systems/io/index.html b/web/_site/doc/es/systems/io/index.html | |
| index ae2d79f..5c5c061 100644 | |
| --- a/web/_site/doc/es/systems/io/index.html | |
| +++ b/web/_site/doc/es/systems/io/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>IO - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/systems/concurrency' rel='prev' title='Concurrency'> | |
| + <link href='/doc/es/systems/c-api' rel='next' title='C-API'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/systems/primitives/index.html b/web/_site/doc/es/systems/primitives/index.html | |
| index b7b7840..92584e7 100644 | |
| --- a/web/_site/doc/es/systems/primitives/index.html | |
| +++ b/web/_site/doc/es/systems/primitives/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Primitives - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/systems' rel='prev' title='Rubinius Systems'> | |
| + <link href='/doc/es/systems/ffi' rel='next' title='FFI'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/tools/debugger/index.html b/web/_site/doc/es/tools/debugger/index.html | |
| index 9deb984..bc1ebeb 100644 | |
| --- a/web/_site/doc/es/tools/debugger/index.html | |
| +++ b/web/_site/doc/es/tools/debugger/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Debugger - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/tools' rel='prev' title='Tools'> | |
| + <link href='/doc/es/tools/profiler' rel='next' title='Profiler'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/tools/index.html b/web/_site/doc/es/tools/index.html | |
| index 1a52377..cd42421 100644 | |
| --- a/web/_site/doc/es/tools/index.html | |
| +++ b/web/_site/doc/es/tools/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Tools - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/systems/c-api' rel='prev' title='Rubinius Systems - C-API'> | |
| + <link href='/doc/es/tools/debugger' rel='next' title='Debugger'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/tools/memory-analysis/index.html b/web/_site/doc/es/tools/memory-analysis/index.html | |
| index 9d5528e..307ab79 100644 | |
| --- a/web/_site/doc/es/tools/memory-analysis/index.html | |
| +++ b/web/_site/doc/es/tools/memory-analysis/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Memory Analysis - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/tools/profiler' rel='prev' title='Profiler'> | |
| + <link href='/doc/es/how-to' rel='next' title='How-To'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/tools/profiler/index.html b/web/_site/doc/es/tools/profiler/index.html | |
| index a007309..a16e8fc 100644 | |
| --- a/web/_site/doc/es/tools/profiler/index.html | |
| +++ b/web/_site/doc/es/tools/profiler/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Profiler - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/tools/debugger' rel='prev' title='Debugger'> | |
| + <link href='/doc/es/tools/memory-analysis' rel='next' title='Memory Analysis'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/virtual-machine/custom-dispatch-logic/index.html b/web/_site/doc/es/virtual-machine/custom-dispatch-logic/index.html | |
| index f7ef025..3250c40 100644 | |
| --- a/web/_site/doc/es/virtual-machine/custom-dispatch-logic/index.html | |
| +++ b/web/_site/doc/es/virtual-machine/custom-dispatch-logic/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Custom Dispatch Logic - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/virtual-machine/instructions' rel='prev' title='Instructions'> | |
| + <link href='/doc/es/bytecode-compiler' rel='next' title='Bytecode Compiler'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/virtual-machine/index.html b/web/_site/doc/es/virtual-machine/index.html | |
| index 2e15e4c..235710d 100644 | |
| --- a/web/_site/doc/es/virtual-machine/index.html | |
| +++ b/web/_site/doc/es/virtual-machine/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Virtual Machine - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/bootstrapping' rel='prev' title='Bootstrapping'> | |
| + <link href='/doc/es/virtual-machine/instructions' rel='next' title='Instructions'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/virtual-machine/instructions/index.html b/web/_site/doc/es/virtual-machine/instructions/index.html | |
| index 5a80442..98673b6 100644 | |
| --- a/web/_site/doc/es/virtual-machine/instructions/index.html | |
| +++ b/web/_site/doc/es/virtual-machine/instructions/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Instrucciones - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/es/virtual-machine' rel='prev' title='La Máquina Virtual'> | |
| + <link href='/doc/es/virtual-machine/custom-dispatch-logic' rel='next' title='Lógica de búsqueda y ejecución de métodos'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/what-is-rubinius/index.html b/web/_site/doc/es/what-is-rubinius/index.html | |
| index d037405..a2c10bb 100644 | |
| --- a/web/_site/doc/es/what-is-rubinius/index.html | |
| +++ b/web/_site/doc/es/what-is-rubinius/index.html | |
| @@ -3,12 +3,14 @@ | |
| <head> | |
| <title>Rubinius : Use Ruby™</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='es' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + <link href='/doc/es/getting-started' rel='next' title='Primeros pasos'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/index.html b/web/_site/doc/index.html | |
| index c2a9a23..3e0b8ba 100644 | |
| --- a/web/_site/doc/index.html | |
| +++ b/web/_site/doc/index.html | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/appendix-a-glossary/index.html b/web/_site/doc/ja/appendix-a-glossary/index.html | |
| index e57fb71..be8a4d3 100644 | |
| --- a/web/_site/doc/ja/appendix-a-glossary/index.html | |
| +++ b/web/_site/doc/ja/appendix-a-glossary/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Appendix A - Glossary - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/how-to/translate-documentation' rel='prev' title='How-To - Translate Documentation'> | |
| + <link href='/doc/ja/appendix-b-reading-list' rel='next' title='Appendix B - Reading List'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/appendix-b-reading-list/index.html b/web/_site/doc/ja/appendix-b-reading-list/index.html | |
| index e896265..a2ffbc4 100644 | |
| --- a/web/_site/doc/ja/appendix-b-reading-list/index.html | |
| +++ b/web/_site/doc/ja/appendix-b-reading-list/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Appendix B - Reading List - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/appendix-a-glossary' rel='prev' title='Appendix A - Glossary'> | |
| + <link href='/doc/ja/terms-index' rel='next' title='Terms Index'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/bootstrapping/index.html b/web/_site/doc/ja/bootstrapping/index.html | |
| index aa3e546..dd17987 100644 | |
| --- a/web/_site/doc/ja/bootstrapping/index.html | |
| +++ b/web/_site/doc/ja/bootstrapping/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Bootstrapping - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/build-system' rel='prev' title='Build System'> | |
| + <link href='/doc/ja/virtual-machine' rel='next' title='Virtual Machine'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/build-system/index.html b/web/_site/doc/ja/build-system/index.html | |
| index 5b8d43b..5252e21 100644 | |
| --- a/web/_site/doc/ja/build-system/index.html | |
| +++ b/web/_site/doc/ja/build-system/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Build System - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/specs/compiler' rel='prev' title='Specs - Compiler'> | |
| + <link href='/doc/ja/bootstrapping' rel='next' title='Bootstrapping'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/bytecode-compiler/ast/index.html b/web/_site/doc/ja/bytecode-compiler/ast/index.html | |
| index e18d6d6..bcacc8b 100644 | |
| --- a/web/_site/doc/ja/bytecode-compiler/ast/index.html | |
| +++ b/web/_site/doc/ja/bytecode-compiler/ast/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Abstract Syntax Trees - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/bytecode-compiler/parser' rel='prev' title='Parser'> | |
| + <link href='/doc/ja/bytecode-compiler/compiler' rel='next' title='Compiler'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/bytecode-compiler/compiler/index.html b/web/_site/doc/ja/bytecode-compiler/compiler/index.html | |
| index f903b0c..5b0d2db 100644 | |
| --- a/web/_site/doc/ja/bytecode-compiler/compiler/index.html | |
| +++ b/web/_site/doc/ja/bytecode-compiler/compiler/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Compiler - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/bytecode-compiler/ast' rel='prev' title='AST'> | |
| + <link href='/doc/ja/bytecode-compiler/transformations' rel='next' title='Transformations'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/bytecode-compiler/generator/index.html b/web/_site/doc/ja/bytecode-compiler/generator/index.html | |
| index 618dd3e..6af4e36 100644 | |
| --- a/web/_site/doc/ja/bytecode-compiler/generator/index.html | |
| +++ b/web/_site/doc/ja/bytecode-compiler/generator/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Generator - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/bytecode-compiler/transformations' rel='prev' title='Transformations'> | |
| + <link href='/doc/ja/jit' rel='next' title='JIT Compiler'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/bytecode-compiler/index.html b/web/_site/doc/ja/bytecode-compiler/index.html | |
| index df180fb..1e41924 100644 | |
| --- a/web/_site/doc/ja/bytecode-compiler/index.html | |
| +++ b/web/_site/doc/ja/bytecode-compiler/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Bytecode Compiler - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/virtual-machine/custom-dispatch-logic' rel='prev' title='Virtual Machine - Custom Dispatch Logic'> | |
| + <link href='/doc/ja/bytecode-compiler/parser' rel='next' title='Parser'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/bytecode-compiler/parser/index.html b/web/_site/doc/ja/bytecode-compiler/parser/index.html | |
| index 69f7e74..e3a3a25 100644 | |
| --- a/web/_site/doc/ja/bytecode-compiler/parser/index.html | |
| +++ b/web/_site/doc/ja/bytecode-compiler/parser/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Ruby Parser - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/bytecode-compiler' rel='prev' title='Bytecode Compiler'> | |
| + <link href='/doc/ja/bytecode-compiler/ast' rel='next' title='AST'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/bytecode-compiler/transformations/index.html b/web/_site/doc/ja/bytecode-compiler/transformations/index.html | |
| index 0a78988..f532c96 100644 | |
| --- a/web/_site/doc/ja/bytecode-compiler/transformations/index.html | |
| +++ b/web/_site/doc/ja/bytecode-compiler/transformations/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Compiler Transforms - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/bytecode-compiler/compiler' rel='prev' title='Compiler'> | |
| + <link href='/doc/ja/bytecode-compiler/generator' rel='next' title='Generator'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/contributing/communication/index.html b/web/_site/doc/ja/contributing/communication/index.html | |
| index 2c4602a..b868761 100644 | |
| --- a/web/_site/doc/ja/contributing/communication/index.html | |
| +++ b/web/_site/doc/ja/contributing/communication/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Communication - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/contributing' rel='prev' title='Contributing'> | |
| + <link href='/doc/ja/contributing/style-guide' rel='next' title='Style Guide'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/contributing/index.html b/web/_site/doc/ja/contributing/index.html | |
| index 17b0997..6a276f3 100644 | |
| --- a/web/_site/doc/ja/contributing/index.html | |
| +++ b/web/_site/doc/ja/contributing/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Contributing - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/getting-started/troubleshooting' rel='prev' title='Troubleshooting'> | |
| + <link href='/doc/ja/contributing/communication' rel='next' title='Communication'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/contributing/style-guide/index.html b/web/_site/doc/ja/contributing/style-guide/index.html | |
| index 851983b..ae78af3 100644 | |
| --- a/web/_site/doc/ja/contributing/style-guide/index.html | |
| +++ b/web/_site/doc/ja/contributing/style-guide/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Coding Style Guide - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/contributing/communication' rel='prev' title='Communication'> | |
| + <link href='/doc/ja/ruby' rel='next' title='Ruby'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/garbage-collector/index.html b/web/_site/doc/ja/garbage-collector/index.html | |
| index eb56c3d..3fcde1f 100644 | |
| --- a/web/_site/doc/ja/garbage-collector/index.html | |
| +++ b/web/_site/doc/ja/garbage-collector/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Garbage Collector - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/jit' rel='prev' title='JIT Compiler'> | |
| + <link href='/doc/ja/garbage-collector/nursery' rel='next' title='Nursery'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/garbage-collector/large-objects/index.html b/web/_site/doc/ja/garbage-collector/large-objects/index.html | |
| index 748e789..9f97e77 100644 | |
| --- a/web/_site/doc/ja/garbage-collector/large-objects/index.html | |
| +++ b/web/_site/doc/ja/garbage-collector/large-objects/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Large Objects - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/garbage-collector/mature-generation' rel='prev' title='Mature Generation'> | |
| + <link href='/doc/ja/systems' rel='next' title='Rubinius Systems'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/garbage-collector/mature-generation/index.html b/web/_site/doc/ja/garbage-collector/mature-generation/index.html | |
| index 2c1f7bc..0d65ead 100644 | |
| --- a/web/_site/doc/ja/garbage-collector/mature-generation/index.html | |
| +++ b/web/_site/doc/ja/garbage-collector/mature-generation/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Mature Generation - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/garbage-collector/young-generation' rel='prev' title='Young Generation'> | |
| + <link href='/doc/ja/garbage-collector/large-objects' rel='next' title='Large Objects'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/garbage-collector/nursery/index.html b/web/_site/doc/ja/garbage-collector/nursery/index.html | |
| index 7c4c6c4..3b86128 100644 | |
| --- a/web/_site/doc/ja/garbage-collector/nursery/index.html | |
| +++ b/web/_site/doc/ja/garbage-collector/nursery/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Nursery - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/garbage-collector' rel='prev' title='Garbage Collector'> | |
| + <link href='/doc/ja/garbage-collector/young-generation' rel='next' title='Young Generation'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/garbage-collector/young-generation/index.html b/web/_site/doc/ja/garbage-collector/young-generation/index.html | |
| index 51168df..7528b4f 100644 | |
| --- a/web/_site/doc/ja/garbage-collector/young-generation/index.html | |
| +++ b/web/_site/doc/ja/garbage-collector/young-generation/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Young Generation - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/garbage-collector/nursery' rel='prev' title='Nursery'> | |
| + <link href='/doc/ja/garbage-collector/mature-generation' rel='next' title='Mature Generation'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/getting-started/building/index.html b/web/_site/doc/ja/getting-started/building/index.html | |
| index 54af1ea..67f515c 100644 | |
| --- a/web/_site/doc/ja/getting-started/building/index.html | |
| +++ b/web/_site/doc/ja/getting-started/building/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Building Rubinius - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/getting-started/requirements' rel='prev' title='Requirements'> | |
| + <link href='/doc/ja/getting-started/running-rubinius' rel='next' title='Running Rubinius'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/getting-started/index.html b/web/_site/doc/ja/getting-started/index.html | |
| index 54b9f0c..312aac9 100644 | |
| --- a/web/_site/doc/ja/getting-started/index.html | |
| +++ b/web/_site/doc/ja/getting-started/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Getting Started - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/what-is-rubinius' rel='prev' title='What is Rubinius?'> | |
| + <link href='/doc/ja/getting-started/requirements' rel='next' title='Requirements'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/getting-started/requirements/index.html b/web/_site/doc/ja/getting-started/requirements/index.html | |
| index becaa0a..0d05d41 100644 | |
| --- a/web/_site/doc/ja/getting-started/requirements/index.html | |
| +++ b/web/_site/doc/ja/getting-started/requirements/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Requirements - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/getting-started' rel='prev' title='Getting Started'> | |
| + <link href='/doc/ja/getting-started/building' rel='next' title='Building'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/getting-started/running-rubinius/index.html b/web/_site/doc/ja/getting-started/running-rubinius/index.html | |
| index a88e44e..178e6df 100644 | |
| --- a/web/_site/doc/ja/getting-started/running-rubinius/index.html | |
| +++ b/web/_site/doc/ja/getting-started/running-rubinius/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Running Rubinius - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/getting-started/building' rel='prev' title='Building'> | |
| + <link href='/doc/ja/getting-started/troubleshooting' rel='next' title='Troubleshooting'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/getting-started/troubleshooting/index.html b/web/_site/doc/ja/getting-started/troubleshooting/index.html | |
| index 29f761f..728574c 100644 | |
| --- a/web/_site/doc/ja/getting-started/troubleshooting/index.html | |
| +++ b/web/_site/doc/ja/getting-started/troubleshooting/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Troubleshooting - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/getting-started/running-rubinius' rel='prev' title='Running Rubinius'> | |
| + <link href='/doc/ja/contributing' rel='next' title='Contributing'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/how-to/fix-a-failing-spec/index.html b/web/_site/doc/ja/how-to/fix-a-failing-spec/index.html | |
| index bef891f..b50e89f 100644 | |
| --- a/web/_site/doc/ja/how-to/fix-a-failing-spec/index.html | |
| +++ b/web/_site/doc/ja/how-to/fix-a-failing-spec/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Fix a Failing Spec - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/how-to/write-ruby-spec' rel='prev' title='Write a Ruby Spec'> | |
| + <link href='/doc/ja/how-to/write-a-blog-post' rel='next' title='Write a Blog Post'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/how-to/index.html b/web/_site/doc/ja/how-to/index.html | |
| index 0ab3f5c..79ef09c 100644 | |
| --- a/web/_site/doc/ja/how-to/index.html | |
| +++ b/web/_site/doc/ja/how-to/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/tools/memory-analysis' rel='prev' title='Tools - Memory Analysis'> | |
| + <link href='/doc/ja/how-to/write-a-ticket' rel='next' title='Write a Ticket'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/how-to/translate-documentation/index.html b/web/_site/doc/ja/how-to/translate-documentation/index.html | |
| index 5b792bc..5241d75 100644 | |
| --- a/web/_site/doc/ja/how-to/translate-documentation/index.html | |
| +++ b/web/_site/doc/ja/how-to/translate-documentation/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Translate Documentation - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/how-to/write-documentation' rel='prev' title='Write Documentation'> | |
| + <link href='/doc/ja/appendix-a-glossary' rel='next' title='Appendix A - Glossary'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/how-to/write-a-blog-post/index.html b/web/_site/doc/ja/how-to/write-a-blog-post/index.html | |
| index ee17110..616a8b6 100644 | |
| --- a/web/_site/doc/ja/how-to/write-a-blog-post/index.html | |
| +++ b/web/_site/doc/ja/how-to/write-a-blog-post/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Write a Blog Post - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/how-to/fix-a-failing-spec' rel='prev' title='Fix a Failing Spec'> | |
| + <link href='/doc/ja/how-to/write-documentation' rel='next' title='Write Documentation'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/how-to/write-a-ruby-spec/index.html b/web/_site/doc/ja/how-to/write-a-ruby-spec/index.html | |
| index 02ea7aa..4529073 100644 | |
| --- a/web/_site/doc/ja/how-to/write-a-ruby-spec/index.html | |
| +++ b/web/_site/doc/ja/how-to/write-a-ruby-spec/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Write a Ruby Spec - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/how-to/write-a-ticket' rel='prev' title='Write a Ticket'> | |
| + <link href='/doc/ja/how-to/fix-a-failing-spec' rel='next' title='Fix a Failing Spec'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/how-to/write-a-ticket/index.html b/web/_site/doc/ja/how-to/write-a-ticket/index.html | |
| index d7a6e10..2506c7c 100644 | |
| --- a/web/_site/doc/ja/how-to/write-a-ticket/index.html | |
| +++ b/web/_site/doc/ja/how-to/write-a-ticket/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Write a Ticket - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/how-to' rel='prev' title='How-To'> | |
| + <link href='/doc/ja/how-to/write-a-ruby-spec' rel='next' title='Write a Ruby Spec'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/how-to/write-documentation/index.html b/web/_site/doc/ja/how-to/write-documentation/index.html | |
| index 373eda8..f74ab09 100644 | |
| --- a/web/_site/doc/ja/how-to/write-documentation/index.html | |
| +++ b/web/_site/doc/ja/how-to/write-documentation/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Write Documentation - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/how-to/write-a-blog-post' rel='prev' title='Write a Blog Post'> | |
| + <link href='/doc/ja/how-to/translate-documentation' rel='next' title='Translate Documentation'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/index-of-terms/index.html b/web/_site/doc/ja/index-of-terms/index.html | |
| index 5236dac..85862f5 100644 | |
| --- a/web/_site/doc/ja/index-of-terms/index.html | |
| +++ b/web/_site/doc/ja/index-of-terms/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Index of Terms - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/appendix-b-reading-list' rel='prev' title='Appendix B - Reading List'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/index.html b/web/_site/doc/ja/index.html | |
| index 3e83c45..9ea8373 100644 | |
| --- a/web/_site/doc/ja/index.html | |
| +++ b/web/_site/doc/ja/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>目次 - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + <link href='/doc/ja/what-is-rubinius' rel='next' title='何がRubiniusのですか?'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/jit/index.html b/web/_site/doc/ja/jit/index.html | |
| index dd53995..a9a505b 100644 | |
| --- a/web/_site/doc/ja/jit/index.html | |
| +++ b/web/_site/doc/ja/jit/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>JIT Compiler - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/bytecode-compiler/generator' rel='prev' title='Bytecode Compiler - Generator'> | |
| + <link href='/doc/ja/garbage-collector' rel='next' title='Garbage Collector'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/blocks-and-procs/index.html b/web/_site/doc/ja/ruby/blocks-and-procs/index.html | |
| index 88db057..c1038520 100644 | |
| --- a/web/_site/doc/ja/ruby/blocks-and-procs/index.html | |
| +++ b/web/_site/doc/ja/ruby/blocks-and-procs/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Blocks & Procs - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/ruby/classes-and-modules' rel='prev' title='Classes & Modules'> | |
| + <link href='/doc/ja/ruby/local-variables' rel='next' title='Local Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/class-variables/index.html b/web/_site/doc/ja/ruby/class-variables/index.html | |
| index 3df10d9..df5c5e6 100644 | |
| --- a/web/_site/doc/ja/ruby/class-variables/index.html | |
| +++ b/web/_site/doc/ja/ruby/class-variables/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Class Variables - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/ruby/instance-variables' rel='prev' title='Instance Variables'> | |
| + <link href='/doc/ja/ruby/global-variables' rel='next' title='Global Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/classes-and-modules/index.html b/web/_site/doc/ja/ruby/classes-and-modules/index.html | |
| index 02b49e9..efaf964 100644 | |
| --- a/web/_site/doc/ja/ruby/classes-and-modules/index.html | |
| +++ b/web/_site/doc/ja/ruby/classes-and-modules/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Classes & Modules - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/ruby/constants' rel='prev' title='Constants'> | |
| + <link href='/doc/ja/ruby/blocks-and-procs' rel='next' title='Blocks & Procs'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/constants/index.html b/web/_site/doc/ja/ruby/constants/index.html | |
| index 557e18e..6cedd42 100644 | |
| --- a/web/_site/doc/ja/ruby/constants/index.html | |
| +++ b/web/_site/doc/ja/ruby/constants/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Constants - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/ruby/methods' rel='prev' title='Methods'> | |
| + <link href='/doc/ja/ruby/classes-and-modules' rel='next' title='Classes & Modules'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/global-variables/index.html b/web/_site/doc/ja/ruby/global-variables/index.html | |
| index df5403c..ddb30f5 100644 | |
| --- a/web/_site/doc/ja/ruby/global-variables/index.html | |
| +++ b/web/_site/doc/ja/ruby/global-variables/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Global Variables - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/ruby/class-variables' rel='prev' title='Class Variables'> | |
| + <link href='/doc/ja/specs' rel='next' title='Specs'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/index.html b/web/_site/doc/ja/ruby/index.html | |
| index 1f33adb..b649642 100644 | |
| --- a/web/_site/doc/ja/ruby/index.html | |
| +++ b/web/_site/doc/ja/ruby/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Ruby - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/contributing/style-guide' rel='prev' title='Style Guide'> | |
| + <link href='/doc/ja/ruby/scripts' rel='next' title='Scripts'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/instance-variables/index.html b/web/_site/doc/ja/ruby/instance-variables/index.html | |
| index 693ab35..4b47ed4 100644 | |
| --- a/web/_site/doc/ja/ruby/instance-variables/index.html | |
| +++ b/web/_site/doc/ja/ruby/instance-variables/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Instance Variables - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/ruby/locas-variables' rel='prev' title='Local Variables'> | |
| + <link href='/doc/ja/ruby/class-variables' rel='next' title='Class Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/local-variables/index.html b/web/_site/doc/ja/ruby/local-variables/index.html | |
| index 6f2250f..42d47f6 100644 | |
| --- a/web/_site/doc/ja/ruby/local-variables/index.html | |
| +++ b/web/_site/doc/ja/ruby/local-variables/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Local Variables - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/ruby/blocks-and-procs' rel='prev' title='Blocks & Procs'> | |
| + <link href='/doc/ja/ruby/instance-variables' rel='next' title='Instance Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/methods/index.html b/web/_site/doc/ja/ruby/methods/index.html | |
| index 3e45d17..5f02755 100644 | |
| --- a/web/_site/doc/ja/ruby/methods/index.html | |
| +++ b/web/_site/doc/ja/ruby/methods/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Methods - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/ruby/scripts' rel='prev' title='Scripts'> | |
| + <link href='/doc/ja/ruby/constants' rel='next' title='Constants'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/scripts/index.html b/web/_site/doc/ja/ruby/scripts/index.html | |
| index d91deb8..f6d5f18 100644 | |
| --- a/web/_site/doc/ja/ruby/scripts/index.html | |
| +++ b/web/_site/doc/ja/ruby/scripts/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Scripts - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/ruby' rel='prev' title='Ruby'> | |
| + <link href='/doc/ja/ruby/methods' rel='next' title='Methods'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/specs/compiler/index.html b/web/_site/doc/ja/specs/compiler/index.html | |
| index ddb8e00..7bde359 100644 | |
| --- a/web/_site/doc/ja/specs/compiler/index.html | |
| +++ b/web/_site/doc/ja/specs/compiler/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Compiler Specs - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/specs/rubyspec' rel='prev' title='RubySpec'> | |
| + <link href='/doc/ja/build-system' rel='next' title='Build System'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/specs/index.html b/web/_site/doc/ja/specs/index.html | |
| index 04ea7b6..0573806 100644 | |
| --- a/web/_site/doc/ja/specs/index.html | |
| +++ b/web/_site/doc/ja/specs/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Specs - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/ruby/global-variables' rel='prev' title='Ruby - Global Variables'> | |
| + <link href='/doc/ja/specs/rubyspec' rel='next' title='RubySpec'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/specs/rubyspec/index.html b/web/_site/doc/ja/specs/rubyspec/index.html | |
| index 97e01ef..2105220 100644 | |
| --- a/web/_site/doc/ja/specs/rubyspec/index.html | |
| +++ b/web/_site/doc/ja/specs/rubyspec/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>RubySpec - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/specs' rel='prev' title='Specs'> | |
| + <link href='/doc/ja/specs/compiler' rel='next' title='Compiler Specs'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/systems/c-api/index.html b/web/_site/doc/ja/systems/c-api/index.html | |
| index 57064da..a1a8a8e 100644 | |
| --- a/web/_site/doc/ja/systems/c-api/index.html | |
| +++ b/web/_site/doc/ja/systems/c-api/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>C-API - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/systems/io' rel='prev' title='IO'> | |
| + <link href='/doc/ja/tools' rel='next' title='Tools'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/systems/concurrency/index.html b/web/_site/doc/ja/systems/concurrency/index.html | |
| index 418f13a..27f74c3 100644 | |
| --- a/web/_site/doc/ja/systems/concurrency/index.html | |
| +++ b/web/_site/doc/ja/systems/concurrency/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Concurrency - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/systems/ffi' rel='prev' title='FFI'> | |
| + <link href='/doc/ja/systems/io' rel='next' title='IO'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/systems/ffi/index.html b/web/_site/doc/ja/systems/ffi/index.html | |
| index d0a537e..6f37c5d 100644 | |
| --- a/web/_site/doc/ja/systems/ffi/index.html | |
| +++ b/web/_site/doc/ja/systems/ffi/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Foreign Function Interface - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/systems/primitives' rel='prev' title='Primitives'> | |
| + <link href='/doc/ja/systems/concurrency' rel='next' title='Concurrency'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/systems/index.html b/web/_site/doc/ja/systems/index.html | |
| index 2f1f7a2..48b6ae1 100644 | |
| --- a/web/_site/doc/ja/systems/index.html | |
| +++ b/web/_site/doc/ja/systems/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Rubinius Systems - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/garbage-collector/large-objects' rel='prev' title='Garbage Collector - Large Objects'> | |
| + <link href='/doc/ja/systems/primitives' rel='next' title='Primitives'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/systems/io/index.html b/web/_site/doc/ja/systems/io/index.html | |
| index 0fe8ebd..58f43e6 100644 | |
| --- a/web/_site/doc/ja/systems/io/index.html | |
| +++ b/web/_site/doc/ja/systems/io/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>IO - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/systems/concurrency' rel='prev' title='Concurrency'> | |
| + <link href='/doc/ja/systems/c-api' rel='next' title='C-API'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/systems/primitives/index.html b/web/_site/doc/ja/systems/primitives/index.html | |
| index e4e62e5..3fb5f04 100644 | |
| --- a/web/_site/doc/ja/systems/primitives/index.html | |
| +++ b/web/_site/doc/ja/systems/primitives/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Primitives - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/systems' rel='prev' title='Rubinius Systems'> | |
| + <link href='/doc/ja/systems/ffi' rel='next' title='FFI'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/tools/debugger/index.html b/web/_site/doc/ja/tools/debugger/index.html | |
| index c2b3865..c6a332e 100644 | |
| --- a/web/_site/doc/ja/tools/debugger/index.html | |
| +++ b/web/_site/doc/ja/tools/debugger/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Debugger - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/tools' rel='prev' title='Tools'> | |
| + <link href='/doc/ja/tools/profiler' rel='next' title='Profiler'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/tools/index.html b/web/_site/doc/ja/tools/index.html | |
| index 8bcfa53..dbcc8c0 100644 | |
| --- a/web/_site/doc/ja/tools/index.html | |
| +++ b/web/_site/doc/ja/tools/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Tools - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/systems/c-api' rel='prev' title='Rubinius Systems - C-API'> | |
| + <link href='/doc/ja/tools/debugger' rel='next' title='Debugger'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/tools/memory-analysis/index.html b/web/_site/doc/ja/tools/memory-analysis/index.html | |
| index 6d466bb..c4ad8ca 100644 | |
| --- a/web/_site/doc/ja/tools/memory-analysis/index.html | |
| +++ b/web/_site/doc/ja/tools/memory-analysis/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Memory Analysis - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/tools/profiler' rel='prev' title='Profiler'> | |
| + <link href='/doc/ja/how-to' rel='next' title='How-To'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/tools/profiler/index.html b/web/_site/doc/ja/tools/profiler/index.html | |
| index 7db6229..a711ff0 100644 | |
| --- a/web/_site/doc/ja/tools/profiler/index.html | |
| +++ b/web/_site/doc/ja/tools/profiler/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Profiler - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/tools/debugger' rel='prev' title='Debugger'> | |
| + <link href='/doc/ja/tools/memory-analysis' rel='next' title='Memory Analysis'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/virtual-machine/custom-dispatch-logic/index.html b/web/_site/doc/ja/virtual-machine/custom-dispatch-logic/index.html | |
| index d0c25e4..86912cc 100644 | |
| --- a/web/_site/doc/ja/virtual-machine/custom-dispatch-logic/index.html | |
| +++ b/web/_site/doc/ja/virtual-machine/custom-dispatch-logic/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Custom Dispatch Logic - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/virtual-machine/instructions' rel='prev' title='Instructions'> | |
| + <link href='/doc/ja/bytecode-compiler' rel='next' title='Bytecode Compiler'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/virtual-machine/index.html b/web/_site/doc/ja/virtual-machine/index.html | |
| index 0645eb3..fb8e9e9 100644 | |
| --- a/web/_site/doc/ja/virtual-machine/index.html | |
| +++ b/web/_site/doc/ja/virtual-machine/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Virtual Machine - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/bootstrapping' rel='prev' title='Bootstrapping'> | |
| + <link href='/doc/ja/virtual-machine/instructions' rel='next' title='Instructions'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/virtual-machine/instructions/index.html b/web/_site/doc/ja/virtual-machine/instructions/index.html | |
| index bf16620..8e5892f 100644 | |
| --- a/web/_site/doc/ja/virtual-machine/instructions/index.html | |
| +++ b/web/_site/doc/ja/virtual-machine/instructions/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Instructions - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ja/virtual-machine' rel='prev' title='Virtual Machine'> | |
| + <link href='/doc/ja/virtual-machine/custom-dispatch-logic' rel='next' title='Custom Dispatch Logic'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/what-is-rubinius/index.html b/web/_site/doc/ja/what-is-rubinius/index.html | |
| index e0a5665..9793215 100644 | |
| --- a/web/_site/doc/ja/what-is-rubinius/index.html | |
| +++ b/web/_site/doc/ja/what-is-rubinius/index.html | |
| @@ -3,12 +3,14 @@ | |
| <head> | |
| <title>Rubinius : Use Ruby™</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ja' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + <link href='/doc/ja/getting-started' rel='next' title='Getting Started'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/appendix-a-glossary/index.html b/web/_site/doc/ru/appendix-a-glossary/index.html | |
| index c3865e3..66d0da4 100644 | |
| --- a/web/_site/doc/ru/appendix-a-glossary/index.html | |
| +++ b/web/_site/doc/ru/appendix-a-glossary/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Приложение A - Глоссарий - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/how-to/translate-documentation' rel='prev' title='How-To - Перевод документации'> | |
| + <link href='/doc/ru/appendix-b-reading-list' rel='next' title='Приложение B - Список литературы'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/appendix-b-reading-list/index.html b/web/_site/doc/ru/appendix-b-reading-list/index.html | |
| index 5bbf68e..a94e97e 100644 | |
| --- a/web/_site/doc/ru/appendix-b-reading-list/index.html | |
| +++ b/web/_site/doc/ru/appendix-b-reading-list/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Приложение B - Список литературы - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/appendix-a-glossary' rel='prev' title='Приложение A - Глоссарий'> | |
| + <link href='/doc/ru/terms-index' rel='next' title='Список терминов'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/bootstrapping/index.html b/web/_site/doc/ru/bootstrapping/index.html | |
| index dc1d67e..69939b8 100644 | |
| --- a/web/_site/doc/ru/bootstrapping/index.html | |
| +++ b/web/_site/doc/ru/bootstrapping/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Начальная загрузка - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/build-system' rel='prev' title='Система сборки'> | |
| + <link href='/doc/ru/virtual-machine' rel='next' title='Виртуальная Машина'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/build-system/index.html b/web/_site/doc/ru/build-system/index.html | |
| index 7c67859..4b504d4 100644 | |
| --- a/web/_site/doc/ru/build-system/index.html | |
| +++ b/web/_site/doc/ru/build-system/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Система сборки - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/specs/compiler' rel='prev' title='Спецификации - Компилятор'> | |
| + <link href='/doc/ru/bootstrapping' rel='next' title='Начальная загрузка'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/bytecode-compiler/ast/index.html b/web/_site/doc/ru/bytecode-compiler/ast/index.html | |
| index 2f37945..8efa040 100644 | |
| --- a/web/_site/doc/ru/bytecode-compiler/ast/index.html | |
| +++ b/web/_site/doc/ru/bytecode-compiler/ast/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Абстрактное Синтаксическое Дерево - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/bytecode-compiler/parser' rel='prev' title='Парсер'> | |
| + <link href='/doc/ru/bytecode-compiler/compiler' rel='next' title='Компилятор'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/bytecode-compiler/compiler/index.html b/web/_site/doc/ru/bytecode-compiler/compiler/index.html | |
| index d305449..74788c4 100644 | |
| --- a/web/_site/doc/ru/bytecode-compiler/compiler/index.html | |
| +++ b/web/_site/doc/ru/bytecode-compiler/compiler/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Компилятор - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/bytecode-compiler/ast' rel='prev' title='AST'> | |
| + <link href='/doc/ru/bytecode-compiler/transformations' rel='next' title='Transformations'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/bytecode-compiler/generator/index.html b/web/_site/doc/ru/bytecode-compiler/generator/index.html | |
| index ed808e6..c4a4765 100644 | |
| --- a/web/_site/doc/ru/bytecode-compiler/generator/index.html | |
| +++ b/web/_site/doc/ru/bytecode-compiler/generator/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Генератор - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/bytecode-compiler/transformations' rel='prev' title='Transformations'> | |
| + <link href='/doc/ru/jit' rel='next' title='JIT Компилятор'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/bytecode-compiler/index.html b/web/_site/doc/ru/bytecode-compiler/index.html | |
| index 0e19e2d..1dc48f1 100644 | |
| --- a/web/_site/doc/ru/bytecode-compiler/index.html | |
| +++ b/web/_site/doc/ru/bytecode-compiler/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Комилятор в Байткод - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/virtual-machine/custom-dispatch-logic' rel='prev' title='Виртуальная Машина - Custom Dispatch Logic'> | |
| + <link href='/doc/ru/bytecode-compiler/parser' rel='next' title='Парсер'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/bytecode-compiler/parser/index.html b/web/_site/doc/ru/bytecode-compiler/parser/index.html | |
| index ab0f505..495956e 100644 | |
| --- a/web/_site/doc/ru/bytecode-compiler/parser/index.html | |
| +++ b/web/_site/doc/ru/bytecode-compiler/parser/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Парсер Ruby - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/bytecode-compiler' rel='prev' title='Комилятор в Байткод'> | |
| + <link href='/doc/ru/bytecode-compiler/ast' rel='next' title='AST'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/bytecode-compiler/transformations/index.html b/web/_site/doc/ru/bytecode-compiler/transformations/index.html | |
| index 25423d3..70880b6 100644 | |
| --- a/web/_site/doc/ru/bytecode-compiler/transformations/index.html | |
| +++ b/web/_site/doc/ru/bytecode-compiler/transformations/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Compiler Transforms - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/bytecode-compiler/compiler' rel='prev' title='Компилятор'> | |
| + <link href='/doc/ru/bytecode-compiler/generator' rel='next' title='Генератор'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/contributing/communication/index.html b/web/_site/doc/ru/contributing/communication/index.html | |
| index e105206..2969ce5 100644 | |
| --- a/web/_site/doc/ru/contributing/communication/index.html | |
| +++ b/web/_site/doc/ru/contributing/communication/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Общение - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/contributing' rel='prev' title='Участие в проекте'> | |
| + <link href='/doc/ru/contributing/style-guide' rel='next' title='Стиль кодирования'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/contributing/index.html b/web/_site/doc/ru/contributing/index.html | |
| index a10c5c9..976f9b3 100644 | |
| --- a/web/_site/doc/ru/contributing/index.html | |
| +++ b/web/_site/doc/ru/contributing/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Участие в проекте - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/getting-started/troubleshooting' rel='prev' title='Разрешение проблем'> | |
| + <link href='/doc/ru/contributing/communication' rel='next' title='Общение'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/contributing/style-guide/index.html b/web/_site/doc/ru/contributing/style-guide/index.html | |
| index 7c3b3b9..e4152b6 100644 | |
| --- a/web/_site/doc/ru/contributing/style-guide/index.html | |
| +++ b/web/_site/doc/ru/contributing/style-guide/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Coding Стиль кодирования - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/contributing/communication' rel='prev' title='Общение'> | |
| + <link href='/doc/ru/ruby' rel='next' title='Ruby'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/garbage-collector/index.html b/web/_site/doc/ru/garbage-collector/index.html | |
| index 2cc95e3..5683142 100644 | |
| --- a/web/_site/doc/ru/garbage-collector/index.html | |
| +++ b/web/_site/doc/ru/garbage-collector/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Сборщик мусора - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/jit' rel='prev' title='JIT Компилятор'> | |
| + <link href='/doc/ru/garbage-collector/nursery' rel='next' title='Nursery'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/garbage-collector/large-objects/index.html b/web/_site/doc/ru/garbage-collector/large-objects/index.html | |
| index 9e736d8..118b904 100644 | |
| --- a/web/_site/doc/ru/garbage-collector/large-objects/index.html | |
| +++ b/web/_site/doc/ru/garbage-collector/large-objects/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Большие объекты - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/garbage-collector/mature-generation' rel='prev' title='Старое поколение'> | |
| + <link href='/doc/ru/systems' rel='next' title='Rubinius Systems'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/garbage-collector/mature-generation/index.html b/web/_site/doc/ru/garbage-collector/mature-generation/index.html | |
| index d60d053..8ff2b65 100644 | |
| --- a/web/_site/doc/ru/garbage-collector/mature-generation/index.html | |
| +++ b/web/_site/doc/ru/garbage-collector/mature-generation/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Старое поколение - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/garbage-collector/young-generation' rel='prev' title='Молодое поколение'> | |
| + <link href='/doc/ru/garbage-collector/large-objects' rel='next' title='Большие объекты'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/garbage-collector/nursery/index.html b/web/_site/doc/ru/garbage-collector/nursery/index.html | |
| index 78aed01..ec41301 100644 | |
| --- a/web/_site/doc/ru/garbage-collector/nursery/index.html | |
| +++ b/web/_site/doc/ru/garbage-collector/nursery/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Nursery - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/garbage-collector' rel='prev' title='Сборщик мусора'> | |
| + <link href='/doc/ru/garbage-collector/young-generation' rel='next' title='Молодое Поколоение'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/garbage-collector/young-generation/index.html b/web/_site/doc/ru/garbage-collector/young-generation/index.html | |
| index 390373f..a3f4fbc 100644 | |
| --- a/web/_site/doc/ru/garbage-collector/young-generation/index.html | |
| +++ b/web/_site/doc/ru/garbage-collector/young-generation/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Молодое поколение - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/garbage-collector/nursery' rel='prev' title='Nursery'> | |
| + <link href='/doc/ru/garbage-collector/mature-generation' rel='next' title='Старое поколение'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/getting-started/building/index.html b/web/_site/doc/ru/getting-started/building/index.html | |
| index 28d0391..ea052b7 100644 | |
| --- a/web/_site/doc/ru/getting-started/building/index.html | |
| +++ b/web/_site/doc/ru/getting-started/building/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Сборка Rubinius - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/getting-started/requirements' rel='prev' title='Минимальные требования'> | |
| + <link href='/doc/ru/getting-started/running-rubinius' rel='next' title='Запуск Rubinius'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/getting-started/index.html b/web/_site/doc/ru/getting-started/index.html | |
| index 785deda..cbfca97 100644 | |
| --- a/web/_site/doc/ru/getting-started/index.html | |
| +++ b/web/_site/doc/ru/getting-started/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Приступая к работе - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/what-is-rubinius' rel='prev' title='Что Такое Rubinius?'> | |
| + <link href='/doc/ru/getting-started/requirements' rel='next' title='Минимальные требования'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/getting-started/requirements/index.html b/web/_site/doc/ru/getting-started/requirements/index.html | |
| index d54253d..57c8463 100644 | |
| --- a/web/_site/doc/ru/getting-started/requirements/index.html | |
| +++ b/web/_site/doc/ru/getting-started/requirements/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Минимальные требования - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/getting-started' rel='prev' title='Приступая к работе'> | |
| + <link href='/doc/ru/getting-started/building' rel='next' title='Сборка'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/getting-started/running-rubinius/index.html b/web/_site/doc/ru/getting-started/running-rubinius/index.html | |
| index e91a83f..fea56ab 100644 | |
| --- a/web/_site/doc/ru/getting-started/running-rubinius/index.html | |
| +++ b/web/_site/doc/ru/getting-started/running-rubinius/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Запуск Rubinius - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/getting-started/building' rel='prev' title='Сборка'> | |
| + <link href='/doc/ru/getting-started/troubleshooting' rel='next' title='Разрешение Проблем'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/getting-started/troubleshooting/index.html b/web/_site/doc/ru/getting-started/troubleshooting/index.html | |
| index 525d6d3..760e205 100644 | |
| --- a/web/_site/doc/ru/getting-started/troubleshooting/index.html | |
| +++ b/web/_site/doc/ru/getting-started/troubleshooting/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Разрешение проблем - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/getting-started/running-rubinius' rel='prev' title='Запуск Rubinius'> | |
| + <link href='/doc/ru/contributing' rel='next' title='Участие в проекте'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/how-to/fix-a-failing-spec/index.html b/web/_site/doc/ru/how-to/fix-a-failing-spec/index.html | |
| index dcf9c49..7d9426c 100644 | |
| --- a/web/_site/doc/ru/how-to/fix-a-failing-spec/index.html | |
| +++ b/web/_site/doc/ru/how-to/fix-a-failing-spec/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Исправление неработающей спецификации - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/how-to/write-ruby-spec' rel='prev' title='Написание Ruby спецификации'> | |
| + <link href='/doc/ru/how-to/write-a-blog-post' rel='next' title='Написание сообщения в блог'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/how-to/index.html b/web/_site/doc/ru/how-to/index.html | |
| index a6bff81..1658273 100644 | |
| --- a/web/_site/doc/ru/how-to/index.html | |
| +++ b/web/_site/doc/ru/how-to/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/tools/memory-analysis' rel='prev' title='Tools - Memory Analysis'> | |
| + <link href='/doc/ru/how-to/write-a-ticket' rel='next' title='Создание тикета'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/how-to/translate-documentation/index.html b/web/_site/doc/ru/how-to/translate-documentation/index.html | |
| index 32d50c1..18ab84d 100644 | |
| --- a/web/_site/doc/ru/how-to/translate-documentation/index.html | |
| +++ b/web/_site/doc/ru/how-to/translate-documentation/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Перевод документации - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/how-to/write-documentation' rel='prev' title='Написание Документации'> | |
| + <link href='/doc/ru/appendix-a-glossary' rel='next' title='Приложение A - Глоссарий'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/how-to/write-a-blog-post/index.html b/web/_site/doc/ru/how-to/write-a-blog-post/index.html | |
| index b646f2c..cad067d 100644 | |
| --- a/web/_site/doc/ru/how-to/write-a-blog-post/index.html | |
| +++ b/web/_site/doc/ru/how-to/write-a-blog-post/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Написание сообщения в блог - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/how-to/fix-a-failing-spec' rel='prev' title='Исправление неработающей спецификации'> | |
| + <link href='/doc/ru/how-to/write-documentation' rel='next' title='Написание Документации'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/how-to/write-a-ruby-spec/index.html b/web/_site/doc/ru/how-to/write-a-ruby-spec/index.html | |
| index b1829a6..e734440 100644 | |
| --- a/web/_site/doc/ru/how-to/write-a-ruby-spec/index.html | |
| +++ b/web/_site/doc/ru/how-to/write-a-ruby-spec/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Написание Ruby спецификации - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/how-to/write-a-ticket' rel='prev' title='Создание тикета'> | |
| + <link href='/doc/ru/how-to/fix-a-failing-spec' rel='next' title='Исправление неработающей спецификации'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/how-to/write-a-ticket/index.html b/web/_site/doc/ru/how-to/write-a-ticket/index.html | |
| index 3bd8e28..616e21b 100644 | |
| --- a/web/_site/doc/ru/how-to/write-a-ticket/index.html | |
| +++ b/web/_site/doc/ru/how-to/write-a-ticket/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Создание тикета - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/how-to' rel='prev' title='How-To'> | |
| + <link href='/doc/ru/how-to/write-a-ruby-spec' rel='next' title='Написание Ruby спецификации'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/how-to/write-documentation/index.html b/web/_site/doc/ru/how-to/write-documentation/index.html | |
| index d3ec2bf..b0e5a05 100644 | |
| --- a/web/_site/doc/ru/how-to/write-documentation/index.html | |
| +++ b/web/_site/doc/ru/how-to/write-documentation/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>How-To - Написание Документации - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/how-to/write-a-blog-post' rel='prev' title='Написание сообщения в блог'> | |
| + <link href='/doc/ru/how-to/translate-documentation' rel='next' title='Перевод документации'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/index-of-terms/index.html b/web/_site/doc/ru/index-of-terms/index.html | |
| index 7165eab..1e449b9 100644 | |
| --- a/web/_site/doc/ru/index-of-terms/index.html | |
| +++ b/web/_site/doc/ru/index-of-terms/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Список терминов - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/appendix-b-reading-list' rel='prev' title='Приложение B - Список литературы'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/index.html b/web/_site/doc/ru/index.html | |
| index 5567bce..35c7a61 100644 | |
| --- a/web/_site/doc/ru/index.html | |
| +++ b/web/_site/doc/ru/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Содержание - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + <link href='/doc/ru/what-is-rubinius' rel='next' title='Что такое Rubinius?'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/jit/index.html b/web/_site/doc/ru/jit/index.html | |
| index cd2078c..8fb7930 100644 | |
| --- a/web/_site/doc/ru/jit/index.html | |
| +++ b/web/_site/doc/ru/jit/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>JIT Компилятор - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/bytecode-compiler/generator' rel='prev' title='Комилятор в Байткод - Генератор'> | |
| + <link href='/doc/ru/garbage-collector' rel='next' title='Сборщик мусора'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/blocks-and-procs/index.html b/web/_site/doc/ru/ruby/blocks-and-procs/index.html | |
| index 7de70d5..c8153d9 100644 | |
| --- a/web/_site/doc/ru/ruby/blocks-and-procs/index.html | |
| +++ b/web/_site/doc/ru/ruby/blocks-and-procs/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Blocks & Procs - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/ruby/classes-and-modules' rel='prev' title='Classes & Modules'> | |
| + <link href='/doc/ru/ruby/local-variables' rel='next' title='Local Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/class-variables/index.html b/web/_site/doc/ru/ruby/class-variables/index.html | |
| index 01e73a6..2c97096 100644 | |
| --- a/web/_site/doc/ru/ruby/class-variables/index.html | |
| +++ b/web/_site/doc/ru/ruby/class-variables/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Class Variables - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/ruby/instance-variables' rel='prev' title='Instance Variables'> | |
| + <link href='/doc/ru/ruby/global-variables' rel='next' title='Global Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/classes-and-modules/index.html b/web/_site/doc/ru/ruby/classes-and-modules/index.html | |
| index aa7a907..9a738ed 100644 | |
| --- a/web/_site/doc/ru/ruby/classes-and-modules/index.html | |
| +++ b/web/_site/doc/ru/ruby/classes-and-modules/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Classes & Modules - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/ruby/constants' rel='prev' title='Constants'> | |
| + <link href='/doc/ru/ruby/blocks-and-procs' rel='next' title='Blocks & Procs'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/constants/index.html b/web/_site/doc/ru/ruby/constants/index.html | |
| index 04becaf..c2df5fa 100644 | |
| --- a/web/_site/doc/ru/ruby/constants/index.html | |
| +++ b/web/_site/doc/ru/ruby/constants/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Constants - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/ruby/methods' rel='prev' title='Методы'> | |
| + <link href='/doc/ru/ruby/classes-and-modules' rel='next' title='Classes & Modules'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/global-variables/index.html b/web/_site/doc/ru/ruby/global-variables/index.html | |
| index ecb792e..6bccdfe 100644 | |
| --- a/web/_site/doc/ru/ruby/global-variables/index.html | |
| +++ b/web/_site/doc/ru/ruby/global-variables/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Global Variables - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/ruby/class-variables' rel='prev' title='Class Variables'> | |
| + <link href='/doc/ru/specs' rel='next' title='Specs'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/index.html b/web/_site/doc/ru/ruby/index.html | |
| index 18e2a5c..f149a76 100644 | |
| --- a/web/_site/doc/ru/ruby/index.html | |
| +++ b/web/_site/doc/ru/ruby/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Ruby - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/contributing/style-guide' rel='prev' title='Стиль кодирования'> | |
| + <link href='/doc/ru/ruby/scripts' rel='next' title='Скрипты'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/instance-variables/index.html b/web/_site/doc/ru/ruby/instance-variables/index.html | |
| index 8c399d4..56b5aa8 100644 | |
| --- a/web/_site/doc/ru/ruby/instance-variables/index.html | |
| +++ b/web/_site/doc/ru/ruby/instance-variables/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Instance Variables - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/ruby/locas-variables' rel='prev' title='Local Variables'> | |
| + <link href='/doc/ru/ruby/class-variables' rel='next' title='Class Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/local-variables/index.html b/web/_site/doc/ru/ruby/local-variables/index.html | |
| index 984dbb0..479c04a 100644 | |
| --- a/web/_site/doc/ru/ruby/local-variables/index.html | |
| +++ b/web/_site/doc/ru/ruby/local-variables/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Local Variables - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/ruby/blocks-and-procs' rel='prev' title='Blocks & Procs'> | |
| + <link href='/doc/ru/ruby/instance-variables' rel='next' title='Instance Variables'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/methods/index.html b/web/_site/doc/ru/ruby/methods/index.html | |
| index 93c5035..6748286 100644 | |
| --- a/web/_site/doc/ru/ruby/methods/index.html | |
| +++ b/web/_site/doc/ru/ruby/methods/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Методы - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/ruby/scripts' rel='prev' title='Скрипты'> | |
| + <link href='/doc/ru/ruby/constants' rel='next' title='Constants'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/scripts/index.html b/web/_site/doc/ru/ruby/scripts/index.html | |
| index 5a14ecc..4636bc4 100644 | |
| --- a/web/_site/doc/ru/ruby/scripts/index.html | |
| +++ b/web/_site/doc/ru/ruby/scripts/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Скрипты - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/ruby' rel='prev' title='Ruby'> | |
| + <link href='/doc/ru/ruby/methods' rel='next' title='Методы'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/specs/compiler/index.html b/web/_site/doc/ru/specs/compiler/index.html | |
| index c1bf9f2..4fc45c9 100644 | |
| --- a/web/_site/doc/ru/specs/compiler/index.html | |
| +++ b/web/_site/doc/ru/specs/compiler/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Compiler Specs - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/specs/rubyspec' rel='prev' title='RubySpec'> | |
| + <link href='/doc/ru/build-system' rel='next' title='Система сборки'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/specs/index.html b/web/_site/doc/ru/specs/index.html | |
| index 373a9ff..4572b86 100644 | |
| --- a/web/_site/doc/ru/specs/index.html | |
| +++ b/web/_site/doc/ru/specs/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Specs - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/ruby/global-variables' rel='prev' title='Ruby - Global Variables'> | |
| + <link href='/doc/ru/specs/rubyspec' rel='next' title='RubySpec'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/specs/rubyspec/index.html b/web/_site/doc/ru/specs/rubyspec/index.html | |
| index d77d325..8cd5535 100644 | |
| --- a/web/_site/doc/ru/specs/rubyspec/index.html | |
| +++ b/web/_site/doc/ru/specs/rubyspec/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>RubySpec - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/specs' rel='prev' title='Specs'> | |
| + <link href='/doc/ru/specs/compiler' rel='next' title='Compiler Specs'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/systems/c-api/index.html b/web/_site/doc/ru/systems/c-api/index.html | |
| index 72f6b5b..9414475 100644 | |
| --- a/web/_site/doc/ru/systems/c-api/index.html | |
| +++ b/web/_site/doc/ru/systems/c-api/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>C-API - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/systems/io' rel='prev' title='Ввод/Вывод'> | |
| + <link href='/doc/ru/tools' rel='next' title='Tools'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/systems/concurrency/index.html b/web/_site/doc/ru/systems/concurrency/index.html | |
| index 83a804d..ed90d14 100644 | |
| --- a/web/_site/doc/ru/systems/concurrency/index.html | |
| +++ b/web/_site/doc/ru/systems/concurrency/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Многопоточность - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/systems/ffi' rel='prev' title='FFI'> | |
| + <link href='/doc/ru/systems/io' rel='next' title='Ввод/Вывод'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/systems/ffi/index.html b/web/_site/doc/ru/systems/ffi/index.html | |
| index 1f1f262..79e9b22 100644 | |
| --- a/web/_site/doc/ru/systems/ffi/index.html | |
| +++ b/web/_site/doc/ru/systems/ffi/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Foreign Function Interface - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/systems/primitives' rel='prev' title='Примитивы'> | |
| + <link href='/doc/ru/systems/concurrency' rel='next' title='Многопоточность'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/systems/index.html b/web/_site/doc/ru/systems/index.html | |
| index f03b6e6..5618705 100644 | |
| --- a/web/_site/doc/ru/systems/index.html | |
| +++ b/web/_site/doc/ru/systems/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Rubinius Systems - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/garbage-collector/large-objects' rel='prev' title='Garbage Collector - Large Objects'> | |
| + <link href='/doc/ru/systems/primitives' rel='next' title='Примитивы'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/systems/io/index.html b/web/_site/doc/ru/systems/io/index.html | |
| index 326646b..1fe2bf8 100644 | |
| --- a/web/_site/doc/ru/systems/io/index.html | |
| +++ b/web/_site/doc/ru/systems/io/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>IO - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/systems/concurrency' rel='prev' title='Многопоточность'> | |
| + <link href='/doc/ru/systems/c-api' rel='next' title='C-API'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/systems/primitives/index.html b/web/_site/doc/ru/systems/primitives/index.html | |
| index 73956d6..dac062e 100644 | |
| --- a/web/_site/doc/ru/systems/primitives/index.html | |
| +++ b/web/_site/doc/ru/systems/primitives/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Примитивы - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/systems' rel='prev' title='Rubinius Systems'> | |
| + <link href='/doc/ru/systems/ffi' rel='next' title='FFI'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/tools/debugger/index.html b/web/_site/doc/ru/tools/debugger/index.html | |
| index 76feb39..6b7df12 100644 | |
| --- a/web/_site/doc/ru/tools/debugger/index.html | |
| +++ b/web/_site/doc/ru/tools/debugger/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Debugger - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/tools' rel='prev' title='Tools'> | |
| + <link href='/doc/ru/tools/profiler' rel='next' title='Profiler'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/tools/index.html b/web/_site/doc/ru/tools/index.html | |
| index 784e0e5..26a1a8f 100644 | |
| --- a/web/_site/doc/ru/tools/index.html | |
| +++ b/web/_site/doc/ru/tools/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Tools - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/systems/c-api' rel='prev' title='Rubinius Systems - C-API'> | |
| + <link href='/doc/ru/tools/debugger' rel='next' title='Debugger'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/tools/memory-analysis/index.html b/web/_site/doc/ru/tools/memory-analysis/index.html | |
| index 40e8c8c..81b5d2e 100644 | |
| --- a/web/_site/doc/ru/tools/memory-analysis/index.html | |
| +++ b/web/_site/doc/ru/tools/memory-analysis/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Memory Analysis - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/tools/profiler' rel='prev' title='Profiler'> | |
| + <link href='/doc/ru/how-to' rel='next' title='How-To'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/tools/profiler/index.html b/web/_site/doc/ru/tools/profiler/index.html | |
| index e186bd5..8832239 100644 | |
| --- a/web/_site/doc/ru/tools/profiler/index.html | |
| +++ b/web/_site/doc/ru/tools/profiler/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Profiler - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/tools/debugger' rel='prev' title='Debugger'> | |
| + <link href='/doc/ru/tools/memory-analysis' rel='next' title='Memory Analysis'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/virtual-machine/custom-dispatch-logic/index.html b/web/_site/doc/ru/virtual-machine/custom-dispatch-logic/index.html | |
| index 5c047d8..17c6823 100644 | |
| --- a/web/_site/doc/ru/virtual-machine/custom-dispatch-logic/index.html | |
| +++ b/web/_site/doc/ru/virtual-machine/custom-dispatch-logic/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Custom Dispatch Logic - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/virtual-machine/instructions' rel='prev' title='Инструкции'> | |
| + <link href='/doc/ru/bytecode-compiler' rel='next' title='Комилятор в Байткод'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/virtual-machine/index.html b/web/_site/doc/ru/virtual-machine/index.html | |
| index 3dac6e1..20bdcea 100644 | |
| --- a/web/_site/doc/ru/virtual-machine/index.html | |
| +++ b/web/_site/doc/ru/virtual-machine/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Виртуальная Машина - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/bootstrapping' rel='prev' title='Начальная загрузка'> | |
| + <link href='/doc/ru/virtual-machine/instructions' rel='next' title='Инструкции'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/virtual-machine/instructions/index.html b/web/_site/doc/ru/virtual-machine/instructions/index.html | |
| index d1a300e..c3c13c4 100644 | |
| --- a/web/_site/doc/ru/virtual-machine/instructions/index.html | |
| +++ b/web/_site/doc/ru/virtual-machine/instructions/index.html | |
| @@ -1,14 +1,16 @@ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| - <title>Rubinius : Use Ruby™</title> | |
| + <title>Инструкции - Rubinius</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + <link href='/doc/ru/virtual-machine' rel='prev' title='Виртуальная Машина'> | |
| + <link href='/doc/ru/virtual-machine/custom-dispatch-logic' rel='next' title='Custom Dispatch Logic'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/what-is-rubinius/index.html b/web/_site/doc/ru/what-is-rubinius/index.html | |
| index 338e75a..e4430ae 100644 | |
| --- a/web/_site/doc/ru/what-is-rubinius/index.html | |
| +++ b/web/_site/doc/ru/what-is-rubinius/index.html | |
| @@ -3,12 +3,14 @@ | |
| <head> | |
| <title>Rubinius : Use Ruby™</title> | |
| <meta content='text/html;charset=utf-8' http-equiv='content-type'> | |
| - <meta content='en' http-equiv='content-language'> | |
| + <meta content='ru' http-equiv='content-language'> | |
| <meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'> | |
| <meta content='Less Than Three. <3. http://less.thanthree.com' name='author'> | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + <link href='/doc/ru/getting-started' rel='next' title='Приступая к работе'> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/index.html b/web/_site/index.html | |
| index 348f27c..d4d0a87 100644 | |
| --- a/web/_site/index.html | |
| +++ b/web/_site/index.html | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/projects/index.html b/web/_site/projects/index.html | |
| index 17d4b4c..0a9729f 100644 | |
| --- a/web/_site/projects/index.html | |
| +++ b/web/_site/projects/index.html | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/releases/1.0.0/index.html b/web/_site/releases/1.0.0/index.html | |
| index 443f836..8c0d30c 100644 | |
| --- a/web/_site/releases/1.0.0/index.html | |
| +++ b/web/_site/releases/1.0.0/index.html | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/releases/1.0.1/index.html b/web/_site/releases/1.0.1/index.html | |
| index d9cde1e..a804192 100644 | |
| --- a/web/_site/releases/1.0.1/index.html | |
| +++ b/web/_site/releases/1.0.1/index.html | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/releases/1.1.0/index.html b/web/_site/releases/1.1.0/index.html | |
| index ca3f414..0574877 100644 | |
| --- a/web/_site/releases/1.1.0/index.html | |
| +++ b/web/_site/releases/1.1.0/index.html | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/releases/1.1.1/index.html b/web/_site/releases/1.1.1/index.html | |
| index c6da119..8a0b55b 100644 | |
| --- a/web/_site/releases/1.1.1/index.html | |
| +++ b/web/_site/releases/1.1.1/index.html | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/releases/1.2.0/index.html b/web/_site/releases/1.2.0/index.html | |
| index ab51481..81543b3 100644 | |
| --- a/web/_site/releases/1.2.0/index.html | |
| +++ b/web/_site/releases/1.2.0/index.html | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/releases/index.html b/web/_site/releases/index.html | |
| index 5e7977f..5a150c9 100644 | |
| --- a/web/_site/releases/index.html | |
| +++ b/web/_site/releases/index.html | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/roadmap/index.html b/web/_site/roadmap/index.html | |
| index 16caa34..55256f7 100644 | |
| --- a/web/_site/roadmap/index.html | |
| +++ b/web/_site/roadmap/index.html | |
| @@ -9,6 +9,8 @@ | |
| <link href='/' rel='home'> | |
| <link href='/' rel='start'> | |
| + | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| -- | |
| 1.7.2.3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From dac90ed3ec71bc448f44c7423471d26b39a7ee40 Mon Sep 17 00:00:00 2001 | |
| From: Matthew Draper <[email protected]> | |
| Date: Wed, 22 Dec 2010 20:14:57 +1030 | |
| Subject: [PATCH 3/3] Link to the atom feed from the blog. | |
| --- | |
| web/_layouts/blog.html | 1 + | |
| web/_layouts/page.html | 1 + | |
| web/_layouts/post.html | 1 + | |
| .../2010/12/15/rubinius-has-a-blog/index.html | 1 + | |
| web/_site/about/1.1.1/index.html | 1 + | |
| web/_site/about/one_one/index.html | 1 + | |
| web/_site/about/one_point_oh/index.html | 1 + | |
| web/_site/about/one_point_one/index.html | 1 + | |
| web/_site/blog/index.html | 1 + | |
| web/_site/doc/de/appendix-a-glossary/index.html | 1 + | |
| .../doc/de/appendix-b-reading-list/index.html | 1 + | |
| web/_site/doc/de/bootstrapping/index.html | 1 + | |
| web/_site/doc/de/build-system/index.html | 1 + | |
| web/_site/doc/de/bytecode-compiler/ast/index.html | 1 + | |
| .../doc/de/bytecode-compiler/compiler/index.html | 1 + | |
| .../doc/de/bytecode-compiler/generator/index.html | 1 + | |
| web/_site/doc/de/bytecode-compiler/index.html | 1 + | |
| .../doc/de/bytecode-compiler/parser/index.html | 1 + | |
| .../bytecode-compiler/transformations/index.html | 1 + | |
| .../doc/de/contributing/communication/index.html | 1 + | |
| web/_site/doc/de/contributing/index.html | 1 + | |
| .../doc/de/contributing/style-guide/index.html | 1 + | |
| web/_site/doc/de/garbage-collector/index.html | 1 + | |
| .../de/garbage-collector/large-objects/index.html | 1 + | |
| .../garbage-collector/mature-generation/index.html | 1 + | |
| .../doc/de/garbage-collector/nursery/index.html | 1 + | |
| .../garbage-collector/young-generation/index.html | 1 + | |
| .../doc/de/getting-started/building/index.html | 1 + | |
| web/_site/doc/de/getting-started/index.html | 1 + | |
| .../doc/de/getting-started/requirements/index.html | 1 + | |
| .../de/getting-started/running-rubinius/index.html | 1 + | |
| .../de/getting-started/troubleshooting/index.html | 1 + | |
| .../doc/de/how-to/fix-a-failing-spec/index.html | 1 + | |
| web/_site/doc/de/how-to/index.html | 1 + | |
| .../de/how-to/translate-documentation/index.html | 1 + | |
| .../doc/de/how-to/write-a-blog-post/index.html | 1 + | |
| .../doc/de/how-to/write-a-ruby-spec/index.html | 1 + | |
| web/_site/doc/de/how-to/write-a-ticket/index.html | 1 + | |
| .../doc/de/how-to/write-documentation/index.html | 1 + | |
| web/_site/doc/de/index-of-terms/index.html | 1 + | |
| web/_site/doc/de/index.html | 1 + | |
| web/_site/doc/de/jit/index.html | 1 + | |
| web/_site/doc/de/ruby/blocks-and-procs/index.html | 1 + | |
| web/_site/doc/de/ruby/class-variables/index.html | 1 + | |
| .../doc/de/ruby/classes-and-modules/index.html | 1 + | |
| web/_site/doc/de/ruby/constants/index.html | 1 + | |
| web/_site/doc/de/ruby/global-variables/index.html | 1 + | |
| web/_site/doc/de/ruby/index.html | 1 + | |
| .../doc/de/ruby/instance-variables/index.html | 1 + | |
| web/_site/doc/de/ruby/local-variables/index.html | 1 + | |
| web/_site/doc/de/ruby/methods/index.html | 1 + | |
| web/_site/doc/de/ruby/scripts/index.html | 1 + | |
| web/_site/doc/de/specs/compiler/index.html | 1 + | |
| web/_site/doc/de/specs/index.html | 1 + | |
| web/_site/doc/de/specs/rubyspec/index.html | 1 + | |
| web/_site/doc/de/systems/c-api/index.html | 1 + | |
| web/_site/doc/de/systems/concurrency/index.html | 1 + | |
| web/_site/doc/de/systems/ffi/index.html | 1 + | |
| web/_site/doc/de/systems/index.html | 1 + | |
| web/_site/doc/de/systems/io/index.html | 1 + | |
| web/_site/doc/de/systems/primitives/index.html | 1 + | |
| web/_site/doc/de/tools/debugger/index.html | 1 + | |
| web/_site/doc/de/tools/index.html | 1 + | |
| web/_site/doc/de/tools/memory-analysis/index.html | 1 + | |
| web/_site/doc/de/tools/profiler/index.html | 1 + | |
| .../custom-dispatch-logic/index.html | 1 + | |
| web/_site/doc/de/virtual-machine/index.html | 1 + | |
| .../doc/de/virtual-machine/instructions/index.html | 1 + | |
| web/_site/doc/de/what-is-rubinius/index.html | 1 + | |
| web/_site/doc/en/appendix-a-glossary/index.html | 1 + | |
| .../doc/en/appendix-b-reading-list/index.html | 1 + | |
| web/_site/doc/en/bootstrapping/index.html | 1 + | |
| web/_site/doc/en/build-system/index.html | 1 + | |
| web/_site/doc/en/bytecode-compiler/ast/index.html | 1 + | |
| .../doc/en/bytecode-compiler/compiler/index.html | 1 + | |
| .../doc/en/bytecode-compiler/generator/index.html | 1 + | |
| web/_site/doc/en/bytecode-compiler/index.html | 1 + | |
| .../doc/en/bytecode-compiler/parser/index.html | 1 + | |
| .../bytecode-compiler/transformations/index.html | 1 + | |
| .../doc/en/contributing/communication/index.html | 1 + | |
| web/_site/doc/en/contributing/index.html | 1 + | |
| .../doc/en/contributing/style-guide/index.html | 1 + | |
| web/_site/doc/en/garbage-collector/index.html | 1 + | |
| .../en/garbage-collector/large-objects/index.html | 1 + | |
| .../garbage-collector/mature-generation/index.html | 1 + | |
| .../doc/en/garbage-collector/nursery/index.html | 1 + | |
| .../garbage-collector/young-generation/index.html | 1 + | |
| .../doc/en/getting-started/building/index.html | 1 + | |
| web/_site/doc/en/getting-started/index.html | 1 + | |
| .../doc/en/getting-started/requirements/index.html | 1 + | |
| .../en/getting-started/running-rubinius/index.html | 1 + | |
| .../en/getting-started/troubleshooting/index.html | 1 + | |
| .../doc/en/how-to/fix-a-failing-spec/index.html | 1 + | |
| web/_site/doc/en/how-to/index.html | 1 + | |
| .../en/how-to/translate-documentation/index.html | 1 + | |
| .../doc/en/how-to/write-a-blog-post/index.html | 1 + | |
| .../doc/en/how-to/write-a-ruby-spec/index.html | 1 + | |
| web/_site/doc/en/how-to/write-a-ticket/index.html | 1 + | |
| .../doc/en/how-to/write-documentation/index.html | 1 + | |
| web/_site/doc/en/index-of-terms/index.html | 1 + | |
| web/_site/doc/en/index.html | 1 + | |
| web/_site/doc/en/jit/index.html | 1 + | |
| web/_site/doc/en/ruby/blocks-and-procs/index.html | 1 + | |
| web/_site/doc/en/ruby/class-variables/index.html | 1 + | |
| .../doc/en/ruby/classes-and-modules/index.html | 1 + | |
| web/_site/doc/en/ruby/constants/index.html | 1 + | |
| web/_site/doc/en/ruby/global-variables/index.html | 1 + | |
| web/_site/doc/en/ruby/index.html | 1 + | |
| .../doc/en/ruby/instance-variables/index.html | 1 + | |
| web/_site/doc/en/ruby/local-variables/index.html | 1 + | |
| web/_site/doc/en/ruby/methods/index.html | 1 + | |
| web/_site/doc/en/ruby/scripts/index.html | 1 + | |
| web/_site/doc/en/specs/compiler/index.html | 1 + | |
| web/_site/doc/en/specs/index.html | 1 + | |
| web/_site/doc/en/specs/rubyspec/index.html | 1 + | |
| web/_site/doc/en/systems/c-api/index.html | 1 + | |
| web/_site/doc/en/systems/concurrency/index.html | 1 + | |
| web/_site/doc/en/systems/ffi/index.html | 1 + | |
| web/_site/doc/en/systems/index.html | 1 + | |
| web/_site/doc/en/systems/io/index.html | 1 + | |
| web/_site/doc/en/systems/primitives/index.html | 1 + | |
| web/_site/doc/en/tools/debugger/index.html | 1 + | |
| web/_site/doc/en/tools/index.html | 1 + | |
| web/_site/doc/en/tools/memory-analysis/index.html | 1 + | |
| web/_site/doc/en/tools/profiler/index.html | 1 + | |
| .../custom-dispatch-logic/index.html | 1 + | |
| web/_site/doc/en/virtual-machine/index.html | 1 + | |
| .../doc/en/virtual-machine/instructions/index.html | 1 + | |
| web/_site/doc/en/what-is-rubinius/index.html | 1 + | |
| web/_site/doc/es/appendix-a-glossary/index.html | 1 + | |
| .../doc/es/appendix-b-reading-list/index.html | 1 + | |
| web/_site/doc/es/bootstrapping/index.html | 1 + | |
| web/_site/doc/es/build-system/index.html | 1 + | |
| web/_site/doc/es/bytecode-compiler/ast/index.html | 1 + | |
| .../doc/es/bytecode-compiler/compiler/index.html | 1 + | |
| .../doc/es/bytecode-compiler/generator/index.html | 1 + | |
| web/_site/doc/es/bytecode-compiler/index.html | 1 + | |
| .../doc/es/bytecode-compiler/parser/index.html | 1 + | |
| .../bytecode-compiler/transformations/index.html | 1 + | |
| .../doc/es/contributing/communication/index.html | 1 + | |
| web/_site/doc/es/contributing/index.html | 1 + | |
| .../doc/es/contributing/style-guide/index.html | 1 + | |
| web/_site/doc/es/garbage-collector/index.html | 1 + | |
| .../es/garbage-collector/large-objects/index.html | 1 + | |
| .../garbage-collector/mature-generation/index.html | 1 + | |
| .../doc/es/garbage-collector/nursery/index.html | 1 + | |
| .../garbage-collector/young-generation/index.html | 1 + | |
| .../doc/es/getting-started/building/index.html | 1 + | |
| web/_site/doc/es/getting-started/index.html | 1 + | |
| .../doc/es/getting-started/requirements/index.html | 1 + | |
| .../es/getting-started/running-rubinius/index.html | 1 + | |
| .../es/getting-started/troubleshooting/index.html | 1 + | |
| .../doc/es/how-to/fix-a-failing-spec/index.html | 1 + | |
| web/_site/doc/es/how-to/index.html | 1 + | |
| .../es/how-to/translate-documentation/index.html | 1 + | |
| .../doc/es/how-to/write-a-blog-post/index.html | 1 + | |
| .../doc/es/how-to/write-a-ruby-spec/index.html | 1 + | |
| web/_site/doc/es/how-to/write-a-ticket/index.html | 1 + | |
| .../doc/es/how-to/write-documentation/index.html | 1 + | |
| web/_site/doc/es/index-of-terms/index.html | 1 + | |
| web/_site/doc/es/index.html | 1 + | |
| web/_site/doc/es/jit/index.html | 1 + | |
| web/_site/doc/es/ruby/blocks-and-procs/index.html | 1 + | |
| web/_site/doc/es/ruby/class-variables/index.html | 1 + | |
| .../doc/es/ruby/classes-and-modules/index.html | 1 + | |
| web/_site/doc/es/ruby/constants/index.html | 1 + | |
| web/_site/doc/es/ruby/global-variables/index.html | 1 + | |
| web/_site/doc/es/ruby/index.html | 1 + | |
| .../doc/es/ruby/instance-variables/index.html | 1 + | |
| web/_site/doc/es/ruby/local-variables/index.html | 1 + | |
| web/_site/doc/es/ruby/methods/index.html | 1 + | |
| web/_site/doc/es/ruby/scripts/index.html | 1 + | |
| web/_site/doc/es/specs/compiler/index.html | 1 + | |
| web/_site/doc/es/specs/index.html | 1 + | |
| web/_site/doc/es/specs/rubyspec/index.html | 1 + | |
| web/_site/doc/es/systems/c-api/index.html | 1 + | |
| web/_site/doc/es/systems/concurrency/index.html | 1 + | |
| web/_site/doc/es/systems/ffi/index.html | 1 + | |
| web/_site/doc/es/systems/index.html | 1 + | |
| web/_site/doc/es/systems/io/index.html | 1 + | |
| web/_site/doc/es/systems/primitives/index.html | 1 + | |
| web/_site/doc/es/tools/debugger/index.html | 1 + | |
| web/_site/doc/es/tools/index.html | 1 + | |
| web/_site/doc/es/tools/memory-analysis/index.html | 1 + | |
| web/_site/doc/es/tools/profiler/index.html | 1 + | |
| .../custom-dispatch-logic/index.html | 1 + | |
| web/_site/doc/es/virtual-machine/index.html | 1 + | |
| .../doc/es/virtual-machine/instructions/index.html | 1 + | |
| web/_site/doc/es/what-is-rubinius/index.html | 1 + | |
| web/_site/doc/index.html | 1 + | |
| web/_site/doc/ja/appendix-a-glossary/index.html | 1 + | |
| .../doc/ja/appendix-b-reading-list/index.html | 1 + | |
| web/_site/doc/ja/bootstrapping/index.html | 1 + | |
| web/_site/doc/ja/build-system/index.html | 1 + | |
| web/_site/doc/ja/bytecode-compiler/ast/index.html | 1 + | |
| .../doc/ja/bytecode-compiler/compiler/index.html | 1 + | |
| .../doc/ja/bytecode-compiler/generator/index.html | 1 + | |
| web/_site/doc/ja/bytecode-compiler/index.html | 1 + | |
| .../doc/ja/bytecode-compiler/parser/index.html | 1 + | |
| .../bytecode-compiler/transformations/index.html | 1 + | |
| .../doc/ja/contributing/communication/index.html | 1 + | |
| web/_site/doc/ja/contributing/index.html | 1 + | |
| .../doc/ja/contributing/style-guide/index.html | 1 + | |
| web/_site/doc/ja/garbage-collector/index.html | 1 + | |
| .../ja/garbage-collector/large-objects/index.html | 1 + | |
| .../garbage-collector/mature-generation/index.html | 1 + | |
| .../doc/ja/garbage-collector/nursery/index.html | 1 + | |
| .../garbage-collector/young-generation/index.html | 1 + | |
| .../doc/ja/getting-started/building/index.html | 1 + | |
| web/_site/doc/ja/getting-started/index.html | 1 + | |
| .../doc/ja/getting-started/requirements/index.html | 1 + | |
| .../ja/getting-started/running-rubinius/index.html | 1 + | |
| .../ja/getting-started/troubleshooting/index.html | 1 + | |
| .../doc/ja/how-to/fix-a-failing-spec/index.html | 1 + | |
| web/_site/doc/ja/how-to/index.html | 1 + | |
| .../ja/how-to/translate-documentation/index.html | 1 + | |
| .../doc/ja/how-to/write-a-blog-post/index.html | 1 + | |
| .../doc/ja/how-to/write-a-ruby-spec/index.html | 1 + | |
| web/_site/doc/ja/how-to/write-a-ticket/index.html | 1 + | |
| .../doc/ja/how-to/write-documentation/index.html | 1 + | |
| web/_site/doc/ja/index-of-terms/index.html | 1 + | |
| web/_site/doc/ja/index.html | 1 + | |
| web/_site/doc/ja/jit/index.html | 1 + | |
| web/_site/doc/ja/ruby/blocks-and-procs/index.html | 1 + | |
| web/_site/doc/ja/ruby/class-variables/index.html | 1 + | |
| .../doc/ja/ruby/classes-and-modules/index.html | 1 + | |
| web/_site/doc/ja/ruby/constants/index.html | 1 + | |
| web/_site/doc/ja/ruby/global-variables/index.html | 1 + | |
| web/_site/doc/ja/ruby/index.html | 1 + | |
| .../doc/ja/ruby/instance-variables/index.html | 1 + | |
| web/_site/doc/ja/ruby/local-variables/index.html | 1 + | |
| web/_site/doc/ja/ruby/methods/index.html | 1 + | |
| web/_site/doc/ja/ruby/scripts/index.html | 1 + | |
| web/_site/doc/ja/specs/compiler/index.html | 1 + | |
| web/_site/doc/ja/specs/index.html | 1 + | |
| web/_site/doc/ja/specs/rubyspec/index.html | 1 + | |
| web/_site/doc/ja/systems/c-api/index.html | 1 + | |
| web/_site/doc/ja/systems/concurrency/index.html | 1 + | |
| web/_site/doc/ja/systems/ffi/index.html | 1 + | |
| web/_site/doc/ja/systems/index.html | 1 + | |
| web/_site/doc/ja/systems/io/index.html | 1 + | |
| web/_site/doc/ja/systems/primitives/index.html | 1 + | |
| web/_site/doc/ja/tools/debugger/index.html | 1 + | |
| web/_site/doc/ja/tools/index.html | 1 + | |
| web/_site/doc/ja/tools/memory-analysis/index.html | 1 + | |
| web/_site/doc/ja/tools/profiler/index.html | 1 + | |
| .../custom-dispatch-logic/index.html | 1 + | |
| web/_site/doc/ja/virtual-machine/index.html | 1 + | |
| .../doc/ja/virtual-machine/instructions/index.html | 1 + | |
| web/_site/doc/ja/what-is-rubinius/index.html | 1 + | |
| web/_site/doc/ru/appendix-a-glossary/index.html | 1 + | |
| .../doc/ru/appendix-b-reading-list/index.html | 1 + | |
| web/_site/doc/ru/bootstrapping/index.html | 1 + | |
| web/_site/doc/ru/build-system/index.html | 1 + | |
| web/_site/doc/ru/bytecode-compiler/ast/index.html | 1 + | |
| .../doc/ru/bytecode-compiler/compiler/index.html | 1 + | |
| .../doc/ru/bytecode-compiler/generator/index.html | 1 + | |
| web/_site/doc/ru/bytecode-compiler/index.html | 1 + | |
| .../doc/ru/bytecode-compiler/parser/index.html | 1 + | |
| .../bytecode-compiler/transformations/index.html | 1 + | |
| .../doc/ru/contributing/communication/index.html | 1 + | |
| web/_site/doc/ru/contributing/index.html | 1 + | |
| .../doc/ru/contributing/style-guide/index.html | 1 + | |
| web/_site/doc/ru/garbage-collector/index.html | 1 + | |
| .../ru/garbage-collector/large-objects/index.html | 1 + | |
| .../garbage-collector/mature-generation/index.html | 1 + | |
| .../doc/ru/garbage-collector/nursery/index.html | 1 + | |
| .../garbage-collector/young-generation/index.html | 1 + | |
| .../doc/ru/getting-started/building/index.html | 1 + | |
| web/_site/doc/ru/getting-started/index.html | 1 + | |
| .../doc/ru/getting-started/requirements/index.html | 1 + | |
| .../ru/getting-started/running-rubinius/index.html | 1 + | |
| .../ru/getting-started/troubleshooting/index.html | 1 + | |
| .../doc/ru/how-to/fix-a-failing-spec/index.html | 1 + | |
| web/_site/doc/ru/how-to/index.html | 1 + | |
| .../ru/how-to/translate-documentation/index.html | 1 + | |
| .../doc/ru/how-to/write-a-blog-post/index.html | 1 + | |
| .../doc/ru/how-to/write-a-ruby-spec/index.html | 1 + | |
| web/_site/doc/ru/how-to/write-a-ticket/index.html | 1 + | |
| .../doc/ru/how-to/write-documentation/index.html | 1 + | |
| web/_site/doc/ru/index-of-terms/index.html | 1 + | |
| web/_site/doc/ru/index.html | 1 + | |
| web/_site/doc/ru/jit/index.html | 1 + | |
| web/_site/doc/ru/ruby/blocks-and-procs/index.html | 1 + | |
| web/_site/doc/ru/ruby/class-variables/index.html | 1 + | |
| .../doc/ru/ruby/classes-and-modules/index.html | 1 + | |
| web/_site/doc/ru/ruby/constants/index.html | 1 + | |
| web/_site/doc/ru/ruby/global-variables/index.html | 1 + | |
| web/_site/doc/ru/ruby/index.html | 1 + | |
| .../doc/ru/ruby/instance-variables/index.html | 1 + | |
| web/_site/doc/ru/ruby/local-variables/index.html | 1 + | |
| web/_site/doc/ru/ruby/methods/index.html | 1 + | |
| web/_site/doc/ru/ruby/scripts/index.html | 1 + | |
| web/_site/doc/ru/specs/compiler/index.html | 1 + | |
| web/_site/doc/ru/specs/index.html | 1 + | |
| web/_site/doc/ru/specs/rubyspec/index.html | 1 + | |
| web/_site/doc/ru/systems/c-api/index.html | 1 + | |
| web/_site/doc/ru/systems/concurrency/index.html | 1 + | |
| web/_site/doc/ru/systems/ffi/index.html | 1 + | |
| web/_site/doc/ru/systems/index.html | 1 + | |
| web/_site/doc/ru/systems/io/index.html | 1 + | |
| web/_site/doc/ru/systems/primitives/index.html | 1 + | |
| web/_site/doc/ru/tools/debugger/index.html | 1 + | |
| web/_site/doc/ru/tools/index.html | 1 + | |
| web/_site/doc/ru/tools/memory-analysis/index.html | 1 + | |
| web/_site/doc/ru/tools/profiler/index.html | 1 + | |
| .../custom-dispatch-logic/index.html | 1 + | |
| web/_site/doc/ru/virtual-machine/index.html | 1 + | |
| .../doc/ru/virtual-machine/instructions/index.html | 1 + | |
| web/_site/doc/ru/what-is-rubinius/index.html | 1 + | |
| web/_site/index.html | 1 + | |
| web/_site/projects/index.html | 1 + | |
| web/_site/releases/1.0.0/index.html | 1 + | |
| web/_site/releases/1.0.1/index.html | 1 + | |
| web/_site/releases/1.1.0/index.html | 1 + | |
| web/_site/releases/1.1.1/index.html | 1 + | |
| web/_site/releases/1.2.0/index.html | 1 + | |
| web/_site/releases/index.html | 1 + | |
| web/_site/roadmap/index.html | 1 + | |
| 319 files changed, 319 insertions(+), 0 deletions(-) | |
| diff --git a/web/_layouts/blog.html b/web/_layouts/blog.html | |
| index 38bb0ff..d93e73b 100644 | |
| --- a/web/_layouts/blog.html | |
| +++ b/web/_layouts/blog.html | |
| @@ -1,5 +1,6 @@ | |
| --- | |
| layout: page | |
| +atom_url: /feed/atom.xml | |
| --- | |
| <body> | |
| {% include blog_header.html %} | |
| diff --git a/web/_layouts/page.html b/web/_layouts/page.html | |
| index 56d8a3f..4454e98 100644 | |
| --- a/web/_layouts/page.html | |
| +++ b/web/_layouts/page.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| {% if page.previous_url %}<link href='{{ page.base_dir }}{{ page.previous_url }}' rel='prev' title='{{ page.previous }}'>{% endif %} | |
| {% if page.next_url %}<link href='{{ page.base_dir }}{{ page.next_url }}' rel='next' title='{{ page.next }}'>{% endif %} | |
| + {% if page.atom_url %}<link href='{{ page.atom_url }}' rel='alternate' type='application/atom+xml' title='Rubinius Blog' />{% endif %} | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_layouts/post.html b/web/_layouts/post.html | |
| index 7d43c8f..4efd1b6 100644 | |
| --- a/web/_layouts/post.html | |
| +++ b/web/_layouts/post.html | |
| @@ -1,5 +1,6 @@ | |
| --- | |
| layout: page | |
| +atom_url: /feed/atom.xml | |
| --- | |
| <body> | |
| {% include post_header.html %} | |
| diff --git a/web/_site/2010/12/15/rubinius-has-a-blog/index.html b/web/_site/2010/12/15/rubinius-has-a-blog/index.html | |
| index 814ba50..3644d8f 100644 | |
| --- a/web/_site/2010/12/15/rubinius-has-a-blog/index.html | |
| +++ b/web/_site/2010/12/15/rubinius-has-a-blog/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| + <link href='/feed/atom.xml' rel='alternate' type='application/atom+xml' title='Rubinius Blog' /> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/about/1.1.1/index.html b/web/_site/about/1.1.1/index.html | |
| index 8a0b55b..129e35e 100644 | |
| --- a/web/_site/about/1.1.1/index.html | |
| +++ b/web/_site/about/1.1.1/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/about/one_one/index.html b/web/_site/about/one_one/index.html | |
| index 0574877..6f6e16b 100644 | |
| --- a/web/_site/about/one_one/index.html | |
| +++ b/web/_site/about/one_one/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/about/one_point_oh/index.html b/web/_site/about/one_point_oh/index.html | |
| index 8c0d30c..762954b 100644 | |
| --- a/web/_site/about/one_point_oh/index.html | |
| +++ b/web/_site/about/one_point_oh/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/about/one_point_one/index.html b/web/_site/about/one_point_one/index.html | |
| index a804192..d410076 100644 | |
| --- a/web/_site/about/one_point_one/index.html | |
| +++ b/web/_site/about/one_point_one/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/blog/index.html b/web/_site/blog/index.html | |
| index 7f5c7d1..131df4e 100644 | |
| --- a/web/_site/blog/index.html | |
| +++ b/web/_site/blog/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| + <link href='/feed/atom.xml' rel='alternate' type='application/atom+xml' title='Rubinius Blog' /> | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/appendix-a-glossary/index.html b/web/_site/doc/de/appendix-a-glossary/index.html | |
| index 19e2166..e3e3f93 100644 | |
| --- a/web/_site/doc/de/appendix-a-glossary/index.html | |
| +++ b/web/_site/doc/de/appendix-a-glossary/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/how-to/translate-documentation' rel='prev' title='Anleitung - Übersetzen von Dokumentation'> | |
| <link href='/doc/de/appendix-b-reading-list' rel='next' title='Anhang B - Literaturverzeichnis'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/appendix-b-reading-list/index.html b/web/_site/doc/de/appendix-b-reading-list/index.html | |
| index 29a8d18..443f7a2 100644 | |
| --- a/web/_site/doc/de/appendix-b-reading-list/index.html | |
| +++ b/web/_site/doc/de/appendix-b-reading-list/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/appendix-a-glossary' rel='prev' title='Anhang A - Glossar'> | |
| <link href='/doc/de/index-of-terms' rel='next' title='Begriffsindex'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/bootstrapping/index.html b/web/_site/doc/de/bootstrapping/index.html | |
| index 475d032..2e02502 100644 | |
| --- a/web/_site/doc/de/bootstrapping/index.html | |
| +++ b/web/_site/doc/de/bootstrapping/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/build-system' rel='prev' title='Bausystem'> | |
| <link href='/doc/de/virtual-machine' rel='next' title='Virtuelle Maschine'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/build-system/index.html b/web/_site/doc/de/build-system/index.html | |
| index 2bfaf66..fe2d186 100644 | |
| --- a/web/_site/doc/de/build-system/index.html | |
| +++ b/web/_site/doc/de/build-system/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/specs/compiler' rel='prev' title='Specs - Compiler'> | |
| <link href='/doc/de/bootstrapping' rel='next' title='Bootstrapping'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/bytecode-compiler/ast/index.html b/web/_site/doc/de/bytecode-compiler/ast/index.html | |
| index c5c9070..0b2ab94 100644 | |
| --- a/web/_site/doc/de/bytecode-compiler/ast/index.html | |
| +++ b/web/_site/doc/de/bytecode-compiler/ast/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/bytecode-compiler/parser' rel='prev' title='Parser'> | |
| <link href='/doc/de/bytecode-compiler/compiler' rel='next' title='Compiler'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/bytecode-compiler/compiler/index.html b/web/_site/doc/de/bytecode-compiler/compiler/index.html | |
| index c309a8b..7748fa0 100644 | |
| --- a/web/_site/doc/de/bytecode-compiler/compiler/index.html | |
| +++ b/web/_site/doc/de/bytecode-compiler/compiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/bytecode-compiler/ast' rel='prev' title='AST'> | |
| <link href='/doc/de/bytecode-compiler/transformations' rel='next' title='Transformations'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/bytecode-compiler/generator/index.html b/web/_site/doc/de/bytecode-compiler/generator/index.html | |
| index 4477788..8d0fb8f 100644 | |
| --- a/web/_site/doc/de/bytecode-compiler/generator/index.html | |
| +++ b/web/_site/doc/de/bytecode-compiler/generator/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/bytecode-compiler/transformations' rel='prev' title='Transformations'> | |
| <link href='/doc/de/jit' rel='next' title='JIT Compiler'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/bytecode-compiler/index.html b/web/_site/doc/de/bytecode-compiler/index.html | |
| index 00515ba..db22c91 100644 | |
| --- a/web/_site/doc/de/bytecode-compiler/index.html | |
| +++ b/web/_site/doc/de/bytecode-compiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/virtual-machine/custom-dispatch-logic' rel='prev' title='Virtual Machine - Custom Dispatch Logic'> | |
| <link href='/doc/de/bytecode-compiler/parser' rel='next' title='Parser'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/bytecode-compiler/parser/index.html b/web/_site/doc/de/bytecode-compiler/parser/index.html | |
| index 6ff17ce..d6dab95 100644 | |
| --- a/web/_site/doc/de/bytecode-compiler/parser/index.html | |
| +++ b/web/_site/doc/de/bytecode-compiler/parser/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/bytecode-compiler' rel='prev' title='Bytecode Compiler'> | |
| <link href='/doc/de/bytecode-compiler/ast' rel='next' title='AST'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/bytecode-compiler/transformations/index.html b/web/_site/doc/de/bytecode-compiler/transformations/index.html | |
| index 8a04997..9d75fe9 100644 | |
| --- a/web/_site/doc/de/bytecode-compiler/transformations/index.html | |
| +++ b/web/_site/doc/de/bytecode-compiler/transformations/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/bytecode-compiler/compiler' rel='prev' title='Compiler'> | |
| <link href='/doc/de/bytecode-compiler/generator' rel='next' title='Generator'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/contributing/communication/index.html b/web/_site/doc/de/contributing/communication/index.html | |
| index 0d5e9d0..4a09e04 100644 | |
| --- a/web/_site/doc/de/contributing/communication/index.html | |
| +++ b/web/_site/doc/de/contributing/communication/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/contributing' rel='prev' title='Contributing'> | |
| <link href='/doc/de/contributing/style-guide' rel='next' title='Style Guide'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/contributing/index.html b/web/_site/doc/de/contributing/index.html | |
| index 4299ae5..15be737 100644 | |
| --- a/web/_site/doc/de/contributing/index.html | |
| +++ b/web/_site/doc/de/contributing/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/getting-started/troubleshooting' rel='prev' title='Troubleshooting'> | |
| <link href='/doc/de/contributing/communication' rel='next' title='Communication'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/contributing/style-guide/index.html b/web/_site/doc/de/contributing/style-guide/index.html | |
| index 487887f..58bcf21 100644 | |
| --- a/web/_site/doc/de/contributing/style-guide/index.html | |
| +++ b/web/_site/doc/de/contributing/style-guide/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/contributing/communication' rel='prev' title='Communication'> | |
| <link href='/doc/de/ruby' rel='next' title='Ruby'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/garbage-collector/index.html b/web/_site/doc/de/garbage-collector/index.html | |
| index 937e3a4..4213567 100644 | |
| --- a/web/_site/doc/de/garbage-collector/index.html | |
| +++ b/web/_site/doc/de/garbage-collector/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/jit' rel='prev' title='JIT Compiler'> | |
| <link href='/doc/de/garbage-collector/nursery' rel='next' title='Nursery'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/garbage-collector/large-objects/index.html b/web/_site/doc/de/garbage-collector/large-objects/index.html | |
| index 6605343..27ff467 100644 | |
| --- a/web/_site/doc/de/garbage-collector/large-objects/index.html | |
| +++ b/web/_site/doc/de/garbage-collector/large-objects/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/garbage-collector/mature-generation' rel='prev' title='Mature Generation'> | |
| <link href='/doc/de/systems' rel='next' title='Rubinius Systems'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/garbage-collector/mature-generation/index.html b/web/_site/doc/de/garbage-collector/mature-generation/index.html | |
| index 1203070..c0f3d12 100644 | |
| --- a/web/_site/doc/de/garbage-collector/mature-generation/index.html | |
| +++ b/web/_site/doc/de/garbage-collector/mature-generation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/garbage-collector/young-generation' rel='prev' title='Young Generation'> | |
| <link href='/doc/de/garbage-collector/large-objects' rel='next' title='Large Objects'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/garbage-collector/nursery/index.html b/web/_site/doc/de/garbage-collector/nursery/index.html | |
| index a3d9a36..9aa6e9a 100644 | |
| --- a/web/_site/doc/de/garbage-collector/nursery/index.html | |
| +++ b/web/_site/doc/de/garbage-collector/nursery/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/garbage-collector' rel='prev' title='Garbage Collector'> | |
| <link href='/doc/de/garbage-collector/young-generation' rel='next' title='Young Generation'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/garbage-collector/young-generation/index.html b/web/_site/doc/de/garbage-collector/young-generation/index.html | |
| index 8eef75e..e34242b 100644 | |
| --- a/web/_site/doc/de/garbage-collector/young-generation/index.html | |
| +++ b/web/_site/doc/de/garbage-collector/young-generation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/garbage-collector/nursery' rel='prev' title='Nursery'> | |
| <link href='/doc/de/garbage-collector/mature-generation' rel='next' title='Mature Generation'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/getting-started/building/index.html b/web/_site/doc/de/getting-started/building/index.html | |
| index 9bf74f6..0e6b31e 100644 | |
| --- a/web/_site/doc/de/getting-started/building/index.html | |
| +++ b/web/_site/doc/de/getting-started/building/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/getting-started/requirements' rel='prev' title='Abhängigkeiten'> | |
| <link href='/doc/de/getting-started/running-rubinius' rel='next' title='Rubinius ausführen'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/getting-started/index.html b/web/_site/doc/de/getting-started/index.html | |
| index d3dabcb..3baf63d 100644 | |
| --- a/web/_site/doc/de/getting-started/index.html | |
| +++ b/web/_site/doc/de/getting-started/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/what-is-rubinius' rel='prev' title='Was ist Rubinius?'> | |
| <link href='/doc/de/getting-started/requirements' rel='next' title='Voraussetzungen'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/getting-started/requirements/index.html b/web/_site/doc/de/getting-started/requirements/index.html | |
| index ba94c24..b7e0003 100644 | |
| --- a/web/_site/doc/de/getting-started/requirements/index.html | |
| +++ b/web/_site/doc/de/getting-started/requirements/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/getting-started' rel='prev' title='Erste Schritte'> | |
| <link href='/doc/de/getting-started/building' rel='next' title='Rubinius bauen'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/getting-started/running-rubinius/index.html b/web/_site/doc/de/getting-started/running-rubinius/index.html | |
| index dc8b1a0..f615ff9 100644 | |
| --- a/web/_site/doc/de/getting-started/running-rubinius/index.html | |
| +++ b/web/_site/doc/de/getting-started/running-rubinius/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/getting-started/building' rel='prev' title='Rubinius bauen'> | |
| <link href='/doc/de/getting-started/troubleshooting' rel='next' title='Problemlösungen'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/getting-started/troubleshooting/index.html b/web/_site/doc/de/getting-started/troubleshooting/index.html | |
| index e142b46..75b5db9 100644 | |
| --- a/web/_site/doc/de/getting-started/troubleshooting/index.html | |
| +++ b/web/_site/doc/de/getting-started/troubleshooting/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/getting-started/running-rubinius' rel='prev' title='Rubinius ausführen'> | |
| <link href='/doc/de/contributing' rel='next' title='Mitmachen'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/how-to/fix-a-failing-spec/index.html b/web/_site/doc/de/how-to/fix-a-failing-spec/index.html | |
| index fce9b6f..b76c8d0 100644 | |
| --- a/web/_site/doc/de/how-to/fix-a-failing-spec/index.html | |
| +++ b/web/_site/doc/de/how-to/fix-a-failing-spec/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/how-to/write-ruby-spec' rel='prev' title='Einen Ruby Spec schreiben'> | |
| <link href='/doc/de/how-to/write-a-blog-post' rel='next' title='Einen Blogeintrag schreiben'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/how-to/index.html b/web/_site/doc/de/how-to/index.html | |
| index 34380f2..dbd7b5c 100644 | |
| --- a/web/_site/doc/de/how-to/index.html | |
| +++ b/web/_site/doc/de/how-to/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/tools/memory-analysis' rel='prev' title='Tools - Speicher Analyse'> | |
| <link href='/doc/de/how-to/write-a-ticket' rel='next' title='Ein Ticket erstellen'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/how-to/translate-documentation/index.html b/web/_site/doc/de/how-to/translate-documentation/index.html | |
| index f4d8529..6a28f8d 100644 | |
| --- a/web/_site/doc/de/how-to/translate-documentation/index.html | |
| +++ b/web/_site/doc/de/how-to/translate-documentation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/how-to/write-documentation' rel='prev' title='Dokumentation schreiben'> | |
| <link href='/doc/de/appendix-a-glossary' rel='next' title='Anhang A - Glossar'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/how-to/write-a-blog-post/index.html b/web/_site/doc/de/how-to/write-a-blog-post/index.html | |
| index 97692ab..15cc570 100644 | |
| --- a/web/_site/doc/de/how-to/write-a-blog-post/index.html | |
| +++ b/web/_site/doc/de/how-to/write-a-blog-post/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/how-to/fix-a-failing-spec' rel='prev' title='Einen fehlgeschlagenen Spec reparieren'> | |
| <link href='/doc/de/how-to/write-documentation' rel='next' title='Dokumentation schreiben'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/how-to/write-a-ruby-spec/index.html b/web/_site/doc/de/how-to/write-a-ruby-spec/index.html | |
| index 37efc5e..bfea3ac 100644 | |
| --- a/web/_site/doc/de/how-to/write-a-ruby-spec/index.html | |
| +++ b/web/_site/doc/de/how-to/write-a-ruby-spec/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/how-to/write-a-ticket' rel='prev' title='Ein Ticket erstellen'> | |
| <link href='/doc/de/how-to/fix-a-failing-spec' rel='next' title='Einen fehlgeschlagenen Spec reparieren'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/how-to/write-a-ticket/index.html b/web/_site/doc/de/how-to/write-a-ticket/index.html | |
| index 1b0afff..bf5a6de 100644 | |
| --- a/web/_site/doc/de/how-to/write-a-ticket/index.html | |
| +++ b/web/_site/doc/de/how-to/write-a-ticket/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/how-to' rel='prev' title='Anleitungen'> | |
| <link href='/doc/de/how-to/write-a-ruby-spec' rel='next' title='Einen Ruby Spec schreiben'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/how-to/write-documentation/index.html b/web/_site/doc/de/how-to/write-documentation/index.html | |
| index 69db700..deb4f25 100644 | |
| --- a/web/_site/doc/de/how-to/write-documentation/index.html | |
| +++ b/web/_site/doc/de/how-to/write-documentation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/how-to/write-a-blog-post' rel='prev' title='Einen Blogeintrag schreiben'> | |
| <link href='/doc/de/how-to/translate-documentation' rel='next' title='Dokumentation übersetzen'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/index-of-terms/index.html b/web/_site/doc/de/index-of-terms/index.html | |
| index 5e8b980..a921e4b 100644 | |
| --- a/web/_site/doc/de/index-of-terms/index.html | |
| +++ b/web/_site/doc/de/index-of-terms/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/appendix-b-reading-list' rel='prev' title='Appendix B - Reading List'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/index.html b/web/_site/doc/de/index.html | |
| index bc8951a..845b99e 100644 | |
| --- a/web/_site/doc/de/index.html | |
| +++ b/web/_site/doc/de/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/what-is-rubinius' rel='next' title='Was ist Rubinius?'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/jit/index.html b/web/_site/doc/de/jit/index.html | |
| index 1927498..5c933c9 100644 | |
| --- a/web/_site/doc/de/jit/index.html | |
| +++ b/web/_site/doc/de/jit/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/bytecode-compiler/generator' rel='prev' title='Bytecode Compiler - Generator'> | |
| <link href='/doc/de/garbage-collector' rel='next' title='Garbage Collector'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/blocks-and-procs/index.html b/web/_site/doc/de/ruby/blocks-and-procs/index.html | |
| index 0e7f695..7d84b93 100644 | |
| --- a/web/_site/doc/de/ruby/blocks-and-procs/index.html | |
| +++ b/web/_site/doc/de/ruby/blocks-and-procs/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/ruby/classes-and-modules' rel='prev' title='Classes & Modules'> | |
| <link href='/doc/de/ruby/local-variables' rel='next' title='Local Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/class-variables/index.html b/web/_site/doc/de/ruby/class-variables/index.html | |
| index 9570fab..ec862e9 100644 | |
| --- a/web/_site/doc/de/ruby/class-variables/index.html | |
| +++ b/web/_site/doc/de/ruby/class-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/ruby/instance-variables' rel='prev' title='Instance Variables'> | |
| <link href='/doc/de/ruby/global-variables' rel='next' title='Global Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/classes-and-modules/index.html b/web/_site/doc/de/ruby/classes-and-modules/index.html | |
| index 4189188..5a63973 100644 | |
| --- a/web/_site/doc/de/ruby/classes-and-modules/index.html | |
| +++ b/web/_site/doc/de/ruby/classes-and-modules/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/ruby/constants' rel='prev' title='Constants'> | |
| <link href='/doc/de/ruby/blocks-and-procs' rel='next' title='Blocks & Procs'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/constants/index.html b/web/_site/doc/de/ruby/constants/index.html | |
| index 380da36..48c12dc 100644 | |
| --- a/web/_site/doc/de/ruby/constants/index.html | |
| +++ b/web/_site/doc/de/ruby/constants/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/ruby/methods' rel='prev' title='Methods'> | |
| <link href='/doc/de/ruby/classes-and-modules' rel='next' title='Classes & Modules'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/global-variables/index.html b/web/_site/doc/de/ruby/global-variables/index.html | |
| index c0c322d..045067c 100644 | |
| --- a/web/_site/doc/de/ruby/global-variables/index.html | |
| +++ b/web/_site/doc/de/ruby/global-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/ruby/class-variables' rel='prev' title='Class Variables'> | |
| <link href='/doc/de/specs' rel='next' title='Specs'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/index.html b/web/_site/doc/de/ruby/index.html | |
| index d221e52..e44bb8e 100644 | |
| --- a/web/_site/doc/de/ruby/index.html | |
| +++ b/web/_site/doc/de/ruby/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/contributing/style-guide' rel='prev' title='Style Guide'> | |
| <link href='/doc/de/ruby/scripts' rel='next' title='Scripts'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/instance-variables/index.html b/web/_site/doc/de/ruby/instance-variables/index.html | |
| index 361fe44..3854076 100644 | |
| --- a/web/_site/doc/de/ruby/instance-variables/index.html | |
| +++ b/web/_site/doc/de/ruby/instance-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/ruby/locas-variables' rel='prev' title='Local Variables'> | |
| <link href='/doc/de/ruby/class-variables' rel='next' title='Class Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/local-variables/index.html b/web/_site/doc/de/ruby/local-variables/index.html | |
| index 68f049f..258467d 100644 | |
| --- a/web/_site/doc/de/ruby/local-variables/index.html | |
| +++ b/web/_site/doc/de/ruby/local-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/ruby/blocks-and-procs' rel='prev' title='Blocks & Procs'> | |
| <link href='/doc/de/ruby/instance-variables' rel='next' title='Instance Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/methods/index.html b/web/_site/doc/de/ruby/methods/index.html | |
| index 0815afe..44b9dee 100644 | |
| --- a/web/_site/doc/de/ruby/methods/index.html | |
| +++ b/web/_site/doc/de/ruby/methods/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/ruby/scripts' rel='prev' title='Scripts'> | |
| <link href='/doc/de/ruby/constants' rel='next' title='Constants'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/ruby/scripts/index.html b/web/_site/doc/de/ruby/scripts/index.html | |
| index 3429a5a..1f06ec5 100644 | |
| --- a/web/_site/doc/de/ruby/scripts/index.html | |
| +++ b/web/_site/doc/de/ruby/scripts/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/ruby' rel='prev' title='Ruby'> | |
| <link href='/doc/de/ruby/methods' rel='next' title='Methods'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/specs/compiler/index.html b/web/_site/doc/de/specs/compiler/index.html | |
| index 9a47741..5f178ee 100644 | |
| --- a/web/_site/doc/de/specs/compiler/index.html | |
| +++ b/web/_site/doc/de/specs/compiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/specs/rubyspec' rel='prev' title='RubySpec'> | |
| <link href='/doc/de/build-system' rel='next' title='Build System'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/specs/index.html b/web/_site/doc/de/specs/index.html | |
| index 0f50726..48c7abd 100644 | |
| --- a/web/_site/doc/de/specs/index.html | |
| +++ b/web/_site/doc/de/specs/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/ruby/global-variables' rel='prev' title='Ruby - Global Variables'> | |
| <link href='/doc/de/specs/rubyspec' rel='next' title='RubySpec'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/specs/rubyspec/index.html b/web/_site/doc/de/specs/rubyspec/index.html | |
| index a17c416..2ab97bd 100644 | |
| --- a/web/_site/doc/de/specs/rubyspec/index.html | |
| +++ b/web/_site/doc/de/specs/rubyspec/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/specs' rel='prev' title='Specs'> | |
| <link href='/doc/de/specs/compiler' rel='next' title='Compiler Specs'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/systems/c-api/index.html b/web/_site/doc/de/systems/c-api/index.html | |
| index eae69c5..9bd59b6 100644 | |
| --- a/web/_site/doc/de/systems/c-api/index.html | |
| +++ b/web/_site/doc/de/systems/c-api/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/systems/io' rel='prev' title='IO'> | |
| <link href='/doc/de/tools' rel='next' title='Tools'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/systems/concurrency/index.html b/web/_site/doc/de/systems/concurrency/index.html | |
| index 4a96f7b..df40dc0 100644 | |
| --- a/web/_site/doc/de/systems/concurrency/index.html | |
| +++ b/web/_site/doc/de/systems/concurrency/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/systems/ffi' rel='prev' title='FFI'> | |
| <link href='/doc/de/systems/io' rel='next' title='IO'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/systems/ffi/index.html b/web/_site/doc/de/systems/ffi/index.html | |
| index 6b72340..3e7a5e5 100644 | |
| --- a/web/_site/doc/de/systems/ffi/index.html | |
| +++ b/web/_site/doc/de/systems/ffi/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/systems/primitives' rel='prev' title='Primitives'> | |
| <link href='/doc/de/systems/concurrency' rel='next' title='Concurrency'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/systems/index.html b/web/_site/doc/de/systems/index.html | |
| index 2c6f84d..102d037 100644 | |
| --- a/web/_site/doc/de/systems/index.html | |
| +++ b/web/_site/doc/de/systems/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/garbage-collector/large-objects' rel='prev' title='Garbage Collector - Large Objects'> | |
| <link href='/doc/de/systems/primitives' rel='next' title='Primitives'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/systems/io/index.html b/web/_site/doc/de/systems/io/index.html | |
| index a7db321..0cf0b87 100644 | |
| --- a/web/_site/doc/de/systems/io/index.html | |
| +++ b/web/_site/doc/de/systems/io/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/systems/concurrency' rel='prev' title='Concurrency'> | |
| <link href='/doc/de/systems/c-api' rel='next' title='C-API'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/systems/primitives/index.html b/web/_site/doc/de/systems/primitives/index.html | |
| index 07375d2..5074131 100644 | |
| --- a/web/_site/doc/de/systems/primitives/index.html | |
| +++ b/web/_site/doc/de/systems/primitives/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/systems' rel='prev' title='Rubinius Systems'> | |
| <link href='/doc/de/systems/ffi' rel='next' title='FFI'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/tools/debugger/index.html b/web/_site/doc/de/tools/debugger/index.html | |
| index af88422..a4e5d7d 100644 | |
| --- a/web/_site/doc/de/tools/debugger/index.html | |
| +++ b/web/_site/doc/de/tools/debugger/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/tools' rel='prev' title='Tools'> | |
| <link href='/doc/de/tools/profiler' rel='next' title='Profiler'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/tools/index.html b/web/_site/doc/de/tools/index.html | |
| index 2d94751..e10d8ca 100644 | |
| --- a/web/_site/doc/de/tools/index.html | |
| +++ b/web/_site/doc/de/tools/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/systems/c-api' rel='prev' title='Rubinius Systems - C-API'> | |
| <link href='/doc/de/tools/debugger' rel='next' title='Debugger'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/tools/memory-analysis/index.html b/web/_site/doc/de/tools/memory-analysis/index.html | |
| index 15d7920..c00aaf3 100644 | |
| --- a/web/_site/doc/de/tools/memory-analysis/index.html | |
| +++ b/web/_site/doc/de/tools/memory-analysis/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/tools/profiler' rel='prev' title='Profiler'> | |
| <link href='/doc/de/how-to' rel='next' title='How-To'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/tools/profiler/index.html b/web/_site/doc/de/tools/profiler/index.html | |
| index 1e67574..3cbbfd1 100644 | |
| --- a/web/_site/doc/de/tools/profiler/index.html | |
| +++ b/web/_site/doc/de/tools/profiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/tools/debugger' rel='prev' title='Debugger'> | |
| <link href='/doc/de/tools/memory-analysis' rel='next' title='Memory Analysis'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/virtual-machine/custom-dispatch-logic/index.html b/web/_site/doc/de/virtual-machine/custom-dispatch-logic/index.html | |
| index 4561ab7..aacc341 100644 | |
| --- a/web/_site/doc/de/virtual-machine/custom-dispatch-logic/index.html | |
| +++ b/web/_site/doc/de/virtual-machine/custom-dispatch-logic/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/virtual-machine/instructions' rel='prev' title='Instructions'> | |
| <link href='/doc/de/bytecode-compiler' rel='next' title='Bytecode Compiler'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/virtual-machine/index.html b/web/_site/doc/de/virtual-machine/index.html | |
| index 9fc2b0f..80cab1e 100644 | |
| --- a/web/_site/doc/de/virtual-machine/index.html | |
| +++ b/web/_site/doc/de/virtual-machine/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/bootstrapping' rel='prev' title='Bootstrapping'> | |
| <link href='/doc/de/virtual-machine/instructions' rel='next' title='Instructions'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/virtual-machine/instructions/index.html b/web/_site/doc/de/virtual-machine/instructions/index.html | |
| index 755d245..ea52659 100644 | |
| --- a/web/_site/doc/de/virtual-machine/instructions/index.html | |
| +++ b/web/_site/doc/de/virtual-machine/instructions/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/virtual-machine' rel='prev' title='Virtual Machine'> | |
| <link href='/doc/de/virtual-machine/custom-dispatch-logic' rel='next' title='Custom Dispatch Logic'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/de/what-is-rubinius/index.html b/web/_site/doc/de/what-is-rubinius/index.html | |
| index 6d02a2e..edb5bb6 100644 | |
| --- a/web/_site/doc/de/what-is-rubinius/index.html | |
| +++ b/web/_site/doc/de/what-is-rubinius/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/de/getting-started' rel='next' title='Erste Schritte'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/appendix-a-glossary/index.html b/web/_site/doc/en/appendix-a-glossary/index.html | |
| index 0070779..40e8a4c 100644 | |
| --- a/web/_site/doc/en/appendix-a-glossary/index.html | |
| +++ b/web/_site/doc/en/appendix-a-glossary/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/how-to/translate-documentation' rel='prev' title='How-To - Translate Documentation'> | |
| <link href='/doc/en/appendix-b-reading-list' rel='next' title='Appendix B - Reading List'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/appendix-b-reading-list/index.html b/web/_site/doc/en/appendix-b-reading-list/index.html | |
| index 4c2ade0..5698318 100644 | |
| --- a/web/_site/doc/en/appendix-b-reading-list/index.html | |
| +++ b/web/_site/doc/en/appendix-b-reading-list/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/appendix-a-glossary' rel='prev' title='Appendix A - Glossary'> | |
| <link href='/doc/en/terms-index' rel='next' title='Terms Index'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/bootstrapping/index.html b/web/_site/doc/en/bootstrapping/index.html | |
| index c2a9d73..aa88ae3 100644 | |
| --- a/web/_site/doc/en/bootstrapping/index.html | |
| +++ b/web/_site/doc/en/bootstrapping/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/build-system' rel='prev' title='Build System'> | |
| <link href='/doc/en/virtual-machine' rel='next' title='Virtual Machine'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/build-system/index.html b/web/_site/doc/en/build-system/index.html | |
| index dca7ef8..322a69b 100644 | |
| --- a/web/_site/doc/en/build-system/index.html | |
| +++ b/web/_site/doc/en/build-system/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/specs/compiler' rel='prev' title='Specs - Compiler'> | |
| <link href='/doc/en/bootstrapping' rel='next' title='Bootstrapping'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/bytecode-compiler/ast/index.html b/web/_site/doc/en/bytecode-compiler/ast/index.html | |
| index fb89ce7..898f645 100644 | |
| --- a/web/_site/doc/en/bytecode-compiler/ast/index.html | |
| +++ b/web/_site/doc/en/bytecode-compiler/ast/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/bytecode-compiler/parser' rel='prev' title='Parser'> | |
| <link href='/doc/en/bytecode-compiler/compiler' rel='next' title='Compiler'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/bytecode-compiler/compiler/index.html b/web/_site/doc/en/bytecode-compiler/compiler/index.html | |
| index 2a325ac..3f473d4 100644 | |
| --- a/web/_site/doc/en/bytecode-compiler/compiler/index.html | |
| +++ b/web/_site/doc/en/bytecode-compiler/compiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/bytecode-compiler/ast' rel='prev' title='AST'> | |
| <link href='/doc/en/bytecode-compiler/transformations' rel='next' title='Transformations'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/bytecode-compiler/generator/index.html b/web/_site/doc/en/bytecode-compiler/generator/index.html | |
| index e824fe8..5e2b8f8 100644 | |
| --- a/web/_site/doc/en/bytecode-compiler/generator/index.html | |
| +++ b/web/_site/doc/en/bytecode-compiler/generator/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/bytecode-compiler/transformations' rel='prev' title='Transformations'> | |
| <link href='/doc/en/jit' rel='next' title='JIT Compiler'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/bytecode-compiler/index.html b/web/_site/doc/en/bytecode-compiler/index.html | |
| index d3a9157..4585e5b 100644 | |
| --- a/web/_site/doc/en/bytecode-compiler/index.html | |
| +++ b/web/_site/doc/en/bytecode-compiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/virtual-machine/custom-dispatch-logic' rel='prev' title='Virtual Machine - Custom Dispatch Logic'> | |
| <link href='/doc/en/bytecode-compiler/parser' rel='next' title='Parser'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/bytecode-compiler/parser/index.html b/web/_site/doc/en/bytecode-compiler/parser/index.html | |
| index bc8832a..7085646 100644 | |
| --- a/web/_site/doc/en/bytecode-compiler/parser/index.html | |
| +++ b/web/_site/doc/en/bytecode-compiler/parser/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/bytecode-compiler' rel='prev' title='Bytecode Compiler'> | |
| <link href='/doc/en/bytecode-compiler/ast' rel='next' title='AST'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/bytecode-compiler/transformations/index.html b/web/_site/doc/en/bytecode-compiler/transformations/index.html | |
| index 0014f6b..d0bdd7d 100644 | |
| --- a/web/_site/doc/en/bytecode-compiler/transformations/index.html | |
| +++ b/web/_site/doc/en/bytecode-compiler/transformations/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/bytecode-compiler/compiler' rel='prev' title='Compiler'> | |
| <link href='/doc/en/bytecode-compiler/generator' rel='next' title='Generator'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/contributing/communication/index.html b/web/_site/doc/en/contributing/communication/index.html | |
| index 7cccb00..6149c34 100644 | |
| --- a/web/_site/doc/en/contributing/communication/index.html | |
| +++ b/web/_site/doc/en/contributing/communication/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/contributing' rel='prev' title='Contributing'> | |
| <link href='/doc/en/contributing/style-guide' rel='next' title='Style Guide'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/contributing/index.html b/web/_site/doc/en/contributing/index.html | |
| index 60a7139..b0cbc32 100644 | |
| --- a/web/_site/doc/en/contributing/index.html | |
| +++ b/web/_site/doc/en/contributing/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/getting-started/troubleshooting' rel='prev' title='Troubleshooting'> | |
| <link href='/doc/en/contributing/communication' rel='next' title='Communication'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/contributing/style-guide/index.html b/web/_site/doc/en/contributing/style-guide/index.html | |
| index 01e7df9..876cb84 100644 | |
| --- a/web/_site/doc/en/contributing/style-guide/index.html | |
| +++ b/web/_site/doc/en/contributing/style-guide/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/contributing/communication' rel='prev' title='Communication'> | |
| <link href='/doc/en/ruby' rel='next' title='Ruby'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/garbage-collector/index.html b/web/_site/doc/en/garbage-collector/index.html | |
| index 92d5c6d..7cec1bd 100644 | |
| --- a/web/_site/doc/en/garbage-collector/index.html | |
| +++ b/web/_site/doc/en/garbage-collector/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/jit' rel='prev' title='JIT Compiler'> | |
| <link href='/doc/en/garbage-collector/nursery' rel='next' title='Nursery'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/garbage-collector/large-objects/index.html b/web/_site/doc/en/garbage-collector/large-objects/index.html | |
| index bc3d378..c05aa75 100644 | |
| --- a/web/_site/doc/en/garbage-collector/large-objects/index.html | |
| +++ b/web/_site/doc/en/garbage-collector/large-objects/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/garbage-collector/mature-generation' rel='prev' title='Mature Generation'> | |
| <link href='/doc/en/systems' rel='next' title='Rubinius Systems'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/garbage-collector/mature-generation/index.html b/web/_site/doc/en/garbage-collector/mature-generation/index.html | |
| index 0cc4e12..96c4f03 100644 | |
| --- a/web/_site/doc/en/garbage-collector/mature-generation/index.html | |
| +++ b/web/_site/doc/en/garbage-collector/mature-generation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/garbage-collector/young-generation' rel='prev' title='Young Generation'> | |
| <link href='/doc/en/garbage-collector/large-objects' rel='next' title='Large Objects'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/garbage-collector/nursery/index.html b/web/_site/doc/en/garbage-collector/nursery/index.html | |
| index 4d504c1..301dce8 100644 | |
| --- a/web/_site/doc/en/garbage-collector/nursery/index.html | |
| +++ b/web/_site/doc/en/garbage-collector/nursery/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/garbage-collector' rel='prev' title='Garbage Collector'> | |
| <link href='/doc/en/garbage-collector/young-generation' rel='next' title='Young Generation'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/garbage-collector/young-generation/index.html b/web/_site/doc/en/garbage-collector/young-generation/index.html | |
| index a0d1af2..2da34c9 100644 | |
| --- a/web/_site/doc/en/garbage-collector/young-generation/index.html | |
| +++ b/web/_site/doc/en/garbage-collector/young-generation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/garbage-collector/nursery' rel='prev' title='Nursery'> | |
| <link href='/doc/en/garbage-collector/mature-generation' rel='next' title='Mature Generation'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/getting-started/building/index.html b/web/_site/doc/en/getting-started/building/index.html | |
| index 4af4e9f..01cb63b 100644 | |
| --- a/web/_site/doc/en/getting-started/building/index.html | |
| +++ b/web/_site/doc/en/getting-started/building/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/getting-started/requirements' rel='prev' title='Requirements'> | |
| <link href='/doc/en/getting-started/running-rubinius' rel='next' title='Running Rubinius'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/getting-started/index.html b/web/_site/doc/en/getting-started/index.html | |
| index 4fce73c..f31d0e7 100644 | |
| --- a/web/_site/doc/en/getting-started/index.html | |
| +++ b/web/_site/doc/en/getting-started/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/what-is-rubinius' rel='prev' title='What is Rubinius?'> | |
| <link href='/doc/en/getting-started/requirements' rel='next' title='Requirements'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/getting-started/requirements/index.html b/web/_site/doc/en/getting-started/requirements/index.html | |
| index 6adde10..c7e966a 100644 | |
| --- a/web/_site/doc/en/getting-started/requirements/index.html | |
| +++ b/web/_site/doc/en/getting-started/requirements/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/getting-started' rel='prev' title='Getting Started'> | |
| <link href='/doc/en/getting-started/building' rel='next' title='Building'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/getting-started/running-rubinius/index.html b/web/_site/doc/en/getting-started/running-rubinius/index.html | |
| index 0994667..5c2af0a 100644 | |
| --- a/web/_site/doc/en/getting-started/running-rubinius/index.html | |
| +++ b/web/_site/doc/en/getting-started/running-rubinius/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/getting-started/building' rel='prev' title='Building'> | |
| <link href='/doc/en/getting-started/troubleshooting' rel='next' title='Troubleshooting'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/getting-started/troubleshooting/index.html b/web/_site/doc/en/getting-started/troubleshooting/index.html | |
| index 8f41b11..c6bd213 100644 | |
| --- a/web/_site/doc/en/getting-started/troubleshooting/index.html | |
| +++ b/web/_site/doc/en/getting-started/troubleshooting/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/getting-started/running-rubinius' rel='prev' title='Running Rubinius'> | |
| <link href='/doc/en/contributing' rel='next' title='Contributing'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/how-to/fix-a-failing-spec/index.html b/web/_site/doc/en/how-to/fix-a-failing-spec/index.html | |
| index ea82f7c..bb40a57 100644 | |
| --- a/web/_site/doc/en/how-to/fix-a-failing-spec/index.html | |
| +++ b/web/_site/doc/en/how-to/fix-a-failing-spec/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/how-to/write-ruby-spec' rel='prev' title='Write a Ruby Spec'> | |
| <link href='/doc/en/how-to/write-a-blog-post' rel='next' title='Write a Blog Post'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/how-to/index.html b/web/_site/doc/en/how-to/index.html | |
| index efedf01..c533242 100644 | |
| --- a/web/_site/doc/en/how-to/index.html | |
| +++ b/web/_site/doc/en/how-to/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/tools/memory-analysis' rel='prev' title='Tools - Memory Analysis'> | |
| <link href='/doc/en/how-to/write-a-ticket' rel='next' title='Write a Ticket'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/how-to/translate-documentation/index.html b/web/_site/doc/en/how-to/translate-documentation/index.html | |
| index 26c246c..6bdaf1c 100644 | |
| --- a/web/_site/doc/en/how-to/translate-documentation/index.html | |
| +++ b/web/_site/doc/en/how-to/translate-documentation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/how-to/write-documentation' rel='prev' title='Write Documentation'> | |
| <link href='/doc/en/appendix-a-glossary' rel='next' title='Appendix A - Glossary'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/how-to/write-a-blog-post/index.html b/web/_site/doc/en/how-to/write-a-blog-post/index.html | |
| index b0616e2..de6b916 100644 | |
| --- a/web/_site/doc/en/how-to/write-a-blog-post/index.html | |
| +++ b/web/_site/doc/en/how-to/write-a-blog-post/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/how-to/fix-a-failing-spec' rel='prev' title='Fix a Failing Spec'> | |
| <link href='/doc/en/how-to/write-documentation' rel='next' title='Write Documentation'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/how-to/write-a-ruby-spec/index.html b/web/_site/doc/en/how-to/write-a-ruby-spec/index.html | |
| index e791b9e..00593b7 100644 | |
| --- a/web/_site/doc/en/how-to/write-a-ruby-spec/index.html | |
| +++ b/web/_site/doc/en/how-to/write-a-ruby-spec/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/how-to/write-a-ticket' rel='prev' title='Write a Ticket'> | |
| <link href='/doc/en/how-to/fix-a-failing-spec' rel='next' title='Fix a Failing Spec'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/how-to/write-a-ticket/index.html b/web/_site/doc/en/how-to/write-a-ticket/index.html | |
| index e4808dc..0c10a25 100644 | |
| --- a/web/_site/doc/en/how-to/write-a-ticket/index.html | |
| +++ b/web/_site/doc/en/how-to/write-a-ticket/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/how-to' rel='prev' title='How-To'> | |
| <link href='/doc/en/how-to/write-a-ruby-spec' rel='next' title='Write a Ruby Spec'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/how-to/write-documentation/index.html b/web/_site/doc/en/how-to/write-documentation/index.html | |
| index f7fa257..366a1f5 100644 | |
| --- a/web/_site/doc/en/how-to/write-documentation/index.html | |
| +++ b/web/_site/doc/en/how-to/write-documentation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/how-to/write-a-blog-post' rel='prev' title='Write a Blog Post'> | |
| <link href='/doc/en/how-to/translate-documentation' rel='next' title='Translate Documentation'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/index-of-terms/index.html b/web/_site/doc/en/index-of-terms/index.html | |
| index 8ab4714..87b59c2 100644 | |
| --- a/web/_site/doc/en/index-of-terms/index.html | |
| +++ b/web/_site/doc/en/index-of-terms/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/appendix-b-reading-list' rel='prev' title='Appendix B - Reading List'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/index.html b/web/_site/doc/en/index.html | |
| index ebf316e..92740d3 100644 | |
| --- a/web/_site/doc/en/index.html | |
| +++ b/web/_site/doc/en/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/what-is-rubinius' rel='next' title='What is Rubinius?'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/jit/index.html b/web/_site/doc/en/jit/index.html | |
| index d5dbffe..7131b6f 100644 | |
| --- a/web/_site/doc/en/jit/index.html | |
| +++ b/web/_site/doc/en/jit/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/bytecode-compiler/generator' rel='prev' title='Bytecode Compiler - Generator'> | |
| <link href='/doc/en/garbage-collector' rel='next' title='Garbage Collector'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/blocks-and-procs/index.html b/web/_site/doc/en/ruby/blocks-and-procs/index.html | |
| index 1d98e4b..bd53510 100644 | |
| --- a/web/_site/doc/en/ruby/blocks-and-procs/index.html | |
| +++ b/web/_site/doc/en/ruby/blocks-and-procs/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/ruby/classes-and-modules' rel='prev' title='Classes & Modules'> | |
| <link href='/doc/en/ruby/local-variables' rel='next' title='Local Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/class-variables/index.html b/web/_site/doc/en/ruby/class-variables/index.html | |
| index e6f9da0..b6be9f6 100644 | |
| --- a/web/_site/doc/en/ruby/class-variables/index.html | |
| +++ b/web/_site/doc/en/ruby/class-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/ruby/instance-variables' rel='prev' title='Instance Variables'> | |
| <link href='/doc/en/ruby/global-variables' rel='next' title='Global Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/classes-and-modules/index.html b/web/_site/doc/en/ruby/classes-and-modules/index.html | |
| index 6933e01..de4a700 100644 | |
| --- a/web/_site/doc/en/ruby/classes-and-modules/index.html | |
| +++ b/web/_site/doc/en/ruby/classes-and-modules/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/ruby/constants' rel='prev' title='Constants'> | |
| <link href='/doc/en/ruby/blocks-and-procs' rel='next' title='Blocks & Procs'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/constants/index.html b/web/_site/doc/en/ruby/constants/index.html | |
| index 6fab25c..69952ff 100644 | |
| --- a/web/_site/doc/en/ruby/constants/index.html | |
| +++ b/web/_site/doc/en/ruby/constants/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/ruby/methods' rel='prev' title='Methods'> | |
| <link href='/doc/en/ruby/classes-and-modules' rel='next' title='Classes & Modules'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/global-variables/index.html b/web/_site/doc/en/ruby/global-variables/index.html | |
| index d2a194f..11d7333 100644 | |
| --- a/web/_site/doc/en/ruby/global-variables/index.html | |
| +++ b/web/_site/doc/en/ruby/global-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/ruby/class-variables' rel='prev' title='Class Variables'> | |
| <link href='/doc/en/specs' rel='next' title='Specs'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/index.html b/web/_site/doc/en/ruby/index.html | |
| index 797c024..c8ccc73 100644 | |
| --- a/web/_site/doc/en/ruby/index.html | |
| +++ b/web/_site/doc/en/ruby/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/contributing/style-guide' rel='prev' title='Style Guide'> | |
| <link href='/doc/en/ruby/scripts' rel='next' title='Scripts'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/instance-variables/index.html b/web/_site/doc/en/ruby/instance-variables/index.html | |
| index 4602253..f109902 100644 | |
| --- a/web/_site/doc/en/ruby/instance-variables/index.html | |
| +++ b/web/_site/doc/en/ruby/instance-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/ruby/locas-variables' rel='prev' title='Local Variables'> | |
| <link href='/doc/en/ruby/class-variables' rel='next' title='Class Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/local-variables/index.html b/web/_site/doc/en/ruby/local-variables/index.html | |
| index 70e8602..0d64d63 100644 | |
| --- a/web/_site/doc/en/ruby/local-variables/index.html | |
| +++ b/web/_site/doc/en/ruby/local-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/ruby/blocks-and-procs' rel='prev' title='Blocks & Procs'> | |
| <link href='/doc/en/ruby/instance-variables' rel='next' title='Instance Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/methods/index.html b/web/_site/doc/en/ruby/methods/index.html | |
| index aa38c1f..f140515 100644 | |
| --- a/web/_site/doc/en/ruby/methods/index.html | |
| +++ b/web/_site/doc/en/ruby/methods/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/ruby/scripts' rel='prev' title='Scripts'> | |
| <link href='/doc/en/ruby/constants' rel='next' title='Constants'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/ruby/scripts/index.html b/web/_site/doc/en/ruby/scripts/index.html | |
| index ce73c2e..11e2f22 100644 | |
| --- a/web/_site/doc/en/ruby/scripts/index.html | |
| +++ b/web/_site/doc/en/ruby/scripts/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/ruby' rel='prev' title='Ruby'> | |
| <link href='/doc/en/ruby/methods' rel='next' title='Methods'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/specs/compiler/index.html b/web/_site/doc/en/specs/compiler/index.html | |
| index 159026f..6c53dea 100644 | |
| --- a/web/_site/doc/en/specs/compiler/index.html | |
| +++ b/web/_site/doc/en/specs/compiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/specs/rubyspec' rel='prev' title='RubySpec'> | |
| <link href='/doc/en/build-system' rel='next' title='Build System'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/specs/index.html b/web/_site/doc/en/specs/index.html | |
| index 72f37ee..ab4f63a 100644 | |
| --- a/web/_site/doc/en/specs/index.html | |
| +++ b/web/_site/doc/en/specs/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/ruby/global-variables' rel='prev' title='Ruby - Global Variables'> | |
| <link href='/doc/en/specs/rubyspec' rel='next' title='RubySpec'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/specs/rubyspec/index.html b/web/_site/doc/en/specs/rubyspec/index.html | |
| index 5b47430..4a0945a 100644 | |
| --- a/web/_site/doc/en/specs/rubyspec/index.html | |
| +++ b/web/_site/doc/en/specs/rubyspec/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/specs' rel='prev' title='Specs'> | |
| <link href='/doc/en/specs/compiler' rel='next' title='Compiler Specs'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/systems/c-api/index.html b/web/_site/doc/en/systems/c-api/index.html | |
| index 9a15ae1..cb58147 100644 | |
| --- a/web/_site/doc/en/systems/c-api/index.html | |
| +++ b/web/_site/doc/en/systems/c-api/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/systems/io' rel='prev' title='IO'> | |
| <link href='/doc/en/tools' rel='next' title='Tools'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/systems/concurrency/index.html b/web/_site/doc/en/systems/concurrency/index.html | |
| index ebf8aab..155c28c 100644 | |
| --- a/web/_site/doc/en/systems/concurrency/index.html | |
| +++ b/web/_site/doc/en/systems/concurrency/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/systems/ffi' rel='prev' title='FFI'> | |
| <link href='/doc/en/systems/io' rel='next' title='IO'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/systems/ffi/index.html b/web/_site/doc/en/systems/ffi/index.html | |
| index 890d0d7..914a80c 100644 | |
| --- a/web/_site/doc/en/systems/ffi/index.html | |
| +++ b/web/_site/doc/en/systems/ffi/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/systems/primitives' rel='prev' title='Primitives'> | |
| <link href='/doc/en/systems/concurrency' rel='next' title='Concurrency'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/systems/index.html b/web/_site/doc/en/systems/index.html | |
| index e5a2877..011e8ee 100644 | |
| --- a/web/_site/doc/en/systems/index.html | |
| +++ b/web/_site/doc/en/systems/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/garbage-collector/large-objects' rel='prev' title='Garbage Collector - Large Objects'> | |
| <link href='/doc/en/systems/primitives' rel='next' title='Primitives'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/systems/io/index.html b/web/_site/doc/en/systems/io/index.html | |
| index 79c0385..fca2162 100644 | |
| --- a/web/_site/doc/en/systems/io/index.html | |
| +++ b/web/_site/doc/en/systems/io/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/systems/concurrency' rel='prev' title='Concurrency'> | |
| <link href='/doc/en/systems/c-api' rel='next' title='C-API'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/systems/primitives/index.html b/web/_site/doc/en/systems/primitives/index.html | |
| index d22f35f..27ac87b 100644 | |
| --- a/web/_site/doc/en/systems/primitives/index.html | |
| +++ b/web/_site/doc/en/systems/primitives/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/systems' rel='prev' title='Rubinius Systems'> | |
| <link href='/doc/en/systems/ffi' rel='next' title='FFI'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/tools/debugger/index.html b/web/_site/doc/en/tools/debugger/index.html | |
| index 92060c8..124733e 100644 | |
| --- a/web/_site/doc/en/tools/debugger/index.html | |
| +++ b/web/_site/doc/en/tools/debugger/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/tools' rel='prev' title='Tools'> | |
| <link href='/doc/en/tools/profiler' rel='next' title='Profiler'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/tools/index.html b/web/_site/doc/en/tools/index.html | |
| index 43f35bc..6f777c5 100644 | |
| --- a/web/_site/doc/en/tools/index.html | |
| +++ b/web/_site/doc/en/tools/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/systems/c-api' rel='prev' title='Rubinius Systems - C-API'> | |
| <link href='/doc/en/tools/debugger' rel='next' title='Debugger'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/tools/memory-analysis/index.html b/web/_site/doc/en/tools/memory-analysis/index.html | |
| index 9829978..d2720ab 100644 | |
| --- a/web/_site/doc/en/tools/memory-analysis/index.html | |
| +++ b/web/_site/doc/en/tools/memory-analysis/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/tools/profiler' rel='prev' title='Profiler'> | |
| <link href='/doc/en/how-to' rel='next' title='How-To'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/tools/profiler/index.html b/web/_site/doc/en/tools/profiler/index.html | |
| index ab86906..172d1d3 100644 | |
| --- a/web/_site/doc/en/tools/profiler/index.html | |
| +++ b/web/_site/doc/en/tools/profiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/tools/debugger' rel='prev' title='Debugger'> | |
| <link href='/doc/en/tools/memory-analysis' rel='next' title='Memory Analysis'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/virtual-machine/custom-dispatch-logic/index.html b/web/_site/doc/en/virtual-machine/custom-dispatch-logic/index.html | |
| index 2da7d4c..12da31b 100644 | |
| --- a/web/_site/doc/en/virtual-machine/custom-dispatch-logic/index.html | |
| +++ b/web/_site/doc/en/virtual-machine/custom-dispatch-logic/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/virtual-machine/instructions' rel='prev' title='Instructions'> | |
| <link href='/doc/en/bytecode-compiler' rel='next' title='Bytecode Compiler'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/virtual-machine/index.html b/web/_site/doc/en/virtual-machine/index.html | |
| index ba6fb7e..3d940db 100644 | |
| --- a/web/_site/doc/en/virtual-machine/index.html | |
| +++ b/web/_site/doc/en/virtual-machine/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/bootstrapping' rel='prev' title='Bootstrapping'> | |
| <link href='/doc/en/virtual-machine/instructions' rel='next' title='Instructions'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/virtual-machine/instructions/index.html b/web/_site/doc/en/virtual-machine/instructions/index.html | |
| index 1bf6926..292530a 100644 | |
| --- a/web/_site/doc/en/virtual-machine/instructions/index.html | |
| +++ b/web/_site/doc/en/virtual-machine/instructions/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/virtual-machine' rel='prev' title='Virtual Machine'> | |
| <link href='/doc/en/virtual-machine/custom-dispatch-logic' rel='next' title='Custom Dispatch Logic'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/en/what-is-rubinius/index.html b/web/_site/doc/en/what-is-rubinius/index.html | |
| index 2e269d9..e6f266c 100644 | |
| --- a/web/_site/doc/en/what-is-rubinius/index.html | |
| +++ b/web/_site/doc/en/what-is-rubinius/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/en/getting-started' rel='next' title='Getting Started'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/appendix-a-glossary/index.html b/web/_site/doc/es/appendix-a-glossary/index.html | |
| index dd92e9d..3efe975 100644 | |
| --- a/web/_site/doc/es/appendix-a-glossary/index.html | |
| +++ b/web/_site/doc/es/appendix-a-glossary/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/how-to/translate-documentation' rel='prev' title='How-To - Translate Documentation'> | |
| <link href='/doc/es/appendix-b-reading-list' rel='next' title='Appendix B - Reading List'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/appendix-b-reading-list/index.html b/web/_site/doc/es/appendix-b-reading-list/index.html | |
| index 96d145f..432198d 100644 | |
| --- a/web/_site/doc/es/appendix-b-reading-list/index.html | |
| +++ b/web/_site/doc/es/appendix-b-reading-list/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/appendix-a-glossary' rel='prev' title='Appendix A - Glossary'> | |
| <link href='/doc/es/terms-index' rel='next' title='Terms Index'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/bootstrapping/index.html b/web/_site/doc/es/bootstrapping/index.html | |
| index 38565b1..ee21dcb 100644 | |
| --- a/web/_site/doc/es/bootstrapping/index.html | |
| +++ b/web/_site/doc/es/bootstrapping/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/build-system' rel='prev' title='Sistema de Construcción'> | |
| <link href='/doc/es/virtual-machine' rel='next' title='La Máquina Virtual'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/build-system/index.html b/web/_site/doc/es/build-system/index.html | |
| index 79c5589..4f3f5eb 100644 | |
| --- a/web/_site/doc/es/build-system/index.html | |
| +++ b/web/_site/doc/es/build-system/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/specs/compiler' rel='prev' title='Specs - Compiler'> | |
| <link href='/doc/es/bootstrapping' rel='next' title='Bootstrapping'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/bytecode-compiler/ast/index.html b/web/_site/doc/es/bytecode-compiler/ast/index.html | |
| index b39dae6..59a52f2 100644 | |
| --- a/web/_site/doc/es/bytecode-compiler/ast/index.html | |
| +++ b/web/_site/doc/es/bytecode-compiler/ast/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/bytecode-compiler/parser' rel='prev' title='Parser'> | |
| <link href='/doc/es/bytecode-compiler/compiler' rel='next' title='Compiler'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/bytecode-compiler/compiler/index.html b/web/_site/doc/es/bytecode-compiler/compiler/index.html | |
| index cfbf04c..c44e696 100644 | |
| --- a/web/_site/doc/es/bytecode-compiler/compiler/index.html | |
| +++ b/web/_site/doc/es/bytecode-compiler/compiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/bytecode-compiler/ast' rel='prev' title='AST'> | |
| <link href='/doc/es/bytecode-compiler/transformations' rel='next' title='Transformations'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/bytecode-compiler/generator/index.html b/web/_site/doc/es/bytecode-compiler/generator/index.html | |
| index dc0fe63..7fc8b2b 100644 | |
| --- a/web/_site/doc/es/bytecode-compiler/generator/index.html | |
| +++ b/web/_site/doc/es/bytecode-compiler/generator/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/bytecode-compiler/transformations' rel='prev' title='Transformations'> | |
| <link href='/doc/es/jit' rel='next' title='JIT Compiler'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/bytecode-compiler/index.html b/web/_site/doc/es/bytecode-compiler/index.html | |
| index dfb2b44..4981768 100644 | |
| --- a/web/_site/doc/es/bytecode-compiler/index.html | |
| +++ b/web/_site/doc/es/bytecode-compiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/virtual-machine/custom-dispatch-logic' rel='prev' title='Lógica de búsqueda y ejecución de métodos'> | |
| <link href='/doc/es/bytecode-compiler/parser' rel='next' title='Parser'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/bytecode-compiler/parser/index.html b/web/_site/doc/es/bytecode-compiler/parser/index.html | |
| index f35a521..751e56d9 100644 | |
| --- a/web/_site/doc/es/bytecode-compiler/parser/index.html | |
| +++ b/web/_site/doc/es/bytecode-compiler/parser/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/bytecode-compiler' rel='prev' title='Compilador a Bytecode'> | |
| <link href='/doc/es/bytecode-compiler/ast' rel='next' title='AST'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/bytecode-compiler/transformations/index.html b/web/_site/doc/es/bytecode-compiler/transformations/index.html | |
| index 2277671..5e47616 100644 | |
| --- a/web/_site/doc/es/bytecode-compiler/transformations/index.html | |
| +++ b/web/_site/doc/es/bytecode-compiler/transformations/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/bytecode-compiler/compiler' rel='prev' title='Compilador'> | |
| <link href='/doc/es/bytecode-compiler/generator' rel='next' title='Generador'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/contributing/communication/index.html b/web/_site/doc/es/contributing/communication/index.html | |
| index 87e4b5b..3b12de8 100644 | |
| --- a/web/_site/doc/es/contributing/communication/index.html | |
| +++ b/web/_site/doc/es/contributing/communication/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/contributing' rel='prev' title='Aportando a Rubinius'> | |
| <link href='/doc/es/contributing/style-guide' rel='next' title='Guía de estilo'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/contributing/index.html b/web/_site/doc/es/contributing/index.html | |
| index 9b8b251..bc413cf 100644 | |
| --- a/web/_site/doc/es/contributing/index.html | |
| +++ b/web/_site/doc/es/contributing/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/getting-started/troubleshooting' rel='prev' title='Resolviendo problemas'> | |
| <link href='/doc/es/contributing/communication' rel='next' title='Comunicación'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/contributing/style-guide/index.html b/web/_site/doc/es/contributing/style-guide/index.html | |
| index 10bd816..ac0c86a 100644 | |
| --- a/web/_site/doc/es/contributing/style-guide/index.html | |
| +++ b/web/_site/doc/es/contributing/style-guide/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/contributing/communication' rel='prev' title='Comunicación'> | |
| <link href='/doc/es/ruby' rel='next' title='Ruby'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/garbage-collector/index.html b/web/_site/doc/es/garbage-collector/index.html | |
| index 8bc6edd..cb002a6 100644 | |
| --- a/web/_site/doc/es/garbage-collector/index.html | |
| +++ b/web/_site/doc/es/garbage-collector/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/jit' rel='prev' title='JIT Compiler'> | |
| <link href='/doc/es/garbage-collector/nursery' rel='next' title='Nursery'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/garbage-collector/large-objects/index.html b/web/_site/doc/es/garbage-collector/large-objects/index.html | |
| index cd1ad28..63e3107 100644 | |
| --- a/web/_site/doc/es/garbage-collector/large-objects/index.html | |
| +++ b/web/_site/doc/es/garbage-collector/large-objects/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/garbage-collector/mature-generation' rel='prev' title='Mature Generation'> | |
| <link href='/doc/es/systems' rel='next' title='Rubinius Systems'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/garbage-collector/mature-generation/index.html b/web/_site/doc/es/garbage-collector/mature-generation/index.html | |
| index d678250..dacf782 100644 | |
| --- a/web/_site/doc/es/garbage-collector/mature-generation/index.html | |
| +++ b/web/_site/doc/es/garbage-collector/mature-generation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/garbage-collector/young-generation' rel='prev' title='Young Generation'> | |
| <link href='/doc/es/garbage-collector/large-objects' rel='next' title='Large Objects'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/garbage-collector/nursery/index.html b/web/_site/doc/es/garbage-collector/nursery/index.html | |
| index 5556c68..8fd58dd 100644 | |
| --- a/web/_site/doc/es/garbage-collector/nursery/index.html | |
| +++ b/web/_site/doc/es/garbage-collector/nursery/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/garbage-collector' rel='prev' title='Garbage Collector'> | |
| <link href='/doc/es/garbage-collector/young-generation' rel='next' title='Young Generation'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/garbage-collector/young-generation/index.html b/web/_site/doc/es/garbage-collector/young-generation/index.html | |
| index 7799fcf..ef95890 100644 | |
| --- a/web/_site/doc/es/garbage-collector/young-generation/index.html | |
| +++ b/web/_site/doc/es/garbage-collector/young-generation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/garbage-collector/nursery' rel='prev' title='Nursery'> | |
| <link href='/doc/es/garbage-collector/mature-generation' rel='next' title='Mature Generation'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/getting-started/building/index.html b/web/_site/doc/es/getting-started/building/index.html | |
| index 3121ba8..064fe64 100644 | |
| --- a/web/_site/doc/es/getting-started/building/index.html | |
| +++ b/web/_site/doc/es/getting-started/building/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/getting-started/requirements' rel='prev' title='Requisitos'> | |
| <link href='/doc/es/getting-started/running-rubinius' rel='next' title='Ejecutando Rubinius'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/getting-started/index.html b/web/_site/doc/es/getting-started/index.html | |
| index 21984a8..425aaf3 100644 | |
| --- a/web/_site/doc/es/getting-started/index.html | |
| +++ b/web/_site/doc/es/getting-started/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/what-is-rubinius' rel='prev' title='Qué es Rubinius?'> | |
| <link href='/doc/es/getting-started/requirements' rel='next' title='Requisitos'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/getting-started/requirements/index.html b/web/_site/doc/es/getting-started/requirements/index.html | |
| index fb4e180..101001c 100644 | |
| --- a/web/_site/doc/es/getting-started/requirements/index.html | |
| +++ b/web/_site/doc/es/getting-started/requirements/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/getting-started' rel='prev' title='Primeros pasos'> | |
| <link href='/doc/es/getting-started/building' rel='next' title='Construyendo Rubinius'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/getting-started/running-rubinius/index.html b/web/_site/doc/es/getting-started/running-rubinius/index.html | |
| index c74de22..b76d8f2 100644 | |
| --- a/web/_site/doc/es/getting-started/running-rubinius/index.html | |
| +++ b/web/_site/doc/es/getting-started/running-rubinius/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/getting-started/building' rel='prev' title='Construyendo Rubinius'> | |
| <link href='/doc/es/getting-started/troubleshooting' rel='next' title='Resolviendo problemas'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/getting-started/troubleshooting/index.html b/web/_site/doc/es/getting-started/troubleshooting/index.html | |
| index f569e11..d5c2aac 100644 | |
| --- a/web/_site/doc/es/getting-started/troubleshooting/index.html | |
| +++ b/web/_site/doc/es/getting-started/troubleshooting/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/getting-started/running-rubinius' rel='prev' title='Ejecutando Rubinius'> | |
| <link href='/doc/es/contributing' rel='next' title='Aportando a Rubinius'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/how-to/fix-a-failing-spec/index.html b/web/_site/doc/es/how-to/fix-a-failing-spec/index.html | |
| index ff30341..f4f2fc4 100644 | |
| --- a/web/_site/doc/es/how-to/fix-a-failing-spec/index.html | |
| +++ b/web/_site/doc/es/how-to/fix-a-failing-spec/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/how-to/write-ruby-spec' rel='prev' title='Write a Ruby Spec'> | |
| <link href='/doc/es/how-to/write-a-blog-post' rel='next' title='Write a Blog Post'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/how-to/index.html b/web/_site/doc/es/how-to/index.html | |
| index 8275797..6aa4502 100644 | |
| --- a/web/_site/doc/es/how-to/index.html | |
| +++ b/web/_site/doc/es/how-to/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/tools/memory-analysis' rel='prev' title='Herramientas - Análisis de Memoria'> | |
| <link href='/doc/es/how-to/write-a-ticket' rel='next' title='Escribir un reporte de fallos'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/how-to/translate-documentation/index.html b/web/_site/doc/es/how-to/translate-documentation/index.html | |
| index e337442..12ec8ad 100644 | |
| --- a/web/_site/doc/es/how-to/translate-documentation/index.html | |
| +++ b/web/_site/doc/es/how-to/translate-documentation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/how-to/write-documentation' rel='prev' title='Write Documentation'> | |
| <link href='/doc/es/appendix-a-glossary' rel='next' title='Appendix A - Glossary'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/how-to/write-a-blog-post/index.html b/web/_site/doc/es/how-to/write-a-blog-post/index.html | |
| index a1dc7a0..e1a1790 100644 | |
| --- a/web/_site/doc/es/how-to/write-a-blog-post/index.html | |
| +++ b/web/_site/doc/es/how-to/write-a-blog-post/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/how-to/fix-a-failing-spec' rel='prev' title='Fix a Failing Spec'> | |
| <link href='/doc/es/how-to/write-documentation' rel='next' title='Write Documentation'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/how-to/write-a-ruby-spec/index.html b/web/_site/doc/es/how-to/write-a-ruby-spec/index.html | |
| index 5df7e24..6747ecb 100644 | |
| --- a/web/_site/doc/es/how-to/write-a-ruby-spec/index.html | |
| +++ b/web/_site/doc/es/how-to/write-a-ruby-spec/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/how-to/write-a-ticket' rel='prev' title='Write a Ticket'> | |
| <link href='/doc/es/how-to/fix-a-failing-spec' rel='next' title='Fix a Failing Spec'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/how-to/write-a-ticket/index.html b/web/_site/doc/es/how-to/write-a-ticket/index.html | |
| index 65ca198..39ba953 100644 | |
| --- a/web/_site/doc/es/how-to/write-a-ticket/index.html | |
| +++ b/web/_site/doc/es/how-to/write-a-ticket/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/how-to' rel='prev' title='How-To'> | |
| <link href='/doc/es/how-to/write-a-ruby-spec' rel='next' title='Write a Ruby Spec'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/how-to/write-documentation/index.html b/web/_site/doc/es/how-to/write-documentation/index.html | |
| index 013b237..4358151 100644 | |
| --- a/web/_site/doc/es/how-to/write-documentation/index.html | |
| +++ b/web/_site/doc/es/how-to/write-documentation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/how-to/write-a-blog-post' rel='prev' title='Write a Blog Post'> | |
| <link href='/doc/es/how-to/translate-documentation' rel='next' title='Translate Documentation'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/index-of-terms/index.html b/web/_site/doc/es/index-of-terms/index.html | |
| index 42dc5bf..20b0eb1 100644 | |
| --- a/web/_site/doc/es/index-of-terms/index.html | |
| +++ b/web/_site/doc/es/index-of-terms/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/appendix-b-reading-list' rel='prev' title='Appendix B - Reading List'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/index.html b/web/_site/doc/es/index.html | |
| index 730ce12..47a8d16 100644 | |
| --- a/web/_site/doc/es/index.html | |
| +++ b/web/_site/doc/es/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/what-is-rubinius' rel='next' title='Qué es Rubinius?'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/jit/index.html b/web/_site/doc/es/jit/index.html | |
| index 33c8aa4..cbd336a 100644 | |
| --- a/web/_site/doc/es/jit/index.html | |
| +++ b/web/_site/doc/es/jit/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/bytecode-compiler/generator' rel='prev' title='Bytecode Compiler - Generator'> | |
| <link href='/doc/es/garbage-collector' rel='next' title='Garbage Collector'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/blocks-and-procs/index.html b/web/_site/doc/es/ruby/blocks-and-procs/index.html | |
| index d21c0aa..c27ec75 100644 | |
| --- a/web/_site/doc/es/ruby/blocks-and-procs/index.html | |
| +++ b/web/_site/doc/es/ruby/blocks-and-procs/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/ruby/classes-and-modules' rel='prev' title='Classes & Modules'> | |
| <link href='/doc/es/ruby/local-variables' rel='next' title='Local Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/class-variables/index.html b/web/_site/doc/es/ruby/class-variables/index.html | |
| index df0b69c..fbe0106 100644 | |
| --- a/web/_site/doc/es/ruby/class-variables/index.html | |
| +++ b/web/_site/doc/es/ruby/class-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/ruby/instance-variables' rel='prev' title='Instance Variables'> | |
| <link href='/doc/es/ruby/global-variables' rel='next' title='Global Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/classes-and-modules/index.html b/web/_site/doc/es/ruby/classes-and-modules/index.html | |
| index 4cd932f..1b88b82 100644 | |
| --- a/web/_site/doc/es/ruby/classes-and-modules/index.html | |
| +++ b/web/_site/doc/es/ruby/classes-and-modules/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/ruby/constants' rel='prev' title='Constants'> | |
| <link href='/doc/es/ruby/blocks-and-procs' rel='next' title='Blocks & Procs'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/constants/index.html b/web/_site/doc/es/ruby/constants/index.html | |
| index c58b878..cd8c999 100644 | |
| --- a/web/_site/doc/es/ruby/constants/index.html | |
| +++ b/web/_site/doc/es/ruby/constants/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/ruby/methods' rel='prev' title='Methods'> | |
| <link href='/doc/es/ruby/classes-and-modules' rel='next' title='Classes & Modules'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/global-variables/index.html b/web/_site/doc/es/ruby/global-variables/index.html | |
| index 5a48236..8d143ee 100644 | |
| --- a/web/_site/doc/es/ruby/global-variables/index.html | |
| +++ b/web/_site/doc/es/ruby/global-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/ruby/class-variables' rel='prev' title='Variables de clase'> | |
| <link href='/doc/es/specs' rel='next' title='Especificaciones'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/index.html b/web/_site/doc/es/ruby/index.html | |
| index 5065e0f..e5e9e89 100644 | |
| --- a/web/_site/doc/es/ruby/index.html | |
| +++ b/web/_site/doc/es/ruby/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/contributing/style-guide' rel='prev' title='Guía de estilo'> | |
| <link href='/doc/es/ruby/scripts' rel='next' title='Scripts'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/instance-variables/index.html b/web/_site/doc/es/ruby/instance-variables/index.html | |
| index 8270cb1..bfd7411 100644 | |
| --- a/web/_site/doc/es/ruby/instance-variables/index.html | |
| +++ b/web/_site/doc/es/ruby/instance-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/ruby/locas-variables' rel='prev' title='Local Variables'> | |
| <link href='/doc/es/ruby/class-variables' rel='next' title='Class Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/local-variables/index.html b/web/_site/doc/es/ruby/local-variables/index.html | |
| index dd03aab..f777240 100644 | |
| --- a/web/_site/doc/es/ruby/local-variables/index.html | |
| +++ b/web/_site/doc/es/ruby/local-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/ruby/blocks-and-procs' rel='prev' title='Blocks & Procs'> | |
| <link href='/doc/es/ruby/instance-variables' rel='next' title='Instance Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/methods/index.html b/web/_site/doc/es/ruby/methods/index.html | |
| index 3d66bd2..bbf2e2b 100644 | |
| --- a/web/_site/doc/es/ruby/methods/index.html | |
| +++ b/web/_site/doc/es/ruby/methods/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/ruby/scripts' rel='prev' title='Scripts'> | |
| <link href='/doc/es/ruby/constants' rel='next' title='Constants'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/ruby/scripts/index.html b/web/_site/doc/es/ruby/scripts/index.html | |
| index a0c8418..fa0f7ce 100644 | |
| --- a/web/_site/doc/es/ruby/scripts/index.html | |
| +++ b/web/_site/doc/es/ruby/scripts/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/ruby' rel='prev' title='Ruby'> | |
| <link href='/doc/es/ruby/methods' rel='next' title='Methods'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/specs/compiler/index.html b/web/_site/doc/es/specs/compiler/index.html | |
| index 9e01663..886d67c 100644 | |
| --- a/web/_site/doc/es/specs/compiler/index.html | |
| +++ b/web/_site/doc/es/specs/compiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/specs/rubyspec' rel='prev' title='RubySpec'> | |
| <link href='/doc/es/build-system' rel='next' title='Build System'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/specs/index.html b/web/_site/doc/es/specs/index.html | |
| index ea657a5..bd79c95 100644 | |
| --- a/web/_site/doc/es/specs/index.html | |
| +++ b/web/_site/doc/es/specs/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/ruby/global-variables' rel='prev' title='Ruby - Variables Globales'> | |
| <link href='/doc/es/specs/rubyspec' rel='next' title='RubySpec'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/specs/rubyspec/index.html b/web/_site/doc/es/specs/rubyspec/index.html | |
| index 29acba6..d0087cd 100644 | |
| --- a/web/_site/doc/es/specs/rubyspec/index.html | |
| +++ b/web/_site/doc/es/specs/rubyspec/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/specs' rel='prev' title='Specs'> | |
| <link href='/doc/es/specs/compiler' rel='next' title='Compiler Specs'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/systems/c-api/index.html b/web/_site/doc/es/systems/c-api/index.html | |
| index a9383e5..d60759e 100644 | |
| --- a/web/_site/doc/es/systems/c-api/index.html | |
| +++ b/web/_site/doc/es/systems/c-api/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/systems/io' rel='prev' title='IO'> | |
| <link href='/doc/es/tools' rel='next' title='Tools'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/systems/concurrency/index.html b/web/_site/doc/es/systems/concurrency/index.html | |
| index 4125165..1724996 100644 | |
| --- a/web/_site/doc/es/systems/concurrency/index.html | |
| +++ b/web/_site/doc/es/systems/concurrency/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/systems/ffi' rel='prev' title='FFI'> | |
| <link href='/doc/es/systems/io' rel='next' title='IO'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/systems/ffi/index.html b/web/_site/doc/es/systems/ffi/index.html | |
| index c9d916c..073e06b 100644 | |
| --- a/web/_site/doc/es/systems/ffi/index.html | |
| +++ b/web/_site/doc/es/systems/ffi/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/systems/primitives' rel='prev' title='Primitives'> | |
| <link href='/doc/es/systems/concurrency' rel='next' title='Concurrency'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/systems/index.html b/web/_site/doc/es/systems/index.html | |
| index 17e8e7c..4037c8c 100644 | |
| --- a/web/_site/doc/es/systems/index.html | |
| +++ b/web/_site/doc/es/systems/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/garbage-collector/large-objects' rel='prev' title='Garbage Collector - Large Objects'> | |
| <link href='/doc/es/systems/primitives' rel='next' title='Primitives'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/systems/io/index.html b/web/_site/doc/es/systems/io/index.html | |
| index 5c5c061..c477285 100644 | |
| --- a/web/_site/doc/es/systems/io/index.html | |
| +++ b/web/_site/doc/es/systems/io/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/systems/concurrency' rel='prev' title='Concurrency'> | |
| <link href='/doc/es/systems/c-api' rel='next' title='C-API'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/systems/primitives/index.html b/web/_site/doc/es/systems/primitives/index.html | |
| index 92584e7..2054f41 100644 | |
| --- a/web/_site/doc/es/systems/primitives/index.html | |
| +++ b/web/_site/doc/es/systems/primitives/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/systems' rel='prev' title='Rubinius Systems'> | |
| <link href='/doc/es/systems/ffi' rel='next' title='FFI'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/tools/debugger/index.html b/web/_site/doc/es/tools/debugger/index.html | |
| index bc1ebeb..c433136 100644 | |
| --- a/web/_site/doc/es/tools/debugger/index.html | |
| +++ b/web/_site/doc/es/tools/debugger/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/tools' rel='prev' title='Tools'> | |
| <link href='/doc/es/tools/profiler' rel='next' title='Profiler'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/tools/index.html b/web/_site/doc/es/tools/index.html | |
| index cd42421..792d2b3 100644 | |
| --- a/web/_site/doc/es/tools/index.html | |
| +++ b/web/_site/doc/es/tools/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/systems/c-api' rel='prev' title='Rubinius Systems - C-API'> | |
| <link href='/doc/es/tools/debugger' rel='next' title='Debugger'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/tools/memory-analysis/index.html b/web/_site/doc/es/tools/memory-analysis/index.html | |
| index 307ab79..6f53090 100644 | |
| --- a/web/_site/doc/es/tools/memory-analysis/index.html | |
| +++ b/web/_site/doc/es/tools/memory-analysis/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/tools/profiler' rel='prev' title='Profiler'> | |
| <link href='/doc/es/how-to' rel='next' title='How-To'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/tools/profiler/index.html b/web/_site/doc/es/tools/profiler/index.html | |
| index a16e8fc..ce72641 100644 | |
| --- a/web/_site/doc/es/tools/profiler/index.html | |
| +++ b/web/_site/doc/es/tools/profiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/tools/debugger' rel='prev' title='Debugger'> | |
| <link href='/doc/es/tools/memory-analysis' rel='next' title='Memory Analysis'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/virtual-machine/custom-dispatch-logic/index.html b/web/_site/doc/es/virtual-machine/custom-dispatch-logic/index.html | |
| index 3250c40..b280d6c 100644 | |
| --- a/web/_site/doc/es/virtual-machine/custom-dispatch-logic/index.html | |
| +++ b/web/_site/doc/es/virtual-machine/custom-dispatch-logic/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/virtual-machine/instructions' rel='prev' title='Instructions'> | |
| <link href='/doc/es/bytecode-compiler' rel='next' title='Bytecode Compiler'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/virtual-machine/index.html b/web/_site/doc/es/virtual-machine/index.html | |
| index 235710d..186f555 100644 | |
| --- a/web/_site/doc/es/virtual-machine/index.html | |
| +++ b/web/_site/doc/es/virtual-machine/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/bootstrapping' rel='prev' title='Bootstrapping'> | |
| <link href='/doc/es/virtual-machine/instructions' rel='next' title='Instructions'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/virtual-machine/instructions/index.html b/web/_site/doc/es/virtual-machine/instructions/index.html | |
| index 98673b6..0579910 100644 | |
| --- a/web/_site/doc/es/virtual-machine/instructions/index.html | |
| +++ b/web/_site/doc/es/virtual-machine/instructions/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/virtual-machine' rel='prev' title='La Máquina Virtual'> | |
| <link href='/doc/es/virtual-machine/custom-dispatch-logic' rel='next' title='Lógica de búsqueda y ejecución de métodos'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/es/what-is-rubinius/index.html b/web/_site/doc/es/what-is-rubinius/index.html | |
| index a2c10bb..5a934af 100644 | |
| --- a/web/_site/doc/es/what-is-rubinius/index.html | |
| +++ b/web/_site/doc/es/what-is-rubinius/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/es/getting-started' rel='next' title='Primeros pasos'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/index.html b/web/_site/doc/index.html | |
| index 3e0b8ba..ba19b38 100644 | |
| --- a/web/_site/doc/index.html | |
| +++ b/web/_site/doc/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/appendix-a-glossary/index.html b/web/_site/doc/ja/appendix-a-glossary/index.html | |
| index be8a4d3..91c7751 100644 | |
| --- a/web/_site/doc/ja/appendix-a-glossary/index.html | |
| +++ b/web/_site/doc/ja/appendix-a-glossary/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/how-to/translate-documentation' rel='prev' title='How-To - Translate Documentation'> | |
| <link href='/doc/ja/appendix-b-reading-list' rel='next' title='Appendix B - Reading List'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/appendix-b-reading-list/index.html b/web/_site/doc/ja/appendix-b-reading-list/index.html | |
| index a2ffbc4..eac45cb 100644 | |
| --- a/web/_site/doc/ja/appendix-b-reading-list/index.html | |
| +++ b/web/_site/doc/ja/appendix-b-reading-list/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/appendix-a-glossary' rel='prev' title='Appendix A - Glossary'> | |
| <link href='/doc/ja/terms-index' rel='next' title='Terms Index'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/bootstrapping/index.html b/web/_site/doc/ja/bootstrapping/index.html | |
| index dd17987..33b7748 100644 | |
| --- a/web/_site/doc/ja/bootstrapping/index.html | |
| +++ b/web/_site/doc/ja/bootstrapping/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/build-system' rel='prev' title='Build System'> | |
| <link href='/doc/ja/virtual-machine' rel='next' title='Virtual Machine'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/build-system/index.html b/web/_site/doc/ja/build-system/index.html | |
| index 5252e21..fc33469 100644 | |
| --- a/web/_site/doc/ja/build-system/index.html | |
| +++ b/web/_site/doc/ja/build-system/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/specs/compiler' rel='prev' title='Specs - Compiler'> | |
| <link href='/doc/ja/bootstrapping' rel='next' title='Bootstrapping'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/bytecode-compiler/ast/index.html b/web/_site/doc/ja/bytecode-compiler/ast/index.html | |
| index bcacc8b..607555f 100644 | |
| --- a/web/_site/doc/ja/bytecode-compiler/ast/index.html | |
| +++ b/web/_site/doc/ja/bytecode-compiler/ast/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/bytecode-compiler/parser' rel='prev' title='Parser'> | |
| <link href='/doc/ja/bytecode-compiler/compiler' rel='next' title='Compiler'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/bytecode-compiler/compiler/index.html b/web/_site/doc/ja/bytecode-compiler/compiler/index.html | |
| index 5b0d2db..30989d0 100644 | |
| --- a/web/_site/doc/ja/bytecode-compiler/compiler/index.html | |
| +++ b/web/_site/doc/ja/bytecode-compiler/compiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/bytecode-compiler/ast' rel='prev' title='AST'> | |
| <link href='/doc/ja/bytecode-compiler/transformations' rel='next' title='Transformations'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/bytecode-compiler/generator/index.html b/web/_site/doc/ja/bytecode-compiler/generator/index.html | |
| index 6af4e36..19d1ad2 100644 | |
| --- a/web/_site/doc/ja/bytecode-compiler/generator/index.html | |
| +++ b/web/_site/doc/ja/bytecode-compiler/generator/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/bytecode-compiler/transformations' rel='prev' title='Transformations'> | |
| <link href='/doc/ja/jit' rel='next' title='JIT Compiler'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/bytecode-compiler/index.html b/web/_site/doc/ja/bytecode-compiler/index.html | |
| index 1e41924..53aa3ad 100644 | |
| --- a/web/_site/doc/ja/bytecode-compiler/index.html | |
| +++ b/web/_site/doc/ja/bytecode-compiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/virtual-machine/custom-dispatch-logic' rel='prev' title='Virtual Machine - Custom Dispatch Logic'> | |
| <link href='/doc/ja/bytecode-compiler/parser' rel='next' title='Parser'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/bytecode-compiler/parser/index.html b/web/_site/doc/ja/bytecode-compiler/parser/index.html | |
| index e3a3a25..b798ece 100644 | |
| --- a/web/_site/doc/ja/bytecode-compiler/parser/index.html | |
| +++ b/web/_site/doc/ja/bytecode-compiler/parser/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/bytecode-compiler' rel='prev' title='Bytecode Compiler'> | |
| <link href='/doc/ja/bytecode-compiler/ast' rel='next' title='AST'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/bytecode-compiler/transformations/index.html b/web/_site/doc/ja/bytecode-compiler/transformations/index.html | |
| index f532c96..7246c07 100644 | |
| --- a/web/_site/doc/ja/bytecode-compiler/transformations/index.html | |
| +++ b/web/_site/doc/ja/bytecode-compiler/transformations/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/bytecode-compiler/compiler' rel='prev' title='Compiler'> | |
| <link href='/doc/ja/bytecode-compiler/generator' rel='next' title='Generator'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/contributing/communication/index.html b/web/_site/doc/ja/contributing/communication/index.html | |
| index b868761..c86135d 100644 | |
| --- a/web/_site/doc/ja/contributing/communication/index.html | |
| +++ b/web/_site/doc/ja/contributing/communication/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/contributing' rel='prev' title='Contributing'> | |
| <link href='/doc/ja/contributing/style-guide' rel='next' title='Style Guide'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/contributing/index.html b/web/_site/doc/ja/contributing/index.html | |
| index 6a276f3..dde0382 100644 | |
| --- a/web/_site/doc/ja/contributing/index.html | |
| +++ b/web/_site/doc/ja/contributing/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/getting-started/troubleshooting' rel='prev' title='Troubleshooting'> | |
| <link href='/doc/ja/contributing/communication' rel='next' title='Communication'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/contributing/style-guide/index.html b/web/_site/doc/ja/contributing/style-guide/index.html | |
| index ae78af3..4234704 100644 | |
| --- a/web/_site/doc/ja/contributing/style-guide/index.html | |
| +++ b/web/_site/doc/ja/contributing/style-guide/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/contributing/communication' rel='prev' title='Communication'> | |
| <link href='/doc/ja/ruby' rel='next' title='Ruby'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/garbage-collector/index.html b/web/_site/doc/ja/garbage-collector/index.html | |
| index 3fcde1f..2ebe64a 100644 | |
| --- a/web/_site/doc/ja/garbage-collector/index.html | |
| +++ b/web/_site/doc/ja/garbage-collector/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/jit' rel='prev' title='JIT Compiler'> | |
| <link href='/doc/ja/garbage-collector/nursery' rel='next' title='Nursery'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/garbage-collector/large-objects/index.html b/web/_site/doc/ja/garbage-collector/large-objects/index.html | |
| index 9f97e77..bd09bb4 100644 | |
| --- a/web/_site/doc/ja/garbage-collector/large-objects/index.html | |
| +++ b/web/_site/doc/ja/garbage-collector/large-objects/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/garbage-collector/mature-generation' rel='prev' title='Mature Generation'> | |
| <link href='/doc/ja/systems' rel='next' title='Rubinius Systems'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/garbage-collector/mature-generation/index.html b/web/_site/doc/ja/garbage-collector/mature-generation/index.html | |
| index 0d65ead..1773101 100644 | |
| --- a/web/_site/doc/ja/garbage-collector/mature-generation/index.html | |
| +++ b/web/_site/doc/ja/garbage-collector/mature-generation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/garbage-collector/young-generation' rel='prev' title='Young Generation'> | |
| <link href='/doc/ja/garbage-collector/large-objects' rel='next' title='Large Objects'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/garbage-collector/nursery/index.html b/web/_site/doc/ja/garbage-collector/nursery/index.html | |
| index 3b86128..2c5ccbb 100644 | |
| --- a/web/_site/doc/ja/garbage-collector/nursery/index.html | |
| +++ b/web/_site/doc/ja/garbage-collector/nursery/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/garbage-collector' rel='prev' title='Garbage Collector'> | |
| <link href='/doc/ja/garbage-collector/young-generation' rel='next' title='Young Generation'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/garbage-collector/young-generation/index.html b/web/_site/doc/ja/garbage-collector/young-generation/index.html | |
| index 7528b4f..dd75a4d 100644 | |
| --- a/web/_site/doc/ja/garbage-collector/young-generation/index.html | |
| +++ b/web/_site/doc/ja/garbage-collector/young-generation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/garbage-collector/nursery' rel='prev' title='Nursery'> | |
| <link href='/doc/ja/garbage-collector/mature-generation' rel='next' title='Mature Generation'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/getting-started/building/index.html b/web/_site/doc/ja/getting-started/building/index.html | |
| index 67f515c..3e2e283 100644 | |
| --- a/web/_site/doc/ja/getting-started/building/index.html | |
| +++ b/web/_site/doc/ja/getting-started/building/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/getting-started/requirements' rel='prev' title='Requirements'> | |
| <link href='/doc/ja/getting-started/running-rubinius' rel='next' title='Running Rubinius'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/getting-started/index.html b/web/_site/doc/ja/getting-started/index.html | |
| index 312aac9..609bf8f 100644 | |
| --- a/web/_site/doc/ja/getting-started/index.html | |
| +++ b/web/_site/doc/ja/getting-started/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/what-is-rubinius' rel='prev' title='What is Rubinius?'> | |
| <link href='/doc/ja/getting-started/requirements' rel='next' title='Requirements'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/getting-started/requirements/index.html b/web/_site/doc/ja/getting-started/requirements/index.html | |
| index 0d05d41..ea4376f 100644 | |
| --- a/web/_site/doc/ja/getting-started/requirements/index.html | |
| +++ b/web/_site/doc/ja/getting-started/requirements/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/getting-started' rel='prev' title='Getting Started'> | |
| <link href='/doc/ja/getting-started/building' rel='next' title='Building'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/getting-started/running-rubinius/index.html b/web/_site/doc/ja/getting-started/running-rubinius/index.html | |
| index 178e6df..d5fd5de 100644 | |
| --- a/web/_site/doc/ja/getting-started/running-rubinius/index.html | |
| +++ b/web/_site/doc/ja/getting-started/running-rubinius/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/getting-started/building' rel='prev' title='Building'> | |
| <link href='/doc/ja/getting-started/troubleshooting' rel='next' title='Troubleshooting'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/getting-started/troubleshooting/index.html b/web/_site/doc/ja/getting-started/troubleshooting/index.html | |
| index 728574c..f3dc8f4 100644 | |
| --- a/web/_site/doc/ja/getting-started/troubleshooting/index.html | |
| +++ b/web/_site/doc/ja/getting-started/troubleshooting/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/getting-started/running-rubinius' rel='prev' title='Running Rubinius'> | |
| <link href='/doc/ja/contributing' rel='next' title='Contributing'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/how-to/fix-a-failing-spec/index.html b/web/_site/doc/ja/how-to/fix-a-failing-spec/index.html | |
| index b50e89f..4496576 100644 | |
| --- a/web/_site/doc/ja/how-to/fix-a-failing-spec/index.html | |
| +++ b/web/_site/doc/ja/how-to/fix-a-failing-spec/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/how-to/write-ruby-spec' rel='prev' title='Write a Ruby Spec'> | |
| <link href='/doc/ja/how-to/write-a-blog-post' rel='next' title='Write a Blog Post'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/how-to/index.html b/web/_site/doc/ja/how-to/index.html | |
| index 79ef09c..4e405c7 100644 | |
| --- a/web/_site/doc/ja/how-to/index.html | |
| +++ b/web/_site/doc/ja/how-to/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/tools/memory-analysis' rel='prev' title='Tools - Memory Analysis'> | |
| <link href='/doc/ja/how-to/write-a-ticket' rel='next' title='Write a Ticket'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/how-to/translate-documentation/index.html b/web/_site/doc/ja/how-to/translate-documentation/index.html | |
| index 5241d75..6b3c1d0 100644 | |
| --- a/web/_site/doc/ja/how-to/translate-documentation/index.html | |
| +++ b/web/_site/doc/ja/how-to/translate-documentation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/how-to/write-documentation' rel='prev' title='Write Documentation'> | |
| <link href='/doc/ja/appendix-a-glossary' rel='next' title='Appendix A - Glossary'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/how-to/write-a-blog-post/index.html b/web/_site/doc/ja/how-to/write-a-blog-post/index.html | |
| index 616a8b6..78bcf77 100644 | |
| --- a/web/_site/doc/ja/how-to/write-a-blog-post/index.html | |
| +++ b/web/_site/doc/ja/how-to/write-a-blog-post/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/how-to/fix-a-failing-spec' rel='prev' title='Fix a Failing Spec'> | |
| <link href='/doc/ja/how-to/write-documentation' rel='next' title='Write Documentation'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/how-to/write-a-ruby-spec/index.html b/web/_site/doc/ja/how-to/write-a-ruby-spec/index.html | |
| index 4529073..46e48a7 100644 | |
| --- a/web/_site/doc/ja/how-to/write-a-ruby-spec/index.html | |
| +++ b/web/_site/doc/ja/how-to/write-a-ruby-spec/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/how-to/write-a-ticket' rel='prev' title='Write a Ticket'> | |
| <link href='/doc/ja/how-to/fix-a-failing-spec' rel='next' title='Fix a Failing Spec'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/how-to/write-a-ticket/index.html b/web/_site/doc/ja/how-to/write-a-ticket/index.html | |
| index 2506c7c..408e958 100644 | |
| --- a/web/_site/doc/ja/how-to/write-a-ticket/index.html | |
| +++ b/web/_site/doc/ja/how-to/write-a-ticket/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/how-to' rel='prev' title='How-To'> | |
| <link href='/doc/ja/how-to/write-a-ruby-spec' rel='next' title='Write a Ruby Spec'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/how-to/write-documentation/index.html b/web/_site/doc/ja/how-to/write-documentation/index.html | |
| index f74ab09..d35700a 100644 | |
| --- a/web/_site/doc/ja/how-to/write-documentation/index.html | |
| +++ b/web/_site/doc/ja/how-to/write-documentation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/how-to/write-a-blog-post' rel='prev' title='Write a Blog Post'> | |
| <link href='/doc/ja/how-to/translate-documentation' rel='next' title='Translate Documentation'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/index-of-terms/index.html b/web/_site/doc/ja/index-of-terms/index.html | |
| index 85862f5..aaaca76 100644 | |
| --- a/web/_site/doc/ja/index-of-terms/index.html | |
| +++ b/web/_site/doc/ja/index-of-terms/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/appendix-b-reading-list' rel='prev' title='Appendix B - Reading List'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/index.html b/web/_site/doc/ja/index.html | |
| index 9ea8373..46a8bf0 100644 | |
| --- a/web/_site/doc/ja/index.html | |
| +++ b/web/_site/doc/ja/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/what-is-rubinius' rel='next' title='何がRubiniusのですか?'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/jit/index.html b/web/_site/doc/ja/jit/index.html | |
| index a9a505b..0b9fcd6 100644 | |
| --- a/web/_site/doc/ja/jit/index.html | |
| +++ b/web/_site/doc/ja/jit/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/bytecode-compiler/generator' rel='prev' title='Bytecode Compiler - Generator'> | |
| <link href='/doc/ja/garbage-collector' rel='next' title='Garbage Collector'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/blocks-and-procs/index.html b/web/_site/doc/ja/ruby/blocks-and-procs/index.html | |
| index c1038520..ba3fc21 100644 | |
| --- a/web/_site/doc/ja/ruby/blocks-and-procs/index.html | |
| +++ b/web/_site/doc/ja/ruby/blocks-and-procs/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/ruby/classes-and-modules' rel='prev' title='Classes & Modules'> | |
| <link href='/doc/ja/ruby/local-variables' rel='next' title='Local Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/class-variables/index.html b/web/_site/doc/ja/ruby/class-variables/index.html | |
| index df5c5e6..8e78522 100644 | |
| --- a/web/_site/doc/ja/ruby/class-variables/index.html | |
| +++ b/web/_site/doc/ja/ruby/class-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/ruby/instance-variables' rel='prev' title='Instance Variables'> | |
| <link href='/doc/ja/ruby/global-variables' rel='next' title='Global Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/classes-and-modules/index.html b/web/_site/doc/ja/ruby/classes-and-modules/index.html | |
| index efaf964..243b430 100644 | |
| --- a/web/_site/doc/ja/ruby/classes-and-modules/index.html | |
| +++ b/web/_site/doc/ja/ruby/classes-and-modules/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/ruby/constants' rel='prev' title='Constants'> | |
| <link href='/doc/ja/ruby/blocks-and-procs' rel='next' title='Blocks & Procs'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/constants/index.html b/web/_site/doc/ja/ruby/constants/index.html | |
| index 6cedd42..c0b46ee 100644 | |
| --- a/web/_site/doc/ja/ruby/constants/index.html | |
| +++ b/web/_site/doc/ja/ruby/constants/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/ruby/methods' rel='prev' title='Methods'> | |
| <link href='/doc/ja/ruby/classes-and-modules' rel='next' title='Classes & Modules'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/global-variables/index.html b/web/_site/doc/ja/ruby/global-variables/index.html | |
| index ddb30f5..aa26ba7 100644 | |
| --- a/web/_site/doc/ja/ruby/global-variables/index.html | |
| +++ b/web/_site/doc/ja/ruby/global-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/ruby/class-variables' rel='prev' title='Class Variables'> | |
| <link href='/doc/ja/specs' rel='next' title='Specs'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/index.html b/web/_site/doc/ja/ruby/index.html | |
| index b649642..2f2edc3 100644 | |
| --- a/web/_site/doc/ja/ruby/index.html | |
| +++ b/web/_site/doc/ja/ruby/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/contributing/style-guide' rel='prev' title='Style Guide'> | |
| <link href='/doc/ja/ruby/scripts' rel='next' title='Scripts'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/instance-variables/index.html b/web/_site/doc/ja/ruby/instance-variables/index.html | |
| index 4b47ed4..f87d8b8 100644 | |
| --- a/web/_site/doc/ja/ruby/instance-variables/index.html | |
| +++ b/web/_site/doc/ja/ruby/instance-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/ruby/locas-variables' rel='prev' title='Local Variables'> | |
| <link href='/doc/ja/ruby/class-variables' rel='next' title='Class Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/local-variables/index.html b/web/_site/doc/ja/ruby/local-variables/index.html | |
| index 42d47f6..2e83f81 100644 | |
| --- a/web/_site/doc/ja/ruby/local-variables/index.html | |
| +++ b/web/_site/doc/ja/ruby/local-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/ruby/blocks-and-procs' rel='prev' title='Blocks & Procs'> | |
| <link href='/doc/ja/ruby/instance-variables' rel='next' title='Instance Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/methods/index.html b/web/_site/doc/ja/ruby/methods/index.html | |
| index 5f02755..9746d52 100644 | |
| --- a/web/_site/doc/ja/ruby/methods/index.html | |
| +++ b/web/_site/doc/ja/ruby/methods/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/ruby/scripts' rel='prev' title='Scripts'> | |
| <link href='/doc/ja/ruby/constants' rel='next' title='Constants'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/ruby/scripts/index.html b/web/_site/doc/ja/ruby/scripts/index.html | |
| index f6d5f18..cbc0528 100644 | |
| --- a/web/_site/doc/ja/ruby/scripts/index.html | |
| +++ b/web/_site/doc/ja/ruby/scripts/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/ruby' rel='prev' title='Ruby'> | |
| <link href='/doc/ja/ruby/methods' rel='next' title='Methods'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/specs/compiler/index.html b/web/_site/doc/ja/specs/compiler/index.html | |
| index 7bde359..16c10e7 100644 | |
| --- a/web/_site/doc/ja/specs/compiler/index.html | |
| +++ b/web/_site/doc/ja/specs/compiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/specs/rubyspec' rel='prev' title='RubySpec'> | |
| <link href='/doc/ja/build-system' rel='next' title='Build System'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/specs/index.html b/web/_site/doc/ja/specs/index.html | |
| index 0573806..ea36da1 100644 | |
| --- a/web/_site/doc/ja/specs/index.html | |
| +++ b/web/_site/doc/ja/specs/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/ruby/global-variables' rel='prev' title='Ruby - Global Variables'> | |
| <link href='/doc/ja/specs/rubyspec' rel='next' title='RubySpec'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/specs/rubyspec/index.html b/web/_site/doc/ja/specs/rubyspec/index.html | |
| index 2105220..bd5e210 100644 | |
| --- a/web/_site/doc/ja/specs/rubyspec/index.html | |
| +++ b/web/_site/doc/ja/specs/rubyspec/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/specs' rel='prev' title='Specs'> | |
| <link href='/doc/ja/specs/compiler' rel='next' title='Compiler Specs'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/systems/c-api/index.html b/web/_site/doc/ja/systems/c-api/index.html | |
| index a1a8a8e..0cc1e6f 100644 | |
| --- a/web/_site/doc/ja/systems/c-api/index.html | |
| +++ b/web/_site/doc/ja/systems/c-api/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/systems/io' rel='prev' title='IO'> | |
| <link href='/doc/ja/tools' rel='next' title='Tools'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/systems/concurrency/index.html b/web/_site/doc/ja/systems/concurrency/index.html | |
| index 27f74c3..785d582 100644 | |
| --- a/web/_site/doc/ja/systems/concurrency/index.html | |
| +++ b/web/_site/doc/ja/systems/concurrency/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/systems/ffi' rel='prev' title='FFI'> | |
| <link href='/doc/ja/systems/io' rel='next' title='IO'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/systems/ffi/index.html b/web/_site/doc/ja/systems/ffi/index.html | |
| index 6f37c5d..30209ad 100644 | |
| --- a/web/_site/doc/ja/systems/ffi/index.html | |
| +++ b/web/_site/doc/ja/systems/ffi/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/systems/primitives' rel='prev' title='Primitives'> | |
| <link href='/doc/ja/systems/concurrency' rel='next' title='Concurrency'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/systems/index.html b/web/_site/doc/ja/systems/index.html | |
| index 48b6ae1..76d6d08 100644 | |
| --- a/web/_site/doc/ja/systems/index.html | |
| +++ b/web/_site/doc/ja/systems/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/garbage-collector/large-objects' rel='prev' title='Garbage Collector - Large Objects'> | |
| <link href='/doc/ja/systems/primitives' rel='next' title='Primitives'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/systems/io/index.html b/web/_site/doc/ja/systems/io/index.html | |
| index 58f43e6..1ea295c 100644 | |
| --- a/web/_site/doc/ja/systems/io/index.html | |
| +++ b/web/_site/doc/ja/systems/io/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/systems/concurrency' rel='prev' title='Concurrency'> | |
| <link href='/doc/ja/systems/c-api' rel='next' title='C-API'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/systems/primitives/index.html b/web/_site/doc/ja/systems/primitives/index.html | |
| index 3fb5f04..0a35d63 100644 | |
| --- a/web/_site/doc/ja/systems/primitives/index.html | |
| +++ b/web/_site/doc/ja/systems/primitives/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/systems' rel='prev' title='Rubinius Systems'> | |
| <link href='/doc/ja/systems/ffi' rel='next' title='FFI'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/tools/debugger/index.html b/web/_site/doc/ja/tools/debugger/index.html | |
| index c6a332e..4029225 100644 | |
| --- a/web/_site/doc/ja/tools/debugger/index.html | |
| +++ b/web/_site/doc/ja/tools/debugger/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/tools' rel='prev' title='Tools'> | |
| <link href='/doc/ja/tools/profiler' rel='next' title='Profiler'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/tools/index.html b/web/_site/doc/ja/tools/index.html | |
| index dbcc8c0..9fd68dd 100644 | |
| --- a/web/_site/doc/ja/tools/index.html | |
| +++ b/web/_site/doc/ja/tools/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/systems/c-api' rel='prev' title='Rubinius Systems - C-API'> | |
| <link href='/doc/ja/tools/debugger' rel='next' title='Debugger'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/tools/memory-analysis/index.html b/web/_site/doc/ja/tools/memory-analysis/index.html | |
| index c4ad8ca..9a313a0 100644 | |
| --- a/web/_site/doc/ja/tools/memory-analysis/index.html | |
| +++ b/web/_site/doc/ja/tools/memory-analysis/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/tools/profiler' rel='prev' title='Profiler'> | |
| <link href='/doc/ja/how-to' rel='next' title='How-To'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/tools/profiler/index.html b/web/_site/doc/ja/tools/profiler/index.html | |
| index a711ff0..e1319ef 100644 | |
| --- a/web/_site/doc/ja/tools/profiler/index.html | |
| +++ b/web/_site/doc/ja/tools/profiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/tools/debugger' rel='prev' title='Debugger'> | |
| <link href='/doc/ja/tools/memory-analysis' rel='next' title='Memory Analysis'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/virtual-machine/custom-dispatch-logic/index.html b/web/_site/doc/ja/virtual-machine/custom-dispatch-logic/index.html | |
| index 86912cc..f726339 100644 | |
| --- a/web/_site/doc/ja/virtual-machine/custom-dispatch-logic/index.html | |
| +++ b/web/_site/doc/ja/virtual-machine/custom-dispatch-logic/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/virtual-machine/instructions' rel='prev' title='Instructions'> | |
| <link href='/doc/ja/bytecode-compiler' rel='next' title='Bytecode Compiler'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/virtual-machine/index.html b/web/_site/doc/ja/virtual-machine/index.html | |
| index fb8e9e9..0a00a3d 100644 | |
| --- a/web/_site/doc/ja/virtual-machine/index.html | |
| +++ b/web/_site/doc/ja/virtual-machine/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/bootstrapping' rel='prev' title='Bootstrapping'> | |
| <link href='/doc/ja/virtual-machine/instructions' rel='next' title='Instructions'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/virtual-machine/instructions/index.html b/web/_site/doc/ja/virtual-machine/instructions/index.html | |
| index 8e5892f..3dc3978 100644 | |
| --- a/web/_site/doc/ja/virtual-machine/instructions/index.html | |
| +++ b/web/_site/doc/ja/virtual-machine/instructions/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/virtual-machine' rel='prev' title='Virtual Machine'> | |
| <link href='/doc/ja/virtual-machine/custom-dispatch-logic' rel='next' title='Custom Dispatch Logic'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ja/what-is-rubinius/index.html b/web/_site/doc/ja/what-is-rubinius/index.html | |
| index 9793215..2b53404 100644 | |
| --- a/web/_site/doc/ja/what-is-rubinius/index.html | |
| +++ b/web/_site/doc/ja/what-is-rubinius/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ja/getting-started' rel='next' title='Getting Started'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/appendix-a-glossary/index.html b/web/_site/doc/ru/appendix-a-glossary/index.html | |
| index 66d0da4..36d9857 100644 | |
| --- a/web/_site/doc/ru/appendix-a-glossary/index.html | |
| +++ b/web/_site/doc/ru/appendix-a-glossary/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/how-to/translate-documentation' rel='prev' title='How-To - Перевод документации'> | |
| <link href='/doc/ru/appendix-b-reading-list' rel='next' title='Приложение B - Список литературы'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/appendix-b-reading-list/index.html b/web/_site/doc/ru/appendix-b-reading-list/index.html | |
| index a94e97e..f097480 100644 | |
| --- a/web/_site/doc/ru/appendix-b-reading-list/index.html | |
| +++ b/web/_site/doc/ru/appendix-b-reading-list/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/appendix-a-glossary' rel='prev' title='Приложение A - Глоссарий'> | |
| <link href='/doc/ru/terms-index' rel='next' title='Список терминов'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/bootstrapping/index.html b/web/_site/doc/ru/bootstrapping/index.html | |
| index 69939b8..34b10dc 100644 | |
| --- a/web/_site/doc/ru/bootstrapping/index.html | |
| +++ b/web/_site/doc/ru/bootstrapping/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/build-system' rel='prev' title='Система сборки'> | |
| <link href='/doc/ru/virtual-machine' rel='next' title='Виртуальная Машина'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/build-system/index.html b/web/_site/doc/ru/build-system/index.html | |
| index 4b504d4..79e9b60 100644 | |
| --- a/web/_site/doc/ru/build-system/index.html | |
| +++ b/web/_site/doc/ru/build-system/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/specs/compiler' rel='prev' title='Спецификации - Компилятор'> | |
| <link href='/doc/ru/bootstrapping' rel='next' title='Начальная загрузка'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/bytecode-compiler/ast/index.html b/web/_site/doc/ru/bytecode-compiler/ast/index.html | |
| index 8efa040..3045ebf 100644 | |
| --- a/web/_site/doc/ru/bytecode-compiler/ast/index.html | |
| +++ b/web/_site/doc/ru/bytecode-compiler/ast/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/bytecode-compiler/parser' rel='prev' title='Парсер'> | |
| <link href='/doc/ru/bytecode-compiler/compiler' rel='next' title='Компилятор'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/bytecode-compiler/compiler/index.html b/web/_site/doc/ru/bytecode-compiler/compiler/index.html | |
| index 74788c4..a1ab36f 100644 | |
| --- a/web/_site/doc/ru/bytecode-compiler/compiler/index.html | |
| +++ b/web/_site/doc/ru/bytecode-compiler/compiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/bytecode-compiler/ast' rel='prev' title='AST'> | |
| <link href='/doc/ru/bytecode-compiler/transformations' rel='next' title='Transformations'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/bytecode-compiler/generator/index.html b/web/_site/doc/ru/bytecode-compiler/generator/index.html | |
| index c4a4765..4a84b6b 100644 | |
| --- a/web/_site/doc/ru/bytecode-compiler/generator/index.html | |
| +++ b/web/_site/doc/ru/bytecode-compiler/generator/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/bytecode-compiler/transformations' rel='prev' title='Transformations'> | |
| <link href='/doc/ru/jit' rel='next' title='JIT Компилятор'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/bytecode-compiler/index.html b/web/_site/doc/ru/bytecode-compiler/index.html | |
| index 1dc48f1..ab9c789 100644 | |
| --- a/web/_site/doc/ru/bytecode-compiler/index.html | |
| +++ b/web/_site/doc/ru/bytecode-compiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/virtual-machine/custom-dispatch-logic' rel='prev' title='Виртуальная Машина - Custom Dispatch Logic'> | |
| <link href='/doc/ru/bytecode-compiler/parser' rel='next' title='Парсер'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/bytecode-compiler/parser/index.html b/web/_site/doc/ru/bytecode-compiler/parser/index.html | |
| index 495956e..4d26882 100644 | |
| --- a/web/_site/doc/ru/bytecode-compiler/parser/index.html | |
| +++ b/web/_site/doc/ru/bytecode-compiler/parser/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/bytecode-compiler' rel='prev' title='Комилятор в Байткод'> | |
| <link href='/doc/ru/bytecode-compiler/ast' rel='next' title='AST'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/bytecode-compiler/transformations/index.html b/web/_site/doc/ru/bytecode-compiler/transformations/index.html | |
| index 70880b6..8fde784 100644 | |
| --- a/web/_site/doc/ru/bytecode-compiler/transformations/index.html | |
| +++ b/web/_site/doc/ru/bytecode-compiler/transformations/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/bytecode-compiler/compiler' rel='prev' title='Компилятор'> | |
| <link href='/doc/ru/bytecode-compiler/generator' rel='next' title='Генератор'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/contributing/communication/index.html b/web/_site/doc/ru/contributing/communication/index.html | |
| index 2969ce5..9322c28 100644 | |
| --- a/web/_site/doc/ru/contributing/communication/index.html | |
| +++ b/web/_site/doc/ru/contributing/communication/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/contributing' rel='prev' title='Участие в проекте'> | |
| <link href='/doc/ru/contributing/style-guide' rel='next' title='Стиль кодирования'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/contributing/index.html b/web/_site/doc/ru/contributing/index.html | |
| index 976f9b3..35d217b 100644 | |
| --- a/web/_site/doc/ru/contributing/index.html | |
| +++ b/web/_site/doc/ru/contributing/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/getting-started/troubleshooting' rel='prev' title='Разрешение проблем'> | |
| <link href='/doc/ru/contributing/communication' rel='next' title='Общение'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/contributing/style-guide/index.html b/web/_site/doc/ru/contributing/style-guide/index.html | |
| index e4152b6..c146897 100644 | |
| --- a/web/_site/doc/ru/contributing/style-guide/index.html | |
| +++ b/web/_site/doc/ru/contributing/style-guide/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/contributing/communication' rel='prev' title='Общение'> | |
| <link href='/doc/ru/ruby' rel='next' title='Ruby'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/garbage-collector/index.html b/web/_site/doc/ru/garbage-collector/index.html | |
| index 5683142..c5b20ed 100644 | |
| --- a/web/_site/doc/ru/garbage-collector/index.html | |
| +++ b/web/_site/doc/ru/garbage-collector/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/jit' rel='prev' title='JIT Компилятор'> | |
| <link href='/doc/ru/garbage-collector/nursery' rel='next' title='Nursery'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/garbage-collector/large-objects/index.html b/web/_site/doc/ru/garbage-collector/large-objects/index.html | |
| index 118b904..a18d35f 100644 | |
| --- a/web/_site/doc/ru/garbage-collector/large-objects/index.html | |
| +++ b/web/_site/doc/ru/garbage-collector/large-objects/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/garbage-collector/mature-generation' rel='prev' title='Старое поколение'> | |
| <link href='/doc/ru/systems' rel='next' title='Rubinius Systems'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/garbage-collector/mature-generation/index.html b/web/_site/doc/ru/garbage-collector/mature-generation/index.html | |
| index 8ff2b65..a3409b0 100644 | |
| --- a/web/_site/doc/ru/garbage-collector/mature-generation/index.html | |
| +++ b/web/_site/doc/ru/garbage-collector/mature-generation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/garbage-collector/young-generation' rel='prev' title='Молодое поколение'> | |
| <link href='/doc/ru/garbage-collector/large-objects' rel='next' title='Большие объекты'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/garbage-collector/nursery/index.html b/web/_site/doc/ru/garbage-collector/nursery/index.html | |
| index ec41301..70af452 100644 | |
| --- a/web/_site/doc/ru/garbage-collector/nursery/index.html | |
| +++ b/web/_site/doc/ru/garbage-collector/nursery/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/garbage-collector' rel='prev' title='Сборщик мусора'> | |
| <link href='/doc/ru/garbage-collector/young-generation' rel='next' title='Молодое Поколоение'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/garbage-collector/young-generation/index.html b/web/_site/doc/ru/garbage-collector/young-generation/index.html | |
| index a3f4fbc..4a6fa2e 100644 | |
| --- a/web/_site/doc/ru/garbage-collector/young-generation/index.html | |
| +++ b/web/_site/doc/ru/garbage-collector/young-generation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/garbage-collector/nursery' rel='prev' title='Nursery'> | |
| <link href='/doc/ru/garbage-collector/mature-generation' rel='next' title='Старое поколение'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/getting-started/building/index.html b/web/_site/doc/ru/getting-started/building/index.html | |
| index ea052b7..e2580c1 100644 | |
| --- a/web/_site/doc/ru/getting-started/building/index.html | |
| +++ b/web/_site/doc/ru/getting-started/building/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/getting-started/requirements' rel='prev' title='Минимальные требования'> | |
| <link href='/doc/ru/getting-started/running-rubinius' rel='next' title='Запуск Rubinius'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/getting-started/index.html b/web/_site/doc/ru/getting-started/index.html | |
| index cbfca97..4cd7695 100644 | |
| --- a/web/_site/doc/ru/getting-started/index.html | |
| +++ b/web/_site/doc/ru/getting-started/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/what-is-rubinius' rel='prev' title='Что Такое Rubinius?'> | |
| <link href='/doc/ru/getting-started/requirements' rel='next' title='Минимальные требования'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/getting-started/requirements/index.html b/web/_site/doc/ru/getting-started/requirements/index.html | |
| index 57c8463..097963d 100644 | |
| --- a/web/_site/doc/ru/getting-started/requirements/index.html | |
| +++ b/web/_site/doc/ru/getting-started/requirements/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/getting-started' rel='prev' title='Приступая к работе'> | |
| <link href='/doc/ru/getting-started/building' rel='next' title='Сборка'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/getting-started/running-rubinius/index.html b/web/_site/doc/ru/getting-started/running-rubinius/index.html | |
| index fea56ab..2fd81c0 100644 | |
| --- a/web/_site/doc/ru/getting-started/running-rubinius/index.html | |
| +++ b/web/_site/doc/ru/getting-started/running-rubinius/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/getting-started/building' rel='prev' title='Сборка'> | |
| <link href='/doc/ru/getting-started/troubleshooting' rel='next' title='Разрешение Проблем'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/getting-started/troubleshooting/index.html b/web/_site/doc/ru/getting-started/troubleshooting/index.html | |
| index 760e205..dcc400b 100644 | |
| --- a/web/_site/doc/ru/getting-started/troubleshooting/index.html | |
| +++ b/web/_site/doc/ru/getting-started/troubleshooting/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/getting-started/running-rubinius' rel='prev' title='Запуск Rubinius'> | |
| <link href='/doc/ru/contributing' rel='next' title='Участие в проекте'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/how-to/fix-a-failing-spec/index.html b/web/_site/doc/ru/how-to/fix-a-failing-spec/index.html | |
| index 7d9426c..4acc6d1 100644 | |
| --- a/web/_site/doc/ru/how-to/fix-a-failing-spec/index.html | |
| +++ b/web/_site/doc/ru/how-to/fix-a-failing-spec/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/how-to/write-ruby-spec' rel='prev' title='Написание Ruby спецификации'> | |
| <link href='/doc/ru/how-to/write-a-blog-post' rel='next' title='Написание сообщения в блог'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/how-to/index.html b/web/_site/doc/ru/how-to/index.html | |
| index 1658273..efdb1cb 100644 | |
| --- a/web/_site/doc/ru/how-to/index.html | |
| +++ b/web/_site/doc/ru/how-to/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/tools/memory-analysis' rel='prev' title='Tools - Memory Analysis'> | |
| <link href='/doc/ru/how-to/write-a-ticket' rel='next' title='Создание тикета'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/how-to/translate-documentation/index.html b/web/_site/doc/ru/how-to/translate-documentation/index.html | |
| index 18ab84d..5fc805e 100644 | |
| --- a/web/_site/doc/ru/how-to/translate-documentation/index.html | |
| +++ b/web/_site/doc/ru/how-to/translate-documentation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/how-to/write-documentation' rel='prev' title='Написание Документации'> | |
| <link href='/doc/ru/appendix-a-glossary' rel='next' title='Приложение A - Глоссарий'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/how-to/write-a-blog-post/index.html b/web/_site/doc/ru/how-to/write-a-blog-post/index.html | |
| index cad067d..4d624a2 100644 | |
| --- a/web/_site/doc/ru/how-to/write-a-blog-post/index.html | |
| +++ b/web/_site/doc/ru/how-to/write-a-blog-post/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/how-to/fix-a-failing-spec' rel='prev' title='Исправление неработающей спецификации'> | |
| <link href='/doc/ru/how-to/write-documentation' rel='next' title='Написание Документации'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/how-to/write-a-ruby-spec/index.html b/web/_site/doc/ru/how-to/write-a-ruby-spec/index.html | |
| index e734440..6f30e3f 100644 | |
| --- a/web/_site/doc/ru/how-to/write-a-ruby-spec/index.html | |
| +++ b/web/_site/doc/ru/how-to/write-a-ruby-spec/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/how-to/write-a-ticket' rel='prev' title='Создание тикета'> | |
| <link href='/doc/ru/how-to/fix-a-failing-spec' rel='next' title='Исправление неработающей спецификации'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/how-to/write-a-ticket/index.html b/web/_site/doc/ru/how-to/write-a-ticket/index.html | |
| index 616e21b..8ddf515 100644 | |
| --- a/web/_site/doc/ru/how-to/write-a-ticket/index.html | |
| +++ b/web/_site/doc/ru/how-to/write-a-ticket/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/how-to' rel='prev' title='How-To'> | |
| <link href='/doc/ru/how-to/write-a-ruby-spec' rel='next' title='Написание Ruby спецификации'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/how-to/write-documentation/index.html b/web/_site/doc/ru/how-to/write-documentation/index.html | |
| index b0e5a05..c673e1c 100644 | |
| --- a/web/_site/doc/ru/how-to/write-documentation/index.html | |
| +++ b/web/_site/doc/ru/how-to/write-documentation/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/how-to/write-a-blog-post' rel='prev' title='Написание сообщения в блог'> | |
| <link href='/doc/ru/how-to/translate-documentation' rel='next' title='Перевод документации'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/index-of-terms/index.html b/web/_site/doc/ru/index-of-terms/index.html | |
| index 1e449b9..5b02d02 100644 | |
| --- a/web/_site/doc/ru/index-of-terms/index.html | |
| +++ b/web/_site/doc/ru/index-of-terms/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/appendix-b-reading-list' rel='prev' title='Приложение B - Список литературы'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/index.html b/web/_site/doc/ru/index.html | |
| index 35c7a61..214bbfc 100644 | |
| --- a/web/_site/doc/ru/index.html | |
| +++ b/web/_site/doc/ru/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/what-is-rubinius' rel='next' title='Что такое Rubinius?'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/jit/index.html b/web/_site/doc/ru/jit/index.html | |
| index 8fb7930..af967ae 100644 | |
| --- a/web/_site/doc/ru/jit/index.html | |
| +++ b/web/_site/doc/ru/jit/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/bytecode-compiler/generator' rel='prev' title='Комилятор в Байткод - Генератор'> | |
| <link href='/doc/ru/garbage-collector' rel='next' title='Сборщик мусора'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/blocks-and-procs/index.html b/web/_site/doc/ru/ruby/blocks-and-procs/index.html | |
| index c8153d9..c4264fa 100644 | |
| --- a/web/_site/doc/ru/ruby/blocks-and-procs/index.html | |
| +++ b/web/_site/doc/ru/ruby/blocks-and-procs/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/ruby/classes-and-modules' rel='prev' title='Classes & Modules'> | |
| <link href='/doc/ru/ruby/local-variables' rel='next' title='Local Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/class-variables/index.html b/web/_site/doc/ru/ruby/class-variables/index.html | |
| index 2c97096..d670188 100644 | |
| --- a/web/_site/doc/ru/ruby/class-variables/index.html | |
| +++ b/web/_site/doc/ru/ruby/class-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/ruby/instance-variables' rel='prev' title='Instance Variables'> | |
| <link href='/doc/ru/ruby/global-variables' rel='next' title='Global Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/classes-and-modules/index.html b/web/_site/doc/ru/ruby/classes-and-modules/index.html | |
| index 9a738ed..4ed4d1f 100644 | |
| --- a/web/_site/doc/ru/ruby/classes-and-modules/index.html | |
| +++ b/web/_site/doc/ru/ruby/classes-and-modules/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/ruby/constants' rel='prev' title='Constants'> | |
| <link href='/doc/ru/ruby/blocks-and-procs' rel='next' title='Blocks & Procs'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/constants/index.html b/web/_site/doc/ru/ruby/constants/index.html | |
| index c2df5fa..a8e6920 100644 | |
| --- a/web/_site/doc/ru/ruby/constants/index.html | |
| +++ b/web/_site/doc/ru/ruby/constants/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/ruby/methods' rel='prev' title='Методы'> | |
| <link href='/doc/ru/ruby/classes-and-modules' rel='next' title='Classes & Modules'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/global-variables/index.html b/web/_site/doc/ru/ruby/global-variables/index.html | |
| index 6bccdfe..e3b6df9 100644 | |
| --- a/web/_site/doc/ru/ruby/global-variables/index.html | |
| +++ b/web/_site/doc/ru/ruby/global-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/ruby/class-variables' rel='prev' title='Class Variables'> | |
| <link href='/doc/ru/specs' rel='next' title='Specs'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/index.html b/web/_site/doc/ru/ruby/index.html | |
| index f149a76..21a8a44 100644 | |
| --- a/web/_site/doc/ru/ruby/index.html | |
| +++ b/web/_site/doc/ru/ruby/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/contributing/style-guide' rel='prev' title='Стиль кодирования'> | |
| <link href='/doc/ru/ruby/scripts' rel='next' title='Скрипты'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/instance-variables/index.html b/web/_site/doc/ru/ruby/instance-variables/index.html | |
| index 56b5aa8..c6aff58 100644 | |
| --- a/web/_site/doc/ru/ruby/instance-variables/index.html | |
| +++ b/web/_site/doc/ru/ruby/instance-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/ruby/locas-variables' rel='prev' title='Local Variables'> | |
| <link href='/doc/ru/ruby/class-variables' rel='next' title='Class Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/local-variables/index.html b/web/_site/doc/ru/ruby/local-variables/index.html | |
| index 479c04a..43b8b49 100644 | |
| --- a/web/_site/doc/ru/ruby/local-variables/index.html | |
| +++ b/web/_site/doc/ru/ruby/local-variables/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/ruby/blocks-and-procs' rel='prev' title='Blocks & Procs'> | |
| <link href='/doc/ru/ruby/instance-variables' rel='next' title='Instance Variables'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/methods/index.html b/web/_site/doc/ru/ruby/methods/index.html | |
| index 6748286..d40b631 100644 | |
| --- a/web/_site/doc/ru/ruby/methods/index.html | |
| +++ b/web/_site/doc/ru/ruby/methods/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/ruby/scripts' rel='prev' title='Скрипты'> | |
| <link href='/doc/ru/ruby/constants' rel='next' title='Constants'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/ruby/scripts/index.html b/web/_site/doc/ru/ruby/scripts/index.html | |
| index 4636bc4..1877f6e 100644 | |
| --- a/web/_site/doc/ru/ruby/scripts/index.html | |
| +++ b/web/_site/doc/ru/ruby/scripts/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/ruby' rel='prev' title='Ruby'> | |
| <link href='/doc/ru/ruby/methods' rel='next' title='Методы'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/specs/compiler/index.html b/web/_site/doc/ru/specs/compiler/index.html | |
| index 4fc45c9..542a087 100644 | |
| --- a/web/_site/doc/ru/specs/compiler/index.html | |
| +++ b/web/_site/doc/ru/specs/compiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/specs/rubyspec' rel='prev' title='RubySpec'> | |
| <link href='/doc/ru/build-system' rel='next' title='Система сборки'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/specs/index.html b/web/_site/doc/ru/specs/index.html | |
| index 4572b86..84efbbc 100644 | |
| --- a/web/_site/doc/ru/specs/index.html | |
| +++ b/web/_site/doc/ru/specs/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/ruby/global-variables' rel='prev' title='Ruby - Global Variables'> | |
| <link href='/doc/ru/specs/rubyspec' rel='next' title='RubySpec'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/specs/rubyspec/index.html b/web/_site/doc/ru/specs/rubyspec/index.html | |
| index 8cd5535..b0baaf8 100644 | |
| --- a/web/_site/doc/ru/specs/rubyspec/index.html | |
| +++ b/web/_site/doc/ru/specs/rubyspec/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/specs' rel='prev' title='Specs'> | |
| <link href='/doc/ru/specs/compiler' rel='next' title='Compiler Specs'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/systems/c-api/index.html b/web/_site/doc/ru/systems/c-api/index.html | |
| index 9414475..dc6d9b7 100644 | |
| --- a/web/_site/doc/ru/systems/c-api/index.html | |
| +++ b/web/_site/doc/ru/systems/c-api/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/systems/io' rel='prev' title='Ввод/Вывод'> | |
| <link href='/doc/ru/tools' rel='next' title='Tools'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/systems/concurrency/index.html b/web/_site/doc/ru/systems/concurrency/index.html | |
| index ed90d14..f526a43 100644 | |
| --- a/web/_site/doc/ru/systems/concurrency/index.html | |
| +++ b/web/_site/doc/ru/systems/concurrency/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/systems/ffi' rel='prev' title='FFI'> | |
| <link href='/doc/ru/systems/io' rel='next' title='Ввод/Вывод'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/systems/ffi/index.html b/web/_site/doc/ru/systems/ffi/index.html | |
| index 79e9b22..47ce372 100644 | |
| --- a/web/_site/doc/ru/systems/ffi/index.html | |
| +++ b/web/_site/doc/ru/systems/ffi/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/systems/primitives' rel='prev' title='Примитивы'> | |
| <link href='/doc/ru/systems/concurrency' rel='next' title='Многопоточность'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/systems/index.html b/web/_site/doc/ru/systems/index.html | |
| index 5618705..21e23d6 100644 | |
| --- a/web/_site/doc/ru/systems/index.html | |
| +++ b/web/_site/doc/ru/systems/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/garbage-collector/large-objects' rel='prev' title='Garbage Collector - Large Objects'> | |
| <link href='/doc/ru/systems/primitives' rel='next' title='Примитивы'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/systems/io/index.html b/web/_site/doc/ru/systems/io/index.html | |
| index 1fe2bf8..c4440c4 100644 | |
| --- a/web/_site/doc/ru/systems/io/index.html | |
| +++ b/web/_site/doc/ru/systems/io/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/systems/concurrency' rel='prev' title='Многопоточность'> | |
| <link href='/doc/ru/systems/c-api' rel='next' title='C-API'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/systems/primitives/index.html b/web/_site/doc/ru/systems/primitives/index.html | |
| index dac062e..50f2da0 100644 | |
| --- a/web/_site/doc/ru/systems/primitives/index.html | |
| +++ b/web/_site/doc/ru/systems/primitives/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/systems' rel='prev' title='Rubinius Systems'> | |
| <link href='/doc/ru/systems/ffi' rel='next' title='FFI'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/tools/debugger/index.html b/web/_site/doc/ru/tools/debugger/index.html | |
| index 6b7df12..ebb6699 100644 | |
| --- a/web/_site/doc/ru/tools/debugger/index.html | |
| +++ b/web/_site/doc/ru/tools/debugger/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/tools' rel='prev' title='Tools'> | |
| <link href='/doc/ru/tools/profiler' rel='next' title='Profiler'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/tools/index.html b/web/_site/doc/ru/tools/index.html | |
| index 26a1a8f..79ff794 100644 | |
| --- a/web/_site/doc/ru/tools/index.html | |
| +++ b/web/_site/doc/ru/tools/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/systems/c-api' rel='prev' title='Rubinius Systems - C-API'> | |
| <link href='/doc/ru/tools/debugger' rel='next' title='Debugger'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/tools/memory-analysis/index.html b/web/_site/doc/ru/tools/memory-analysis/index.html | |
| index 81b5d2e..4f70688 100644 | |
| --- a/web/_site/doc/ru/tools/memory-analysis/index.html | |
| +++ b/web/_site/doc/ru/tools/memory-analysis/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/tools/profiler' rel='prev' title='Profiler'> | |
| <link href='/doc/ru/how-to' rel='next' title='How-To'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/tools/profiler/index.html b/web/_site/doc/ru/tools/profiler/index.html | |
| index 8832239..595bafc 100644 | |
| --- a/web/_site/doc/ru/tools/profiler/index.html | |
| +++ b/web/_site/doc/ru/tools/profiler/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/tools/debugger' rel='prev' title='Debugger'> | |
| <link href='/doc/ru/tools/memory-analysis' rel='next' title='Memory Analysis'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/virtual-machine/custom-dispatch-logic/index.html b/web/_site/doc/ru/virtual-machine/custom-dispatch-logic/index.html | |
| index 17c6823..64cafae 100644 | |
| --- a/web/_site/doc/ru/virtual-machine/custom-dispatch-logic/index.html | |
| +++ b/web/_site/doc/ru/virtual-machine/custom-dispatch-logic/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/virtual-machine/instructions' rel='prev' title='Инструкции'> | |
| <link href='/doc/ru/bytecode-compiler' rel='next' title='Комилятор в Байткод'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/virtual-machine/index.html b/web/_site/doc/ru/virtual-machine/index.html | |
| index 20bdcea..8aa28c7 100644 | |
| --- a/web/_site/doc/ru/virtual-machine/index.html | |
| +++ b/web/_site/doc/ru/virtual-machine/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/bootstrapping' rel='prev' title='Начальная загрузка'> | |
| <link href='/doc/ru/virtual-machine/instructions' rel='next' title='Инструкции'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/virtual-machine/instructions/index.html b/web/_site/doc/ru/virtual-machine/instructions/index.html | |
| index c3c13c4..554882b 100644 | |
| --- a/web/_site/doc/ru/virtual-machine/instructions/index.html | |
| +++ b/web/_site/doc/ru/virtual-machine/instructions/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/virtual-machine' rel='prev' title='Виртуальная Машина'> | |
| <link href='/doc/ru/virtual-machine/custom-dispatch-logic' rel='next' title='Custom Dispatch Logic'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/doc/ru/what-is-rubinius/index.html b/web/_site/doc/ru/what-is-rubinius/index.html | |
| index e4430ae..5af2359 100644 | |
| --- a/web/_site/doc/ru/what-is-rubinius/index.html | |
| +++ b/web/_site/doc/ru/what-is-rubinius/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| <link href='/doc/ru/getting-started' rel='next' title='Приступая к работе'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/index.html b/web/_site/index.html | |
| index d4d0a87..9e66714 100644 | |
| --- a/web/_site/index.html | |
| +++ b/web/_site/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/projects/index.html b/web/_site/projects/index.html | |
| index 0a9729f..305c028 100644 | |
| --- a/web/_site/projects/index.html | |
| +++ b/web/_site/projects/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/releases/1.0.0/index.html b/web/_site/releases/1.0.0/index.html | |
| index 8c0d30c..762954b 100644 | |
| --- a/web/_site/releases/1.0.0/index.html | |
| +++ b/web/_site/releases/1.0.0/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/releases/1.0.1/index.html b/web/_site/releases/1.0.1/index.html | |
| index a804192..d410076 100644 | |
| --- a/web/_site/releases/1.0.1/index.html | |
| +++ b/web/_site/releases/1.0.1/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/releases/1.1.0/index.html b/web/_site/releases/1.1.0/index.html | |
| index 0574877..6f6e16b 100644 | |
| --- a/web/_site/releases/1.1.0/index.html | |
| +++ b/web/_site/releases/1.1.0/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/releases/1.1.1/index.html b/web/_site/releases/1.1.1/index.html | |
| index 8a0b55b..129e35e 100644 | |
| --- a/web/_site/releases/1.1.1/index.html | |
| +++ b/web/_site/releases/1.1.1/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/releases/1.2.0/index.html b/web/_site/releases/1.2.0/index.html | |
| index 81543b3..516e963 100644 | |
| --- a/web/_site/releases/1.2.0/index.html | |
| +++ b/web/_site/releases/1.2.0/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/releases/index.html b/web/_site/releases/index.html | |
| index 5a150c9..99648ef 100644 | |
| --- a/web/_site/releases/index.html | |
| +++ b/web/_site/releases/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| diff --git a/web/_site/roadmap/index.html b/web/_site/roadmap/index.html | |
| index 55256f7..98673d4 100644 | |
| --- a/web/_site/roadmap/index.html | |
| +++ b/web/_site/roadmap/index.html | |
| @@ -11,6 +11,7 @@ | |
| <link href='/' rel='start'> | |
| + | |
| <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]--> | |
| <script src="/javascripts/jquery-1.3.2.js" type="text/javascript"></script> | |
| <script src="/javascripts/paging_keys.js" type="text/javascript"></script> | |
| -- | |
| 1.7.2.3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment