/webportal/src/main/webapp/msg.zul
Unknown | 104 lines | 71 code | 33 blank | 0 comment | 0 complexity | 14f3b15e8f563582144442415999c18f MD5 | raw file
1 2 3<?page id="portalMsgZul" title="ALA Spatial Portal" cacheable="false" 4 language="xul/html" zscriptLanguage="Java" contentType="text/html;charset=UTF-8"?> 5<?link rel="shortcut icon" type="image/x-icon" href="/img/favicon.ico"?> 6 7<zk xmlns="http://www.zkoss.org/2005/zul" xmlns:h="http://www.w3.org/1999/xhtml" 8 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 9 xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd"> 10 11 12 <script src="/scripts/jquery-1.2.6.min.js" type="text/javascript"></script> 13 14 15 16 17 <window id="mapPortalPage" width="100%" height="100%"> 18 <div id="rawMessageHackHolder" visible="false"> 19 <iframe id="rawMessageIframeHack" width="100%" height="250px" /> 20 </div> 21 22 <borderlayout width="100%"> 23 <north id="header" height="100"> 24 25 <div> 26 <!-- static menu links --> 27 <div sclass="toplinks"> 28 <!-- zk forEach="${session.attributes.portalSession.staticMenuLinks}"> 29 30 <toolbarbutton if="${each.external}" label="${each.name}" 31 tooltiptext="${each.description}" zclass="leftmenu_ahref" href="${each.uri}" /> 32 33 <toolbarbutton if="${! each.external}" label="${each.name}" 34 tooltiptext="${each.description}" zclass="leftmenu_ahref" 35 forward="onClick=onActivateLink()"> 36 <custom-attributes link="${each}" /> 37 </toolbarbutton> 38 39 </zk --> 40 41 42 </div> 43 </div> 44 </north> 45 46 47 48 <center id="center" > 49 <div sclass="msgcenter" > 50 <div style="width:400px"> 51 <label value="Sorry, your session has timed out." sclass="h1" /><separator height="20px"/> 52 53 54 55<separator height="20px"/> 56 <button label="RELOAD PORTAL" href="./" /> 57 </div> 58 59 </div> 60 </center> 61 62 63 <south id="footer"> 64 <html><![CDATA[ 65 <span id="ft"> 66 <p><a href="http://www.ala.org.au" title="Atlas of Living Australia">ALA</a> is supported by the Australian Government through the 67 <a href="http://www.innovation.gov.au/Section/AboutDIISR/FactSheets/Pages/NationalCollaborativeResearchInfrastructureStrategy(NCRIS)FactSheet.aspx"> 68 National Collaborative Research Infrastructure Strategy</a> 69 and the Super Science Initiative.<BR /> 70 </p></span> ]]></html> 71 72 </south> 73 </borderlayout> 74 75 76 77 78 </window> 79 80 <style> 81 .z-center-body { 82 background-color: #375b7b; 83 border: 0px solid #ccc !important; 84 } 85 .msgcenter { 86 background: white; 87 margin: 0px 30px; 88 height: 100%; 89 padding: 20px; 90 } 91 </style> 92 <style> 93 .z-north { 94 background: #375c79 url(img/portal-logo.jpg) no-repeat top left; 95 height: 100px; 96 } 97 .z-south { 98 background: url(img/body.png) top left; 99 } 100 </style> 101 <style src="css/zkcomponents.css" /> 102</zk> 103 104