index.jelly 2.4 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">
W
wjprakash 已提交
26 27 28
    <j:if test="${request.servletPath=='/' || request.servletPath==''}">
        <st:header name="X-Hudson" value="${servletContext.getAttribute('version')}" />
        <j:if test="${app.tcpSlaveAgentListener!=null}">
K
Kohsuke Kawaguchi 已提交
29
            <!-- advertise the CLI TCP port -->
W
wjprakash 已提交
30 31
            <st:header name="X-Hudson-CLI-Port" value="${app.tcpSlaveAgentListener.port}" />
        </j:if>
32
    </j:if>
W
wjprakash 已提交
33 34 35 36 37 38 39 40 41 42 43
    <j:new var="h" className="hudson.Functions" /><!-- instead of JSP functions -->
    <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 已提交
44
            <!-- for screen resolution detection -->
W
wjprakash 已提交
45 46
            <l:yui module="cookie" suffix="-beta" />
            <script>
K
Kohsuke Kawaguchi 已提交
47
              YAHOO.util.Cookie.set("screenResolution", screen.width+"x"+screen.height);
W
wjprakash 已提交
48 49 50
            </script>
        </l:header>
    </l:layout>
K
kohsuke 已提交
51
</st:compress>