kwartz 3.0.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/COPYING +340 -0
 - data/ChangeLog +103 -0
 - data/README.txt +37 -0
 - data/bin/kwartz +12 -0
 - data/doc-api/classes/Kwartz.html +218 -0
 - data/doc-api/classes/Kwartz/Assertion.html +140 -0
 - data/doc-api/classes/Kwartz/AssertionError.html +148 -0
 - data/doc-api/classes/Kwartz/AttrInfo.html +320 -0
 - data/doc-api/classes/Kwartz/BaseError.html +206 -0
 - data/doc-api/classes/Kwartz/BaseTranslator.html +331 -0
 - data/doc-api/classes/Kwartz/CharacterType.html +212 -0
 - data/doc-api/classes/Kwartz/CommandOptionError.html +154 -0
 - data/doc-api/classes/Kwartz/CommandOptions.html +374 -0
 - data/doc-api/classes/Kwartz/Config.html +150 -0
 - data/doc-api/classes/Kwartz/ConvertError.html +191 -0
 - data/doc-api/classes/Kwartz/Converter.html +252 -0
 - data/doc-api/classes/Kwartz/CssStyleParser.html +483 -0
 - data/doc-api/classes/Kwartz/DocumentRuleset.html +369 -0
 - data/doc-api/classes/Kwartz/ElementExpander.html +325 -0
 - data/doc-api/classes/Kwartz/ElementInfo.html +312 -0
 - data/doc-api/classes/Kwartz/ElementRuleset.html +582 -0
 - data/doc-api/classes/Kwartz/EperlHandler.html +338 -0
 - data/doc-api/classes/Kwartz/EperlTranslator.html +167 -0
 - data/doc-api/classes/Kwartz/ErubisHandler.html +113 -0
 - data/doc-api/classes/Kwartz/ErubisTranslator.html +168 -0
 - data/doc-api/classes/Kwartz/ErubyHandler.html +337 -0
 - data/doc-api/classes/Kwartz/ErubyTranslator.html +167 -0
 - data/doc-api/classes/Kwartz/ExpandStatement.html +227 -0
 - data/doc-api/classes/Kwartz/Expression.html +119 -0
 - data/doc-api/classes/Kwartz/Handler.html +558 -0
 - data/doc-api/classes/Kwartz/JstlHandler.html +657 -0
 - data/doc-api/classes/Kwartz/JstlTranslator.html +226 -0
 - data/doc-api/classes/Kwartz/KwartzError.html +146 -0
 - data/doc-api/classes/Kwartz/Main.html +384 -0
 - data/doc-api/classes/Kwartz/NativeExpression.html +236 -0
 - data/doc-api/classes/Kwartz/NativeStatement.html +254 -0
 - data/doc-api/classes/Kwartz/Node.html +156 -0
 - data/doc-api/classes/Kwartz/ParseError.html +148 -0
 - data/doc-api/classes/Kwartz/PhpHandler.html +333 -0
 - data/doc-api/classes/Kwartz/PhpTranslator.html +194 -0
 - data/doc-api/classes/Kwartz/PresentationLogicParser.html +830 -0
 - data/doc-api/classes/Kwartz/PrintStatement.html +221 -0
 - data/doc-api/classes/Kwartz/RailsHandler.html +587 -0
 - data/doc-api/classes/Kwartz/RailsTranslator.html +167 -0
 - data/doc-api/classes/Kwartz/RubyStyleParser.html +558 -0
 - data/doc-api/classes/Kwartz/Ruleset.html +117 -0
 - data/doc-api/classes/Kwartz/Statement.html +119 -0
 - data/doc-api/classes/Kwartz/StrutsTranslator.html +190 -0
 - data/doc-api/classes/Kwartz/TagInfo.html +314 -0
 - data/doc-api/classes/Kwartz/TextConverter.html +270 -0
 - data/doc-api/classes/Kwartz/Translator.html +318 -0
 - data/doc-api/classes/Test.html +107 -0
 - data/doc-api/classes/Test/Unit.html +101 -0
 - data/doc-api/created.rid +1 -0
 - data/doc-api/files/__/README_txt.html +150 -0
 - data/doc-api/files/kwartz/assert_rb.html +114 -0
 - data/doc-api/files/kwartz/binding/eperl_rb.html +116 -0
 - data/doc-api/files/kwartz/binding/erubis_rb.html +116 -0
 - data/doc-api/files/kwartz/binding/eruby_rb.html +115 -0
 - data/doc-api/files/kwartz/binding/jstl_rb.html +116 -0
 - data/doc-api/files/kwartz/binding/php_rb.html +116 -0
 - data/doc-api/files/kwartz/binding/rails_rb.html +115 -0
 - data/doc-api/files/kwartz/binding/struts_rb.html +117 -0
 - data/doc-api/files/kwartz/config_rb.html +107 -0
 - data/doc-api/files/kwartz/converter_rb.html +119 -0
 - data/doc-api/files/kwartz/error_rb.html +107 -0
 - data/doc-api/files/kwartz/main_rb.html +124 -0
 - data/doc-api/files/kwartz/node_rb.html +114 -0
 - data/doc-api/files/kwartz/parser_rb.html +117 -0
 - data/doc-api/files/kwartz/translator_rb.html +115 -0
 - data/doc-api/files/kwartz/util/assert-text-equal_rb.html +115 -0
 - data/doc-api/files/kwartz/util/testcase-helper_rb.html +115 -0
 - data/doc-api/files/kwartz_rb.html +120 -0
 - data/doc-api/fr_class_index.html +75 -0
 - data/doc-api/fr_file_index.html +45 -0
 - data/doc-api/fr_method_index.html +216 -0
 - data/doc-api/index.html +24 -0
 - data/doc-api/rdoc-style.css +208 -0
 - data/doc/docstyle.css +188 -0
 - data/doc/p-pattern.html +1207 -0
 - data/doc/reference.html +3396 -0
 - data/doc/users-guide.html +1670 -0
 - data/examples/breadcrumbs1/Makefile +15 -0
 - data/examples/breadcrumbs1/breadcrumbs.eruby.plogic +27 -0
 - data/examples/breadcrumbs1/breadcrumbs.html +12 -0
 - data/examples/breadcrumbs1/breadcrumbs.jstl.plogic +28 -0
 - data/examples/breadcrumbs1/breadcrumbs.php.plogic +26 -0
 - data/examples/breadcrumbs1/main.php +12 -0
 - data/examples/breadcrumbs1/main.rb +12 -0
 - data/examples/breadcrumbs2/Makefile +15 -0
 - data/examples/breadcrumbs2/breadcrumbs.eruby.plogic +22 -0
 - data/examples/breadcrumbs2/breadcrumbs.html +14 -0
 - data/examples/breadcrumbs2/breadcrumbs.jstl.plogic +24 -0
 - data/examples/breadcrumbs2/breadcrumbs.php.plogic +23 -0
 - data/examples/breadcrumbs2/main.php +12 -0
 - data/examples/breadcrumbs2/main.rb +12 -0
 - data/examples/pagelayout/Makefile +47 -0
 - data/examples/pagelayout/content.eruby.plogic +44 -0
 - data/examples/pagelayout/content.jstl.plogic +36 -0
 - data/examples/pagelayout/content.php.plogic +37 -0
 - data/examples/pagelayout/content1.html +36 -0
 - data/examples/pagelayout/content2.html +29 -0
 - data/examples/pagelayout/design.css +40 -0
 - data/examples/pagelayout/layout.html +50 -0
 - data/examples/pagelayout/main.php +55 -0
 - data/examples/pagelayout/main.rb +77 -0
 - data/examples/pagelayout/menu.eruby.plogic +14 -0
 - data/examples/pagelayout/menu.html +13 -0
 - data/examples/pagelayout/menu.jstl.plogic +14 -0
 - data/examples/pagelayout/menu.php.plogic +14 -0
 - data/examples/rails1/Makefile +36 -0
 - data/examples/rails1/README +19 -0
 - data/examples/rails1/application_helper.rb +31 -0
 - data/examples/rails1/edit.html +28 -0
 - data/examples/rails1/edit.plogic +10 -0
 - data/examples/rails1/form.html +52 -0
 - data/examples/rails1/form.plogic +33 -0
 - data/examples/rails1/layout.plogic +15 -0
 - data/examples/rails1/link_to.plogic +19 -0
 - data/examples/rails1/list.html +48 -0
 - data/examples/rails1/list.plogic +28 -0
 - data/examples/rails1/new.html +27 -0
 - data/examples/rails1/new.plogic +10 -0
 - data/examples/rails1/reader.plogic +29 -0
 - data/examples/rails1/show.html +40 -0
 - data/examples/rails1/show.plogic +4 -0
 - data/examples/rails1/writer.plogic +8 -0
 - data/examples/table1/Makefile +15 -0
 - data/examples/table1/main.php +11 -0
 - data/examples/table1/main.rb +11 -0
 - data/examples/table1/table1.eruby.plogic +21 -0
 - data/examples/table1/table1.html +16 -0
 - data/examples/table1/table1.jstl.plogic +21 -0
 - data/examples/table1/table1.php.plogic +22 -0
 - data/kwartz.gemspec +55 -0
 - data/lib/kwartz.rb +13 -0
 - data/lib/kwartz/assert.rb +31 -0
 - data/lib/kwartz/binding/eperl.rb +166 -0
 - data/lib/kwartz/binding/erubis.rb +61 -0
 - data/lib/kwartz/binding/eruby.rb +164 -0
 - data/lib/kwartz/binding/jstl.rb +334 -0
 - data/lib/kwartz/binding/php.rb +167 -0
 - data/lib/kwartz/binding/rails.rb +295 -0
 - data/lib/kwartz/binding/struts.rb +109 -0
 - data/lib/kwartz/config.rb +28 -0
 - data/lib/kwartz/converter.rb +920 -0
 - data/lib/kwartz/error.rb +41 -0
 - data/lib/kwartz/main.rb +464 -0
 - data/lib/kwartz/node.rb +454 -0
 - data/lib/kwartz/parser.rb +903 -0
 - data/lib/kwartz/translator.rb +153 -0
 - data/lib/kwartz/util/assert-text-equal.rb +44 -0
 - data/lib/kwartz/util/testcase-helper.rb +112 -0
 - data/setup.rb +1331 -0
 - data/test/test-compile.rb +36 -0
 - data/test/test-compile.yaml +178 -0
 - data/test/test-converter.rb +34 -0
 - data/test/test-converter.yaml +127 -0
 - data/test/test-directives.rb +32 -0
 - data/test/test-directives.yaml +1411 -0
 - data/test/test-main.rb +464 -0
 - data/test/test-parser.rb +54 -0
 - data/test/test-parser.yaml +394 -0
 - data/test/test-rails.rb +28 -0
 - data/test/test-rails.yaml +301 -0
 - data/test/test-ruleset.rb +36 -0
 - data/test/test-ruleset.yaml +804 -0
 - data/test/test.rb +44 -0
 - metadata +236 -0
 
