build-tool 0.0.3 → 0.1.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.tar.gz.sig +0 -0
 - data/History.txt +28 -1
 - data/Manifest.txt +91 -52
 - data/README.txt +63 -0
 - data/Rakefile +20 -23
 - data/bin/build-tool +53 -0
 - data/lib/build-tool.rb +7 -0
 - data/lib/build-tool/GUI.rb +360 -0
 - data/lib/build-tool/application.rb +84 -0
 - data/lib/build-tool/build-system/autoconf.rb +60 -0
 - data/lib/build-tool/build-system/base.rb +142 -0
 - data/lib/build-tool/build-system/cmake.rb +119 -0
 - data/lib/build-tool/build-system/custom.rb +115 -0
 - data/lib/build-tool/build-system/qt.rb +113 -0
 - data/lib/build-tool/cfg/lexer.rb +558 -0
 - data/lib/build-tool/cfg/lexer.rex +248 -0
 - data/lib/build-tool/cfg/lexer_base.rb +82 -0
 - data/lib/build-tool/cfg/node.rb +94 -0
 - data/lib/build-tool/cfg/parser.rb +871 -0
 - data/lib/build-tool/cfg/parser.y +279 -0
 - data/lib/build-tool/cfg/visitor.rb +471 -0
 - data/lib/build-tool/commands.rb +639 -0
 - data/lib/build-tool/commands/build.rb +120 -0
 - data/lib/build-tool/commands/configure.rb +73 -0
 - data/lib/build-tool/commands/ctags.rb +46 -0
 - data/lib/build-tool/commands/environments.rb +29 -0
 - data/lib/build-tool/commands/environments/list.rb +37 -0
 - data/lib/build-tool/commands/environments/set.rb +33 -0
 - data/lib/build-tool/commands/fetch.rb +50 -0
 - data/lib/build-tool/commands/files.rb +73 -0
 - data/lib/build-tool/commands/help.rb +22 -0
 - data/lib/build-tool/commands/info.rb +48 -0
 - data/lib/build-tool/commands/install.rb +56 -0
 - data/lib/build-tool/commands/modules.rb +29 -0
 - data/lib/build-tool/commands/modules/info.rb +75 -0
 - data/lib/build-tool/commands/modules/list.rb +49 -0
 - data/lib/build-tool/commands/modules/shell.rb +40 -0
 - data/lib/build-tool/commands/rebase.rb +46 -0
 - data/lib/build-tool/commands/recipes.rb +32 -0
 - data/lib/build-tool/commands/recipes/info.rb +46 -0
 - data/lib/build-tool/commands/recipes/install.rb +184 -0
 - data/lib/build-tool/commands/recipes/list.rb +33 -0
 - data/lib/build-tool/configuration.rb +115 -0
 - data/lib/build-tool/environment.rb +119 -0
 - data/lib/build-tool/errors.rb +9 -0
 - data/lib/build-tool/module.rb +366 -0
 - data/lib/build-tool/pluginbase.rb +43 -0
 - data/lib/build-tool/recipe.rb +180 -0
 - data/lib/build-tool/repository.rb +59 -0
 - data/lib/build-tool/server.rb +43 -0
 - data/lib/build-tool/singleton.rb +50 -0
 - data/lib/build-tool/sshkey.rb +22 -0
 - data/lib/build-tool/vcs/base.rb +105 -0
 - data/lib/build-tool/vcs/git-svn.rb +154 -0
 - data/lib/build-tool/vcs/git.rb +187 -0
 - data/lib/build-tool/vcs/svn.rb +136 -0
 - data/lib/mj/logging.rb +31 -0
 - data/lib/mj/tools/ssh.rb +64 -0
 - data/lib/{kde-build → mj/tools}/subprocess.rb +21 -16
 - data/lib/mj/visitor.rb +21 -0
 - data/recipes/kde/files/finish_installation.sh +16 -0
 - data/recipes/kde/files/kde4.desktop +22 -0
 - data/recipes/kde/files/xsession +89 -0
 - data/recipes/kde/info.yaml +10 -0
 - data/recipes/kde/recipe +585 -0
 - data/recipes/kde/recipe-local +90 -0
 - data/recipes/kde/settings.yaml +52 -0
 - data/recipes/kde43/info.yaml +10 -0
 - data/recipes/kde43/recipe +256 -0
 - data/recipes/kde43/recipe-local +90 -0
 - data/recipes/kde43/settings.yaml +32 -0
 - data/recipes/kdeqt4.6/custom/qt/qtscriptgenerator/compile.sh +77 -0
 - data/recipes/kdeqt4.6/custom/qt/qtscriptgenerator/configure.sh +70 -0
 - data/recipes/kdeqt4.6/custom/qt/qtscriptgenerator/install.sh +39 -0
 - data/recipes/kdeqt4.6/info.yaml +7 -0
 - data/recipes/kdeqt4.6/recipe +155 -0
 - data/recipes/kdeqt4.6/recipe-local +30 -0
 - data/recipes/kdeqt4.6/settings.yaml +27 -0
 - data/tags +745 -0
 - data/tasks/genfiles.rake +28 -0
 - data/tasks/rdoc.rake +34 -0
 - data/tasks/rspec.rake +21 -0
 - data/test.rb +28 -0
 - data/test/commands/test_build.rb +29 -0
 - data/test/test_build_system.rb +98 -0
 - data/test/test_cli.rb +61 -0
 - data/test/test_command.rb +175 -0
 - data/test/test_configuration_parser.rb +542 -0
 - data/test/test_environment.rb +82 -0
 - data/test/test_helper.rb +39 -7
 - data/test/test_module.rb +158 -0
 - data/test/test_repository.rb +75 -0
 - data/test/test_singleton.rb +51 -0
 - data/test/test_ssh_key.rb +14 -0
 - data/test/test_svn_parser.rb +28 -0
 - data/test/test_vcs.rb +33 -0
 - metadata +139 -90
 - metadata.gz.sig +0 -0
 - data/PostInstall.txt +0 -3
 - data/TODO +0 -2
 - data/bin/kde-build.rb +0 -21
 - data/config/website.yml +0 -2
 - data/config/website.yml.sample +0 -2
 - data/lib/kde-build.rb +0 -18
 - data/lib/kde-build/application.rb +0 -270
 - data/lib/kde-build/build_system.rb +0 -28
 - data/lib/kde-build/build_system/autoconf.rb +0 -108
 - data/lib/kde-build/build_system/base.rb +0 -139
 - data/lib/kde-build/build_system/cmake.rb +0 -94
 - data/lib/kde-build/build_system/qtcopy.rb +0 -127
 - data/lib/kde-build/command.rb +0 -42
 - data/lib/kde-build/command/build.rb +0 -106
 - data/lib/kde-build/command/compile.rb +0 -39
 - data/lib/kde-build/command/configure.rb +0 -48
 - data/lib/kde-build/command/ctags.rb +0 -41
 - data/lib/kde-build/command/fetch.rb +0 -33
 - data/lib/kde-build/command/help.rb +0 -71
 - data/lib/kde-build/command/info.rb +0 -45
 - data/lib/kde-build/command/install.rb +0 -39
 - data/lib/kde-build/command/module_based.rb +0 -44
 - data/lib/kde-build/command/rebase.rb +0 -50
 - data/lib/kde-build/command/version.rb +0 -43
 - data/lib/kde-build/configuration.rb +0 -209
 - data/lib/kde-build/exception.rb +0 -6
 - data/lib/kde-build/metaaid.rb +0 -18
 - data/lib/kde-build/module.rb +0 -227
 - data/lib/kde-build/module_configuration.rb +0 -107
 - data/lib/kde-build/moduleregistry.rb +0 -85
 - data/lib/kde-build/tools/ctags.rb +0 -59
 - data/lib/kde-build/tools/logging.rb +0 -49
 - data/lib/kde-build/tools/make.rb +0 -58
 - data/lib/kde-build/tools/ssh.rb +0 -47
 - data/lib/kde-build/vcs.rb +0 -28
 - data/lib/kde-build/vcs/base.rb +0 -85
 - data/lib/kde-build/vcs/git-svn.rb +0 -139
 - data/lib/kde-build/vcs/git.rb +0 -121
 - data/lib/kde-build/vcs/svn.rb +0 -102
 - data/script/console +0 -10
 - data/script/destroy +0 -14
 - data/script/generate +0 -14
 - data/script/txt2html +0 -71
 - data/test.yaml.tmpl +0 -632
 - data/test/test_kde-build.rb +0 -11
 - data/test/test_vcs_svn.rb +0 -44
 - data/website/index.html +0 -84
 - data/website/index.txt +0 -59
 - data/website/javascripts/rounded_corners_lite.inc.js +0 -285
 - data/website/stylesheets/screen.css +0 -159
 - data/website/template.html.erb +0 -50
 
