remoting/server/hudson/src/main/resources/org/netbeans/modules/jackpot30/hudson/BuildWrapperImpl/config.jelly
branchdonation_review
changeset 1043 57843026e60b
parent 1027 205b7632914c
parent 1040 f7b6892fd754
child 1044 7feb751ba76b
     1.1 --- a/remoting/server/hudson/src/main/resources/org/netbeans/modules/jackpot30/hudson/BuildWrapperImpl/config.jelly	Mon Dec 19 11:37:36 2016 +0100
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,79 +0,0 @@
     1.4 -<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
     1.5 -  <!--
     1.6 -    This jelly script is used for per-project configuration.
     1.7 -
     1.8 -    See global.jelly for a general discussion about jelly script.
     1.9 -  -->
    1.10 -
    1.11 -  <!--
    1.12 -    Creates a text field that shows the value of the "name" property.
    1.13 -    When submitted, it will be passed to the corresponding constructor parameter.
    1.14 -  -->
    1.15 -
    1.16 -<!--  <j:forEach var="category" items="${descriptor.getCategories()}" varStatus="loop">
    1.17 -    <f:block>
    1.18 -      <table>
    1.19 -        <f:optionalBlock title="${category}">
    1.20 -          <j:forEach var="hint" items="${descriptor.getHintsInCategory(category)}" varStatus="loop">
    1.21 -            <f:entry description="${descriptor.getHintDescription(hint)}">
    1.22 -              <f:checkbox name="${hint}" checked="${instance.isHintEnabled(hint)}"/>
    1.23 -              <label class="attach-previous">${descriptor.getHintDisplayName(hint)}</label>
    1.24 -            </f:entry>
    1.25 -          </j:forEach>
    1.26 -        </f:optionalBlock>
    1.27 -      </table>
    1.28 -    </f:block>
    1.29 -  </j:forEach>-->
    1.30 -
    1.31 -  <f:block>
    1.32 -    <table>
    1.33 -      <f:optionalBlock name="classpathBasedHintsEnabled" title="Run hints found on classpath" checked="${instance != null ? instance.isClasspathBasedHintsEnabled() : true}">
    1.34 -            <f:entry>
    1.35 -              <f:checkbox field="classpathBasedHintFixesEnabled" checked="${instance != null ? instance.isClasspathBasedHintFixesEnabled() : false}"/>
    1.36 -              <label class="attach-previous">Apply the primary fix</label>
    1.37 -            </f:entry>
    1.38 -      </f:optionalBlock>
    1.39 -    </table>
    1.40 -  </f:block>
    1.41 -  
    1.42 -  <f:block>
    1.43 -    <table>
    1.44 -      <f:optionalBlock name="hardcodedHintsEnabled" title="Run NetBeans hints" checked="${instance != null ? instance.isHardcodedHintsEnabled() : true}">
    1.45 -  <j:forEach var="category" items="${descriptor.getCategories()}" varStatus="loop">
    1.46 -        <f:section title="${descriptor.getCategoryDisplayName(category)}">
    1.47 -          <j:forEach var="hint" items="${descriptor.getHintsInCategory(category)}" varStatus="loop">
    1.48 -            <f:entry>
    1.49 -    <table>
    1.50 -      <f:optionalBlock name="${hint}" title="${descriptor.getHintDisplayName(hint)}" tooltip="${descriptor.getHintDescription(hint)}" checked="${instance != null ? instance.isHintEnabled(hint) : descriptor.isHintEnabledByDefault(hint)}">
    1.51 -<!--              <f:checkbox name="${hint}" checked="${instance != null ? instance.isHintEnabled(hint) : descriptor.isHintEnabledByDefault(hint)}"/>
    1.52 -              <label class="attach-previous" tooltip="${descriptor.getHintDescription(hint)}">${descriptor.getHintDisplayName(hint)}</label>-->
    1.53 -<!--              <f:nested>-->
    1.54 -            <f:entry>
    1.55 -                <f:checkbox name="${hint}.apply" checked="${instance != null ? instance.isHintApplyEnabled(hint) : descriptor.isHintApplyEnabledByDefault(hint)}"/>
    1.56 -                <label class="attach-previous">Apply the primary fix.</label>
    1.57 -            </f:entry>
    1.58 -<!--              </f:nested>-->
    1.59 -      </f:optionalBlock>
    1.60 -    </table>
    1.61 -            </f:entry>
    1.62 -          </j:forEach>
    1.63 -        </f:section>
    1.64 -  </j:forEach>
    1.65 -      </f:optionalBlock>
    1.66 -    </table>
    1.67 -  </f:block>
    1.68 -
    1.69 -  <f:block>
    1.70 -    <table>
    1.71 -        <f:checkbox name="indexingEnabled" checked="${instance != null ? instance.isIndexingEnabled() : true}"/>
    1.72 -        <label class="attach-previous">Run Indexing</label>
    1.73 -    </table>
    1.74 -  </f:block>
    1.75 -<!--  <j:forEach var="d" items="${descriptor.getHints()}" varStatus="loop">
    1.76 -  <f:entry description="${descriptor.getHintDescription(d)}">
    1.77 -    <f:checkbox name="${d}" checked="${instance.isHintEnabled(d)}"/>
    1.78 -    <label class="attach-previous">${descriptor.getHintDisplayName(d)}</label>
    1.79 -  </f:entry>
    1.80 -  </j:forEach>-->
    1.81 -
    1.82 -</j:jelly>