| 
         @@ -0,0 +1,119 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="iso-8859-1"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <!DOCTYPE html 
         
     | 
| 
      
 3 
     | 
    
         
            +
                 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
         
     | 
| 
      
 4 
     | 
    
         
            +
                 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
         
     | 
| 
      
 7 
     | 
    
         
            +
            <head>
         
     | 
| 
      
 8 
     | 
    
         
            +
              <title>File: converter.rb</title>
         
     | 
| 
      
 9 
     | 
    
         
            +
              <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
         
     | 
| 
      
 10 
     | 
    
         
            +
              <meta http-equiv="Content-Script-Type" content="text/javascript" />
         
     | 
| 
      
 11 
     | 
    
         
            +
              <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
         
     | 
| 
      
 12 
     | 
    
         
            +
              <script type="text/javascript">
         
     | 
| 
      
 13 
     | 
    
         
            +
              // <![CDATA[
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
              function popupCode( url ) {
         
     | 
| 
      
 16 
     | 
    
         
            +
                window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
         
     | 
| 
      
 17 
     | 
    
         
            +
              }
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              function toggleCode( id ) {
         
     | 
| 
      
 20 
     | 
    
         
            +
                if ( document.getElementById )
         
     | 
| 
      
 21 
     | 
    
         
            +
                  elem = document.getElementById( id );
         
     | 
| 
      
 22 
     | 
    
         
            +
                else if ( document.all )
         
     | 
| 
      
 23 
     | 
    
         
            +
                  elem = eval( "document.all." + id );
         
     | 
| 
      
 24 
     | 
    
         
            +
                else
         
     | 
| 
      
 25 
     | 
    
         
            +
                  return false;
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
                elemStyle = elem.style;
         
     | 
| 
      
 28 
     | 
    
         
            +
                
         
     | 
| 
      
 29 
     | 
    
         
            +
                if ( elemStyle.display != "block" ) {
         
     | 
| 
      
 30 
     | 
    
         
            +
                  elemStyle.display = "block"
         
     | 
| 
      
 31 
     | 
    
         
            +
                } else {
         
     | 
| 
      
 32 
     | 
    
         
            +
                  elemStyle.display = "none"
         
     | 
| 
      
 33 
     | 
    
         
            +
                }
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
                return true;
         
     | 
| 
      
 36 
     | 
    
         
            +
              }
         
     | 
