diff --git a/public/java/src/org/broadinstitute/sting/utils/help/GATKDoclet.java b/public/java/src/org/broadinstitute/sting/utils/help/GATKDoclet.java index db7d6651d..38a3f4e18 100644 --- a/public/java/src/org/broadinstitute/sting/utils/help/GATKDoclet.java +++ b/public/java/src/org/broadinstitute/sting/utils/help/GATKDoclet.java @@ -43,7 +43,7 @@ import java.util.*; */ public class GATKDoclet extends ResourceBundleExtractorDoclet { final protected static File SETTINGS_DIR = new File("settings/helpTemplates"); - final protected static File DESTINATION_DIR = new File("testdoc"); + final protected static File DESTINATION_DIR = new File("gatkdocs"); final protected static Logger logger = Logger.getLogger(GATKDoclet.class); public static class DocWorkUnit implements Comparable { diff --git a/settings/helpTemplates/generic.index.template.html b/settings/helpTemplates/generic.index.template.html index 56eae97c2..b9abd7909 100644 --- a/settings/helpTemplates/generic.index.template.html +++ b/settings/helpTemplates/generic.index.template.html @@ -1,7 +1,7 @@ <#include "common.html"/> <#macro emitGroup group> - +

${group.name}

${group.summary} diff --git a/settings/helpTemplates/generic.template.html b/settings/helpTemplates/generic.template.html index b8a392686..cea7d0631 100644 --- a/settings/helpTemplates/generic.template.html +++ b/settings/helpTemplates/generic.template.html @@ -2,7 +2,7 @@ <#macro argumentlist name myargs> <#if myargs?size != 0> -

+ <#list myargs as arg> @@ -22,7 +22,7 @@ (<#if arg.attributes??>${arg.attributes} ${arg.type}) ${arg.summary}. ${arg.fulltext}
<#if arg.options??> -

Argument is an enumerated type with the following possible values:

+

The ${arg.name} argument can have one of the following values:

<#list arg.options as option>
${option.name} @@ -66,17 +66,21 @@ <#if arguments.all?size != 0>

Feature specific arguments

-
${name}
${name}
${arg.name}
+
+ + + <@argumentlist name="Required" myargs=arguments.required/> <@argumentlist name="Optional" myargs=arguments.optional/> <@argumentlist name="Hidden" myargs=arguments.hidden/> <@argumentlist name="Depreciated" myargs=arguments.depreciated/> +
Name Synonyms Type Summary
diff --git a/settings/helpTemplates/style.css b/settings/helpTemplates/style.css index 70aadcf79..18c9fe521 100644 --- a/settings/helpTemplates/style.css +++ b/settings/helpTemplates/style.css @@ -74,29 +74,41 @@ h3 font-weight: normal; } -#indexheader -{ - position: absolute; - left: 50pt; - top: 100pt; - font-size: 38pt; -} - -#indexbody -{ - position: absolute; - left: 50pt; - top: 180pt; -} - -table#indextable tr td +table.indextable tr td { margin-right: 1em; } -tr#indextableheader td +/* + Blue Dream + Written by Teylor Feliz http://www.admixweb.com +*/ + +#hor-minimalist-b { - font-family: Corbel, Arial, Helvetica, Sans-Serif; - font-size: 14pt; - font-weight: lighter; + font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif; + font-size: 12px; + background: #fff; + margin: 5px; + width: 100%; + border-collapse: collapse; + text-align: left; } +#hor-minimalist-b th +{ + font-size: 14px; + font-weight: normal; + color: #039; + padding: 10px 8px; + border-bottom: 2px solid #6678b1; +} +#hor-minimalist-b td +{ + border-bottom: 1px solid #ccc; + color: #669; + padding: 6px 8px; +} +#hor-minimalist-b tbody tr:hover td +{ + color: #009; +} \ No newline at end of file