source: branches/new-datamodel/playground/url_test.html

Last change on this file was 315, checked in by lgiessmann, 14 years ago

The ajax host prefix in constants.js is set automatically --> different mappings works for the same server now; the admin needn't set the host prefix manually

File size: 1.8 KB
Line 
1<!-- ======================================================================= -->
2<!--  Isidorus                                                               -->
3<!--  (c) 2008-2009 Marc Kuester, Christoph Ludwig, Lukas Giessmann          -->
4<!--                                                                         -->
5<!--  Isidorus is freely distributable under the LGPL license.               -->
6<!--  This ajax module uses the frameworks PrototypeJs and Scriptaculous,    -->
7<!--  both are distributed under the MIT license.                            -->
8<!--  You can find a detailed description in trunk/docs/LGPL-LICENSE.txt and -->
9<!--  in trunk/src/ajax/javascripts/external/MIT-LICENSE.txt.                -->
10<!-- ======================================================================= -->
11
12
13<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
14<html xmlns="http://www.w3.org/1999/xhtml">
15  <head>
16    <title>isidorus</title>
17    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
18
19    <!-- error handling for javascript code -->
20    <script language="JavaScript" type="text/javascript"> <!--
21    var __DEBUG__ = true;
22       
23    function onError(message, url, line)
24    {
25        window.alert("onError in \"" + url + "\" at line: "  + line + "\n" + message);
26        return true;
27    }
28
29    if(__DEBUG__ === true){
30        window.onerror = onError;
31    }
32
33    // -->
34    </script>
35
36   
37    <!-- includes the prototype and scriptaculous frameworks -->
38
39    <!-- includes own javascript files -->
40    <script language="JavaScript" type="text/javascript" src="url_test.js"></script>
41  </head>
42
43  <body onload="entryPoint()">
44    <div id="page">
45      <h1>URL:<span id="content"></span></h1>
46    </div>
47  </body>
48</html>
Note: See TracBrowser for help on using the repository browser.