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

Filter name feature #305

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Added help info on job name filter options in configure page
unityunityunity committed Apr 18, 2017
commit bf5b581996c04fe2022cbeb0b364296128c3100d
Original file line number Diff line number Diff line change
@@ -40,32 +40,27 @@
</f:entry>
</f:optionalBlock>

<f:optionalBlock name="usefilterprefix" title="${%Exclude a prefix from the job name on display}"
checked="${it.filterPrefix != null}" help="/help/view-config/filterprefix.html">
<f:entry title="${%Prefix filter}">
<j:if test="${it.hasJobFilterExtensions()}">
<f:block>
<f:repeatableHeteroProperty field="jobFilters" hasHeader="true" addCaption="${%Add Job Filter}" />
</f:block>
</j:if>

</f:section>

<f:section title="${%Job display name filters}">

<f:entry title="${%Prefix filter}" help="${descriptor.getHelpFile('filterName')}">
<f:textbox name="filterPrefix" field="filterPrefix"/>
</f:entry>
</f:optionalBlock>

<f:optionalBlock name="usefiltersuffix" title="${%Exclude a suffix from the job name on display}"
checked="${it.filterSuffix != null}" help="/help/view-config/filtersuffix.html">
<f:entry title="${%Suffix filter}">
<f:entry title="${%Suffix filter}" help="${descriptor.getHelpFile('filterName')}">
<f:textbox name="filterSuffix" field="filterSuffix"/>
</f:entry>
</f:optionalBlock>

<f:optionalBlock name="usefilterregex" title="${%Match a regex and exclude it from the name from the job name on display}"
checked="${it.filterRegex != null}" help="/help/view-config/filterregex.html">
<f:entry title="${%Regex filter}">
<f:entry title="${%Regex filter}" help="${descriptor.getHelpFile('filterName')}">
<f:textbox name="filterRegex" field="filterRegex"/>
</f:entry>
</f:optionalBlock>

<j:if test="${it.hasJobFilterExtensions()}">
<f:block>
<f:repeatableHeteroProperty field="jobFilters" hasHeader="true" addCaption="${%Add Job Filter}" />
</f:block>
</j:if>

</f:section>

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<div>
Filters input from job name and displays shortened name on build monitor.
</div>