index.jelly 2.3 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:if test="${request.servletPath=='/' || request.servletPath==''}">
27
    <st:header name="X-Hudson" value="${servletContext.getAttribute('version')}" />
28 29 30 31
    <j:if test="${app.tcpSlaveAgentListener!=null}">
      <!-- advertize the CLI TCP port -->
      <st:header name="X-Hudson-CLI-Port" value="${app.tcpSlaveAgentListener.port}" />
    </j:if>
32
  </j:if>
K
kohsuke 已提交
33
  <j:new var="h" className="hudson.Functions" /><!-- instead of JSP functions -->
34
	<l:layout title="${it.class.name=='hudson.model.AllView' ? '%Dashboard' : it.viewName}">
35
    <st:include page="sidepanel.jelly" />
K
kohsuke 已提交
36 37
		<l:main-panel>
		  <div id="view-message">
38
        <t:editableDescription permission="${app.ADMINISTER}"/>
K
kohsuke 已提交
39
		  </div>
K
kohsuke 已提交
40
      <j:set var="items" value="${it.items}"/>
41
      <st:include page="main.jelly" />
K
kohsuke 已提交
42
		</l:main-panel>
43 44 45 46 47 48 49
    <l:header>
      <!-- for screen resolution detection -->
      <l:yui module="cookie" suffix="-beta" />
      <script>
        YAHOO.util.Cookie.set("screenResolution", screen.width+"x"+screen.height); 
      </script>
    </l:header>
K
kohsuke 已提交
50
	</l:layout>
K
kohsuke 已提交
51
</st:compress>