| 
         @@ -1,159 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            body {
         
     | 
| 
       2 
     | 
    
         
            -
              background-color: #8DBD82;
         
     | 
| 
       3 
     | 
    
         
            -
              font-family: "Georgia", sans-serif;
         
     | 
| 
       4 
     | 
    
         
            -
              font-size: 16px;
         
     | 
| 
       5 
     | 
    
         
            -
              line-height: 1.6em;
         
     | 
| 
       6 
     | 
    
         
            -
              padding: 1.6em 0 0 0;
         
     | 
| 
       7 
     | 
    
         
            -
              color: #333;
         
     | 
| 
       8 
     | 
    
         
            -
            }
         
     | 
| 
       9 
     | 
    
         
            -
            h1, h2, h3, h4, h5, h6 {
         
     | 
| 
       10 
     | 
    
         
            -
              color: #444;
         
     | 
| 
       11 
     | 
    
         
            -
            }
         
     | 
| 
       12 
     | 
    
         
            -
            h1 { 
         
     | 
| 
       13 
     | 
    
         
            -
              font-family: sans-serif;
         
     | 
| 
       14 
     | 
    
         
            -
              font-weight: normal;
         
     | 
| 
       15 
     | 
    
         
            -
              font-size: 4em;
         
     | 
| 
       16 
     | 
    
         
            -
              line-height: 0.8em;
         
     | 
| 
       17 
     | 
    
         
            -
              letter-spacing: -0.1ex;
         
     | 
| 
       18 
     | 
    
         
            -
            	margin: 5px;
         
     | 
| 
       19 
     | 
    
         
            -
            }
         
     | 
