83592a094b
This uses the default "All" view columns as the columns for any views without a columns attribute sets. This means that view definitions which don't define any columns will still end up producing a useful view. (Note that the "All" columns are not fetched from the Jenkins instance; the columns that are the default in a fresh Jenkins install are hard-coded.) Change-Id: I0a21e024be383088c6238c3fc7beb708af8c2c46
27 lines
840 B
XML
27 lines
840 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<hudson.model.ListView>
|
|
<name>list-view-name01</name>
|
|
<description>Sample description</description>
|
|
<filterExecutors>true</filterExecutors>
|
|
<filterQueue>true</filterQueue>
|
|
<properties class="hudson.model.View$PropertyList"/>
|
|
<jobNames>
|
|
<comparator class="hudson.util.CaseInsensitiveComparator"/>
|
|
<string>job-name-1</string>
|
|
<string>job-name-2</string>
|
|
<string>job-name-3</string>
|
|
</jobNames>
|
|
<jobFilters/>
|
|
<columns>
|
|
<hudson.views.StatusColumn/>
|
|
<hudson.views.WeatherColumn/>
|
|
<hudson.views.JobColumn/>
|
|
<hudson.views.LastSuccessColumn/>
|
|
<hudson.views.LastFailureColumn/>
|
|
<hudson.views.LastDurationColumn/>
|
|
<hudson.views.BuildButtonColumn/>
|
|
</columns>
|
|
<recurse>true</recurse>
|
|
<statusFilter>false</statusFilter>
|
|
</hudson.model.ListView>
|