webmcp
view demo-app/app/main/_layout/system_error.html @ 31:1cd9e69b85cb
add execute.load_chunk(args)
load_chunk loads the content of a lua file and returns the code.
It can construct the path name easily so you can put helper code in
seperate files for DRYness.
load_chunk loads the content of a lua file and returns the code.
It can construct the path name easily so you can put helper code in
seperate files for DRYness.
author | Daniel Poelzleithner <poelzi@poelzi.org> |
---|---|
date | Tue Oct 05 02:34:04 2010 +0200 (2010-10-05) |
parents | 9fdfb27f8e67 |
children |
line source
1 <html>
2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
4 <title>webmcp demo application</title>
5 <link rel="stylesheet" type="text/css" media="screen" href="__BASEURL__/static/style.css" />
6 <link rel="stylesheet" type="text/css" media="screen" href="__BASEURL__/static/trace.css" />
7 </head>
8 <body class="system_error">
9 <div class="layout_content">
10 <div class="layout_title">
11 <div class="title">
12 <br />
13 <br />
14 System message
15 </div>
16 </div>
17 <br style="clear: left;">
18 <div class="layout_actions">
19
20 </div>
21 <div class="layout_main">
22 <div class="main">
23 <tt><!-- WEBMCP SLOT system_error --></tt>
24 <br />
25 <br />
26 <br />
27 <br />
28 <button onclick="window.location.reload()">Retry request</button>
29 <a href="__BASEURL__">index</a>
30 </div>
31 </div>
32 </div>
33 <div class="layout_trace" id="layout_trace" style="xdisplay: none">
34 <div id="trace_show" onclick="document.getElementById('trace_content').style.display='block';this.style.display='none';" style="display: none;">TRACE</div>
35 <div id="trace_content">
36 <!-- WEBMCP SLOT trace -->
37 <div class="trace_close" onclick="document.getElementById('trace_show').style.display='block';document.getElementById('trace_content').style.display='none';">close</div>
38 </div>
39 </div>
40 </body>
41 </html>