| 
       20 
     | 
    
         
            -
            li {
         
     | 
| 
       21 
     | 
    
         
            -
              padding: 0;
         
     | 
| 
       22 
     | 
    
         
            -
              margin: 0;
         
     | 
| 
       23 
     | 
    
         
            -
              list-style-type: square;
         
     | 
| 
       24 
     | 
    
         
            -
            }
         
     | 
| 
       25 
     | 
    
         
            -
            a {
         
     | 
| 
       26 
     | 
    
         
            -
              color: #5E5AFF;
         
     | 
| 
       27 
     | 
    
         
            -
            	background-color: #A1DDB1;
         
     | 
| 
       28 
     | 
    
         
            -
              font-weight: normal;
         
     | 
| 
       29 
     | 
    
         
            -
              text-decoration: underline;
         
     | 
| 
       30 
     | 
    
         
            -
            }
         
     | 
| 
       31 
     | 
    
         
            -
            blockquote {
         
     | 
| 
       32 
     | 
    
         
            -
              font-size: 90%;
         
     | 
| 
       33 
     | 
    
         
            -
              font-style: italic;
         
     | 
| 
       34 
     | 
    
         
            -
              border-left: 1px solid #111;
         
     | 
| 
       35 
     | 
    
         
            -
              padding-left: 1em;
         
     | 
| 
       36 
     | 
    
         
            -
            }
         
     | 
| 
       37 
     | 
    
         
            -
            .caps {
         
     | 
| 
       38 
     | 
    
         
            -
              font-size: 80%;
         
     | 
| 
       39 
     | 
    
         
            -
            }
         
     | 
| 
       40 
     | 
    
         
            -
             
     | 
| 
       41 
     | 
    
         
            -
            #main {
         
     | 
| 
       42 
     | 
    
         
            -
              width: 55em;
         
     | 
| 
       43 
     | 
    
         
            -
              padding: 0;
         
     | 
| 
       44 
     | 
    
         
            -
              margin: 0 auto;
         
     | 
| 
       45 
     | 
    
         
            -
            }
         
     | 
| 
       46 
     | 
    
         
            -
            .coda {
         
     | 
| 
       47 
     | 
    
         
            -
              text-align: right;
         
     | 
| 
       48 
     | 
    
         
            -
              color: #77f;
         
     | 
| 
       49 
     | 
    
         
            -
              font-size: smaller;
         
     | 
| 
       50 
     | 
    
         
            -
            }
         
     | 
| 
       51 
     | 
    
         
            -
             
     | 