| 
      
 37 
     | 
    
         
            +
              
         
     | 
| 
      
 38 
     | 
    
         
            +
              // Make codeblocks hidden by default
         
     | 
| 
      
 39 
     | 
    
         
            +
              document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
         
     | 
| 
      
 40 
     | 
    
         
            +
              
         
     | 
| 
      
 41 
     | 
    
         
            +
              // ]]>
         
     | 
| 
      
 42 
     | 
    
         
            +
              </script>
         
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
      
 44 
     | 
    
         
            +
            </head>
         
     | 
| 
      
 45 
     | 
    
         
            +
            <body>
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
              <div id="fileHeader">
         
     | 
| 
      
 50 
     | 
    
         
            +
                <h1>converter.rb</h1>
         
     | 
| 
      
 51 
     | 
    
         
            +
                <table class="header-table">
         
     | 
| 
      
 52 
     | 
    
         
            +
                <tr class="top-aligned-row">
         
     | 
| 
      
 53 
     | 
    
         
            +
                  <td><strong>Path:</strong></td>
         
     | 
| 
      
 54 
     | 
    
         
            +
                  <td>kwartz/converter.rb
         
     | 
| 
      
 55 
     | 
    
         
            +
                  </td>
         
     | 
| 
      
 56 
     | 
    
         
            +
                </tr>
         
     | 
| 
      
 57 
     | 
    
         
            +
                <tr class="top-aligned-row">
         
     | 
| 
      
 58 
     | 
    
         
            +
                  <td><strong>Last Update:</strong></td>
         
     | 
| 
      
 59 
     | 
    
         
            +
                  <td>Wed May 31 11:16:45 JST 2006</td>
         
     | 
| 
      
 60 
     | 
    
         
            +
                </tr>
         
     | 
| 
      
 61 
     | 
    
         
            +
                </table>
         
     | 
| 
      
 62 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 63 
     | 
    
         
            +
              <!-- banner header -->
         
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
              <div id="bodyContent">
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
              <div id="contextContent">
         
     | 
| 
      
 70 
     | 
    
         
            +
             
     | 
| 
      
 71 
     | 
    
         
            +
                <div id="description">
         
     | 
| 
      
 72 
     | 
    
         
            +
                  <p>
         
     | 
