Skip to content

Commit 7372f16

Browse files
committed
Use HTTPS in URLs.
1 parent e6bb787 commit 7372f16

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

plugin/src/main/resources/io/jenkins/plugins/analysis/core/model/ReportScanningTool/config.jelly

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,21 @@
66
<j:choose>
77
<j:when test="${descriptor.hasDefaultPattern()}">
88
<f:entry title="${%title.pattern}" field="pattern"
9-
description="${%description.patternOrDefault('http://ant.apache.org/manual/Types/fileset.html', descriptor.pattern)}"
9+
description="${%description.patternOrDefault('https://ant.apache.org/manual/Types/fileset.html', descriptor.pattern)}"
1010
help="${descriptor.getHelpFile('patternOrDefault')}">
1111
<c:safe-textbox/>
1212
</f:entry>
1313
</j:when>
1414
<j:when test="${descriptor.canScanConsoleLog()}">
1515
<f:entry title="${%title.pattern}" field="pattern"
16-
description="${%description.patternOrConsole('http://ant.apache.org/manual/Types/fileset.html')}"
16+
description="${%description.patternOrConsole('https://ant.apache.org/manual/Types/fileset.html')}"
1717
help="${descriptor.getHelpFile('patternOrConsole')}">
1818
<c:safe-textbox/>
1919
</f:entry>
2020
</j:when>
2121
<j:otherwise>
2222
<f:entry title="${%title.pattern}" field="pattern"
23-
description="${%description.patternRequired('http://ant.apache.org/manual/Types/fileset.html')}"
23+
description="${%description.patternRequired('https://ant.apache.org/manual/Types/fileset.html')}"
2424
help="${descriptor.getHelpFile('patternRequired')}">
2525
<c:safe-textbox/>
2626
</f:entry>

plugin/src/main/resources/io/jenkins/plugins/analysis/warnings/groovy/GroovyScript/config.jelly

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?jelly escape-by-default='true'?>
2-
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:i="/issues" xmlns:f="/lib/form" xmlns:c="/controls">
2+
<j:jelly xmlns:j="jelly:core" xmlns:i="/issues" xmlns:f="/lib/form" xmlns:c="/controls">
33

44
<f:entry title="${%title.tool}" description="${%description.tool(rootURL)}" field="parserId">
55
<f:select/>
@@ -8,21 +8,21 @@
88
<j:choose>
99
<j:when test="${descriptor.hasDefaultPattern()}">
1010
<f:entry title="${%title.pattern}" field="pattern"
11-
description="${%description.patternOrDefault('http://ant.apache.org/manual/Types/fileset.html', descriptor.pattern)}"
11+
description="${%description.patternOrDefault('https://ant.apache.org/manual/Types/fileset.html', descriptor.pattern)}"
1212
help="${descriptor.getHelpFile('patternOrDefault')}">
1313
<c:safe-textbox/>
1414
</f:entry>
1515
</j:when>
1616
<j:when test="${descriptor.canScanConsoleLog()}">
1717
<f:entry title="${%title.pattern}" field="pattern"
18-
description="${%description.patternOrConsole('http://ant.apache.org/manual/Types/fileset.html')}"
18+
description="${%description.patternOrConsole('https://ant.apache.org/manual/Types/fileset.html')}"
1919
help="${descriptor.getHelpFile('patternOrConsole')}">
2020
<c:safe-textbox/>
2121
</f:entry>
2222
</j:when>
2323
<j:otherwise>
2424
<f:entry title="${%title.pattern}" field="pattern"
25-
description="${%description.patternRequired('http://ant.apache.org/manual/Types/fileset.html')}"
25+
description="${%description.patternRequired('https://ant.apache.org/manual/Types/fileset.html')}"
2626
help="${descriptor.getHelpFile('patternRequired')}">
2727
<c:safe-textbox/>
2828
</f:entry>

plugin/src/main/resources/io/jenkins/plugins/analysis/warnings/tasks/OpenTasks/config.jelly

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form" xmlns:i="/issues" xmlns:c="/controls">
33

44
<f:entry title="${%Files to scan}" field="includePattern"
5-
description="${%description.files('http://ant.apache.org/manual/Types/fileset.html')}">
5+
description="${%description.files('https://ant.apache.org/manual/Types/fileset.html')}">
66
<c:safe-textbox/>
77
</f:entry>
88
<f:entry title="${%Files to exclude}" field="excludePattern"
9-
description="${%description.exclude.files('http://ant.apache.org/manual/Types/fileset.html')}">
9+
description="${%description.exclude.files('https://ant.apache.org/manual/Types/fileset.html')}">
1010
<c:safe-textbox/>
1111
</f:entry>
1212
<f:entry title="${%High Priority Tasks Tags}" field="highTags">
@@ -27,7 +27,7 @@
2727
<f:entry title="${%Test the tags}" field="example" description="${%description.example}">
2828
<c:safe-textarea/>
2929
</f:entry>
30-
30+
3131
<i:tool-defaults/>
3232

3333

0 commit comments

Comments
 (0)