-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Bruce.wu
committed
Nov 14, 2024
1 parent
9d428dd
commit e3e3b95
Showing
8 changed files
with
93 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/main/resources/io/jenkins/plugins/dumasd/tools/TemplateRenderStep/config.jelly
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?jelly escape-by-default='true'?> | ||
<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 title="${%templateFile}" field="templateFile"> | ||
<f:textbox/> | ||
</f:entry> | ||
<f:entry title="${%outputFile}" field="outputFile"> | ||
<f:textbox/> | ||
</f:entry> | ||
<f:entry title="${%vars}" field="vars"> | ||
<f:textarea/> | ||
</f:entry> | ||
</j:jelly> |
3 changes: 3 additions & 0 deletions
3
src/main/resources/io/jenkins/plugins/dumasd/tools/TemplateRenderStep/config.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
templateFile=TemplateFile | ||
outputFile=OutputFile | ||
vars=Vars |
3 changes: 3 additions & 0 deletions
3
src/main/resources/io/jenkins/plugins/dumasd/tools/TemplateRenderStep/help-outputFile.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<div> | ||
The output file. | ||
</div> |
3 changes: 3 additions & 0 deletions
3
src/main/resources/io/jenkins/plugins/dumasd/tools/TemplateRenderStep/help-templateFile.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<div> | ||
The template file. | ||
</div> |
3 changes: 3 additions & 0 deletions
3
src/main/resources/io/jenkins/plugins/dumasd/tools/TemplateRenderStep/help-vars.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<div> | ||
The variables to use when render the template. please input <strong>json</strong> content. | ||
</div> |
6 changes: 6 additions & 0 deletions
6
src/main/resources/io/jenkins/plugins/dumasd/tools/TemplateRenderStep/help.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<div> | ||
<p> | ||
Use <a href="https://velocity.apache.org">Apache Velocity</a> template syntax to | ||
render the template and output. | ||
</p> | ||
</div> |