index.jelly 2.7 KB
Newer Older
K
kohsuke 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<!--
The MIT License

Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Tom Huybrechts

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->

K
kohsuke 已提交
25
<st:compress xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form" xmlns:i="jelly:fmt">
26
    <j:new var="h" className="hudson.Functions" /><!-- instead of JSP functions -->
W
wjprakash 已提交
27
    <j:if test="${request.servletPath=='/' || request.servletPath==''}">
28
        <st:header name="X-Hudson" value="1.395" />
29
        <st:header name="X-Jenkins" value="${servletContext.getAttribute('version')}" />
W
wjprakash 已提交
30
        <j:if test="${app.tcpSlaveAgentListener!=null}">
K
Kohsuke Kawaguchi 已提交
31
            <!-- advertise the CLI TCP port -->
W
wjprakash 已提交
32
            <st:header name="X-Hudson-CLI-Port" value="${app.tcpSlaveAgentListener.port}" />
33
            <st:header name="X-Jenkins-CLI-Port" value="${app.tcpSlaveAgentListener.port}" />
W
wjprakash 已提交
34
        </j:if>
35 36 37
        <j:forEach var="pd" items="${h.pageDecorators}">
            <st:include it="${pd}" page="httpHeaders.jelly" optional="true" />
        </j:forEach>
38
    </j:if>
W
wjprakash 已提交
39 40 41 42 43 44 45 46 47 48
    <l:layout title="${it.class.name=='hudson.model.AllView' ? '%Dashboard' : it.viewName}">
        <st:include page="sidepanel.jelly" />
        <l:main-panel>
            <div id="view-message">
                <t:editableDescription permission="${app.ADMINISTER}"/>
            </div>
            <j:set var="items" value="${it.items}"/>
            <st:include page="main.jelly" />
        </l:main-panel>
        <l:header>
K
Kohsuke Kawaguchi 已提交
49
            <!-- for screen resolution detection -->
W
wjprakash 已提交
50 51
            <l:yui module="cookie" suffix="-beta" />
            <script>
K
Kohsuke Kawaguchi 已提交
52
              YAHOO.util.Cookie.set("screenResolution", screen.width+"x"+screen.height);
W
wjprakash 已提交
53 54 55
            </script>
        </l:header>
    </l:layout>
56
</st:compress>