org-ruby 0.5.3 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +12 -0
- data/Rakefile +3 -5
- data/announcement.txt +24 -0
- data/doc/History_txt.html +272 -0
- data/doc/OrgRuby.html +149 -0
- data/doc/Orgmode.html +960 -0
- data/doc/Orgmode/Headline.html +522 -0
- data/doc/Orgmode/HtmlOutputBuffer.html +480 -0
- data/doc/Orgmode/Line.html +1251 -0
- data/doc/Orgmode/OutputBuffer.html +810 -0
- data/doc/Orgmode/Parser.html +852 -0
- data/doc/Orgmode/RegexpHelper.html +639 -0
- data/doc/Orgmode/TextileOutputBuffer.html +456 -0
- data/doc/README_rdoc.html +178 -0
- data/doc/announcement_txt.html +142 -0
- data/doc/bin/org-ruby.html +54 -0
- data/doc/created.rid +15 -0
- data/doc/images/brick.png +0 -0
- data/doc/images/brick_link.png +0 -0
- data/doc/images/bug.png +0 -0
- data/doc/images/bullet_black.png +0 -0
- data/doc/images/bullet_toggle_minus.png +0 -0
- data/doc/images/bullet_toggle_plus.png +0 -0
- data/doc/images/date.png +0 -0
- data/doc/images/find.png +0 -0
- data/doc/images/loadingAnimation.gif +0 -0
- data/doc/images/macFFBgHack.png +0 -0
- data/doc/images/package.png +0 -0
- data/doc/images/page_green.png +0 -0
- data/doc/images/page_white_text.png +0 -0
- data/doc/images/page_white_width.png +0 -0
- data/doc/images/plugin.png +0 -0
- data/doc/images/ruby.png +0 -0
- data/doc/images/tag_green.png +0 -0
- data/doc/images/wrench.png +0 -0
- data/doc/images/wrench_orange.png +0 -0
- data/doc/images/zoom.png +0 -0
- data/doc/index.html +306 -0
- data/doc/js/darkfish.js +116 -0
- data/doc/js/jquery.js +32 -0
- data/doc/js/quicksearch.js +114 -0
- data/doc/js/thickbox-compressed.js +10 -0
- data/doc/lib/org-ruby/headline_rb.html +52 -0
- data/doc/lib/org-ruby/html_output_buffer_rb.html +52 -0
- data/doc/lib/org-ruby/html_symbol_replace_rb.html +54 -0
- data/doc/lib/org-ruby/line_rb.html +52 -0
- data/doc/lib/org-ruby/output_buffer_rb.html +54 -0
- data/doc/lib/org-ruby/parser_rb.html +56 -0
- data/doc/lib/org-ruby/regexp_helper_rb.html +54 -0
- data/doc/lib/org-ruby/textile_output_buffer_rb.html +54 -0
- data/doc/lib/org-ruby/textile_symbol_replace_rb.html +54 -0
- data/doc/lib/org-ruby_rb.html +52 -0
- data/doc/rdoc.css +763 -0
- data/lib/org-ruby.rb +1 -1
- data/lib/org-ruby/headline.rb +2 -2
- data/lib/org-ruby/html_output_buffer.rb +62 -5
- data/lib/org-ruby/html_symbol_replace.rb +345 -0
- data/lib/org-ruby/line.rb +20 -9
- data/lib/org-ruby/output_buffer.rb +8 -1
- data/lib/org-ruby/parser.rb +47 -19
- data/lib/org-ruby/regexp_helper.rb +16 -0
- data/lib/org-ruby/textile_output_buffer.rb +37 -2
- data/lib/org-ruby/textile_symbol_replace.rb +345 -0
- data/org-ruby.gemspec +41 -0
- data/spec/headline_spec.rb +5 -0
- data/spec/html_examples/advanced-code.html +10 -0
- data/spec/html_examples/advanced-code.org +13 -0
- data/spec/html_examples/blockcomment.html +3 -0
- data/spec/html_examples/blockcomment.org +15 -0
- data/spec/html_examples/center.html +6 -0
- data/spec/html_examples/center.org +7 -0
- data/spec/html_examples/deflist.html +6 -0
- data/spec/html_examples/deflist.org +6 -0
- data/spec/html_examples/footnotes.html +10 -0
- data/spec/html_examples/footnotes.org +7 -0
- data/spec/html_examples/inline-formatting.html +8 -0
- data/spec/html_examples/inline-formatting.org +10 -0
- data/spec/html_examples/inline-images.html +1 -1
- data/spec/html_examples/lists.html +4 -0
- data/spec/html_examples/lists.org +11 -0
- data/spec/html_examples/subsupscript-nil.html +3 -0
- data/spec/html_examples/subsupscript-nil.org +6 -0
- data/spec/html_examples/subsupscript.html +3 -0
- data/spec/html_examples/subsupscript.org +5 -0
- data/spec/html_examples/tables.html +15 -0
- data/spec/html_examples/tables.org +24 -0
- data/spec/line_spec.rb +17 -13
- data/spec/spec_helper.rb +1 -2
- data/spec/textile_examples/center.org +7 -0
- data/spec/textile_examples/center.textile +6 -0
- data/spec/textile_examples/footnotes.org +7 -0
- data/spec/textile_examples/footnotes.textile +8 -0
- data/spec/textile_examples/tables.org +24 -0
- data/spec/textile_examples/tables.textile +17 -0
- data/util/gen-special-replace.el +37 -0
- metadata +111 -19
- data/.gitignore +0 -1
| @@ -0,0 +1,54 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?>
         | 
| 2 | 
            +
            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
         | 
| 3 | 
            +
              "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
         | 
| 6 | 
            +
            <head>
         | 
| 7 | 
            +
              <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
         | 
| 8 | 
            +
             | 
| 9 | 
            +
              <title>File: output_buffer.rb [org-ruby-0.6.0 Documentation]</title>
         | 
| 10 | 
            +
             | 
| 11 | 
            +
              <link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet" />
         | 
| 12 | 
            +
             | 
| 13 | 
            +
              <script src="../../js/jquery.js" type="text/javascript"
         | 
| 14 | 
            +
                charset="utf-8"></script>
         | 
| 15 | 
            +
              <script src="../../js/thickbox-compressed.js" type="text/javascript"
         | 
| 16 | 
            +
                charset="utf-8"></script>
         | 
| 17 | 
            +
              <script src="../../js/quicksearch.js" type="text/javascript"
         | 
| 18 | 
            +
                charset="utf-8"></script>
         | 
| 19 | 
            +
              <script src="../../js/darkfish.js" type="text/javascript"
         | 
| 20 | 
            +
                charset="utf-8"></script>
         | 
| 21 | 
            +
            </head>
         | 
| 22 | 
            +
             | 
| 23 | 
            +
            <body class="file file-popup">
         | 
| 24 | 
            +
              <div id="metadata">
         | 
| 25 | 
            +
                <dl>
         | 
| 26 | 
            +
                  <dt class="modified-date">Last Modified</dt>
         | 
| 27 | 
            +
                  <dd class="modified-date">Sat Sep 03 11:46:23 -0700 2011</dd>
         | 
| 28 | 
            +
             | 
| 29 | 
            +
                  
         | 
| 30 | 
            +
                  <dt class="requires">Requires</dt>
         | 
| 31 | 
            +
                  <dd class="requires">
         | 
| 32 | 
            +
                    <ul>
         | 
| 33 | 
            +
                    
         | 
| 34 | 
            +
                      <li>logger</li>
         | 
| 35 | 
            +
                    
         | 
| 36 | 
            +
                    </ul>
         | 
| 37 | 
            +
                  </dd>
         | 
| 38 | 
            +
                  
         | 
| 39 | 
            +
             | 
| 40 | 
            +
                  
         | 
| 41 | 
            +
                </dl>
         | 
| 42 | 
            +
              </div>
         | 
| 43 | 
            +
             | 
| 44 | 
            +
              <div id="documentation">
         | 
| 45 | 
            +
                
         | 
| 46 | 
            +
                <div class="description">
         | 
| 47 | 
            +
                  <h2>Description</h2>
         | 
| 48 | 
            +
                  
         | 
| 49 | 
            +
                </div>
         | 
| 50 | 
            +
                
         | 