| 
      
 73 
     | 
    
         
            +
            $Rev: 117 $ $Release: 3.0.0 $ copyright(c) 2004-2006 kuwata-lab.com all rights reserved
         
     | 
| 
      
 74 
     | 
    
         
            +
            </p>
         
     | 
| 
      
 75 
     | 
    
         
            +
             
     | 
| 
      
 76 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 77 
     | 
    
         
            +
             
     | 
| 
      
 78 
     | 
    
         
            +
                <div id="requires-list">
         
     | 
| 
      
 79 
     | 
    
         
            +
                  <h3 class="section-bar">Required files</h3>
         
     | 
| 
      
 80 
     | 
    
         
            +
             
     | 
| 
      
 81 
     | 
    
         
            +
                  <div class="name-list">
         
     | 
| 
      
 82 
     | 
    
         
            +
                  strscan  
         
     | 
| 
      
 83 
     | 
    
         
            +
                  <a href="assert_rb.html">kwartz/assert</a>  
         
     | 
| 
      
 84 
     | 
    
         
            +
                  <a href="error_rb.html">kwartz/error</a>  
         
     | 
| 
      
 85 
     | 
    
         
            +
                  <a href="node_rb.html">kwartz/node</a>  
         
     | 
| 
      
 86 
     | 
    
         
            +
                  <a href="config_rb.html">kwartz/config</a>  
         
     | 
| 
      
 87 
     | 
    
         
            +
                  abstract  
         
     | 
| 
      
 88 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 89 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 90 
     | 
    
         
            +
             
     | 
| 
      
 91 
     | 
    
         
            +
               </div>
         
     | 
| 
      
 92 
     | 
    
         
            +
             
     | 
| 
      
 93 
     | 
    
         
            +
             
     | 
| 
      
 94 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 95 
     | 
    
         
            +
             
     | 
| 
      
 96 
     | 
    
         
            +
             
     | 
| 
      
 97 
     | 
    
         
            +
                <!-- if includes -->
         
     | 
| 
      
 98 
     | 
    
         
            +
             
     | 
| 
      
 99 
     | 
    
         
            +
                <div id="section">
         
     | 
| 
      
 100 
     | 
    
         
            +
             
     | 
| 
      
 101 
     | 
    
         
            +
             
     | 
| 
      
 102 
     | 
    
         
            +
             
     | 
| 
      
 103 
     | 
    
         
            +
             
     | 
| 
      
 104 
     | 
    
         
            +
             
     | 
| 
      
 105 
     | 
    
         
            +
                  
         
     | 
| 
      
 106 
     | 
    
         
            +
             
     | 
| 
      
 107 
     | 
    
         
            +
             
     | 
| 
      
 108 
     | 
    
         
            +
                <!-- if method_list -->
         
     | 
| 
      
 109 
     | 
    
         
            +
             
     | 
| 
      
 110 
     | 
    
         
            +
             
     | 
| 
      
 111 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 112 
     | 
    
         
            +
             
     | 
| 
      
 113 
     | 
    
         
            +
             
     | 
| 
      
 114 
     | 
    
         
            +
            <div id="validator-badges">
         
     | 
| 
      
 115 
     | 
    
         
            +
              <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
         
     | 
| 
      
 116 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 117 
     | 
    
         
            +
             
     | 
| 
      
 118 
     | 
    
         
            +
            </body>
         
     | 
| 
      
 119 
     | 
    
         
            +
            </html>
         
     | 
| 
         @@ -0,0 +1,107 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="iso-8859-1"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <!DOCTYPE html 
         
     | 
| 
      
 3 
     | 
    
         
            +
                 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
         
     | 
| 
      
 4 
     | 
    
         
            +
                 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
         
     | 
| 
      
 7 
     | 
    
         
            +
            <head>
         
     | 
| 
      
 8 
     | 
    
         
            +
              <title>File: error.rb</title>
         
     | 
| 
      
 9 
     | 
    
         
            +
              <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
         
     | 
| 
      
 10 
     | 
    
         
            +
              <meta http-equiv="Content-Script-Type" content="text/javascript" />
         
     | 
| 
      
 11 
     | 
    
         
            +
              <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
         
     | 
| 
      
 12 
     | 
    
         
            +
              <script type="text/javascript">
         
     | 
| 
      
 13 
     | 
    
         
            +
              // <![CDATA[
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
              function popupCode( url ) {
         
     | 
| 
      
 16 
     | 
    
         
            +
                window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
         
     | 
| 
      
 17 
     | 
    
         
            +
              }
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              function toggleCode( id ) {
         
     | 
| 
      
 20 
     | 
    
         
            +
                if ( document.getElementById )
         
     | 
| 
      
 21 
     | 
    
         
            +
                  elem = document.getElementById( id );
         
     | 
| 
      
 22 
     | 
    
         
            +
                else if ( document.all )
         
     | 
| 
      
 23 
     | 
    
         
            +
                  elem = eval( "document.all." + id );
         
     | 
| 
      
 24 
     | 
    
         
            +
                else
         
     | 
| 
      
 25 
     | 
    
         
            +
                  return false;
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
                elemStyle = elem.style;
         
     | 
| 
      
 28 
     | 
    
         
            +
                
         
     | 
| 
      
 29 
     | 
    
         
            +
                if ( elemStyle.display != "block" ) {
         
     | 
| 
      
 30 
     | 
    
         
            +
                  elemStyle.display = "block"
         
     | 
| 
      
 31 
     | 
    
         
            +
                } else {
         
     | 
| 
      
 32 
     | 
    
         
            +
                  elemStyle.display = "none"
         
     | 
| 
      
 33 
     | 
    
         
            +
                }
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
                return true;
         
     | 
| 
      
 36 
     | 
    
         
            +
              }
         
     | 
