Skip to content

Commit

Permalink
[JENKINS-9426] fixed broken html.
Browse files Browse the repository at this point in the history
  • Loading branch information
ssogabe committed Apr 18, 2011
1 parent a903b3a commit eb7292e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Expand Up @@ -53,7 +53,7 @@ THE SOFTWARE.
</j:otherwise>
</j:choose>
<p>
${%text(rootURL,it.url)}
<j:out value="${%text(rootURL,it.url)}" />
</p>
</l:main-panel>
</l:layout>
Expand Down
6 changes: 3 additions & 3 deletions core/src/main/resources/hudson/model/AllView/noJob.jelly
Expand Up @@ -32,15 +32,15 @@ THE SOFTWARE.
<!-- Only show the create new jobs link to those users that have permission to use it. -->
<j:getStatic var="permission" className="hudson.model.Item" field="CREATE"/>
<j:when test="${h.hasPermission(permission)}">
${%newJob}
<j:out value="${%newJob}" />
</j:when>
<j:otherwise>
<!-- Offer anonymous users the chance to login, then they can create jobs. -->
<j:if test="${h.isAnonymous()}">
${%login(rootURL, app.securityRealm.loginUrl, request.requestURI)}
<j:out value="${%login(rootURL, app.securityRealm.loginUrl, request.requestURI)}" />
<!-- Also offer them the opportunity to sign-up for an account, if this facility is available. -->
<j:if test="${app.securityRealm.allowsSignup()}">
${%signup}
<j:out value="${%signup}" />
</j:if>
</j:if>
</j:otherwise>
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/resources/hudson/model/Run/console.jelly
Expand Up @@ -43,7 +43,7 @@ THE SOFTWARE.
<j:set var="offset" value="${empty(consoleFull) ? it.logFile.length()-threshold*1024 : 0}" />
<j:choose>
<j:when test="${offset > 0}">
${%skipSome(offset/1024,"consoleFull")}
<j:out value='${%skipSome(offset/1024,"consoleFull")}' />
</j:when>
<j:otherwise>
<j:set var="offset" value="${0}" />
Expand Down

0 comments on commit eb7292e

Please sign in to comment.