| 51 | 
            +
              </div>
         | 
| 52 | 
            +
            </body>
         | 
| 53 | 
            +
            </html>
         | 
| 54 | 
            +
             | 
| @@ -0,0 +1,56 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?>
         | 
| 2 | 
            +
            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
         | 
| 3 | 
            +
              "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
         | 
| 6 | 
            +
            <head>
         | 
| 7 | 
            +
              <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
         | 
| 8 | 
            +
             | 
| 9 | 
            +
              <title>File: parser.rb [org-ruby-0.6.0 Documentation]</title>
         | 
| 10 | 
            +
             | 
| 11 | 
            +
              <link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet" />
         | 
| 12 | 
            +
             | 
| 13 | 
            +
              <script src="../../js/jquery.js" type="text/javascript"
         | 
| 14 | 
            +
                charset="utf-8"></script>
         | 
| 15 | 
            +
              <script src="../../js/thickbox-compressed.js" type="text/javascript"
         | 
| 16 | 
            +
                charset="utf-8"></script>
         | 
| 17 | 
            +
              <script src="../../js/quicksearch.js" type="text/javascript"
         | 
| 18 | 
            +
                charset="utf-8"></script>
         | 
| 19 | 
            +
              <script src="../../js/darkfish.js" type="text/javascript"
         | 
| 20 | 
            +
                charset="utf-8"></script>
         | 
| 21 | 
            +
            </head>
         | 
| 22 | 
            +
             | 
| 23 | 
            +
            <body class="file file-popup">
         | 
| 24 | 
            +
              <div id="metadata">
         | 
| 25 | 
            +
                <dl>
         | 
| 26 | 
            +
                  <dt class="modified-date">Last Modified</dt>
         | 
| 27 | 
            +
                  <dd class="modified-date">Sat Sep 03 11:51:42 -0700 2011</dd>
         | 
| 28 | 
            +
             | 
| 29 | 
            +
                  
         | 
| 30 | 
            +
                  <dt class="requires">Requires</dt>
         | 
| 31 | 
            +
                  <dd class="requires">
         | 
| 32 | 
            +
                    <ul>
         | 
| 33 | 
            +
                    
         | 
| 34 | 
            +
                      <li>rubygems</li>
         | 
| 35 | 
            +
                    
         | 
| 36 | 
            +
                      <li>rubypants</li>
         | 
| 37 | 
            +
                    
         | 
| 38 | 
            +
                    </ul>
         | 
| 39 | 
            +
                  </dd>
         | 
| 40 | 
            +
                  
         | 
| 41 | 
            +
             | 
| 42 | 
            +
                  
         | 
| 43 | 
            +
                </dl>
         | 
| 44 | 
            +
              </div>
         | 
| 45 | 
            +
             | 
| 46 | 
            +
              <div id="documentation">
         | 
| 47 | 
            +
                
         | 
| 48 | 
            +
                <div class="description">
         | 
| 49 | 
            +
                  <h2>Description</h2>
         | 
| 50 | 
            +
                  
         | 
| 51 | 
            +
                </div>
         | 
| 52 | 
            +
                
         | 
| 53 | 
            +
              </div>
         | 
| 54 | 
            +
            </body>
         | 
| 55 | 
            +
            </html>
         | 
| 56 | 
            +
             | 
| @@ -0,0 +1,54 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?>
         | 
| 2 | 
            +
            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
         | 
| 3 | 
            +
              "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
         | 
| 6 | 
            +
            <head>
         | 
| 7 | 
            +
              <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
         | 
| 8 | 
            +
             | 
| 9 | 
            +
              <title>File: regexp_helper.rb [org-ruby-0.6.0 Documentation]</title>
         | 
| 10 | 
            +
             | 
| 11 | 
            +
              <link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet" />
         | 
| 12 | 
            +
             | 
| 13 | 
            +
              <script src="../../js/jquery.js" type="text/javascript"
         | 
| 14 | 
            +
                charset="utf-8"></script>
         | 
| 15 | 
            +
              <script src="../../js/thickbox-compressed.js" type="text/javascript"
         | 
| 16 | 
            +
                charset="utf-8"></script>
         | 
| 17 | 
            +
              <script src="../../js/quicksearch.js" type="text/javascript"
         | 
| 18 | 
            +
                charset="utf-8"></script>
         | 
| 19 | 
            +
              <script src="../../js/darkfish.js" type="text/javascript"
         | 
| 20 | 
            +
                charset="utf-8"></script>
         | 
| 21 | 
            +
            </head>
         | 
| 22 | 
            +
             | 
| 23 | 
            +
            <body class="file file-popup">
         | 
| 24 | 
            +
              <div id="metadata">
         | 
| 25 | 
            +
                <dl>
         | 
| 26 | 
            +
                  <dt class="modified-date">Last Modified</dt>
         | 
| 27 | 
            +
                  <dd class="modified-date">Sat Sep 03 11:46:23 -0700 2011</dd>
         | 
| 28 | 
            +
             | 
| 29 | 
            +
                  
         | 
| 30 | 
            +
                  <dt class="requires">Requires</dt>
         | 
| 31 | 
            +
                  <dd class="requires">
         | 
| 32 | 
            +
                    <ul>
         | 
| 33 | 
            +
                    
         | 
| 34 | 
            +
                      <li>logger</li>
         | 
| 35 | 
            +
                    
         | 
| 36 | 
            +
                    </ul>
         | 
| 37 | 
            +
                  </dd>
         | 
| 38 | 
            +
                  
         | 
| 39 | 
            +
             | 
| 40 | 
            +
                  
         | 
| 41 | 
            +
                </dl>
         | 
| 42 | 
            +
              </div>
         | 
| 43 | 
            +
             | 
| 44 | 
            +
              <div id="documentation">
         | 
| 45 | 
            +
                
         | 
| 46 | 
            +
                <div class="description">
         | 
| 47 | 
            +
                  <h2>Description</h2>
         | 
| 48 | 
            +
                  
         | 
| 49 | 
            +
                </div>
         | 
| 50 | 
            +
                
         | 
| 51 | 
            +
              </div>
         | 
| 52 | 
            +
            </body>
         | 
| 53 | 
            +
            </html>
         | 
| 54 | 
            +
             | 
| @@ -0,0 +1,54 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?>
         | 
| 2 | 
            +
            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
         | 
| 3 | 
            +
              "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
         | 
| 6 | 
            +
            <head>
         | 
| 7 | 
            +
              <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
         | 
| 8 | 
            +
             | 
| 9 | 
            +
              <title>File: textile_output_buffer.rb [org-ruby-0.6.0 Documentation]</title>
         | 
| 10 | 
            +
             | 
| 11 | 
            +
              <link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet" />
         | 
| 12 | 
            +
             | 
| 13 | 
            +
              <script src="../../js/jquery.js" type="text/javascript"
         | 
| 14 | 
            +
                charset="utf-8"></script>
         | 
| 15 | 
            +
              <script src="../../js/thickbox-compressed.js" type="text/javascript"
         | 
| 16 | 
            +
                charset="utf-8"></script>
         | 
| 17 | 
            +
              <script src="../../js/quicksearch.js" type="text/javascript"
         | 
| 18 | 
            +
                charset="utf-8"></script>
         | 
| 19 | 
            +
              <script src="../../js/darkfish.js" type="text/javascript"
         | 
| 20 | 
            +
                charset="utf-8"></script>
         | 
| 21 | 
            +
            </head>
         | 
| 22 | 
            +
             | 
| 23 | 
            +
            <body class="file file-popup">
         | 
| 24 | 
            +
              <div id="metadata">
         | 
| 25 | 
            +
                <dl>
         | 
| 26 | 
            +
                  <dt class="modified-date">Last Modified</dt>
         | 
| 27 | 
            +
                  <dd class="modified-date">Sat Sep 03 11:46:23 -0700 2011</dd>
         | 
| 28 | 
            +
             | 
| 29 | 
            +
                  
         | 
| 30 | 
            +
                  <dt class="requires">Requires</dt>
         | 
| 31 | 
            +
                  <dd class="requires">
         | 
| 32 | 
            +
                    <ul>
         | 
| 33 | 
            +
                    
         | 
| 34 | 
            +
                      <li>stringio</li>
         | 
| 35 | 
            +
                    
         | 
