Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #314 from jglick/more-renames
[JENKINS-31153] More renames
- Loading branch information
Showing
with
118 additions
and 118 deletions.
- +1 −1 COMPATIBILITY.md
- +4 −4 README.md
- +47 −47 TUTORIAL.md
- +1 −1 aggregator/src/main/resources/index.jelly
- +1 −1 api/src/main/resources/index.jelly
- +10 −10 basic-steps/CORE-STEPS.md
- +1 −1 basic-steps/src/main/resources/index.jelly
- +3 −3 basic-steps/src/main/resources/org/jenkinsci/plugins/workflow/steps/CatchErrorStep/help.html
- +2 −2 basic-steps/src/main/resources/org/jenkinsci/plugins/workflow/steps/CoreStep/help.html
- +2 −2 basic-steps/src/main/resources/org/jenkinsci/plugins/workflow/steps/CoreWrapperStep/help.html
- +1 −1 basic-steps/src/main/resources/org/jenkinsci/plugins/workflow/steps/SleepStep/help.html
- +16 −16 cps-global-lib/README.md
- +1 −1 cps-global-lib/src/main/resources/index.jelly
- +1 −1 cps/src/main/java/org/jenkinsci/plugins/workflow/cps/steps/LoadStep.java
- +1 −1 cps/src/main/java/org/jenkinsci/plugins/workflow/cps/steps/ParallelStep.java
- +1 −1 cps/src/main/resources/org/jenkinsci/plugins/workflow/cps/CpsFlowDefinition/help-script.html
- +2 −2 cps/src/main/resources/org/jenkinsci/plugins/workflow/cps/CpsScmFlowDefinition/help-scm.html
- +3 −3 cps/src/main/resources/org/jenkinsci/plugins/workflow/cps/EnvActionImpl/Binder/help.jelly
- +5 −5 cps/src/main/resources/org/jenkinsci/plugins/workflow/cps/steps/LoadStep/help.html
- +1 −1 demo/Dockerfile
- +2 −2 demo/JENKINS_HOME/log/Workflow.xml
- +1 −1 demo/README.md
- +1 −1 job/src/main/java/org/jenkinsci/plugins/workflow/job/console/WorkflowConsoleLogger.java
- +1 −1 multibranch/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/JobPropertyStep/help.html
- +2 −2 multibranch/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/SCMVar/help.jelly
- +1 −1 scm-step/README.md
- +2 −2 scm-step/src/main/resources/org/jenkinsci/plugins/workflow/steps/scm/GenericSCMStep/help.html
- +2 −2 support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/StageStep/help.html
- +2 −2 support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/input/InputStep/help.html
@@ -1,5 +1,5 @@ | ||
<div> | ||
Simply pauses the workflow until the given amount of time has expired. | ||
Simply pauses the Pipeline build until the given amount of time has expired. | ||
Equivalent to (on Unix) <code>sh 'sleep …'</code>. | ||
May be used to pause one branch of <code>parallel</code> while another proceeds. | ||
</div> |
@@ -1,4 +1,4 @@ | ||
<?jelly escape-by-default='true'?> | ||
<div> | ||
Global shared library for workflow scripts | ||
Global shared library for Pipeline scripts. | ||
</div> |
@@ -1,7 +1,7 @@ | ||
<div> | ||
Specify where to obtain a source code repository containing your Groovy script. | ||
It will be checked out somewhere on the Jenkins master and used to load your workflow script. | ||
(If you wish to use other files from the same repository during your flow, | ||
It will be checked out somewhere on the Jenkins master and used to load your Pipeline script. | ||
(If you wish to use other files from the same repository during your Pipeline, | ||
you will need to check them out separately on some slave; | ||
this checkout cannot be reused.) | ||
</div> |
Oops, something went wrong.