| 
       52 
     | 
    
         
            -
            table {
         
     | 
| 
       53 
     | 
    
         
            -
              font-size: 90%;
         
     | 
| 
       54 
     | 
    
         
            -
              line-height: 1.4em;
         
     | 
| 
       55 
     | 
    
         
            -
              color: #ff8;
         
     | 
| 
       56 
     | 
    
         
            -
              background-color: #111;
         
     | 
| 
       57 
     | 
    
         
            -
              padding: 2px 10px 2px 10px;
         
     | 
| 
       58 
     | 
    
         
            -
            	border-style: dashed;
         
     | 
| 
       59 
     | 
    
         
            -
            }
         
     | 
| 
       60 
     | 
    
         
            -
             
     | 
| 
       61 
     | 
    
         
            -
            th {
         
     | 
| 
       62 
     | 
    
         
            -
            	color: #fff;
         
     | 
| 
       63 
     | 
    
         
            -
            }
         
     | 
| 
       64 
     | 
    
         
            -
             
     | 
| 
       65 
     | 
    
         
            -
            td {
         
     | 
| 
       66 
     | 
    
         
            -
              padding: 2px 10px 2px 10px;
         
     | 
| 
       67 
     | 
    
         
            -
            }
         
     | 
| 
       68 
     | 
    
         
            -
             
     | 
| 
       69 
     | 
    
         
            -
            .success {
         
     | 
| 
       70 
     | 
    
         
            -
            	color: #0CC52B;
         
     | 
| 
       71 
     | 
    
         
            -
            }
         
     | 
| 
       72 
     | 
    
         
            -
             
     | 
| 
       73 
     | 
    
         
            -
            .failed {
         
     | 
| 
       74 
     | 
    
         
            -
            	color: #E90A1B;
         
     | 
| 
       75 
     | 
    
         
            -
            }
         
     | 
| 
       76 
     | 
    
         
            -
             
     | 
| 
       77 
     | 
    
         
            -
            .unknown {
         
     | 
| 
       78 
     | 
    
         
            -
            	color: #995000;
         
     | 
| 
       79 
     | 
    
         
            -
            }
         
     | 
| 
       80 
     | 
    
         
            -
            pre, code {
         
     | 
| 
       81 
     | 
    
         
            -
              font-family: monospace;
         
     | 
| 
       82 
     | 
    
         
            -
              font-size: 90%;
         
     | 
| 
       83 
     | 
    
         
            -
              line-height: 1.4em;
         
     | 
| 
       84 
     | 
    
         
            -
              color: #ff8;
         
     | 
| 
       85 
     | 
    
         
            -
              background-color: #111;
         
     | 
| 
       86 
     | 
    
         
            -
              width: 40em;
         
     | 
| 
       87 
     | 
    
         
            -
              padding: 2px 10px 2px 10px;
         
     | 
| 
       88 
     | 
    
         
            -
            }
         
     | 