| 36 | 
            +
                    </ul>
         | 
| 37 | 
            +
                  </dd>
         | 
| 38 | 
            +
                  
         | 
| 39 | 
            +
             | 
| 40 | 
            +
                  
         | 
| 41 | 
            +
                </dl>
         | 
| 42 | 
            +
              </div>
         | 
| 43 | 
            +
             | 
| 44 | 
            +
              <div id="documentation">
         | 
| 45 | 
            +
                
         | 
| 46 | 
            +
                <div class="description">
         | 
| 47 | 
            +
                  <h2>Description</h2>
         | 
| 48 | 
            +
                  
         | 
| 49 | 
            +
                </div>
         | 
| 50 | 
            +
                
         | 
| 51 | 
            +
              </div>
         | 
| 52 | 
            +
            </body>
         | 
| 53 | 
            +
            </html>
         | 
| 54 | 
            +
             | 
| @@ -0,0 +1,54 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?>
         | 
| 2 | 
            +
            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
         | 
| 3 | 
            +
              "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
         | 
| 6 | 
            +
            <head>
         | 
| 7 | 
            +
              <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
         | 
| 8 | 
            +
             | 
| 9 | 
            +
              <title>File: textile_symbol_replace.rb [org-ruby-0.6.0 Documentation]</title>
         | 
| 10 | 
            +
             | 
| 11 | 
            +
              <link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet" />
         | 
| 12 | 
            +
             | 
| 13 | 
            +
              <script src="../../js/jquery.js" type="text/javascript"
         | 
| 14 | 
            +
                charset="utf-8"></script>
         | 
| 15 | 
            +
              <script src="../../js/thickbox-compressed.js" type="text/javascript"
         | 
| 16 | 
            +
                charset="utf-8"></script>
         | 
| 17 | 
            +
              <script src="../../js/quicksearch.js" type="text/javascript"
         | 
| 18 | 
            +
                charset="utf-8"></script>
         | 
| 19 | 
            +
              <script src="../../js/darkfish.js" type="text/javascript"
         | 
| 20 | 
            +
                charset="utf-8"></script>
         | 
| 21 | 
            +
            </head>
         | 
| 22 | 
            +
             | 
| 23 | 
            +
            <body class="file file-popup">
         | 
| 24 | 
            +
              <div id="metadata">
         | 
| 25 | 
            +
                <dl>
         | 
| 26 | 
            +
                  <dt class="modified-date">Last Modified</dt>
         | 
| 27 | 
            +
                  <dd class="modified-date">Sat Sep 03 11:46:23 -0700 2011</dd>
         | 
| 28 | 
            +
             | 
| 29 | 
            +
                  
         | 
| 30 | 
            +
                  <dt class="requires">Requires</dt>
         | 
| 31 | 
            +
                  <dd class="requires">
         | 
| 32 | 
            +
                    <ul>
         | 
| 33 | 
            +
                    
         | 
| 34 | 
            +
                    </ul>
         | 
| 35 | 
            +
                  </dd>
         | 
| 36 | 
            +
                  
         | 
| 37 | 
            +
             | 
| 38 | 
            +
                  
         | 
| 39 | 
            +
                </dl>
         | 
| 40 | 
            +
              </div>
         | 
| 41 | 
            +
             | 
| 42 | 
            +
              <div id="documentation">
         | 
| 43 | 
            +
                
         | 
| 44 | 
            +
                <div class="description">
         | 
| 45 | 
            +
                  <h2>Description</h2>
         | 
| 46 | 
            +
                  
         | 
| 47 | 
            +
            <p>Autogenerated by util/gen-special-replace.el</p>
         | 
| 48 | 
            +
             | 
| 49 | 
            +
                </div>
         | 
| 50 | 
            +
                
         | 
| 51 | 
            +
              </div>
         | 
| 52 | 
            +
            </body>
         | 
| 53 | 
            +
            </html>
         | 
| 54 | 
            +
             | 
| @@ -0,0 +1,52 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?>
         | 
| 2 | 
            +
            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
         | 
| 3 | 
            +
              "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
         | 
| 6 | 
            +
            <head>
         | 
| 7 | 
            +
              <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
         | 
| 8 | 
            +
             | 
| 9 | 
            +
              <title>File: org-ruby.rb [org-ruby-0.6.0 Documentation]</title>
         | 
| 10 | 
            +
             | 
| 11 | 
            +
              <link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet" />
         | 
| 12 | 
            +
             | 
| 13 | 
            +
              <script src="../js/jquery.js" type="text/javascript"
         | 
| 14 | 
            +
                charset="utf-8"></script>
         | 
| 15 | 
            +
              <script src="../js/thickbox-compressed.js" type="text/javascript"
         | 
| 16 | 
            +
                charset="utf-8"></script>
         | 
| 17 | 
            +
              <script src="../js/quicksearch.js" type="text/javascript"
         | 
| 18 | 
            +
                charset="utf-8"></script>
         | 
| 19 | 
            +
              <script src="../js/darkfish.js" type="text/javascript"
         | 
| 20 | 
            +
                charset="utf-8"></script>
         | 
| 21 | 
            +
            </head>
         | 
| 22 | 
            +
             | 
| 23 | 
            +
            <body class="file file-popup">
         | 
| 24 | 
            +
              <div id="metadata">
         | 
| 25 | 
            +
                <dl>
         | 
| 26 | 
            +
                  <dt class="modified-date">Last Modified</dt>
         | 
| 27 | 
            +
                  <dd class="modified-date">Sat Sep 03 11:53:17 -0700 2011</dd>
         | 
| 28 | 
            +
             | 
| 29 | 
            +
                  
         | 
| 30 | 
            +
                  <dt class="requires">Requires</dt>
         | 
| 31 | 
            +
                  <dd class="requires">
         | 
| 32 | 
            +
                    <ul>
         | 
| 33 | 
            +
                    
         | 
| 34 | 
            +
                    </ul>
         | 
| 35 | 
            +
                  </dd>
         | 
| 36 | 
            +
                  
         | 
| 37 | 
            +
             | 
| 38 | 
            +
                  
         | 
| 39 | 
            +
                </dl>
         | 
| 40 | 
            +
              </div>
         | 
| 41 | 
            +
             | 
| 42 | 
            +
              <div id="documentation">
         | 
| 43 | 
            +
                
         | 
| 44 | 
            +
                <div class="description">
         | 
| 45 | 
            +
                  <h2>Description</h2>
         | 
| 46 | 
            +
                  
         | 
| 47 | 
            +
                </div>
         | 
| 48 | 
            +
                
         | 
| 49 | 
            +
              </div>
         | 
| 50 | 
            +
            </body>
         | 
| 51 | 
            +
            </html>
         | 
| 52 | 
            +
             | 
    
        data/doc/rdoc.css
    ADDED
    
    | @@ -0,0 +1,763 @@ | |
| 1 | 
            +
            /*
         | 
| 2 | 
            +
             * "Darkfish" Rdoc CSS
         | 
| 3 | 
            +
             * $Id: rdoc.css 54 2009-01-27 01:09:48Z deveiant $
         | 
| 4 | 
            +
             *
         | 
| 5 | 
            +
             * Author: Michael Granger <ged@FaerieMUD.org>
         | 
| 6 | 
            +
             *
         | 
| 7 | 
            +
             */
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            /* Base Green is: #6C8C22 */
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            *{ padding: 0; margin: 0; }
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            body {
         | 
| 14 | 
            +
              background: #efefef;
         | 
| 15 | 
            +
              font: 14px "Helvetica Neue", Helvetica, Tahoma, sans-serif;
         | 
| 16 | 
            +
            }
         | 
| 17 | 
            +
            body.class, body.module, body.file {
         | 
| 18 | 
            +
              margin-left: 40px;
         | 
| 19 | 
            +
            }
         | 
| 20 | 
            +
            body.file-popup {
         | 
| 21 | 
            +
              font-size: 90%;
         | 
| 22 | 
            +
              margin-left: 0;
         | 
| 23 | 
            +
            }
         | 
| 24 | 
            +
             | 
| 25 | 
            +
            h1 {
         | 
| 26 | 
            +
              font-size: 300%;
         | 
| 27 | 
            +
              text-shadow: rgba(135,145,135,0.65) 2px 2px 3px;
         | 
| 28 | 
            +
              color: #6C8C22;
         | 
| 29 | 
            +
            }
         | 
