Skip to content

Commit

Permalink
remove legacy inline onClick handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
shlomomdahan committed Nov 19, 2024
1 parent 3e7cc96 commit 32543ea
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
5 changes: 2 additions & 3 deletions src/main/resources/hudson/plugins/plot/CSVSeries/config.jelly
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<f:entry>
<div>
<f:entry title="${%Data series file}" field="file" help="/plugin/plot/help-series.html">
<f:textbox name="file" value="${series.file}"
checkUrl="'descriptorByName/hudson.plugins.plot.PlotPublisher/checkSeriesFile?value='+toValue(this)"/>
<f:entry title="${%Data series file}" field="seriesFile" help="/plugin/plot/help-series.html">
<f:textbox name="file" value="${series.file}"/>
</f:entry>
<f:nested>
<div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
<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}" help="/plugin/plot/help-series.html">
<f:textbox name="file" value="${series.file}"
checkUrl="'descriptorByName/hudson.plugins.plot.PlotPublisher/checkSeriesFile?value='+toValue(this)" />
<f:entry title="${%Data series file}" field="seriesFile" help="/plugin/plot/help-series.html">
<f:textbox name="file" value="${series.file}"/>
</f:entry>
<f:nested>
<f:entry title="${%Data series legend label}" help="/plugin/plot/help-legend.html">
Expand Down
5 changes: 2 additions & 3 deletions src/main/resources/hudson/plugins/plot/XMLSeries/config.jelly
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
<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}" help="/plugin/plot/help-series.html">
<f:textbox name="file" value="${series.file}"
checkUrl="'descriptorByName/hudson.plugins.plot.PlotPublisher/checkSeriesFile?value='+toValue(this)" />
<f:entry title="${%Data series file}" field="seriesFile" help="/plugin/plot/help-series.html">
<f:textbox name="file" value="${series.file}"/>
</f:entry>
<f:nested>
<div>
Expand Down

0 comments on commit 32543ea

Please sign in to comment.