testxmlify.html
1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Nur zum testen</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<script src="js/helper.js" type="text/javascript"></script>
<script src="js/xmlify.js" type="text/javascript"></script>
<script src="js/service.js" type="text/javascript"></script>
<script src="js/callbacks.js" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
function dummy (data)
{
this.var1 = null;
this.var2 = null;
this.var3 = null;
this.var4 = null;
dummy.baseConstructor.call (this, data);
}
nBildertool.extend (dummy, nBildertool.c_xmlify);
//]]>
</script>
</head>
<body>
<script language="javascript">
//<![CDATA[
var serviceUrl = 'http://bilder-workingcopy/ajax+json/ajax.php'
nBildertool.service (serviceUrl);
console.log ('%s', 'jokus');
//]]>
</script>
</body>
</html>