| 30 | 
            +
            h2,h3,h4 { margin-top: 1.5em; }
         | 
| 31 | 
            +
             | 
| 32 | 
            +
            :link,
         | 
| 33 | 
            +
            :visited {
         | 
| 34 | 
            +
              color: #6C8C22;
         | 
| 35 | 
            +
              text-decoration: none;
         | 
| 36 | 
            +
            }
         | 
| 37 | 
            +
            :link:hover,
         | 
| 38 | 
            +
            :visited:hover {
         | 
| 39 | 
            +
              border-bottom: 1px dotted #6C8C22;
         | 
| 40 | 
            +
            }
         | 
| 41 | 
            +
             | 
| 42 | 
            +
            pre {
         | 
| 43 | 
            +
              background: #ddd;
         | 
| 44 | 
            +
              padding: 0.5em 0;
         | 
| 45 | 
            +
            }
         | 
| 46 | 
            +
             | 
| 47 | 
            +
             | 
| 48 | 
            +
            /* @group Generic Classes */
         | 
| 49 | 
            +
             | 
| 50 | 
            +
            .initially-hidden {
         | 
| 51 | 
            +
              display: none;
         | 
| 52 | 
            +
            }
         | 
| 53 | 
            +
             | 
| 54 | 
            +
            .quicksearch-field {
         | 
| 55 | 
            +
              width: 98%;
         | 
| 56 | 
            +
              background: #ddd;
         | 
| 57 | 
            +
              border: 1px solid #aaa;
         | 
| 58 | 
            +
              height: 1.5em;
         | 
| 59 | 
            +
              -webkit-border-radius: 4px;
         | 
| 60 | 
            +
            }
         | 
| 61 | 
            +
            .quicksearch-field:focus {
         | 
| 62 | 
            +
              background: #f1edba;
         | 
| 63 | 
            +
            }
         | 
| 64 | 
            +
             | 
| 65 | 
            +
            .missing-docs {
         | 
| 66 | 
            +
              font-size: 120%;
         | 
| 67 | 
            +
              background: white url(images/wrench_orange.png) no-repeat 4px center;
         | 
| 68 | 
            +
              color: #ccc;
         | 
| 69 | 
            +
              line-height: 2em;
         | 
| 70 | 
            +
              border: 1px solid #d00;
         | 
| 71 | 
            +
              opacity: 1;
         | 
| 72 | 
            +
              padding-left: 20px;
         | 
| 73 | 
            +
              text-indent: 24px;
         | 
| 74 | 
            +
              letter-spacing: 3px;
         | 
| 75 | 
            +
              font-weight: bold;
         | 
| 76 | 
            +
              -webkit-border-radius: 5px;
         | 
| 77 | 
            +
              -moz-border-radius: 5px;
         | 
| 78 | 
            +
            }
         | 
| 79 | 
            +
             | 
| 80 | 
            +
            .target-section {
         | 
| 81 | 
            +
              border: 2px solid #dcce90;
         | 
| 82 | 
            +
              border-left-width: 8px;
         | 
| 83 | 
            +
              padding: 0 1em;
         | 
| 84 | 
            +
              background: #fff3c2;
         | 
| 85 | 
            +
            }
         | 
| 86 | 
            +
             | 
| 87 | 
            +
            /* @end */
         | 
| 88 | 
            +
             | 
| 89 | 
            +
             | 
| 90 | 
            +
            /* @group Index Page, Standalone file pages */
         | 
| 91 | 
            +
            body.indexpage {
         | 
| 92 | 
            +
              margin: 1em 3em;
         | 
| 93 | 
            +
            }
         | 
| 94 | 
            +
            body.indexpage p,
         | 
| 95 | 
            +
            body.indexpage div,
         | 
| 96 | 
            +
            body.file p {
         | 
| 97 | 
            +
              margin: 1em 0;
         | 
| 98 | 
            +
            }
         | 
| 99 | 
            +
             | 
| 100 | 
            +
            .indexpage .rdoc-list p, .file .rdoc-list p {
         | 
| 101 | 
            +
              margin: 0em 0;
         | 
| 102 | 
            +
            }
         | 
| 103 | 
            +
             | 
| 104 | 
            +
            .indexpage ol,
         | 
| 105 | 
            +
            .file #documentation ol {
         | 
| 106 | 
            +
              line-height: 160%;
         | 
| 107 | 
            +
            }
         | 
| 108 | 
            +
             | 
| 109 | 
            +
            .indexpage ul,
         | 
| 110 | 
            +
            .file #documentation ul {
         | 
| 111 | 
            +
              line-height: 160%;
         | 
| 112 | 
            +
              list-style: none;
         | 
| 113 | 
            +
            }
         | 
| 114 | 
            +
            .indexpage ul :link,
         | 
| 115 | 
            +
            .indexpage ul :visited {
         | 
| 116 | 
            +
              font-size: 16px;
         | 
| 117 | 
            +
            }
         | 
| 118 | 
            +
             | 
| 119 | 
            +
            .indexpage li,
         | 
| 120 | 
            +
            .file #documentation li {
         | 
| 121 | 
            +
              padding-left: 20px;
         | 
| 122 | 
            +
            }
         | 
| 123 | 
            +
             | 
| 124 | 
            +
            .indexpage ol,
         | 
| 125 | 
            +
            .file #documentation ol {
         | 
| 126 | 
            +
              margin-left: 20px;
         | 
| 127 | 
            +
            }
         | 
| 128 | 
            +
             | 
| 129 | 
            +
            .indexpage ol > li,
         | 
| 130 | 
            +
            .file #documentation ol > li {
         | 
| 131 | 
            +
              padding-left: 0;
         | 
| 132 | 
            +
            }
         | 
| 133 | 
            +
             | 
| 134 | 
            +
            .indexpage ul > li,
         | 
| 135 | 
            +
            .file #documentation ul > li {
         | 
| 136 | 
            +
              background: url(images/bullet_black.png) no-repeat left 4px;
         | 
| 137 | 
            +
            }
         | 
| 138 | 
            +
            .indexpage li.module {
         | 
| 139 | 
            +
              background: url(images/package.png) no-repeat left 4px;
         | 
| 140 | 
            +
            }
         | 
| 141 | 
            +
            .indexpage li.class {
         | 
| 142 | 
            +
              background: url(images/ruby.png) no-repeat left 4px;
         | 
| 143 | 
            +
            }
         | 
| 144 | 
            +
            .indexpage li.file {
         | 
| 145 | 
            +
              background: url(images/page_white_text.png) no-repeat left 4px;
         | 
| 146 | 
            +
            }
         | 
| 147 | 
            +
            .file li p,
         | 
| 148 | 
            +
            .indexpage li p {
         | 
| 149 | 
            +
              margin: 0 0;
         | 
| 150 | 
            +
            }
         | 
| 151 | 
            +
             | 
| 152 | 
            +
            /* @end */
         | 
| 153 | 
            +
             | 
| 154 | 
            +
            /* @group Top-Level Structure */
         | 
| 155 | 
            +
             | 
| 156 | 
            +
            .class #metadata,
         | 
| 157 | 
            +
            .file #metadata,
         | 
| 158 | 
            +
            .module #metadata {
         | 
| 159 | 
            +
              float: left;
         | 
| 160 | 
            +
              width: 260px;
         | 
| 161 | 
            +
            }
         | 
| 162 | 
            +
             | 
| 163 | 
            +
            .class #documentation,
         | 
| 164 | 
            +
            .file #documentation,
         | 
| 165 | 
            +
            .module #documentation {
         | 
| 166 | 
            +
              margin: 2em 1em 5em 300px;
         | 
| 167 | 
            +
              min-width: 340px;
         | 
| 168 | 
            +
            }
         | 
| 169 | 
            +
             | 
| 170 | 
            +
            .file #metadata {
         | 
| 171 | 
            +
              margin: 0.8em;
         | 
| 172 | 
            +
            }
         | 
| 173 | 
            +
             | 
| 174 | 
            +
            #validator-badges {
         | 
| 175 | 
            +
              clear: both;
         | 
| 176 | 
            +
              margin: 1em 1em 2em;
         | 
