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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
<?xml version='1.0' encoding='UTF-8'?>
<serialization xmlns='https://webkeks.org/objfw/serialization'>
<object class='OFMutableDictionary'>
<pair>
<key>
<object class='OFArray'>
<object class='OFString'>Qu"xbar
test</object>
<object class='OFNumber' type='signed'>1234</object>
<object class='OFMutableString'>asd</object>
<object class='OFDate'>
<seconds>1234</seconds>
<microseconds>5678</microseconds>
</object>
</object>
</key>
<value>
<object class='OFString'>Hello</object>
</value>
</pair>
<pair>
<key>
<object class='OFString'>Blub</object>
</key>
<value>
<object class='OFString'>B"la</object>
</value>
</pair>
<pair>
<key>
<object class='OFList'>
<object class='OFString'>Hello</object>
<object class='OFString'>Wo
ld!
How are you?</object>
<object class='OFURL'>https://webkeks.org/</object>
<object class='OFXMLElement'>
<name>x</name>
<namespaces>
<object class='OFMutableDictionary'>
<pair>
<key>
<object class='OFString'>http://www.w3.org/2000/xmlns/</object>
</key>
<value>
<object class='OFString'>xmlns</object>
</value>
</pair>
<pair>
<key>
<object class='OFString'>http://www.w3.org/XML/1998/namespace</object>
</key>
<value>
<object class='OFString'>xml</object>
</value>
</pair>
</object>
</namespaces>
<children>
<object class='OFMutableArray'>
<object class='OFXMLElement'>
<name>y</name>
<namespaces>
<object class='OFMutableDictionary'>
<pair>
<key>
<object class='OFString'>http://www.w3.org/2000/xmlns/</object>
</key>
<value>
<object class='OFString'>xmlns</object>
</value>
</pair>
<pair>
<key>
<object class='OFString'>http://www.w3.org/XML/1998/namespace</object>
</key>
<value>
<object class='OFString'>xml</object>
</value>
</pair>
</object>
</namespaces>
</object>
</object>
</children>
</object>
</object>
</key>
<value>
<object class='OFString'>list</object>
</value>
</pair>
</object>
</serialization>
|
|
|
<
|
|
|
|
|
|
<
<
|
<
<
|
<
<
<
<
<
<
<
|
<
|
|
|
<
|
|
|
|
|
|
|
<
|
|
<
|
|
|
<
|
>
|
>
>
<
<
<
<
|
<
|
<
|
>
|
|
|
|
<
|
|
<
|
|
|
>
>
>
|
>
>
|
>
<
<
<
<
<
<
<
<
<
<
>
|
|
>
>
|
>
|
>
>
>
|
>
|
>
>
|
<
|
<
|
|
>
|
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
68
69
70
71
72
73
74
75
76
77
|
<?xml version='1.0' encoding='UTF-8'?>
<serialization xmlns='https://webkeks.org/objfw/serialization' version='0'>
<OFMutableDictionary>
<key>
<OFArray>
<OFString>Qu"xbar
test</OFString>
<OFNumber type='signed'>1234</OFNumber>
<OFMutableString>asd</OFMutableString>
<OFDate seconds='1234' microseconds='5678'/>
</OFArray>
</key>
<object>
<OFString>Hello</OFString>
</object>
<key>
<OFList>
<OFString>Hello</OFString>
<OFString>Wo
ld!
How are you?</OFString>
<OFURL>https://webkeks.org/</OFURL>
<OFXMLElement name='x'>
<namespaces>
<OFMutableDictionary>
<key>
<OFString>http://www.w3.org/2000/xmlns/</OFString>
</key>
<object>
<OFString>xmlns</OFString>
</object>
<key>
<OFString>http://www.w3.org/XML/1998/namespace</OFString>
</key>
<object>
<OFString>xml</OFString>
</object>
</OFMutableDictionary>
</namespaces>
<children>
<OFMutableArray>
<OFXMLElement name='y'>
<namespaces>
<OFMutableDictionary>
<key>
<OFString>http://www.w3.org/2000/xmlns/</OFString>
</key>
<object>
<OFString>xmlns</OFString>
</object>
<key>
<OFString>http://www.w3.org/XML/1998/namespace</OFString>
</key>
<object>
<OFString>xml</OFString>
</object>
</OFMutableDictionary>
</namespaces>
</OFXMLElement>
<OFXMLElement>
<CDATA><![CDATA[<]]></CDATA>
</OFXMLElement>
</OFMutableArray>
</children>
</OFXMLElement>
</OFList>
</key>
<object>
<OFString>list</OFString>
</object>
<key>
<OFString>Blub</OFString>
</key>
<object>
<OFString>B"la</OFString>
</object>
</OFMutableDictionary>
</serialization>
|