Skip to content

Commit

Permalink
use checkDepends on for Pipeline compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
shlomomdahan committed Nov 21, 2024
1 parent 32543ea commit 8817337
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 4 additions & 2 deletions src/main/resources/hudson/plugins/plot/CSVSeries/config.jelly
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<f:entry>
<div>
<f:entry title="${%Data series file}" field="seriesFile" help="/plugin/plot/help-series.html">
<f:textbox name="file" value="${series.file}"/>
<f:entry title="${%Data series file}" help="/plugin/plot/help-series.html">
<f:textbox name="file" value="${series.file}"
checkUrl="descriptorByName/hudson.plugins.plot.PlotPublisher/checkSeriesFile"
checkDependsOn="" />
</f:entry>
<f:nested>
<div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
<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">
<f:entry>
<div>
<f:entry title="${%Data series file}" field="seriesFile" help="/plugin/plot/help-series.html">
<f:textbox name="file" value="${series.file}"/>
<f:entry title="${%Data series file}" help="/plugin/plot/help-series.html">
<f:textbox name="file" value="${series.file}"
checkUrl="descriptorByName/hudson.plugins.plot.PlotPublisher/checkSeriesFile"
checkDependsOn="" />
</f:entry>
<f:nested>
<f:entry title="${%Data series legend label}" help="/plugin/plot/help-legend.html">
Expand Down
6 changes: 4 additions & 2 deletions src/main/resources/hudson/plugins/plot/XMLSeries/config.jelly
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
<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">
<f:entry>
<div>
<f:entry title="${%Data series file}" field="seriesFile" help="/plugin/plot/help-series.html">
<f:textbox name="file" value="${series.file}"/>
<f:entry title="${%Data series file}" help="/plugin/plot/help-series.html">
<f:textbox name="file" value="${series.file}"
checkUrl="descriptorByName/hudson.plugins.plot.PlotPublisher/checkSeriesFile"
checkDependsOn="" />
</f:entry>
<f:nested>
<div>
Expand Down

0 comments on commit 8817337

Please sign in to comment.