| 177 | 
            +
            }
         | 
| 178 | 
            +
             | 
| 179 | 
            +
            /* @end */
         | 
| 180 | 
            +
             | 
| 181 | 
            +
            /* @group Metadata Section */
         | 
| 182 | 
            +
            #metadata .section {
         | 
| 183 | 
            +
              background-color: #dedede;
         | 
| 184 | 
            +
              -moz-border-radius: 5px;
         | 
| 185 | 
            +
              -webkit-border-radius: 5px;
         | 
| 186 | 
            +
              border: 1px solid #aaa;
         | 
| 187 | 
            +
              margin: 0 8px 16px;
         | 
| 188 | 
            +
              font-size: 90%;
         | 
| 189 | 
            +
              overflow: hidden;
         | 
| 190 | 
            +
            }
         | 
| 191 | 
            +
            #metadata h3.section-header {
         | 
| 192 | 
            +
              margin: 0;
         | 
| 193 | 
            +
              padding: 2px 8px;
         | 
| 194 | 
            +
              background: #ccc;
         | 
| 195 | 
            +
              color: #666;
         | 
| 196 | 
            +
              -moz-border-radius-topleft: 4px;
         | 
| 197 | 
            +
              -moz-border-radius-topright: 4px;
         | 
| 198 | 
            +
              -webkit-border-top-left-radius: 4px;
         | 
| 199 | 
            +
              -webkit-border-top-right-radius: 4px;
         | 
| 200 | 
            +
              border-bottom: 1px solid #aaa;
         | 
| 201 | 
            +
            }
         | 
| 202 | 
            +
            #metadata #home-section h3.section-header {
         | 
| 203 | 
            +
              border-bottom: 0;
         | 
| 204 | 
            +
            }
         | 
| 205 | 
            +
             | 
| 206 | 
            +
            #metadata ul,
         | 
| 207 | 
            +
            #metadata dl,
         | 
| 208 | 
            +
            #metadata p {
         | 
| 209 | 
            +
              padding:  8px;
         | 
| 210 | 
            +
              list-style: none;
         | 
| 211 | 
            +
            }
         | 
| 212 | 
            +
             | 
| 213 | 
            +
            #file-metadata ul {
         | 
| 214 | 
            +
              padding-left: 28px;
         | 
| 215 | 
            +
              list-style-image: url(images/page_green.png);
         | 
| 216 | 
            +
            }
         | 
| 217 | 
            +
             | 
| 218 | 
            +
            dl.svninfo {
         | 
| 219 | 
            +
              color: #666;
         | 
| 220 | 
            +
              margin: 0;
         | 
| 221 | 
            +
            }
         | 
| 222 | 
            +
            dl.svninfo dt {
         | 
| 223 | 
            +
              font-weight: bold;
         | 
| 224 | 
            +
            }
         | 
| 225 | 
            +
             | 
| 226 | 
            +
            ul.link-list li {
         | 
| 227 | 
            +
              white-space: nowrap;
         | 
| 228 | 
            +
            }
         | 
| 229 | 
            +
            ul.link-list .type {
         | 
| 230 | 
            +
              font-size: 8px;
         | 
| 231 | 
            +
              text-transform: uppercase;
         | 
| 232 | 
            +
              color: white;
         | 
| 233 | 
            +
              background: #969696;
         | 
| 234 | 
            +
              padding: 2px 4px;
         | 
| 235 | 
            +
              -webkit-border-radius: 5px;
         | 
| 236 | 
            +
            }
         | 
| 237 | 
            +
             | 
| 238 | 
            +
            /* @end */
         | 
| 239 | 
            +
             | 
| 240 | 
            +
             | 
| 241 | 
            +
            /* @group Project Metadata Section */
         | 
| 242 | 
            +
            #project-metadata {
         | 
| 243 | 
            +
              margin-top: 3em;
         | 
| 244 | 
            +
            }
         | 
| 245 | 
            +
             | 
| 246 | 
            +
            .file #project-metadata {
         | 
| 247 | 
            +
              margin-top: 0em;
         | 
| 248 | 
            +
            }
         | 
| 249 | 
            +
             | 
| 250 | 
            +
            #project-metadata .section {
         | 
| 251 | 
            +
              border: 1px solid #aaa;
         | 
| 252 | 
            +
            }
         | 
| 253 | 
            +
            #project-metadata h3.section-header {
         | 
| 254 | 
            +
              border-bottom: 1px solid #aaa;
         | 
| 255 | 
            +
              position: relative;
         | 
| 256 | 
            +
            }
         | 
| 257 | 
            +
            #project-metadata h3.section-header .search-toggle {
         | 
| 258 | 
            +
              position: absolute;
         | 
| 259 | 
            +
              right: 5px;
         | 
| 260 | 
            +
            }
         | 
| 261 | 
            +
             | 
| 262 | 
            +
             | 
| 263 | 
            +
            #project-metadata form {
         | 
| 264 | 
            +
              color: #777;
         | 
| 265 | 
            +
              background: #ccc;
         | 
| 266 | 
            +
              padding: 8px 8px 16px;
         | 
| 267 | 
            +
              border-bottom: 1px solid #bbb;
         | 
| 268 | 
            +
            }
         | 
| 269 | 
            +
            #project-metadata fieldset {
         | 
| 270 | 
            +
              border: 0;
         | 
| 271 | 
            +
            }
         | 
| 272 | 
            +
             | 
| 273 | 
            +
            #no-class-search-results {
         | 
| 274 | 
            +
              margin: 0 auto 1em;
         | 
| 275 | 
            +
              text-align: center;
         | 
| 276 | 
            +
              font-size: 14px;
         | 
| 277 | 
            +
              font-weight: bold;
         | 
| 278 | 
            +
              color: #aaa;
         | 
| 279 | 
            +
            }
         | 
| 280 | 
            +
             | 
| 281 | 
            +
            /* @end */
         | 
| 282 | 
            +
             | 
| 283 | 
            +
             | 
| 284 | 
            +
            /* @group Documentation Section */
         | 
| 285 | 
            +
            .description {
         | 
| 286 | 
            +
              font-size: 100%;
         | 
| 287 | 
            +
              color: #333;
         | 
| 288 | 
            +
            }
         | 
| 289 | 
            +
             | 
| 290 | 
            +
            .description p {
         | 
| 291 | 
            +
              margin: 1em 0.4em;
         | 
| 292 | 
            +
            }
         | 
| 293 | 
            +
             | 
| 294 | 
            +
            .description li p {
         | 
| 295 | 
            +
              margin: 0;
         | 
| 296 | 
            +
            }
         | 
| 297 | 
            +
             | 
| 298 | 
            +
            .description ul {
         | 
| 299 | 
            +
              margin-left: 1.5em;
         | 
| 300 | 
            +
            }
         | 
| 301 | 
            +
            .description ul li {
         | 
| 302 | 
            +
              line-height: 1.4em;
         | 
| 303 | 
            +
            }
         | 
| 304 | 
            +
             | 
| 305 | 
            +
            .description dl,
         | 
| 306 | 
            +
            #documentation dl {
         | 
| 307 | 
            +
              margin: 8px 1.5em;
         | 
| 308 | 
            +
              border: 1px solid #ccc;
         | 
| 309 | 
            +
            }
         | 
| 310 | 
            +
            .description dl {
         | 
| 311 | 
            +
              font-size: 14px;
         | 
| 312 | 
            +
            }
         | 
| 313 | 
            +
             | 
| 314 | 
            +
            .description dt,
         | 
| 315 | 
            +
            #documentation dt {
         | 
| 316 | 
            +
              padding: 2px 4px;
         | 
| 317 | 
            +
              font-weight: bold;
         | 
| 318 | 
            +
              background: #ddd;
         | 
| 319 | 
            +
            }
         | 
| 320 | 
            +
            .description dd,
         | 
| 321 | 
            +
            #documentation dd  {
         | 
| 322 | 
            +
              padding: 2px 12px;
         | 
| 323 | 
            +
            }
         | 
| 324 | 
            +
            .description dd + dt,
         | 
| 325 | 
            +
            #documentation dd + dt {
         | 
| 326 | 
            +
              margin-top: 0.7em;
         | 
| 327 | 
            +
            }
         | 
| 328 | 
            +
             | 
