Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jenkins 16094 #12

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

<SCRIPT type="text/javascript" src="${rootURL}/plugin/xfpanel/sorting.js" />
<script type="text/javascript" src="${rootURL}/plugin/xfpanel/jscolor/jscolor.js"></script>
<td colspan="3" style="font-weight:bold;" >Job options <hr /> </td>

<f:section title="${%Job options}">


<!-- Borrowed from -->
Expand Down Expand Up @@ -95,7 +95,19 @@
<f:checkbox id="xfpanel.showWarningIcon" name="showWarningIcon" checked="${it.showWarningIcon}" value="true"/>
</f:entry>

<td colspan="3" style="font-weight:bold;" >General options <hr /> </td>
<j:if test="${it.hasJobFilterExtensions()}">
<j:invokeStatic var="allJobFilters" className="hudson.views.ViewJobFilter" method="all"/>
<f:block>
<f:hetero-list name="jobFilters" hasHeader="true"
descriptors="${allJobFilters}"
items="${it.jobFilters}"
addCaption="${%Add Job Filter}" />
</f:block>
</j:if>

</f:section>

<f:section title="${%General options}">
<f:entry title="${%Number of columns}" field="numColumns">
<f:textbox id="xfpanel.numColumns" name="numColumns"/>
</f:entry>
Expand All @@ -105,8 +117,9 @@
<f:entry title="${%Text before time of the last build}" field="lastBuildTimePreFix">
<f:textbox id="lastBuildTimePreFix" name="lastBuildTimePreFix"/>
</f:entry>
</f:section>

<td colspan="3" style="font-weight:bold;" >Sort options <hr /> </td>
<f:section title="${%Sort options}">
<f:entry title="${%Sort order}" field="sort" >
<j:choose>
<j:when test="${it.AutomaticSortState == true}">
Expand Down Expand Up @@ -139,8 +152,9 @@
<f:entry title="${%Hide successful builds}" field="hideSuccessfulBuilds">
<f:checkbox id="xfpanel.hideSuccessfulBuilds" name="hideSuccessfulBuilds" checked="${it.hideSuccessfulBuilds}" value="true"/>
</f:entry>
</f:section>

<td colspan="3" style="font-weight:bold;" >Build responsibles <hr /> </td>
<f:section title="${%Build responsibles}">
<f:entry title="${%Show Responsibles}" field="responsibles">
<j:choose>
<j:when test="${it.BlameState==1}">
Expand Down Expand Up @@ -176,8 +190,9 @@
<f:textbox id="responsiblesTopic" name="responsiblesTopic" />
</f:entry>
</f:entry>
</f:section>

<td colspan="3" style="font-weight:bold;" >Claim plugin support <hr />
<f:section title="${%Claim plugin support}">
<j:choose>

<j:when test="${it.IsClaimPluginInstalled == true}">
Expand Down Expand Up @@ -210,12 +225,9 @@
</a>
</j:otherwise>
</j:choose>
</td>

<!-- between every <hr/> tag must be at least one <entry> tag -->
<f:entry></f:entry>
</f:section>

<td colspan="3" style="font-weight:bold;" >Font sizes <hr /> </td>
<f:section title="${%Font sizes}">
<f:entry title="${%Automatic resize entry height}" field="autoResizeEntryHeight" >
<f:checkbox id="xfpanel.autoResizeEntryHeight" name="autoResizeEntryHeight" checked="${it.AutoResizeEntryHeight}" value="true"/>
</f:entry>
Expand All @@ -234,9 +246,10 @@
<f:entry title="${%Build font size in pixels}" field="guiBuildFont">
<f:textbox id="xfpanel.guiBuildFont" name="guiBuildFont" />
</f:entry>
</f:section>


<td colspan="3" style="font-weight:bold;" >Build colors <hr /> </td>
<f:section title="${%Build colors}">
<f:entry title="${%Successful build color}" field="successfulBuildColor" >
<input class="color" name="successfulBuildColor" value="${it.successfulBuildColor}"/>
</f:entry>
Expand All @@ -252,5 +265,6 @@
<f:entry title="${%Font color}" field="buildFontColor" >
<input class="color" name="buildFontColor" value="${it.buildFontColor}"/>
</f:entry>
</f:section>

</j:jelly>