| 
      
 37 
     | 
    
         
            +
              
         
     | 
| 
      
 38 
     | 
    
         
            +
              // Make codeblocks hidden by default
         
     | 
| 
      
 39 
     | 
    
         
            +
              document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
         
     | 
| 
      
 40 
     | 
    
         
            +
              
         
     | 
| 
      
 41 
     | 
    
         
            +
              // ]]>
         
     | 
| 
      
 42 
     | 
    
         
            +
              </script>
         
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
      
 44 
     | 
    
         
            +
            </head>
         
     | 
| 
      
 45 
     | 
    
         
            +
            <body>
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
              <div id="fileHeader">
         
     | 
| 
      
 50 
     | 
    
         
            +
                <h1>error.rb</h1>
         
     | 
| 
      
 51 
     | 
    
         
            +
                <table class="header-table">
         
     | 
| 
      
 52 
     | 
    
         
            +
                <tr class="top-aligned-row">
         
     | 
| 
      
 53 
     | 
    
         
            +
                  <td><strong>Path:</strong></td>
         
     | 
| 
      
 54 
     | 
    
         
            +
                  <td>kwartz/error.rb
         
     | 
| 
      
 55 
     | 
    
         
            +
                  </td>
         
     | 
| 
      
 56 
     | 
    
         
            +
                </tr>
         
     | 
| 
      
 57 
     | 
    
         
            +
                <tr class="top-aligned-row">
         
     | 
| 
      
 58 
     | 
    
         
            +
                  <td><strong>Last Update:</strong></td>
         
     | 
| 
      
 59 
     | 
    
         
            +
                  <td>Mon May 22 22:28:00 JST 2006</td>
         
     | 
| 
      
 60 
     | 
    
         
            +
                </tr>
         
     | 
| 
      
 61 
     | 
    
         
            +
                </table>
         
     | 
| 
      
 62 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 63 
     | 
    
         
            +
              <!-- banner header -->
         
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
              <div id="bodyContent">
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
              <div id="contextContent">
         
     | 
| 
      
 70 
     | 
    
         
            +
             
     | 
| 
      
 71 
     | 
    
         
            +
                <div id="description">
         
     | 
| 
      
 72 
     | 
    
         
            +
                  <p>
         
     | 
| 
      
 73 
     | 
    
         
            +
            $Rev: 112 $ $Release: 3.0.0 $ copyright(c) 2004-2006 kuwata-lab.com all rights reserved
         
     | 
| 
      
 74 
     | 
    
         
            +
            </p>
         
     | 
| 
      
 75 
     | 
    
         
            +
             
     | 
| 
      
 76 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 77 
     | 
    
         
            +
             
     | 
| 
      
 78 
     | 
    
         
            +
             
     | 
| 
      
 79 
     | 
    
         
            +
               </div>
         
     | 
| 
      
 80 
     | 
    
         
            +
             
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 83 
     | 
    
         
            +
             
     | 
| 
      
 84 
     | 
    
         
            +
             
     | 
| 
      
 85 
     | 
    
         
            +
                <!-- if includes -->
         
     | 
| 
      
 86 
     | 
    
         
            +
             
     | 
| 
      
 87 
     | 
    
         
            +
                <div id="section">
         
     | 
| 
      
 88 
     | 
    
         
            +
             
     | 
| 
      
 89 
     | 
    
         
            +
             
     | 
| 
      
 90 
     | 
    
         
            +
             
     | 
| 
      
 91 
     | 
    
         
            +
             
     | 
| 
      
 92 
     | 
    
         
            +
             
     | 
| 
      
 93 
     | 
    
         
            +
                  
         
     | 
| 
      
 94 
     | 
    
         
            +
             
     | 
| 
      
 95 
     | 
    
         
            +
             
     | 
| 
      
 96 
     | 
    
         
            +
                <!-- if method_list -->
         
     | 
| 
      
 97 
     | 
    
         
            +
             
     | 
| 
      
 98 
     | 
    
         
            +
             
     | 
| 
      
 99 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 100 
     | 
    
         
            +
             
     | 
| 
      
 101 
     | 
    
         
            +
             
     | 
| 
      
 102 
     | 
    
         
            +
            <div id="validator-badges">
         
     | 
| 
      
 103 
     | 
    
         
            +
              <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
         
     | 
| 
      
 104 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 105 
     | 
    
         
            +
             
     | 
| 
      
 106 
     | 
    
         
            +
            </body>
         
     | 
| 
      
 107 
     | 
    
         
            +
            </html>
         
     | 
| 
         @@ -0,0 +1,124 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="iso-8859-1"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <!DOCTYPE html 
         
     | 
| 
      
 3 
     | 
    
         
            +
                 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
         
     | 
| 
      
 4 
     | 
    
         
            +
                 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
         
     | 
| 
      
 7 
     | 
    
         
            +
            <head>
         
     | 