| 329 | 
            +
            #documentation .section {
         | 
| 330 | 
            +
              font-size: 90%;
         | 
| 331 | 
            +
            }
         | 
| 332 | 
            +
             | 
| 333 | 
            +
            #documentation h2.section-header {
         | 
| 334 | 
            +
              margin-top: 2em;
         | 
| 335 | 
            +
              padding: 0.75em 0.5em;
         | 
| 336 | 
            +
              background: #ccc;
         | 
| 337 | 
            +
              color: #333;
         | 
| 338 | 
            +
              font-size: 175%;
         | 
| 339 | 
            +
              border: 1px solid #bbb;
         | 
| 340 | 
            +
              -moz-border-radius: 3px;
         | 
| 341 | 
            +
              -webkit-border-radius: 3px;
         | 
| 342 | 
            +
            }
         | 
| 343 | 
            +
             | 
| 344 | 
            +
            #documentation h3.section-header {
         | 
| 345 | 
            +
              margin-top: 2em;
         | 
| 346 | 
            +
              padding: 0.25em 0.5em;
         | 
| 347 | 
            +
              background-color: #dedede;
         | 
| 348 | 
            +
              color: #333;
         | 
| 349 | 
            +
              font-size: 150%;
         | 
| 350 | 
            +
              border: 1px solid #bbb;
         | 
| 351 | 
            +
              -moz-border-radius: 3px;
         | 
| 352 | 
            +
              -webkit-border-radius: 3px;
         | 
| 353 | 
            +
            }
         | 
| 354 | 
            +
             | 
| 355 | 
            +
            #constants-list > dl,
         | 
| 356 | 
            +
            #attributes-list > dl {
         | 
| 357 | 
            +
              margin: 1em 0 2em;
         | 
| 358 | 
            +
              border: 0;
         | 
| 359 | 
            +
            }
         | 
| 360 | 
            +
            #constants-list > dl dt,
         | 
| 361 | 
            +
            #attributes-list > dl dt {
         | 
| 362 | 
            +
              padding-left: 0;
         | 
| 363 | 
            +
              font-weight: bold;
         | 
| 364 | 
            +
              font-family: Monaco, "Andale Mono";
         | 
| 365 | 
            +
              background: inherit;
         | 
| 366 | 
            +
            }
         | 
| 367 | 
            +
            #constants-list > dl dt a,
         | 
| 368 | 
            +
            #attributes-list > dl dt a {
         | 
| 369 | 
            +
              color: inherit;
         | 
| 370 | 
            +
            }
         | 
| 371 | 
            +
            #constants-list > dl dd,
         | 
| 372 | 
            +
            #attributes-list > dl dd {
         | 
| 373 | 
            +
              margin: 0 0 1em 0;
         | 
| 374 | 
            +
              padding: 0;
         | 
| 375 | 
            +
              color: #666;
         | 
| 376 | 
            +
            }
         | 
| 377 | 
            +
             | 
| 378 | 
            +
            .documentation-section h2 {
         | 
| 379 | 
            +
              position: relative;
         | 
| 380 | 
            +
            }
         | 
| 381 | 
            +
             | 
| 382 | 
            +
            .documentation-section h2 a {
         | 
| 383 | 
            +
              position: absolute;
         | 
| 384 | 
            +
              top: 8px;
         | 
| 385 | 
            +
              right: 10px;
         | 
| 386 | 
            +
              font-size: 12px;
         | 
| 387 | 
            +
              color: #9b9877;
         | 
| 388 | 
            +
              visibility: hidden;
         | 
| 389 | 
            +
            }
         | 
| 390 | 
            +
             | 
| 391 | 
            +
            .documentation-section h2:hover a {
         | 
| 392 | 
            +
              visibility: visible;
         | 
| 393 | 
            +
            }
         | 
| 394 | 
            +
             | 
| 395 | 
            +
            /* @group Method Details */
         | 
| 396 | 
            +
             | 
| 397 | 
            +
            #documentation .method-source-code {
         | 
| 398 | 
            +
              display: none;
         | 
| 399 | 
            +
            }
         | 
| 400 | 
            +
             | 
| 401 | 
            +
            #documentation .method-detail {
         | 
| 402 | 
            +
              margin: 0.5em 0;
         | 
| 403 | 
            +
              padding: 0.5em 0;
         | 
| 404 | 
            +
              cursor: pointer;
         | 
| 405 | 
            +
            }
         | 
| 406 | 
            +
            #documentation .method-detail:hover {
         | 
| 407 | 
            +
              background-color: #f1edba;
         | 
| 408 | 
            +
            }
         | 
| 409 | 
            +
            #documentation .method-heading {
         | 
| 410 | 
            +
              position: relative;
         | 
| 411 | 
            +
              padding: 2px 4px 0 20px;
         | 
| 412 | 
            +
              font-size: 125%;
         | 
| 413 | 
            +
              font-weight: bold;
         | 
| 414 | 
            +
              color: #333;
         | 
| 415 | 
            +
              background: url(images/brick.png) no-repeat left bottom;
         | 
| 416 | 
            +
            }
         | 
| 417 | 
            +
            #documentation .method-heading :link,
         | 
| 418 | 
            +
            #documentation .method-heading :visited {
         | 
| 419 | 
            +
              color: inherit;
         | 
| 420 | 
            +
            }
         | 
| 421 | 
            +
            #documentation .method-click-advice {
         | 
| 422 | 
            +
              position: absolute;
         | 
| 423 | 
            +
              top: 2px;
         | 
| 424 | 
            +
              right: 5px;
         | 
| 425 | 
            +
              font-size: 10px;
         | 
| 426 | 
            +
              color: #9b9877;
         | 
| 427 | 
            +
              visibility: hidden;
         | 
| 428 | 
            +
              padding-right: 20px;
         | 
| 429 | 
            +
              line-height: 20px;
         | 
| 430 | 
            +
              background: url(images/zoom.png) no-repeat right top;
         | 
| 431 | 
            +
            }
         | 
| 432 | 
            +
            #documentation .method-detail:hover .method-click-advice {
         | 
| 433 | 
            +
              visibility: visible;
         | 
| 434 | 
            +
            }
         | 
| 435 | 
            +
             | 
| 436 | 
            +
            #documentation .method-alias .method-heading {
         | 
| 437 | 
            +
              color: #666;
         | 
| 438 | 
            +
              background: url(images/brick_link.png) no-repeat left bottom;
         | 
| 439 | 
            +
            }
         | 
| 440 | 
            +
             | 
| 441 | 
            +
            #documentation .method-description,
         | 
| 442 | 
            +
            #documentation .aliases {
         | 
| 443 | 
            +
              margin: 0 20px;
         | 
| 444 | 
            +
              color: #666;
         | 
| 445 | 
            +
            }
         | 
| 446 | 
            +
             | 
| 447 | 
            +
            #documentation .method-description p,
         | 
| 448 | 
            +
            #documentation .aliases p {
         | 
| 449 | 
            +
              line-height: 1.2em;
         | 
| 450 | 
            +
            }
         | 
| 451 | 
            +
             | 
| 452 | 
            +
            #documentation .aliases {
         | 
| 453 | 
            +
              padding-top: 4px;
         | 
| 454 | 
            +
              font-style: italic;
         | 
| 455 | 
            +
              cursor: default;
         | 
| 456 | 
            +
            }
         | 
| 457 | 
            +
            #documentation .method-description p {
         | 
| 458 | 
            +
              padding: 0;
         | 
| 459 | 
            +
            }
         | 
| 460 | 
            +
            #documentation .method-description p + p {
         | 
| 461 | 
            +
              margin-bottom: 0.5em;
         | 
| 462 | 
            +
            }
         | 
| 463 | 
            +
            #documentation .method-description ul {
         | 
| 464 | 
            +
              margin-left: 1.5em;
         | 
| 465 | 
            +
            }
         | 
| 466 | 
            +
             | 
| 467 | 
            +
            #documentation .attribute-method-heading {
         | 
| 468 | 
            +
              background: url(images/tag_green.png) no-repeat left bottom;
         | 
| 469 | 
            +
            }
         | 
| 470 | 
            +
            #documentation #attribute-method-details .method-detail:hover {
         | 
| 471 | 
            +
              background-color: transparent;
         | 
