提交 eb7292e1 编写于 作者: S Seiji Sogabe

[JENKINS-9426] fixed broken html.

上级 a903b3ab
......@@ -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>
......
......@@ -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>
......
......@@ -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}" />
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册