| 
      
 8 
     | 
    
         
            +
              <title>File: main.rb</title>
         
     | 
| 
      
 9 
     | 
    
         
            +
              <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
         
     | 
| 
      
 10 
     | 
    
         
            +
              <meta http-equiv="Content-Script-Type" content="text/javascript" />
         
     | 
| 
      
 11 
     | 
    
         
            +
              <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
         
     | 
| 
      
 12 
     | 
    
         
            +
              <script type="text/javascript">
         
     | 
| 
      
 13 
     | 
    
         
            +
              // <![CDATA[
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
              function popupCode( url ) {
         
     | 
| 
      
 16 
     | 
    
         
            +
                window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
         
     | 
| 
      
 17 
     | 
    
         
            +
              }
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              function toggleCode( id ) {
         
     | 
| 
      
 20 
     | 
    
         
            +
                if ( document.getElementById )
         
     | 
| 
      
 21 
     | 
    
         
            +
                  elem = document.getElementById( id );
         
     | 
| 
      
 22 
     | 
    
         
            +
                else if ( document.all )
         
     | 
| 
      
 23 
     | 
    
         
            +
                  elem = eval( "document.all." + id );
         
     | 
| 
      
 24 
     | 
    
         
            +
                else
         
     | 
| 
      
 25 
     | 
    
         
            +
                  return false;
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
                elemStyle = elem.style;
         
     | 
| 
      
 28 
     | 
    
         
            +
                
         
     | 
| 
      
 29 
     | 
    
         
            +
                if ( elemStyle.display != "block" ) {
         
     | 
| 
      
 30 
     | 
    
         
            +
                  elemStyle.display = "block"
         
     | 
| 
      
 31 
     | 
    
         
            +
                } else {
         
     | 
| 
      
 32 
     | 
    
         
            +
                  elemStyle.display = "none"
         
     | 
| 
      
 33 
     | 
    
         
            +
                }
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
                return true;
         
     | 
| 
      
 36 
     | 
    
         
            +
              }
         
     | 
| 
      
 37 
     | 
    
         
            +
              
         
     | 
| 
      
 38 
     | 
    
         
            +
              // Make codeblocks hidden by default
         
     | 
| 
      
 39 
     | 
    
         
            +
              document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
         
     | 
| 
      
 40 
     | 
    
         
            +
              
         
     | 
| 
      
 41 
     | 
    
         
            +
              // ]]>
         
     | 
| 
      
 42 
     | 
    
         
            +
              </script>
         
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
      
 44 
     | 
    
         
            +
            </head>
         
     | 
| 
      
 45 
     | 
    
         
            +
            <body>
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
              <div id="fileHeader">
         
     | 
| 
      
 50 
     | 
    
         
            +
                <h1>main.rb</h1>
         
     | 
| 
      
 51 
     | 
    
         
            +
                <table class="header-table">
         
     | 
| 
      
 52 
     | 
    
         
            +
                <tr class="top-aligned-row">
         
     | 
| 
      
 53 
     | 
    
         
            +
                  <td><strong>Path:</strong></td>
         
     | 
| 
      
 54 
     | 
    
         
            +
                  <td>kwartz/main.rb
         
     | 
| 
      
 55 
     | 
    
         
            +
                  </td>
         
     | 
| 
      
 56 
     | 
    
         
            +
                </tr>
         
     | 
| 
      
 57 
     | 
    
         
            +
                <tr class="top-aligned-row">
         
     | 
| 
      
 58 
     | 
    
         
            +
                  <td><strong>Last Update:</strong></td>
         
     | 
| 
      
 59 
     | 
    
         
            +
                  <td>Tue May 23 20:47:26 JST 2006</td>
         
     | 
| 
      
 60 
     | 
    
         
            +
                </tr>
         
     | 
| 
      
 61 
     | 
    
         
            +
                </table>
         
     | 
| 
      
 62 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 63 
     | 
    
         
            +
              <!-- banner header -->
         
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
              <div id="bodyContent">
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
              <div id="contextContent">
         
     | 
| 
      
 70 
     | 
    
         
            +
             
     | 
| 
      
 71 
     | 
    
         
            +
                <div id="description">
         
     | 
| 
      
 72 
     | 
    
         
            +
                  <p>
         
     | 
| 
      
 73 
     | 
    
         
            +
            $Rev: 113 $ $Release: 3.0.0 $ copyright(c) 2004-2006 kuwata-lab.com all rights reserved
         
     | 
| 
      
 74 
     | 
    
         
            +
            </p>
         
     | 
| 
      
 75 
     | 
    
         
            +
             
     | 
| 
      
 76 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 77 
     | 
    
         
            +
             
     | 
| 
      
 78 
     | 
    
         
            +
                <div id="requires-list">
         
     | 
| 
      
 79 
     | 
    
         
            +
                  <h3 class="section-bar">Required files</h3>
         
     | 
| 
      
 80 
     | 
    
         
            +
             
     | 
| 
      
 81 
     | 
    
         
            +
                  <div class="name-list">
         
     | 
| 
      
 82 
     | 
    
         
            +
                  <a href="../kwartz_rb.html">kwartz</a>  
         
     | 
| 
      
 83 
     | 
    
         
            +
                  <a href="binding/eruby_rb.html">kwartz/binding/eruby</a>  
         
     | 