| 472 | 
            +
              cursor: default;
         | 
| 473 | 
            +
            }
         | 
| 474 | 
            +
            #documentation .attribute-access-type {
         | 
| 475 | 
            +
              font-size: 60%;
         | 
| 476 | 
            +
              text-transform: uppercase;
         | 
| 477 | 
            +
              vertical-align: super;
         | 
| 478 | 
            +
              padding: 0 2px;
         | 
| 479 | 
            +
            }
         | 
| 480 | 
            +
            /* @end */
         | 
| 481 | 
            +
             | 
| 482 | 
            +
            /* @end */
         | 
| 483 | 
            +
             | 
| 484 | 
            +
             | 
| 485 | 
            +
             | 
| 486 | 
            +
            /* @group Source Code */
         | 
| 487 | 
            +
             | 
| 488 | 
            +
            div.method-source-code {
         | 
| 489 | 
            +
              background: #262626;
         | 
| 490 | 
            +
              color: #efefef;
         | 
| 491 | 
            +
              margin: 1em;
         | 
| 492 | 
            +
              padding: 0.5em;
         | 
| 493 | 
            +
              border: 1px dashed #999;
         | 
| 494 | 
            +
              overflow: hidden;
         | 
| 495 | 
            +
            }
         | 
| 496 | 
            +
             | 
| 497 | 
            +
            div.method-source-code pre {
         | 
| 498 | 
            +
              background: inherit;
         | 
| 499 | 
            +
              padding: 0;
         | 
| 500 | 
            +
              color: white;
         | 
| 501 | 
            +
              overflow: auto;
         | 
| 502 | 
            +
            }
         | 
| 503 | 
            +
             | 
| 504 | 
            +
            /* @group Ruby keyword styles */
         | 
| 505 | 
            +
             | 
| 506 | 
            +
            .ruby-constant   { color: #7fffd4; background: transparent; }
         | 
| 507 | 
            +
            .ruby-keyword    { color: #00ffff; background: transparent; }
         | 
| 508 | 
            +
            .ruby-ivar       { color: #eedd82; background: transparent; }
         | 
| 509 | 
            +
            .ruby-operator   { color: #00ffee; background: transparent; }
         | 
| 510 | 
            +
            .ruby-identifier { color: #ffdead; background: transparent; }
         | 
| 511 | 
            +
            .ruby-node       { color: #ffa07a; background: transparent; }
         | 
| 512 | 
            +
            .ruby-comment    { color: #b22222; font-weight: bold; background: transparent; }
         | 
| 513 | 
            +
            .ruby-regexp     { color: #ffa07a; background: transparent; }
         | 
| 514 | 
            +
            .ruby-value      { color: #7fffd4; background: transparent; }
         | 
| 515 | 
            +
             | 
| 516 | 
            +
            /* @end */
         | 
| 517 | 
            +
            /* @end */
         | 
| 518 | 
            +
             | 
| 519 | 
            +
             | 
| 520 | 
            +
            /* @group File Popup Contents */
         | 
| 521 | 
            +
             | 
| 522 | 
            +
            .file #metadata,
         | 
| 523 | 
            +
            .file-popup #metadata {
         | 
| 524 | 
            +
            }
         | 
| 525 | 
            +
             | 
| 526 | 
            +
            .file-popup dl {
         | 
| 527 | 
            +
              font-size: 80%;
         | 
| 528 | 
            +
              padding: 0.75em;
         | 
| 529 | 
            +
              background-color: #dedede;
         | 
| 530 | 
            +
              color: #333;
         | 
| 531 | 
            +
              border: 1px solid #bbb;
         | 
| 532 | 
            +
              -moz-border-radius: 3px;
         | 
| 533 | 
            +
              -webkit-border-radius: 3px;
         | 
| 534 | 
            +
            }
         | 
| 535 | 
            +
            .file dt {
         | 
| 536 | 
            +
              font-weight: bold;
         | 
| 537 | 
            +
              padding-left: 22px;
         | 
| 538 | 
            +
              line-height: 20px;
         | 
| 539 | 
            +
              background: url(images/page_white_width.png) no-repeat left top;
         | 
| 540 | 
            +
            }
         | 
| 541 | 
            +
            .file dt.modified-date {
         | 
| 542 | 
            +
              background: url(images/date.png) no-repeat left top;
         | 
| 543 | 
            +
            }
         | 
| 544 | 
            +
            .file dt.requires {
         | 
| 545 | 
            +
              background: url(images/plugin.png) no-repeat left top;
         | 
| 546 | 
            +
            }
         | 
| 547 | 
            +
            .file dt.scs-url {
         | 
| 548 | 
            +
              background: url(images/wrench.png) no-repeat left top;
         | 
| 549 | 
            +
            }
         | 
| 550 | 
            +
             | 
| 551 | 
            +
            .file dl dd {
         | 
| 552 | 
            +
              margin: 0 0 1em 0;
         | 
| 553 | 
            +
            }
         | 
| 554 | 
            +
            .file #metadata dl dd ul {
         | 
| 555 | 
            +
              list-style: circle;
         | 
| 556 | 
            +
              margin-left: 20px;
         | 
| 557 | 
            +
              padding-top: 0;
         | 
| 558 | 
            +
            }
         | 
| 559 | 
            +
            .file #metadata dl dd ul li {
         | 
| 560 | 
            +
            }
         | 
| 561 | 
            +
             | 
| 562 | 
            +
             | 
| 563 | 
            +
            .file h2 {
         | 
| 564 | 
            +
              margin-top: 2em;
         | 
| 565 | 
            +
              padding: 0.75em 0.5em;
         | 
| 566 | 
            +
              background-color: #dedede;
         | 
| 567 | 
            +
              color: #333;
         | 
| 568 | 
            +
              font-size: 120%;
         | 
| 569 | 
            +
              border: 1px solid #bbb;
         | 
| 570 | 
            +
              -moz-border-radius: 3px;
         | 
| 571 | 
            +
              -webkit-border-radius: 3px;
         | 
| 572 | 
            +
            }
         | 
| 573 | 
            +
             | 
| 574 | 
            +
            /* @end */
         | 
| 575 | 
            +
             | 
| 576 | 
            +
             | 
| 577 | 
            +
             | 
| 578 | 
            +
             | 
| 579 | 
            +
            /* @group ThickBox Styles */
         | 
| 580 | 
            +
            #TB_window {
         | 
| 581 | 
            +
              font: 12px Arial, Helvetica, sans-serif;
         | 
| 582 | 
            +
              color: #333333;
         | 
| 583 | 
            +
            }
         | 
| 584 | 
            +
             | 
| 585 | 
            +
            #TB_secondLine {
         | 
| 586 | 
            +
              font: 10px Arial, Helvetica, sans-serif;
         | 
| 587 | 
            +
              color:#666666;
         | 
| 588 | 
            +
            }
         | 
| 589 | 
            +
             | 
| 590 | 
            +
            #TB_window :link,
         | 
| 591 | 
            +
            #TB_window :visited        { color: #666666; }
         | 
| 592 | 
            +
            #TB_window :link:hover,
         | 
| 593 | 
            +
            #TB_window :visited:hover  { color: #000;    }
         | 
| 594 | 
            +
            #TB_window :link:active,
         | 
| 595 | 
            +
            #TB_window :visited:active { color: #666666; }
         | 
| 596 | 
            +
            #TB_window :link:focus,
         | 
| 597 | 
            +
            #TB_window :visited:focus  { color: #666666; }
         | 
| 598 | 
            +
             | 
| 599 | 
            +
            #TB_overlay {
         | 
| 600 | 
            +
              position: fixed;
         | 
| 601 | 
            +
              z-index:100;
         | 
| 602 | 
            +
              top: 0px;
         | 
| 603 | 
            +
              left: 0px;
         | 
| 604 | 
            +
              height:100%;
         | 
| 605 | 
            +
              width:100%;
         | 
| 606 | 
            +
            }
         | 
| 607 | 
            +
             | 
| 608 | 
            +
            .TB_overlayMacFFBGHack {background: url(images/macFFBgHack.png) repeat;}
         | 
| 609 | 
            +
            .TB_overlayBG {
         | 
| 610 | 
            +
              background-color:#000;
         | 
| 611 | 
            +
              filter:alpha(opacity=75);
         | 
| 612 | 
            +
              -moz-opacity: 0.75;
         | 
| 613 | 
            +
              opacity: 0.75;
         | 
| 614 | 
            +
            }
         | 
| 615 | 
            +
             | 
| 616 | 
            +
            * html #TB_overlay { /* ie6 hack */
         | 
| 617 | 
            +
              position: absolute;
         | 
| 618 | 
            +
              height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
         | 
| 619 | 
            +
            }
         | 
| 620 | 
            +
             | 
| 621 | 
            +
            #TB_window {
         | 
| 622 | 
            +
              position: fixed;
         | 
| 623 | 
            +
              background: #ffffff;
         | 
| 624 | 
            +
              z-index: 102;
         | 
| 625 | 
            +
              color:#000000;
         | 
| 626 | 
            +
              display:none;
         | 
| 627 | 
            +
              border: 4px solid #525252;
         | 
| 628 | 
            +
              text-align:left;
         | 
| 629 | 
            +
              top:50%;
         | 
| 630 | 
            +
              left:50%;
         | 
| 631 | 
            +
            }
         | 
| 632 | 
            +
             | 
| 633 | 
            +
            * html #TB_window { /* ie6 hack */
         | 
| 634 | 
            +
              position: absolute;
         | 
| 635 | 
            +
              margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
         | 
| 636 | 
            +
            }
         | 
