index.jelly 2.6 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.
-->

25
<?jelly escape-by-default='true'?>
K
kohsuke 已提交
26
<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 已提交
27
    <l:layout title="${it.class.name=='hudson.model.AllView' ? '%Dashboard' : it.viewName}">
28
      <j:set var="view" value="${it}"/> <!-- expose view to the scripts we include from owner -->
W
wjprakash 已提交
29 30
        <st:include page="sidepanel.jelly" />
        <l:main-panel>
31
          <st:include page="view-index-top.jelly" it="${it.owner}" optional="true">
32
            <!-- allow the owner to take over the top section, but we also need the default to be backward compatible -->
W
wjprakash 已提交
33
            <div id="view-message">
34 35 36 37 38 39
              <j:if test="${it.class.name!='hudson.model.AllView'}">
                <div id="systemmessage">
                  <j:out value="${app.systemMessage!=null ? app.markupFormatter.translate(app.systemMessage) : ''}" />
                </div>
              </j:if>            
              <t:editableDescription permission="${app.ADMINISTER}"/>
W
wjprakash 已提交
40
            </div>
41
          </st:include>
42 43 44
          
          <j:set var="items" value="${it.items}"/>
          <st:include page="main.jelly" />
W
wjprakash 已提交
45 46
        </l:main-panel>
        <l:header>
K
Kohsuke Kawaguchi 已提交
47
            <!-- for screen resolution detection -->
O
OHTAKE Tomohiro 已提交
48
            <l:yui module="cookie" />
W
wjprakash 已提交
49
            <script>
K
Kohsuke Kawaguchi 已提交
50
              YAHOO.util.Cookie.set("screenResolution", screen.width+"x"+screen.height);
W
wjprakash 已提交
51 52 53
            </script>
        </l:header>
    </l:layout>
54
</st:compress>