source: oceandb/webapproot/index.html @ 49

Last change on this file since 49 was 49, checked in by jazz, 15 years ago
  • Main.js:
    • add default view of google map
    • add script of AJAX loading from XML
  • getdeepstaxml.xml
    • this xml is the source of AJAX
  • index.html
    • you must add your Google Map API key manualy or the key will be different from URLs.
File size: 1.7 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml">
3<head>
4<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
5<meta http-equiv="cache-control" content="must-revalidate" />
6<meta name="generator" content="WaveMaker Application Studio" />
7<title>OID</title>
8<link rel="shortcut icon" href="/wavemaker/lib/wm/base/boot/images/favicon.ico" />
9<style type="text/css">
10  @import "/wavemaker/lib/wm/base/boot/boot.css";
11  @import "app.css";
12 
13  /* styling for the wavemaker application element */
14  #wavemakerNode {
15    height: 100%;
16    overflow: hidden;
17    position: relative;
18  }
19</style>
20
21<!-- Boot Wavemaker -->
22<script type="text/javascript" src="config.js"></script>
23<script type="text/javascript" src="/wavemaker/lib/wm/base/boot/boot.js"></script>
24<script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAREq2HXjZzIdAyVORbKBYMhTfzQKfMm5eNRoty1ZKt0XEeQdtXxTxlSH6lZOV7UEfIym3ft5_EnXXDw" type="text/javascript"></script>
25</head>
26<body class="tundra">
27  <!-- Begin OID -->
28  <div id="wavemakerNode">
29    <div id="_wm_loading" style="z-index: 100;">
30      <table><tr><td><img alt="Loading" src="/wavemaker/lib/wm/base/boot/images/loader.gif" />&nbsp;&nbsp;Loading...</td></tr></table>
31    </div>
32  </div>
33  <script type="text/javascript" src="/wavemaker/lib/wm/base/boot/lib_wm.js"></script>
34  <script type="text/javascript" src="lib_project.js"></script>
35  <script type="text/javascript" src="types.js"></script>
36  <script type="text/javascript" src="OID.js"></script>
37  <script type="text/javascript">
38    new OID({domNode: "wavemakerNode"}).run();
39  </script>
40  <!-- End OID -->
41</body>
42</html>
Note: See TracBrowser for help on using the repository browser.