| 637 | 
            +
             | 
| 638 | 
            +
            #TB_window img#TB_Image {
         | 
| 639 | 
            +
              display:block;
         | 
| 640 | 
            +
              margin: 15px 0 0 15px;
         | 
| 641 | 
            +
              border-right: 1px solid #ccc;
         | 
| 642 | 
            +
              border-bottom: 1px solid #ccc;
         | 
| 643 | 
            +
              border-top: 1px solid #666;
         | 
| 644 | 
            +
              border-left: 1px solid #666;
         | 
| 645 | 
            +
            }
         | 
| 646 | 
            +
             | 
| 647 | 
            +
            #TB_caption{
         | 
| 648 | 
            +
              height:25px;
         | 
| 649 | 
            +
              padding:7px 30px 10px 25px;
         | 
| 650 | 
            +
              float:left;
         | 
| 651 | 
            +
            }
         | 
| 652 | 
            +
             | 
| 653 | 
            +
            #TB_closeWindow{
         | 
| 654 | 
            +
              height:25px;
         | 
| 655 | 
            +
              padding:11px 25px 10px 0;
         | 
| 656 | 
            +
              float:right;
         | 
| 657 | 
            +
            }
         | 
| 658 | 
            +
             | 
| 659 | 
            +
            #TB_closeAjaxWindow{
         | 
| 660 | 
            +
              padding:7px 10px 5px 0;
         | 
| 661 | 
            +
              margin-bottom:1px;
         | 
| 662 | 
            +
              text-align:right;
         | 
| 663 | 
            +
              float:right;
         | 
| 664 | 
            +
            }
         | 
| 665 | 
            +
             | 
| 666 | 
            +
            #TB_ajaxWindowTitle{
         | 
| 667 | 
            +
              float:left;
         | 
| 668 | 
            +
              padding:7px 0 5px 10px;
         | 
| 669 | 
            +
              margin-bottom:1px;
         | 
| 670 | 
            +
              font-size: 22px;
         | 
| 671 | 
            +
            }
         | 
| 672 | 
            +
             | 
| 673 | 
            +
            #TB_title{
         | 
| 674 | 
            +
              background-color: #6C8C22;
         | 
| 675 | 
            +
              color: #dedede;
         | 
| 676 | 
            +
              height:40px;
         | 
| 677 | 
            +
            }
         | 
| 678 | 
            +
            #TB_title :link,
         | 
| 679 | 
            +
            #TB_title :visited {
         | 
| 680 | 
            +
              color: white !important;
         | 
| 681 | 
            +
              border-bottom: 1px dotted #dedede;
         | 
| 682 | 
            +
            }
         | 
| 683 | 
            +
             | 
| 684 | 
            +
            #TB_ajaxContent{
         | 
| 685 | 
            +
              clear:both;
         | 
| 686 | 
            +
              padding:2px 15px 15px 15px;
         | 
| 687 | 
            +
              overflow:auto;
         | 
| 688 | 
            +
              text-align:left;
         | 
| 689 | 
            +
              line-height:1.4em;
         | 
| 690 | 
            +
            }
         | 
| 691 | 
            +
             | 
| 692 | 
            +
            #TB_ajaxContent.TB_modal{
         | 
| 693 | 
            +
              padding:15px;
         | 
| 694 | 
            +
            }
         | 
| 695 | 
            +
             | 
| 696 | 
            +
            #TB_ajaxContent p{
         | 
| 697 | 
            +
              padding:5px 0px 5px 0px;
         | 
| 698 | 
            +
            }
         | 
| 699 | 
            +
             | 
| 700 | 
            +
            #TB_load{
         | 
| 701 | 
            +
              position: fixed;
         | 
| 702 | 
            +
              display:none;
         | 
| 703 | 
            +
              height:13px;
         | 
| 704 | 
            +
              width:208px;
         | 
| 705 | 
            +
              z-index:103;
         | 
| 706 | 
            +
              top: 50%;
         | 
| 707 | 
            +
              left: 50%;
         | 
| 708 | 
            +
              margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */
         | 
| 709 | 
            +
            }
         | 
| 710 | 
            +
             | 
| 711 | 
            +
            * html #TB_load { /* ie6 hack */
         | 
| 712 | 
            +
              position: absolute;
         | 
| 713 | 
            +
              margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
         | 
| 714 | 
            +
            }
         | 
| 715 | 
            +
             | 
| 716 | 
            +
            #TB_HideSelect{
         | 
| 717 | 
            +
              z-index:99;
         | 
| 718 | 
            +
              position:fixed;
         | 
| 719 | 
            +
              top: 0;
         | 
| 720 | 
            +
              left: 0;
         | 
| 721 | 
            +
              background-color:#fff;
         | 
| 722 | 
            +
              border:none;
         | 
| 723 | 
            +
              filter:alpha(opacity=0);
         | 
| 724 | 
            +
              -moz-opacity: 0;
         | 
| 725 | 
            +
              opacity: 0;
         | 
| 726 | 
            +
              height:100%;
         | 
| 727 | 
            +
              width:100%;
         | 
| 728 | 
            +
            }
         | 
| 729 | 
            +
             | 
| 730 | 
            +
            * html #TB_HideSelect { /* ie6 hack */
         | 
| 731 | 
            +
              position: absolute;
         | 
| 732 | 
            +
              height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
         | 
| 733 | 
            +
            }
         | 
| 734 | 
            +
             | 
| 735 | 
            +
            #TB_iframeContent{
         | 
| 736 | 
            +
              clear:both;
         | 
| 737 | 
            +
              border:none;
         | 
| 738 | 
            +
              margin-bottom:-1px;
         | 
| 739 | 
            +
              margin-top:1px;
         | 
| 740 | 
            +
              _margin-bottom:1px;
         | 
| 741 | 
            +
            }
         | 
| 742 | 
            +
             | 
| 743 | 
            +
            /* @end */
         | 
| 744 | 
            +
             | 
| 745 | 
            +
            /* @group Debugging Section */
         | 
| 746 | 
            +
             | 
| 747 | 
            +
            #debugging-toggle {
         | 
| 748 | 
            +
              text-align: center;
         | 
| 749 | 
            +
            }
         | 
| 750 | 
            +
            #debugging-toggle img {
         | 
| 751 | 
            +
              cursor: pointer;
         | 
| 752 | 
            +
            }
         | 
| 753 | 
            +
             | 
| 754 | 
            +
            #rdoc-debugging-section-dump {
         | 
| 755 | 
            +
              display: none;
         | 
| 756 | 
            +
              margin: 0 2em 2em;
         | 
| 757 | 
            +
              background: #ccc;
         | 
| 758 | 
            +
              border: 1px solid #999;
         | 
| 759 | 
            +
            }
         | 
| 760 | 
            +
             | 
| 761 | 
            +
             | 
| 762 | 
            +
             | 
| 763 | 
            +
            /* @end */
         |