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