| 
      
 84 
     | 
    
         
            +
                  <a href="binding/php_rb.html">kwartz/binding/php</a>  
         
     | 
| 
      
 85 
     | 
    
         
            +
                  <a href="binding/eperl_rb.html">kwartz/binding/eperl</a>  
         
     | 
| 
      
 86 
     | 
    
         
            +
                  <a href="binding/rails_rb.html">kwartz/binding/rails</a>  
         
     | 
| 
      
 87 
     | 
    
         
            +
                  <a href="binding/jstl_rb.html">kwartz/binding/jstl</a>  
         
     | 
| 
      
 88 
     | 
    
         
            +
                  <a href="binding/struts_rb.html">kwartz/binding/struts</a>  
         
     | 
| 
      
 89 
     | 
    
         
            +
                  <a href="binding/erubis_rb.html">kwartz/binding/erubis</a>  
         
     | 
| 
      
 90 
     | 
    
         
            +
                  erb  
         
     | 
| 
      
 91 
     | 
    
         
            +
                  erubis  
         
     | 
| 
      
 92 
     | 
    
         
            +
                  yaml  
         
     | 
| 
      
 93 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 94 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 95 
     | 
    
         
            +
             
     | 
| 
      
 96 
     | 
    
         
            +
               </div>
         
     | 
| 
      
 97 
     | 
    
         
            +
             
     | 
| 
      
 98 
     | 
    
         
            +
             
     | 
| 
      
 99 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 100 
     | 
    
         
            +
             
     | 
| 
      
 101 
     | 
    
         
            +
             
     | 
| 
      
 102 
     | 
    
         
            +
                <!-- if includes -->
         
     | 
| 
      
 103 
     | 
    
         
            +
             
     | 
| 
      
 104 
     | 
    
         
            +
                <div id="section">
         
     | 
| 
      
 105 
     | 
    
         
            +
             
     | 
| 
      
 106 
     | 
    
         
            +
             
     | 
| 
      
 107 
     | 
    
         
            +
             
     | 
| 
      
 108 
     | 
    
         
            +
             
     | 
| 
      
 109 
     | 
    
         
            +
             
     | 
| 
      
 110 
     | 
    
         
            +
                  
         
     | 
| 
      
 111 
     | 
    
         
            +
             
     | 
| 
      
 112 
     | 
    
         
            +
             
     | 
| 
      
 113 
     | 
    
         
            +
                <!-- if method_list -->
         
     | 
| 
      
 114 
     | 
    
         
            +
             
     | 
| 
      
 115 
     | 
    
         
            +
             
     | 
| 
      
 116 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 117 
     | 
    
         
            +
             
     | 
| 
      
 118 
     | 
    
         
            +
             
     | 
| 
      
 119 
     | 
    
         
            +
            <div id="validator-badges">
         
     | 
| 
      
 120 
     | 
    
         
            +
              <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
         
     | 
| 
      
 121 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 122 
     | 
    
         
            +
             
     | 
| 
      
 123 
     | 
    
         
            +
            </body>
         
     | 
| 
      
 124 
     | 
    
         
            +
            </html>
         
     | 
| 
         @@ -0,0 +1,114 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="iso-8859-1"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <!DOCTYPE html 
         
     | 
| 
      
 3 
     | 
    
         
            +
                 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
         
     | 
| 
      
 4 
     | 
    
         
            +
                 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
         
     | 
| 
      
 7 
     | 
    
         
            +
            <head>
         
     | 
| 
      
 8 
     | 
    
         
            +
              <title>File: node.rb</title>
         
     | 
| 
      
 9 
     | 
    
         
            +
              <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
         
     | 
| 
      
 10 
     | 
    
         
            +
              <meta http-equiv="Content-Script-Type" content="text/javascript" />
         
     | 
| 
      
 11 
     | 
    
         
            +
              <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
         
     | 
| 
      
 12 
     | 
    
         
            +
              <script type="text/javascript">
         
     | 
| 
      
 13 
     | 
    
         
            +
              // <![CDATA[
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
              function popupCode( url ) {
         
     | 
| 
      
 16 
     | 
    
         
            +
                window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
         
     | 
| 
      
 17 
     | 
    
         
            +
              }
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              function toggleCode( id ) {
         
     | 
| 
      
 20 
     | 
    
         
            +
                if ( document.getElementById )
         
     | 
| 
      
 21 
     | 
    
         
            +
                  elem = document.getElementById( id );
         
     | 
| 
      
 22 
     | 
    
         
            +
                else if ( document.all )
         
     | 
| 
      
 23 
     | 
    
         
            +
                  elem = eval( "document.all." + id );
         
     | 
| 
      
 24 
     | 
    
         
            +
                else
         
     | 
| 
      
 25 
     | 
    
         
            +
                  return false;
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
                elemStyle = elem.style;
         
     | 
| 
      
 28 
     | 
    
         
            +
                
         
     | 
| 
      
 29 
     | 
    
         
            +
                if ( elemStyle.display != "block" ) {
         
     | 
| 
      
 30 
     | 
    
         
            +
                  elemStyle.display = "block"
         
     | 
| 
      
 31 
     | 
    
         
            +
                } else {
         
     | 
| 
      
 32 
     | 
    
         
            +
                  elemStyle.display = "none"
         
     | 
| 
      
 33 
     | 
    
         
            +
                }
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
                return true;
         
     | 
| 
      
 36 
     | 
    
         
            +
              }
         
     | 
