Navigation Menu

Skip to content
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.

Commit

Permalink
[JENKINS-31153] More references were replaced
Browse files Browse the repository at this point in the history
  • Loading branch information
recena committed Jan 14, 2016
1 parent 29610cc commit e26b879
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion stm/src/main/resources/index.jelly
Expand Up @@ -24,5 +24,5 @@ THE SOFTWARE.
-->

<div>
Workflow execution engine based on a simple state transition machine.
Pipeline execution engine based on a simple state transition machine.
</div>
Expand Up @@ -35,7 +35,7 @@
<t:buildProgressBar build="${it.parent}" executor="${executor}"/>
</j:when>
<j:otherwise>
<span>${%Unknown workflow node step}</span>
<span>${%Unknown Pipeline node step}</span>
</j:otherwise>
</j:choose>
</div>
Expand Down
@@ -1,7 +1,7 @@
<div>
Name of a downstream job to build.
May be another Workflow job, but more commonly a freestyle or other project.
Use a simple name if the job is in the same folder as this upstream workflow job;
May be another Pipeline job, but more commonly a freestyle or other project.
Use a simple name if the job is in the same folder as this upstream Pipeline job;
otherwise can use relative paths like <code>../sister-folder/downstream</code>
or absolute paths like <code>/top-level-folder/nested-folder/downstream</code>.
</div>
@@ -1,5 +1,5 @@
<p>
You may ask that this workflow build wait for completion of the downstream build.
You may ask that this Pipeline build wait for completion of the downstream build.
In that case the return value of the step is an object on which you can obtain the following read-only properties:
so you can inspect its <code>result</code> and so on.
</p>
Expand All @@ -19,8 +19,8 @@
<li><code>absoluteUrl</code></li>
</ul>
<p>
For a non-Workflow downstream build, the <code>buildVariables</code> property offers access to a map of defined build variables.
For a Workflow downstream build, this property gives access to any variables set globally on <code>env</code>.
For a non-Pipeline downstream build, the <code>buildVariables</code> property offers access to a map of defined build variables.
For a Pipeline downstream build, this property gives access to any variables set globally on <code>env</code>.
</p>
<p>
Administrator-approved scripts outside the sandbox can use the <code>rawBuild</code> property to get access to a <code>hudson.model.Run</code> with further APIs.
Expand Down

0 comments on commit e26b879

Please sign in to comment.