Skip to content

Commit

Permalink
fix for bug JENKINS-20712
Browse files Browse the repository at this point in the history
https://issues.jenkins-ci.org/browse/JENKINS-20712
"Check ETag" (and "Check the last modification Date") was always unchecked on the web page by default
  • Loading branch information
Le0Michine committed Jul 8, 2015
1 parent 6c55364 commit d7b4334
Showing 1 changed file with 20 additions and 24 deletions.
Expand Up @@ -61,40 +61,36 @@
</f:entry>

<f:entry>
<table style="width:100%">
<f:checkbox
field="checkETag"
name="urlElements.checkETag"
checked="${urlElements.checkETag}"
title="${%Check ETag}">
</f:checkbox>
</table>
<f:checkbox
field="checkETag"
name="urlElements.checkETag"
checked="${urlElements.checkETag}"
title="${%Check ETag}">
</f:checkbox>
</f:entry>

<f:entry>
<table style="width:100%">
<f:checkbox
field="checkLastModificationDate"
name="urlElements.checkLastModificationDate"
checked="${urlElements.checkLastModificationDate}"
title="${%Check the last modification Date}">
</f:checkbox>
</table>
<f:checkbox
field="checkLastModificationDate"
name="urlElements.checkLastModificationDate"
checked="${urlElements.checkLastModificationDate}"
title="${%Check the last modification Date}">
</f:checkbox>
</f:entry>

<f:entry>
<table style="width:100%">
<f:optionalBlock
name="urlElements.inspectingContent"
field="inspectingContent"
checked="${urlElements.inspectingContent}"
title="${%Inspect URL content}">
name="urlElements.inspectingContent"
field="inspectingContent"
checked="${urlElements.inspectingContent}"
title="${%Inspect URL content}">

<f:block>
<f:hetero-list name="urlElements.contentTypes"
descriptors="${descriptor.listURLTriggerDescriptors}"
addCaption="${%Add a content nature}"
items="${urlElements.contentTypes}"/>
descriptors="${descriptor.listURLTriggerDescriptors}"
addCaption="${%Add a content nature}"
items="${urlElements.contentTypes}"/>
</f:block>
</f:optionalBlock>
</table>
Expand Down Expand Up @@ -137,4 +133,4 @@
value="${instance.spec}"/>
</f:entry>

</j:jelly>
</j:jelly>

0 comments on commit d7b4334

Please sign in to comment.