| 
      
 37 
     | 
    
         
            +
              
         
     | 
| 
      
 38 
     | 
    
         
            +
              // Make codeblocks hidden by default
         
     | 
| 
      
 39 
     | 
    
         
            +
              document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
         
     | 
| 
      
 40 
     | 
    
         
            +
              
         
     | 
| 
      
 41 
     | 
    
         
            +
              // ]]>
         
     | 
| 
      
 42 
     | 
    
         
            +
              </script>
         
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
      
 44 
     | 
    
         
            +
            </head>
         
     | 
| 
      
 45 
     | 
    
         
            +
            <body>
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
              <div id="fileHeader">
         
     | 
| 
      
 50 
     | 
    
         
            +
                <h1>node.rb</h1>
         
     | 
| 
      
 51 
     | 
    
         
            +
                <table class="header-table">
         
     | 
| 
      
 52 
     | 
    
         
            +
                <tr class="top-aligned-row">
         
     | 
| 
      
 53 
     | 
    
         
            +
                  <td><strong>Path:</strong></td>
         
     | 
| 
      
 54 
     | 
    
         
            +
                  <td>kwartz/node.rb
         
     | 
| 
      
 55 
     | 
    
         
            +
                  </td>
         
     | 
| 
      
 56 
     | 
    
         
            +
                </tr>
         
     | 
| 
      
 57 
     | 
    
         
            +
                <tr class="top-aligned-row">
         
     | 
| 
      
 58 
     | 
    
         
            +
                  <td><strong>Last Update:</strong></td>
         
     | 
| 
      
 59 
     | 
    
         
            +
                  <td>Wed May 31 11:16:45 JST 2006</td>
         
     | 
| 
      
 60 
     | 
    
         
            +
                </tr>
         
     | 
| 
      
 61 
     | 
    
         
            +
                </table>
         
     | 
| 
      
 62 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 63 
     | 
    
         
            +
              <!-- banner header -->
         
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
              <div id="bodyContent">
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
              <div id="contextContent">
         
     | 
| 
      
 70 
     | 
    
         
            +
             
     | 
| 
      
 71 
     | 
    
         
            +
                <div id="description">
         
     | 
| 
      
 72 
     | 
    
         
            +
                  <p>
         
     | 
| 
      
 73 
     | 
    
         
            +
            $Rev: 117 $ $Release: 3.0.0 $ copyright(c) 2004-2006 kuwata-lab.com all rights reserved
         
     | 
| 
      
 74 
     | 
    
         
            +
            </p>
         
     | 
| 
      
 75 
     | 
    
         
            +
             
     | 
| 
      
 76 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 77 
     | 
    
         
            +
             
     | 
| 
      
 78 
     | 
    
         
            +
                <div id="requires-list">
         
     | 
| 
      
 79 
     | 
    
         
            +
                  <h3 class="section-bar">Required files</h3>
         
     | 
| 
      
 80 
     | 
    
         
            +
             
     | 
| 
      
 81 
     | 
    
         
            +
                  <div class="name-list">
         
     | 
| 
      
 82 
     | 
    
         
            +
                  abstract  
         
     | 
| 
      
 83 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 84 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 85 
     | 
    
         
            +
             
     | 
| 
      
 86 
     | 
    
         
            +
               </div>
         
     | 
| 
      
 87 
     | 
    
         
            +
             
     | 
| 
      
 88 
     | 
    
         
            +
             
     | 
| 
      
 89 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 90 
     | 
    
         
            +
             
     | 
| 
      
 91 
     | 
    
         
            +
             
     | 
| 
      
 92 
     | 
    
         
            +
                <!-- if includes -->
         
     | 
| 
      
 93 
     | 
    
         
            +
             
     | 
| 
      
 94 
     | 
    
         
            +
                <div id="section">
         
     | 
| 
      
 95 
     | 
    
         
            +
             
     | 
| 
      
 96 
     | 
    
         
            +
             
     | 
| 
      
 97 
     | 
    
         
            +
             
     | 
| 
      
 98 
     | 
    
         
            +
             
     | 
| 
      
 99 
     | 
    
         
            +
             
     | 
| 
      
 100 
     | 
    
         
            +
                  
         
     | 
| 
      
 101 
     | 
    
         
            +
             
     | 
| 
      
 102 
     | 
    
         
            +
             
     | 
| 
      
 103 
     | 
    
         
            +
                <!-- if method_list -->
         
     | 
| 
      
 104 
     | 
    
         
            +
             
     | 
| 
      
 105 
     | 
    
         
            +
             
     | 
| 
      
 106 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 107 
     | 
    
         
            +
             
     | 
| 
      
 108 
     | 
    
         
            +
             
     | 
| 
      
 109 
     | 
    
         
            +
            <div id="validator-badges">
         
     | 
| 
      
 110 
     | 
    
         
            +
              <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
         
     | 
| 
      
 111 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 112 
     | 
    
         
            +
             
     | 
| 
      
 113 
     | 
    
         
            +
            </body>
         
     | 
| 
      
 114 
     | 
    
         
            +
            </html>
         
     |