-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathatom.html
67 lines (67 loc) · 2.31 KB
/
atom.html
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" href="stylesheets/reset.css" type="text/css" />
<link rel="stylesheet" href="stylesheets/demo.css" type="text/css" />
<link rel="stylesheet" href="../css/jquery.xmleditor.css" type="text/css" />
<script src="../lib/ace/src-min/ace.js"></script>
<script src="../lib/jquery.min.js"></script>
<script src="../lib/jquery-ui.min.js"></script>
<script src="../lib/json2.js"></script>
<script src="../lib/cycle.js"></script>
<script src="../lib/jquery.autosize-min.js"></script>
<script src="../xsd/xsd2json.js"></script>
<script src="../jquery.xmleditor.js"></script>
</head>
<body>
<h1>Atom example</h1>
<textarea id="xml_editor">
<feed xmlns="http://www.w3.org/2005/Atom">
<id>http://localhost:8080/resources/timezones</id>
<title type="text">Time Zones</title>
<link href="http://localhost:8080/resources/timezones" rel="self">
</link>
<author>
<name>sandra</name>
</author>
<entry>
<id>http://localhost:8080/resources/timezones/Etc_GMT+12</id>
<title type="text">Etc/GMT+12 :: GMT-12:00</title>
<link href="http://localhost:8080/resources/timezones/Etc_GMT+12" rel="self">
</link>
<author>
<name>No Author</name>
</author>
<updated>1970-01-01T00:00:00.000Z</updated>
<content type="text">Oct 23, 2008 4:12:37 AM</content>
</entry>
<entry>
<id>http://localhost:8080/resources/timezones/Etc_GMT+11</id>
<title type="text">Etc/GMT+11 :: GMT-11:00</title>
<link href="http://localhost:8080/resources/timezones/Etc_GMT+11" rel="self">
</link>
<updated>1970-01-01T00:00:00.000Z</updated>
<content type="text">Oct 23, 2008 5:12:37 AM</content>
</entry>
<entry>
<id>http://localhost:8080/resources/timezones/MIT</id>
<title type="text">MIT :: West Samoa Time</title>
<link href="http://localhost:8080/resources/timezones/MIT" rel="self">
</link>
<updated>1970-01-01T00:00:00.000Z</updated>
<content type="text">Oct 23, 2008 5:12:37 AM</content>
</entry>
</feed>
</textarea>
<script>
$(function() {
var extractor = new Xsd2Json("ATOM.xsd", {"schemaURI":"examples/atom/"});
$("#xml_editor").xmlEditor({
schema: extractor.getSchema(),
enableDocumentStatusPanel : false
});
});
</script>
</body>
</html>