| 
       89 
     | 
    
         
            -
            .comment { color: #aaa; font-style: italic; }
         
     | 
| 
       90 
     | 
    
         
            -
            .keyword { color: #eff; font-weight: bold; }
         
     | 
| 
       91 
     | 
    
         
            -
            .punct { color: #eee; font-weight: bold; }
         
     | 
| 
       92 
     | 
    
         
            -
            .symbol { color: #0bb; }
         
     | 
| 
       93 
     | 
    
         
            -
            .string { color: #6b4; }
         
     | 
| 
       94 
     | 
    
         
            -
            .ident { color: #ff8; }
         
     | 
| 
       95 
     | 
    
         
            -
            .constant { color: #66f; }
         
     | 
| 
       96 
     | 
    
         
            -
            .regex { color: #ec6; }
         
     | 
| 
       97 
     | 
    
         
            -
            .number { color: #F99; }
         
     | 
| 
       98 
     | 
    
         
            -
            .expr { color: #227; }
         
     | 
| 
       99 
     | 
    
         
            -
             
     | 
| 
       100 
     | 
    
         
            -
            .sidebar {
         
     | 
| 
       101 
     | 
    
         
            -
              float: right;
         
     | 
| 
       102 
     | 
    
         
            -
            }
         
     | 
| 
       103 
     | 
    
         
            -
             
     | 
| 
       104 
     | 
    
         
            -
            #version {
         
     | 
| 
       105 
     | 
    
         
            -
              width: 217px;
         
     | 
| 
       106 
     | 
    
         
            -
              text-align: right;
         
     | 
| 
       107 
     | 
    
         
            -
              font-family: sans-serif;
         
     | 
| 
       108 
     | 
    
         
            -
              font-weight: normal;
         
     | 
| 
       109 
     | 
    
         
            -
              color: #141331;
         
     | 
| 
       110 
     | 
    
         
            -
              padding: 15px 20px 10px 20px;
         
     | 
| 
       111 
     | 
    
         
            -
              margin: 0 auto;
         
     | 
| 
       112 
     | 
    
         
            -
            	margin-top: 15px;
         
     | 
| 
       113 
     | 
    
         
            -
              background-color: #9A5535;
         
     | 
| 
       114 
     | 
    
         
            -
              border: 3px solid #7E393E;
         
     | 
| 
       115 
     | 
    
         
            -
            }
         
     | 
| 
       116 
     | 
    
         
            -
             
     | 
| 
       117 
     | 
    
         
            -
            #version .numbers {
         
     | 
| 
       118 
     | 
    
         
            -
              display: block;
         
     | 
| 
       119 
     | 
    
         
            -
              font-size: 4em;
         
     | 
| 
       120 
     | 
    
         
            -
              line-height: 0.8em;
         
     | 
| 
       121 
     | 
    
         
            -
              letter-spacing: -0.1ex;
         
     | 
| 
       122 
     | 
    
         
            -
            	margin-bottom: 15px;
         
     | 
| 
       123 
     | 
    
         
            -
            }
         
     | 
| 
       124 
     | 
    
         
            -
             
     | 
| 
       125 
     | 
    
         
            -
            #version p {
         
     | 
| 
       126 
     | 
    
         
            -
              text-decoration: none;
         
     | 
| 
       127 
     | 
    
         
            -
            	color: #F1F4FF;
         
     | 
| 
       128 
     | 
    
         
            -
            	background-color: #9A5535;
         
     | 
| 
       129 
     | 
    
         
            -
            	margin: 0;
         
     | 
| 
       130 
     | 
    
         
            -
            	padding: 0;
         
     | 
| 
       131 
     | 
    
         
            -
            }
         
     | 
| 
       132 
     | 
    
         
            -
             
     | 
| 
       133 
     | 
    
         
            -
            #version a {
         
     | 
| 
       134 
     | 
    
         
            -
              text-decoration: none;
         
     | 
| 
       135 
     | 
    
         
            -
            	color: #F1F4FF;
         
     | 
| 
       136 
     | 
    
         
            -
            	background-color: #9A5535;
         
     | 
| 
       137 
     | 
    
         
            -
            }
         
     | 
| 
       138 
     | 
    
         
            -
             
     | 
| 
       139 
     | 
    
         
            -
            .clickable {
         
     | 
| 
       140 
     | 
    
         
            -
            	cursor:	pointer; 
         
     | 
| 
       141 
     | 
    
         
            -
            	cursor:	hand;
         
     | 
| 
       142 
     | 
    
         
            -
            }
         
     | 
| 
       143 
     | 
    
         
            -
             
     | 
| 
       144 
     | 
    
         
            -
            #twitter_search {
         
     | 
| 
       145 
     | 
    
         
            -
            	margin: 40px 0 10px 15px;
         
     | 
| 
       146 
     | 
    
         
            -
              color: #F1F4FF;
         
     | 
| 
       147 
     | 
    
         
            -
              background-color: #9A5535;
         
     | 
| 
       148 
     | 
    
         
            -
              border: 3px solid #7E393E;
         
     | 
| 
       149 
     | 
    
         
            -
            }
         
     | 
| 
       150 
     | 
    
         
            -
             
     | 
| 
       151 
     | 
    
         
            -
            #twitter_search h3 {
         
     | 
| 
       152 
     | 
    
         
            -
              color: #F1F4FF;
         
     | 
| 
       153 
     | 
    
         
            -
            	margin-bottom: 0px;
         
     | 
| 
       154 
     | 
    
         
            -
            }
         
     | 
| 
       155 
     | 
    
         
            -
             
     | 
| 
       156 
     | 
    
         
            -
            #twitter_search center b {
         
     | 
| 
       157 
     | 
    
         
            -
            	display: none;
         
     | 
| 
       158 
     | 
    
         
            -
            }
         
     | 
| 
       159 
     | 
    
         
            -
             
     | 
    
        data/website/template.html.erb
    DELETED
    
    | 
         @@ -1,50 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
         
     | 
| 
       2 
     | 
    
         
            -
            "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
         
     | 
| 
       3 
     | 
    
         
            -
            <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
         
     | 
| 
       4 
     | 
    
         
            -
            <head>
         
     | 
| 
       5 
     | 
    
         
            -
              <link rel="stylesheet" href="stylesheets/screen.css" type="text/css" media="screen" />
         
     | 
| 
       6 
     | 
    
         
            -
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
       7 
     | 
    
         
            -
              <title>
         
     | 
| 
       8 
     | 
    
         
            -
                  <%= title %>
         
     | 
| 
       9 
     | 
    
         
            -
              </title>
         
     | 
| 
       10 
     | 
    
         
            -
              <script src="javascripts/rounded_corners_lite.inc.js" type="text/javascript"></script>
         
     | 
| 
       11 
     | 
    
         
            -
            <style>
         
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
            </style>
         
     | 
| 
       14 
     | 
    
         
            -
              <script type="text/javascript">
         
     | 
| 
       15 
     | 
    
         
            -
                window.onload = function() {
         
     | 
| 
       16 
     | 
    
         
            -
                  settings = {
         
     | 
| 
       17 
     | 
    
         
            -
                      tl: { radius: 10 },
         
     | 
| 
       18 
     | 
    
         
            -
                      tr: { radius: 10 },
         
     | 
| 
       19 
     | 
    
         
            -
                      bl: { radius: 10 },
         
     | 
| 
       20 
     | 
    
         
            -
                      br: { radius: 10 },
         
     | 
| 
       21 
     | 
    
         
            -
                      antiAlias: true,
         
     | 
| 
       22 
     | 
    
         
            -
                      autoPad: true,
         
     | 
| 
       23 
     | 
    
         
            -
                      validTags: ["div"]
         
     | 
| 
       24 
     | 
    
         
            -
                  }
         
     | 
| 
       25 
     | 
    
         
            -
                  var versionBox = new curvyCorners(settings, document.getElementById("version"));
         
     | 
| 
       26 
     | 
    
         
            -
                  versionBox.applyCornersToAll();
         
     | 
| 
       27 
     | 
    
         
            -
                }
         
     | 
| 
       28 
     | 
    
         
            -
              </script>
         
     | 
| 
       29 
     | 
    
         
            -
            </head>
         
     | 
| 
       30 
     | 
    
         
            -
            <body>
         
     | 
| 
       31 
     | 
    
         
            -
            <div id="main">
         
     | 
| 
       32 
     | 
    
         
            -
             
     | 
| 
       33 
     | 
    
         
            -
                <h1><%= title %></h1>
         
     | 
| 
       34 
     | 
    
         
            -
                <div class="sidebar">
         
     | 
| 
       35 
     | 
    
         
            -
                  <div id="version" class="clickable" onclick='document.location = "<%= download %>"; return false'>
         
     | 
| 
       36 
     | 
    
         
            -
                    <p>Get Version</p>
         
     | 
| 
       37 
     | 
    
         
            -
                    <a href="<%= download %>" class="numbers"><%= version %></a>
         
     | 
| 
       38 
     | 
    
         
            -
                  </div>
         
     | 
| 
       39 
     | 
    
         
            -
                </div>
         
     | 
| 
       40 
     | 
    
         
            -
                <%= body %>
         
     | 
| 
       41 
     | 
    
         
            -
                <p class="coda">
         
     | 
| 
       42 
     | 
    
         
            -
                  <a href="mailto:kde@michael-jansen.biz">Michael Jansen</a>, <%= modified.pretty %><br>
         
     | 
| 
       43 
     | 
    
         
            -
                  Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
         
     | 
| 
       44 
     | 
    
         
            -
                </p>
         
     | 
| 
       45 
     | 
    
         
            -
            </div>
         
     | 
| 
       46 
     | 
    
         
            -
             
     | 
| 
       47 
     | 
    
         
            -
            <!-- insert site tracking codes here, like Google Urchin -->
         
     | 
| 
       48 
     | 
    
         
            -
             
     | 
| 
       49 
     | 
    
         
            -
            </body>
         
     | 
| 
       50 
     | 
    
         
            -
            </html>
         
     |